:root{
  --bg:#f6f8fb;
  --surface:#ffffff;
  --surface-alt:#eef3f8;
  --text:#152032;
  --muted:#5d6b7c;
  --line:#dbe3ed;
  --navy:#173657;
  --navy-2:#10283f;
  --accent:#111827;
  --accent-soft:#f3f4f6;
  --container:min(1160px, calc(100vw - 40px));
  --radius:8px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:400;
  color:var(--text);
  background:var(--bg);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

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

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

h1,
h2,
h3,
p{
  overflow-wrap:anywhere;
}

h1,
h2,
h3{
  letter-spacing:0;
}

.page-bg{
  display:none;
}

.container{
  width:var(--container);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--navy);
  font-weight:700;
}

.brand img{
  width:40px;
  height:40px;
  border-radius:8px;
}

.brand span{
  font-size:19px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:6px;
}

.site-nav a{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  padding:0 12px;
  border-radius:8px;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.site-nav a:hover{
  background:var(--surface-alt);
  color:var(--text);
}

.site-nav .nav-cta{
  background:var(--navy);
  color:#ffffff;
  padding-inline:16px;
}

.site-nav .nav-cta:hover{
  background:var(--navy-2);
  color:#ffffff;
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#ffffff;
  color:var(--navy);
}

.hero{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:76px 0 60px;
  border-bottom:1px solid var(--line);
  background:#ffffff;
}

.hero-grid{
  position:relative;
  min-height:484px;
  display:flex;
  align-items:center;
  direction:ltr;
}

.seo-hero .hero-grid{
  max-width:none;
}

.hero-copy{
  position:relative;
  z-index:2;
  width:min(50%, 590px);
}

.hero-media{
  position:absolute;
  z-index:1;
  top:-20px;
  right:max(-10px, calc(580px - 50vw));
  bottom:-60px;
  width:min(44vw, 600px);
  overflow:hidden;
}

.hero-media::before{
  position:absolute;
  z-index:2;
  inset:0;
  content:"";
  background:linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,.78) 3%, rgba(255,255,255,.18) 11%, rgba(255,255,255,0) 19%);
  pointer-events:none;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  margin-bottom:14px;
  padding:0 10px;
  border:1px solid #d1d5db;
  border-radius:999px;
  background:var(--accent-soft);
  color:#111827;
  font-size:13px;
  font-weight:700;
}

.hero-title,
.hero h1{
  margin:0;
  max-width:700px;
  color:var(--navy);
  font-size:52px;
  line-height:1.06;
  font-weight:700;
}

.lead{
  max-width:650px;
  margin:22px 0 0;
  color:#3f4f63;
  font-size:18px;
  line-height:1.6;
}

.hero-actions,
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.button{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#ffffff;
  color:var(--navy);
  font-size:15px;
  font-weight:700;
}

.button.primary{
  border-color:var(--navy);
  background:var(--navy);
  color:#ffffff;
}

.button.primary:hover{
  background:var(--navy-2);
}

.button.ghost:hover{
  background:var(--surface-alt);
}

.button.ghost.dark{
  border-color:rgba(255,255,255,.34);
  background:transparent;
  color:#ffffff;
}

.price-note{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:6px 10px;
  margin:14px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
  font-weight:700;
}

.price-note strong{
  color:var(--navy);
  font-size:18px;
}

.mini-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.mini-points span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 11px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#ffffff;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.hero-visual,
.hero-card{
  display:none;
}

.stats-strip{
  padding:22px 0;
  background:#ffffff;
  border-bottom:1px solid var(--line);
}

.stats-grid,
.steps,
.benefit-grid,
.trust-grid,
.topic-link-grid{
  display:grid;
  gap:14px;
}

.stats-grid{
  grid-template-columns:repeat(3,1fr);
}

.steps{
  grid-template-columns:repeat(3,1fr);
}

.benefit-grid{
  grid-template-columns:repeat(3,1fr);
}

