/*
  FULL RESTORE: This is the last known good version of site.css before the purple accent changes. All blue accent and original styles are restored.
*/
:root {
  --bg: #ffffff;
  --bg-alt: #f7fafc;
  --text: #0f172a;
  --text-soft: #475569;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-soft: rgba(14, 165, 233, 0.12);
  --success: #10b981;
  --success-soft: rgba(16, 185, 129, 0.12);
  --purple: #8b5cf6;
  --purple-soft: rgba(139, 92, 246, 0.12);
  --shadow-sm: 0 4px 18px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.13);
  --shadow-focus: 0 0 0 3px rgba(14, 165, 233, 0.13);
  --container: 1200px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  zoom: 0.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), box-shadow var(--transition);
  border-radius: 6px;
}

a:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f8fbfd 0%, #f4f8fb 100%);
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.72;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(14, 165, 233, 0.18);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  height: 27px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a,
.nav-dropdown__trigger {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
}

.main-nav a:hover,
.nav-dropdown__trigger:hover {
  color: var(--primary-dark);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown__trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  min-width: 180px;
  padding: 0.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
  z-index: 60;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover {
  background: rgba(14, 165, 233, 0.08);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown:focus-within .nav-dropdown__trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.mobile-menu-button {
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

.mobile-menu {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 0.5rem 1rem 1rem;
}

.mobile-menu a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 14px;
  padding: 0.88rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    filter var(--transition);
  box-shadow: var(--shadow-sm);
  font-size: 1.01rem;
}

.btn:hover {
  transform: translateY(-2px) scale(1.025);
  filter: brightness(1.04);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 1.35rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(90deg, #0ea5e9 60%, #38bdf8 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0284c7 60%, #0ea5e9 100%);
  box-shadow: var(--shadow-lg);
}

.btn-secondary,
.btn-ghost {
  background: #fff;
  color: var(--primary-dark);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: #f8fafc;
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(14, 165, 233, 0.08), transparent 26%),
    linear-gradient(180deg, #fafcfe 0%, #ffffff 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 14ch;
  font-weight: 800;
  background: none;
  color: #101828;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-fill-color: initial;
}

.hero-subtext {
  margin: 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: min(132%, 898px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.proof-item {
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 165, 233, 0.10);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}
.proof-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.03);
}

.proof-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.proof-item span {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.58;
}

.proofbar-section {
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  background: #fff;
  padding: 1.2rem 0;
}

.proofbar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.proofbar-item {
  padding: 0.6rem 0.2rem;
}

.proofbar-title {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.proofbar-label {
  color: var(--text-soft);
  line-height: 1.6;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-line,
.timeline-progress {
  position: absolute;
  left: 20px;
  top: 8px;
  width: 2px;
  border-radius: 999px;
}

.timeline-line {
  height: calc(100% - 16px);
  background: #dbe6f1;
}

.timeline-progress {
  height: 0;
  background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
  transition: height 0.35s ease;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.timeline-bubble {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dbe4ef;
  color: #fff;
  font-weight: 800;
  transition: all var(--transition);
}

.timeline-step.active .timeline-bubble {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.12);
}

.timeline-step.completed .timeline-bubble {
  background: var(--primary);
}

.timeline-content {
  display: block;
  padding-top: 0.2rem;
}

.timeline-content strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.timeline-content small {
  display: block;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-shell {
  width: 100%;
  max-width: 340px;
  min-height: 540px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 12px 48px rgba(15, 23, 42, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border: none;
}

/* Remove notch */
.phone-shell::before {
  display: none;
}

.phone-top {
  padding: 1.2rem 1.1rem 0.85rem 1.1rem;
  background: #fff;
  border-radius: 28px 28px 0 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(30, 34, 90, 0.04);
}

.phone-stage {
  min-height: 370px;
  padding: 1.1rem 1.1rem 1.2rem 1.1rem;
  background: #fff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 2px 8px rgba(30, 34, 90, 0.04);
}

@media (max-width: 700px) {
  .phone-shell {
    max-width: 98vw;
    min-height: 420px;
    border-radius: 18px;
  }
  .phone-top, .phone-stage {
    border-radius: 12px 12px 0 0;
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
  }
  .phone-stage {
    min-height: 220px;
    border-radius: 0 0 12px 12px;
  }
}

/* Pricing Section (restored) */
.pricing-section {
  background: #f8f9fb;
  padding: 64px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(30, 34, 90, 0.06);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 4px solid var(--primary, #0ea5e9);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 6px 24px 0 rgba(30, 34, 90, 0.12);
  transform: translateY(-4px) scale(1.02);
}
.pricing-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: var(--primary-dark, #0284c7);
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
  color: var(--primary-dark, #0284c7);
}
.pricing-sub {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
  font-size: 1rem;
}
.pricing-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.pricing-features li:before {
  content: '\2713';
  font-size: 1.1em;
  margin-right: 0.5em;
  color: var(--primary, #0ea5e9);
  font-weight: bold;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    align-items: stretch;
  }
}

/* Products Section (restored) */
.products-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 1.2rem;
}

.product-card {
  padding: 1.65rem;
  border-radius: 24px;
  border: 1px solid #e6eef7;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.product-card-featured {
  background: linear-gradient(180deg, rgba(14,165,233,0.05), #ffffff 42%);
  border-color: rgba(14, 165, 233, 0.20);
}

.product-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.product-icon-blue {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.product-icon-green {
  background: var(--success-soft);
  color: var(--success);
}

.product-icon-purple {
  background: var(--purple-soft);
  color: var(--purple);
}

.product-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.42rem;
}

.product-card p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.product-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 1.1rem;
  color: #334155;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* --- RESTORE: Benefits Section --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e6eef7;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
}

.benefit-card:nth-child(2n)::before {
  background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
}

.benefit-card:nth-child(3n)::before {
  background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.02);
}

.benefit-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.18rem;
}

.benefit-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* --- RESTORE: Industries Section --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.industry-card {
  padding: 1.4rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e6eef7;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.02);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
  opacity: 0.9;
}

.industry-card:nth-child(2n)::before {
  background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
}

.industry-card:nth-child(3n)::before {
  background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
}

.industry-card:nth-child(4n)::before {
  background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 100%);
}

.industry-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.industry-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* --- RESTORE: Products Section --- */
.products-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 1.2rem;
}

.product-card {
  padding: 1.65rem;
  border-radius: 24px;
  border: 1px solid #e6eef7;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.product-card-featured {
  background: linear-gradient(180deg, rgba(14,165,233,0.05), #ffffff 42%);
  border-color: rgba(14, 165, 233, 0.20);
}

.product-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.product-icon-blue {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.product-icon-green {
  background: var(--success-soft);
  color: var(--success);
}

.product-icon-purple {
  background: var(--purple-soft);
  color: var(--purple);
}

.product-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.42rem;
}

.product-card p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.product-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 1.1rem;
  color: #334155;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

/* --- RESTORE: Pricing Section --- */
.pricing-section {
  background: #f8f9fb;
  padding: 64px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(30, 34, 90, 0.06);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 4px solid var(--primary, #0ea5e9);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 6px 24px 0 rgba(30, 34, 90, 0.12);
  transform: translateY(-4px) scale(1.02);
}
.pricing-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: var(--primary-dark, #0284c7);
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
  color: var(--primary-dark, #0284c7);
}
.pricing-sub {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
  font-size: 1rem;
}
.pricing-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.pricing-features li:before {
  content: '\2713';
  font-size: 1.1em;
  margin-right: 0.5em;
  color: var(--primary, #0ea5e9);
  font-weight: bold;
}

@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .industries-grid,
  .products-grid,
  .pricing-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 30%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2.5rem;
  padding: 2.6rem 0 1.6rem;
}

.footer-brand {
  max-width: 44rem;
}

.footer-logo {
  width: auto;
  height: 34px;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-column h4 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  padding: 0.8rem 0 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    padding: 3rem 0 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-logo {
    height: 29px;
  }
}

.hero-copy {
  position: relative;
}

.hero-copy h1 {
  max-width: 17ch;
  margin-bottom: 1.2rem;
}

.hero-subtext {
  max-width: 60ch;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hero-metric {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: var(--shadow-sm);
}

.hero-metric strong,
.hero-metric span {
  display: block;
}

.hero-metric strong {
  margin-bottom: 0.25rem;
  color: #0f172a;
  font-size: 0.95rem;
}

.hero-metric span {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-image {
  filter: drop-shadow(0 20px 40px rgba(14, 165, 233, 0.14));
}

#how-it-works.section-alt {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(14, 165, 233, 0.12), transparent 20rem),
    linear-gradient(180deg, #f8fbfd 0%, #eef6fb 100%);
}

.timeline-step {
  position: relative;
  padding: 0.55rem 0;
  transition: transform var(--transition);
}

.timeline-step:hover {
  transform: translateX(4px);
}

.timeline-content strong {
  transition: color var(--transition);
}

.timeline-step.active .timeline-content strong {
  color: var(--primary-dark);
}

.phone-wrap {
  position: relative;
  isolation: isolate;
  padding: 0.75rem 0 0.5rem;
}

.phone-aura {
  position: absolute;
  inset: 4% 10% 12%;
  border-radius: 38%;
  background:
    radial-gradient(circle at center, rgba(56, 189, 248, 0.28), rgba(14, 165, 233, 0.08) 45%, transparent 68%);
  filter: blur(14px);
  z-index: -1;
}

.phone-device {
  position: relative;
  width: 100%;
  max-width: 368px;
  margin: 0 auto;
}

.phone-side-button {
  position: absolute;
  left: -4px;
  width: 4px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, #7c8798 0%, #2b3444 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.phone-side-button-top {
  top: 116px;
  height: 38px;
}

.phone-side-button-mid {
  top: 164px;
  height: 66px;
}

.phone-side-button-power {
  left: auto;
  right: -4px;
  top: 150px;
  height: 82px;
  border-radius: 0 999px 999px 0;
}

.phone-shell {
  position: relative;
  width: 100%;
  min-height: 650px;
  padding: 12px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, #2f3948 0%, #0f1722 38%, #293548 70%, #0b1220 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 34px 80px rgba(15, 23, 42, 0.28),
    0 16px 28px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 12px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.phone-screen {
  position: relative;
  min-height: 626px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 46%, #f7fbff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 -12px 26px rgba(15, 23, 42, 0.08);
}

.phone-reflection {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.04) 24%, transparent 42%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 88px;
  height: 10px;
  margin-left: -44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #111827 0%, #273244 100%);
  z-index: 3;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.phone-camera {
  position: absolute;
  top: 18px;
  right: 112px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #3b82f6, #111827 68%);
  z-index: 3;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.phone-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.35rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3b4757;
}

.phone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.phone-status-icons span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 100%);
  opacity: 0.85;
}

.phone-top {
  position: relative;
  margin: 0 1rem;
  padding: 1rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.phone-step-count {
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.phone-top h3 {
  margin: 0.45rem 0 0.3rem;
  font-size: 1.35rem;
  line-height: 1.1;
}

.phone-top p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.phone-stage {
  min-height: 440px;
  padding: 1rem 1rem 2.5rem;
  background: transparent;
  box-shadow: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.phone-stage.is-fading {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.phone-home-indicator {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 118px;
  height: 5px;
  margin-left: -59px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.28);
}

.phone-card,
.success-card {
  position: relative;
  border-radius: 28px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  animation: phoneCardIn 0.36s ease;
}

.phone-card::before,
.success-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.06), transparent 28%);
  pointer-events: none;
}

.phone-soft {
  position: relative;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(247, 250, 252, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.72);
}

.phone-note {
  color: #334155;
  line-height: 1.65;
  font-size: 0.94rem;
}

.phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  color: #475569;
}

.phone-row + .phone-row {
  border-top: 1px solid rgba(203, 213, 225, 0.72);
}

.phone-row strong {
  color: #0f172a;
  font-size: 0.96rem;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 0.92rem 1rem;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.22);
}

.capture-box {
  display: grid;
  place-items: center;
  min-height: 200px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.02)),
    repeating-linear-gradient(
      -45deg,
      rgba(148, 163, 184, 0.14),
      rgba(148, 163, 184, 0.14) 8px,
      rgba(255, 255, 255, 0.16) 8px,
      rgba(255, 255, 255, 0.16) 16px
    );
  border: 1px dashed rgba(14, 165, 233, 0.32);
}

.capture-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(14, 165, 233, 0.2);
}

.success-card {
  text-align: center;
}

.success-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(16, 185, 129, 0.22);
}