.visual-benefit-list{
  max-width:940px;
  grid-template-columns:1fr;
  gap:0;
  margin:0 auto;
}

.visual-benefit-list .benefit-card{
  min-height:0;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 270px;
  grid-template-rows:auto 1fr;
  column-gap:32px;
  align-items:start;
  padding:30px 0;
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  background:transparent;
}

.visual-benefit-list .benefit-card h3,
.visual-benefit-list .benefit-card p{
  grid-column:1;
}

.visual-benefit-list .benefit-card-media{
  grid-column:2;
  grid-row:1 / span 2;
  align-self:center;
  justify-self:end;
  margin:0;
}

.visual-benefit-list .benefit-card-media img{
  display:block;
  width:auto;
  max-width:100%;
  height:210px;
  object-fit:contain;
  object-position:center;
  border-radius:8px;
}

.use-case-showcase{
  display:grid;
  max-width:940px;
  gap:0;
  margin:0 auto;
}

.use-case-row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 270px;
  align-items:start;
  gap:32px;
  padding:30px 0;
  border-bottom:1px solid var(--line);
  direction:ltr;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .use-case-copy,
html[dir="rtl"] .use-case-note{
  direction:rtl;
  text-align:right;
}

.use-case-row.reverse .use-case-copy{
  order:1;
}

.use-case-row.reverse .use-case-media{
  order:2;
}

.use-case-copy{
  min-width:0;
}

.use-case-copy h3,
.use-case-note h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:24px;
  line-height:1.22;
}

.use-case-copy p,
.use-case-note p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.62;
}

.use-case-media{
  margin:0;
  min-width:0;
  display:flex;
  justify-content:flex-end;
}

.use-case-media img{
  width:auto;
  max-width:100%;
  height:210px;
  object-fit:contain;
  object-position:center;
  border-radius:8px;
}

.use-case-media-pair{
  display:flex;
  justify-content:flex-end;
}

.use-case-media-pair img:nth-child(2){
  margin-top:0;
}

.use-case-support{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.use-case-note{
  padding:28px 0;
}

.trust-grid{
  grid-template-columns:repeat(4,1fr);
}

.topic-links-section{
  padding-top:0;
}

.topic-link-grid{
  grid-template-columns:repeat(5,1fr);
}

.topic-link{
  min-height:88px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#ffffff;
}

.topic-link:hover{
  border-color:#c5d3e3;
  background:#f8fafc;
}

.topic-link[aria-current="page"]{
  border-color:#9ca3af;
  background:var(--accent-soft);
}

.topic-link span{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.topic-link strong{
  color:var(--navy);
  font-size:15px;
  line-height:1.25;
}

.stats-grid article,
.step,
.benefit-card,
.trust-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--surface);
}

.stats-grid article{
  padding:18px;
}

.stats-grid strong{
  display:block;
  margin-bottom:6px;
  color:var(--navy);
  font-size:16px;
}

.stats-grid p,
.step p,
.benefit-card p,
.trust-card p,
.faq-list p,
.section-heading p,
.highlight-wrap p,
.cta-box p,
.footer-text{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.section{
  padding:70px 0;
}

.section-alt{
  background:var(--surface-alt);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-heading{
  max-width:760px;
  margin-bottom:26px;
}

.section-heading h2{
  margin:0 0 12px;
  color:var(--navy);
  font-size:36px;
  line-height:1.16;
  font-weight:700;
}

.section-heading p{
  font-size:17px;
}

.step,
.benefit-card,
.trust-card{
  padding:24px;
}

.step-number{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  border-radius:8px;
  background:var(--surface-alt);
  color:var(--navy);
  font-size:14px;
  font-weight:700;
}

.step h3,
.benefit-card h3,
.trust-card h3{
  margin:0 0 9px;
  color:var(--text);
  font-size:19px;
  line-height:1.25;
}

.highlight{
  padding-top:0;
}

.highlight-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#ffffff;
}

.highlight-wrap h2{
  margin:0 0 10px;
  color:var(--navy);
  font-size:30px;
  line-height:1.18;
}

.faq-list{
  display:grid;
  gap:10px;
  max-width:900px;
}

.faq-list details{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#ffffff;
  padding:18px;
}

.faq-list summary{
  cursor:pointer;
  list-style:none;
  color:var(--navy);
  font-size:16px;
  font-weight:700;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list p{
  margin-top:10px;
}

.cta-section{
  padding-top:0;
}

.cta-box{
  padding:32px;
  border-radius:var(--radius);
  background:var(--navy);
  color:#ffffff;
}

.cta-box .eyebrow{
  border-color:rgba(255,255,255,.2);
  background:rgba(255,255,255,.1);
  color:#ffffff;
}

.cta-box h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.16;
  font-weight:700;
}

.cta-box p{
  color:rgba(255,255,255,.82);
}

.site-footer{
  margin-top:20px;
  padding:30px 0 40px;
  border-top:1px solid var(--line);
  background:#ffffff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr auto;
  align-items:start;
  justify-content:space-between;
  gap:24px;
}

.footer-brand img{
  width:34px;
  height:34px;
}

.footer-text{
  max-width:440px;
  margin-top:10px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
}

.footer-title{
  display:block;
  margin-bottom:10px;
  color:var(--navy);
  font-size:14px;
}

.footer-links a{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  padding:0 12px;
  border:1px solid var(--line);
  border-radius:8px;
  color:var(--navy);
  font-size:14px;
  font-weight:700;
}

.footer-links a:hover{
  background:var(--surface-alt);
}

.footer-seo-links{
  display:grid;
  gap:11px;
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--line);
}

.footer-link-row{
  display:grid;
  grid-template-columns:150px 1fr;
  align-items:start;
  gap:12px;
}

.footer-link-row .footer-title{
  margin:0;
  color:var(--muted);
}

.footer-languages{
  margin-bottom:2px;
}

.footer-languages summary{
  width:max-content;
  max-width:100%;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:0 16px;
  background:#e5e7eb;
  color:var(--text);
  cursor:pointer;
  list-style:none;
  font-size:14px;
  font-weight:700;
}

.footer-languages summary::-webkit-details-marker{
  display:none;
}

.footer-languages-icon{
  width:0;
  height:0;
  border-top:7px solid currentColor;
  border-right:6px solid transparent;
  border-left:6px solid transparent;
  transition:transform .18s ease;
}

.footer-languages[open] .footer-languages-icon{
  transform:rotate(180deg);
}

.footer-language-panel{
  padding:16px 0 4px;
}

.footer-text-links{
  display:flex;
  flex-wrap:wrap;
  gap:4px 12px;
  line-height:1.7;
}

.footer-text-links a{
  color:var(--navy);
  font-size:13px;
  font-weight:700;
}