.success-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.success-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.phone-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition), width var(--transition);
}

.dot.active {
  width: 28px;
  background: linear-gradient(90deg, #0ea5e9 0%, #0284c7 100%);
}

.products-grid,
.industries-grid,
.benefits-grid {
  align-items: stretch;
}

.product-card,
.industry-card,
.benefit-card {
  height: 100%;
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.product-card ul {
  margin-top: auto;
  padding-top: 0.35rem;
}

.product-card p {
  margin-bottom: 1.15rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), transparent 16rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(14, 165, 233, 0.14);
  box-shadow: var(--shadow-md);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-brand {
  display: grid;
  gap: 0.15rem;
}

.footer-contact-list {
  display: grid;
  gap: 0;
  max-width: 44rem;
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.28;
  font-size: 0.88rem;
}

.footer-contact-list a,
.footer-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.footer-column p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-column-cta {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.is-open {
  display: block;
}

@keyframes phoneCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .how-grid,
  .final-cta-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .phone-device {
    max-width: 360px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .hero-metrics,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .proofbar-grid {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    min-height: 594px;
    border-radius: 34px;
    padding: 10px;
  }

  .phone-shell::before {
    border-radius: 30px;
  }

  .phone-screen {
    min-height: 574px;
    border-radius: 28px;
  }

  .phone-top {
    margin: 0 0.8rem;
    padding: 0.9rem;
  }

  .phone-stage {
    min-height: 390px;
    padding: 0.9rem 0.8rem 2.25rem;
  }

  .final-cta-card {
    padding: 1.5rem;
  }
}

.aicheck-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(14, 165, 233, 0.09), transparent 24%),
    linear-gradient(180deg, #fafcff 0%, #ffffff 68%);
}

.aicheck-hero {
  background:
    radial-gradient(circle at 84% 24%, rgba(14, 165, 233, 0.1), transparent 22rem),
    linear-gradient(180deg, #f8fbfd 0%, #eef6fb 100%);
}

.trusign-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(14, 165, 233, 0.08), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.aicheck-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 300px);
  gap: 2.5rem;
  align-items: start;
}

.aicheck-hero .section-heading {
  margin-bottom: 3rem;
}

.aicheck-hero__copy {
  max-width: 760px;
  padding-top: 2.5rem;
}

.aicheck-hero__sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  justify-content: center;
}

.trusign-hero__sequence {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aicheck-hero__hint {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.aicheck-sequence-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(14, 165, 233, 0.14);
  box-shadow: var(--shadow-sm);
  color: inherit;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition);
  white-space: nowrap;
}

.aicheck-sequence-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.aicheck-sequence-step.is-active {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.34);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.08);
}

.aicheck-sequence-step:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(14, 165, 233, 0.12),
    var(--shadow-md);
}

.aicheck-sequence-step span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.aicheck-sequence-step strong {
  display: block;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.2;
  white-space: nowrap;
}

.aicheck-sequence-step.is-active strong {
  color: var(--primary-dark);
}

.aicheck-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-top: 2rem;
}

.aicheck-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.aicheck-proof-card {
  padding: 1.2rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: var(--shadow-md);
}

.aicheck-proof-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
  color: var(--text);
}

.aicheck-proof-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.65;
}

.differentiators-grid .aicheck-proof-card {
  background: #fff;
  border: 1px solid #e6eef7;
  border-left: 4px solid var(--primary, #0ea5e9);
  box-shadow: 0 2px 16px 0 rgba(30, 34, 90, 0.06);
}

.differentiators-grid .aicheck-proof-card:nth-child(2n) {
  border-left-color: #10b981;
}

.differentiators-grid .aicheck-proof-card:nth-child(3n) {
  border-left-color: #2563eb;
}

.differentiators-grid .aicheck-proof-card strong {
  color: var(--primary-dark, #0284c7);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.comparison-card {
  padding: 1.5rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e6eef7;
  border-left: 4px solid #94a3b8;
  box-shadow: var(--shadow-sm);
}

.comparison-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  color: var(--text);
}

.comparison-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.comparison-card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #64748b;
}