.footer-text-links a:hover,
.footer-text-links a[aria-current="page"]{
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-bottom{
  margin-top:20px;
  padding-top:16px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 980px){
  .hero{
    min-height:0;
    background:#ffffff;
  }

  .hero-title,
  .hero h1{
    font-size:42px;
  }

  .hero-copy{
    width:min(52%, 500px);
  }

  .hero-media{
    width:min(50vw, 560px);
    opacity:1;
  }

  .use-case-row{
    grid-template-columns:minmax(0, 1fr) 220px;
    gap:26px;
  }

  .visual-benefit-list .benefit-card{
    grid-template-columns:minmax(0, 1fr) 220px;
    column-gap:26px;
  }

  .visual-benefit-list .benefit-card-media img{
    max-width:100%;
    height:190px;
  }

  .stats-grid,
  .steps,
  .benefit-grid,
  .trust-grid,
  .topic-link-grid{
    grid-template-columns:1fr 1fr;
  }

  .highlight-wrap{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width: 760px){
  .container{
    width:min(100vw - 32px, 1160px);
  }

  .nav{
    min-height:72px;
  }

  .brand img{
    width:44px;
    height:44px;
  }

  .brand span{
    font-size:22px;
  }

  .nav-toggle{
    display:inline-grid;
    place-items:center;
    width:auto;
    min-width:76px;
    height:44px;
    padding:0 14px;
    font-size:16px;
    font-weight:700;
  }

  .site-nav{
    position:absolute;
    top:72px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:10px;
    border:1px solid var(--line);
    border-radius:8px;
    background:#ffffff;
  }

  .site-nav.open{
    display:flex;
  }

  .site-nav a{
    justify-content:flex-start;
    min-height:44px;
  }

  .hero{
    padding:42px 0 0;
    background:#ffffff;
  }

  .hero-grid{
    min-height:0;
    display:block;
  }

  .hero-copy{
    width:100%;
  }

  .hero-media{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    width:calc(100% + 32px);
    height:260px;
    margin:34px -16px 0;
  }

  .hero-media::before{
    display:none;
  }

  .hero-media img{
    opacity:1;
    object-position:center;
  }

  .hero-title,
  .hero h1{
    font-size:31px;
    line-height:1.16;
  }

  .lead{
    margin-top:18px;
    font-size:16px;
    line-height:1.58;
  }

  .hero-actions,
  .cta-actions{
    gap:10px;
    margin-top:24px;
  }

  .button{
    width:100%;
    min-height:46px;
    padding:0 14px;
    font-size:15px;
  }

  .mini-points{
    gap:8px;
    margin-top:20px;
  }

  .mini-points span{
    min-height:32px;
    font-size:13px;
  }

  .section{
    padding:52px 0;
  }

  .section-heading h2,
  .cta-box h2{
    font-size:28px;
  }

  .highlight-wrap h2{
    font-size:26px;
  }

  .stats-grid,
  .steps,
  .benefit-grid,
  .trust-grid,
  .topic-link-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .use-case-showcase{
    gap:0;
  }

  .visual-benefit-list .benefit-card{
    min-height:0;
    grid-template-columns:minmax(0, 1fr) 138px;
    column-gap:16px;
    padding:24px 0;
  }

  .visual-benefit-list .benefit-card h3{
    font-size:18px;
  }

  .visual-benefit-list .benefit-card p{
    font-size:14px;
    line-height:1.5;
  }

  .visual-benefit-list .benefit-card-media img{
    max-width:100%;
    height:145px;
    border-radius:6px;
  }

  .use-case-row{
    grid-template-columns:minmax(0, 1fr) 138px;
    gap:16px;
    padding:24px 0;
  }

  .use-case-row.reverse .use-case-copy,
  .use-case-row.reverse .use-case-media{
    order:initial;
  }

  .use-case-copy h3,
  .use-case-note h3{
    font-size:21px;
  }

  .use-case-copy p,
  .use-case-note p{
    font-size:15px;
    line-height:1.55;
  }

  .use-case-media img{
    height:145px;
    border-radius:6px;
  }

  .use-case-support{
    grid-template-columns:1fr;
    gap:0;
  }

  .use-case-note{
    padding:24px 0;
  }

  .use-case-note + .use-case-note{
    border-top:1px solid var(--line);
  }

  .footer-links{
    justify-content:flex-start;
  }

  .footer-link-row{
    grid-template-columns:1fr;
    gap:6px;
  }

  .footer-languages summary{
    width:100%;
  }
}

@media (max-width: 420px){
  .container{
    width:min(100vw - 28px, 1160px);
  }

  .brand{
    gap:10px;
  }

  .brand img{
    width:42px;
    height:42px;
  }

  .brand span{
    font-size:21px;
  }

  .nav-toggle{
    min-width:72px;
    font-size:15px;
  }

  .hero{
    padding-top:38px;
  }

  .hero-title,
  .hero h1{
    font-size:29px;
  }

  .lead{
    font-size:15.5px;
  }
}