.comparison-card-featured {
  border-left-color: var(--primary, #0ea5e9);
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.comparison-card-featured h3 {
  color: var(--primary-dark, #0284c7);
}

.comparison-card-featured li::before {
  background: var(--primary, #0ea5e9);
}

.comparison-supporting-text {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--text-soft);
}

.aicheck-hero__visual {
  display: flex;
  justify-content: flex-start;
}

.aicheck-device {
  position: relative;
  display: flex;
  justify-content: center;
  margin-inline: auto;
  margin-left: -1rem;
}

.aicheck-device__glow {
  position: absolute;
  inset: 8% -8%;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, rgba(14, 165, 233, 0.06) 46%, transparent 72%);
  filter: blur(18px);
}

.aicheck-device__shell {
  position: relative;
  z-index: 1;
  padding: 12px;
  border-radius: 32px;
  background: linear-gradient(145deg, #273142 0%, #101722 52%, #2d394d 100%);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.aicheck-device__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 80px;
  height: 16px;
  margin-left: -40px;
  border-radius: 999px;
  background: #0b1017;
}

.aicheck-device__screen {
  width: 240px;
  height: 488px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.aicheck-device__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.aicheck-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 1100px) {
  .aicheck-hero__grid {
    grid-template-columns: 1fr;
  }

  .aicheck-hero__visual {
    order: 2;
  }

  .aicheck-hero__copy {
    padding-top: 0;
  }

  .aicheck-hero__sequence,
  .aicheck-hero__actions {
    justify-content: center;
  }

  .aicheck-hero__hint {
    text-align: center;
  }

  .aicheck-hero__sequence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusign-hero__sequence {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aicheck-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .aicheck-device {
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .aicheck-hero__sequence {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    justify-content: flex-start;
  }

  .aicheck-hero__hint {
    text-align: left;
  }

  .aicheck-hero__copy {
    padding-top: 0;
  }

  .aicheck-sequence-step {
    justify-content: flex-start;
    border-radius: 18px;
  }

  .aicheck-hero__actions {
    justify-content: flex-start;
  }

  .aicheck-proof-grid {
    grid-template-columns: 1fr;
  }

  .aicheck-device__shell {
    padding: 12px;
    border-radius: 34px;
  }

  .aicheck-device__notch {
    top: 10px;
    width: 76px;
    height: 15px;
    margin-left: -38px;
  }

  .aicheck-device__screen {
    width: min(100%, 292px);
    height: 592px;
    border-radius: 24px;
  }

  .aicheck-benefits {
    grid-template-columns: 1fr;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.login-choice-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f7fafe 0%, #eef3f8 100%);
}

.login-choice-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.25rem 0;
}

.login-choice-shell {
  margin: 0 auto;
  width: min(760px, 100%);
  text-align: center;
  padding: 0.25rem 0 0;
}

.login-choice-back {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  background: #ffffff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.login-choice-back:hover {
  border-color: rgba(10, 37, 64, 0.18);
}

.login-choice-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
}

.login-choice-heading h1 {
  margin: 1rem 0 0.15rem;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #0a2540;
}

.login-choice-heading p {
  width: min(560px, 100%);
  margin: 0.7rem auto 0;
  color: #425466;
  font-size: 0.96rem;
  line-height: 1.55;
}

.login-choice-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.login-choice-card {
  text-align: center;
  padding: 1.1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.login-choice-card h2 {
  margin: 0.1rem 0 0;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a2540;
}

.login-choice-shot {
  margin: 0;
  aspect-ratio: 16 / 8.5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #f8fafc;
}

.login-choice-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.3rem;
}

.login-choice-card p {
  margin: 0;
  color: #506176;
  line-height: 1.45;
  font-size: 0.9rem;
}

.login-choice-card .btn {
  margin-top: 0;
  width: auto;
  min-width: 92px;
  justify-content: center;
  min-height: 34px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.52rem 0.85rem;
}

.login-choice-actions {
  margin-top: 0.15rem;
  display: flex;
  justify-content: center;
}

.login-choice-actions .btn {
  margin-top: 0;
}

.login-choice-btn {
  background: #ffffff;
  color: #0a2540;
  border: 1px solid rgba(10, 37, 64, 0.14);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.login-choice-btn:hover {
  background: #f8fbff;
  color: #0a2540;
  border-color: rgba(14, 165, 233, 0.42);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

@media (max-width: 780px) {
  .login-choice-heading p {
    font-size: 1rem;
  }

  .login-choice-grid {
    grid-template-columns: 1fr;
  }

  .login-choice-card .btn {
    width: 100%;
    justify-content: center;
  }
}
