:root{
    --teal-950:#0e1f2b;
    --teal-900:#0e2530;
    --teal-800:#0e6b7a;
    --teal-700:#128a9e;
    --teal-600:#1698ab;
    --teal-500:#1cabc0;
    --teal-100:#e2f3f6;
    --teal-50:#eff9fb;
    --coral-500:#1698ab;
    --coral-100:#e2f3f6;
    --cream:#ffffff;
    --paper:#ffffff;
    --ink-900:#101a24;
    --ink-700:#516272;
    --ink-500:#6f818c;
    --ink-300:#a9b6b8;
    --line:#e7edf1;
    --radius-lg:28px;
    --radius-md:18px;
    --radius-sm:12px;
    --radius-btn:14px;
    --shadow-soft:0 25px 65px -25px rgba(14,31,43,0.28);
    --shadow-card:0 20px 45px -22px rgba(14,31,43,0.2);
    --font-display:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  html,body{max-width:100%;overflow-x:hidden;}
  body{
    margin:0;
    font-family:var(--font-body);
    color:var(--ink-900);
    background:var(--cream);
    -webkit-font-smoothing:antialiased;
    line-height:1.6;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  ul{list-style:none;margin:0;padding:0;}
  button{font-family:inherit;cursor:pointer;}
  section{position:relative;}

  .container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
  }

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:0.07em;
    text-transform:uppercase;
    color:var(--teal-700);
    margin:0 0 16px;
    background:#fff;
    border:1px solid var(--line);
    padding:8px 16px;
    border-radius:999px;
  }
  .eyebrow::before{
    content:"";
    width:6px;height:6px;
    border-radius:50%;
    background:var(--teal-600);
    flex-shrink:0;
    animation:pulseDot 2.2s ease-in-out infinite;
  }
  @keyframes pulseDot{
    0%{box-shadow:0 0 0 0 rgba(22,152,171,.55);}
    70%{box-shadow:0 0 0 7px rgba(22,152,171,0);}
    100%{box-shadow:0 0 0 0 rgba(22,152,171,0);}
  }
  .section-head .eyebrow{background:var(--teal-50); border-color:var(--teal-100);}
  .contact-section .eyebrow::before{background:#8fd7e3;}

  h1,h2,h3,h4{
    font-family:var(--font-display);
    font-weight:800;
    line-height:1.14;
    margin:0;
    color:var(--teal-950);
    letter-spacing:-0.02em;
  }
  h2{font-size:clamp(28px,3.6vw,42px);}
  h3{font-size:20px;}
  p{margin:0;}

  
  .reveal{
    opacity:0;
    transform:translateY(26px);
    transition:opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
  }
  .reveal.is-visible{opacity:1; transform:translateY(0);}
  .reveal-group > *,
.reveal-group > .elementor-widget > *,
.reveal-group > .elementor-widget > .elementor-widget-container > *{transition-delay:calc(var(--stagger, 0) * 90ms);}
  @media (prefers-reduced-motion: reduce){
    .reveal, .reveal.is-visible{opacity:1; transform:none; transition:none;}
    .eyebrow::before, .float-card.stat-card, .breathe{animation:none !important;}
  }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:15px 28px;
    border-radius:var(--radius-btn);
    font-weight:600;
    font-size:15px;
    border:1.5px solid transparent;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--teal-700);
    color:#fff;
    box-shadow:0 10px 24px -10px rgba(18,79,87,0.55);
  }
  .btn-primary:hover{background:var(--teal-800); transform:translateY(-2px);}
  .btn-outline{
    border-color:var(--teal-700);
    color:var(--teal-800);
    background:transparent;
  }
  .btn-outline:hover{background:var(--teal-700); color:#fff; transform:translateY(-2px);}
  .btn-light{
    background:#fff;
    color:var(--teal-800);
  }
  .btn-light:hover{background:var(--teal-100); transform:translateY(-2px);}
  .btn-sm{padding:11px 20px; font-size:14px;}

  
  .float-call{
    position:fixed;
    right:24px;
    bottom:10px;
    z-index:999;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:14px;
  }
  .float-call-main{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--teal-700);
    color:#fff;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 32px -10px rgba(14,31,43,0.45), 0 0 0 0 rgba(22,152,171,0.5);
    cursor:pointer;
    position:relative;
    transition:background .25s ease, transform .25s ease;
    animation:callPulse 2.4s ease-in-out infinite;
  }
  .float-call-main:hover{background:var(--teal-800); transform:translateY(-2px);}
  .float-call-main svg{width:26px;height:26px; transition:transform .3s ease;}
  .float-call.open .float-call-main{background:var(--teal-950); animation:none;}
  .float-call.open .float-call-main .icon-phone{display:none;}
  .float-call.open .float-call-main .icon-close{display:block;}
  .float-call-main .icon-close{display:none;}
  @keyframes callPulse{
    0%{box-shadow:0 14px 32px -10px rgba(14,31,43,0.45), 0 0 0 0 rgba(22,152,171,0.45);}
    70%{box-shadow:0 14px 32px -10px rgba(14,31,43,0.45), 0 0 0 14px rgba(22,152,171,0);}
    100%{box-shadow:0 14px 32px -10px rgba(14,31,43,0.45), 0 0 0 0 rgba(22,152,171,0);}
  }
  .float-call-options{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:12px;
  }
  .float-call-opt{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:var(--teal-950);
    border:1px solid var(--line);
    border-radius:999px;
    padding:10px 18px 10px 10px;
    box-shadow:var(--shadow-card);
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    opacity:0;
    transform:translateY(14px) scale(.9);
    pointer-events:none;
    transition:opacity .3s ease, transform .3s ease;
  }
  .float-call.open .float-call-opt{
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
  }
  .float-call.open .float-call-opt.opt-phone{transition-delay:.05s;}
  .float-call-opt .opt-icon{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:#fff;
  }
  .float-call-opt.opt-phone .opt-icon{background:var(--teal-700);}
  .float-call-opt .opt-icon svg{width:18px;height:18px;}
  .float-call-opt:hover{transform:translateY(-2px) scale(1.03) !important;}

  @media (max-width:600px){
    .float-call{right:16px; bottom:6px;}
    .float-call-main{width:54px; height:54px;}
  }

  
  .topbar{
    background:var(--teal-950);
    color:#cfe6e8;
    font-size:13px;
  }
  .topbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:9px;
    padding-bottom:9px;
    gap:16px;
    flex-wrap:wrap;
  }
  .topbar-info{display:flex; gap:22px; flex-wrap:wrap;}
  .topbar-info span{display:inline-flex; align-items:center; gap:6px;}
  .topbar-info svg{width:14px;height:14px; opacity:.8;}

  header.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(250,248,244,0.9);
    backdrop-filter:saturate(180%) blur(14px);
    border-bottom:1px solid var(--line);
  }
  .nav-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
    gap:24px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-family:var(--font-display);
    flex-shrink:0;
  }
  .brand-logo{height:40px;width:auto;display:block;}
  .footer-brand .brand{
    background:#f4f1ea;
    padding:12px 18px;
    border-radius:14px;
    display:inline-flex;
  }

  nav.main-nav{display:flex; align-items:center; gap:0; flex-shrink:0;}
  nav.main-nav > ul{display:flex; align-items:center; gap:0;}
  .nav-item{position:relative;}
  .nav-item > a{
    display:flex; align-items:center; gap:5px;
    padding:11px 13px;
    font-size:14px;
    font-weight:500;
    color:var(--ink-700);
    border-radius:999px;
    white-space:nowrap;
    transition:background .2s ease, color .2s ease;
  }
  .nav-item > a:hover{background:var(--teal-100); color:var(--teal-800);}
  .nav-item svg.chev{width:11px;height:11px; transition:transform .2s ease;}
  .nav-item:hover svg.chev{transform:rotate(180deg);}
  .nav-item.is-active > a{color:var(--teal-700); font-weight:700;}
  .nav-item.is-active > a::after{
    content:"";
    position:absolute;
    left:50%; bottom:2px;
    transform:translateX(-50%);
    width:5px;height:5px;border-radius:50%;
    background:var(--teal-600);
  }

  .dropdown{
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    min-width:240px;
    background:#fff;
    border-radius:16px;
    box-shadow:var(--shadow-soft);
    border:1px solid var(--line);
    padding:10px;
    opacity:0;
    visibility:hidden;
    transform:translateY(6px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav-item:hover .dropdown, .nav-item:focus-within .dropdown{
    opacity:1; visibility:visible; transform:translateY(0);
  }
  .dropdown a{
    display:block;
    padding:10px 14px;
    border-radius:10px;
    font-size:14px;
    color:var(--ink-700);
    font-weight:500;
  }
  .dropdown a:hover{background:var(--teal-50); color:var(--teal-800);}

  .header-cta{display:flex; align-items:center; gap:10px;}
  .menu-toggle{
    display:none;
    width:42px;height:42px;
    border-radius:10px;
    border:1px solid var(--line);
    background:#fff;
    align-items:center;justify-content:center;
  }
  .menu-toggle svg{width:20px;height:20px;}

  .lang-switcher{position:relative;}
  .lang-current{
    appearance:none;
    display:flex; align-items:center; gap:6px;
    padding:9px 12px;
    border-radius:999px;
    border:1px solid var(--line);
    background:#fff;
    font-size:13.5px;
    font-weight:600;
    color:var(--ink-700);
    cursor:pointer;
    transition:border-color .2s ease, background .2s ease;
  }
  .lang-current:hover{border-color:var(--teal-600); background:var(--teal-50);}
  .lang-current svg.chev{width:10px;height:10px; transition:transform .2s ease;}
  .lang-switcher.open .lang-current svg.chev{transform:rotate(180deg);}
  .lang-menu{
    position:absolute;
    top:calc(100% + 8px);
    right:0;
    min-width:170px;
    background:#fff;
    border-radius:14px;
    box-shadow:var(--shadow-soft);
    border:1px solid var(--line);
    padding:8px;
    opacity:0;
    visibility:hidden;
    transform:translateY(6px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index:10;
  }
  .lang-switcher.open .lang-menu{opacity:1; visibility:visible; transform:translateY(0);}
  .lang-option{
    appearance:none;
    display:flex; align-items:center; gap:10px;
    width:100%;
    padding:9px 12px;
    border-radius:10px;
    border:none;
    background:transparent;
    font-size:14px;
    font-weight:500;
    color:var(--ink-700);
    text-align:left;
    cursor:pointer;
  }
  .lang-option:hover{background:var(--teal-50); color:var(--teal-800);}
  .lang-option.is-active{background:var(--teal-100); color:var(--teal-800); font-weight:700;}
  .flag-icon{width:20px; height:14px; border-radius:3px; display:block; flex-shrink:0; box-shadow:0 0 0 1px rgba(14,31,43,0.08);}
  .lang-current .flag-icon{width:18px; height:13px;}
  @media (max-width:520px){
    .lang-current .lang-label{display:none;}
    .lang-current{padding:9px 10px;}
  }

  
  .hero{
    padding:64px 0 0;
    min-height:660px;
    display:flex;
    align-items:center;
    background-image:url('../img/Hero.png');
    background-size:cover;
    background-position:right top;
    background-repeat:no-repeat;
    background-color:#fbfdfe;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(92deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 30%, rgba(255,255,255,.55) 48%, rgba(255,255,255,0) 65%);
    z-index:0;
  }
  .hero > .container{position:relative; z-index:1; width:100%;}
  .hero .container{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:center;
  }
  .hero-copy p.lede{
    font-size:17px;
    color:var(--ink-700);
    margin-top:16px;
    max-width:56ch;
  }
  .hero-copy p.lede + p.lede{margin-top:10px;}
  .hero-copy strong{color:var(--teal-700); font-weight:700;}
  .hero-copy a.inline-link{color:var(--teal-600); font-weight:600; border-bottom:1px solid currentColor;}
  .hero h1{font-size:clamp(38px,5vw,58px); margin-top:14px; font-weight:900;}
  .hero h1 .accent{color:var(--teal-600);}
  .hero-subtitle{
    font-size:clamp(19px,2.1vw,25px);
    font-weight:700;
    color:var(--ink-700);
    margin-top:10px;
    letter-spacing:-0.01em;
  }
  .hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-top:32px;}
  .btn svg{width:18px;height:18px;}

  .hero-visual{position:relative; min-height:460px;}
  .float-card{
    position:absolute;
    z-index:3;
    background:#fff;
    border-radius:18px;
    box-shadow:var(--shadow-card);
    padding:16px 20px;
    display:flex;
    align-items:center;
    gap:4px;
    flex-direction:column;
  }
  .float-card.stat-card{
    right:6%; bottom:16%;
    animation:floatBob 4.5s ease-in-out infinite;
  }
  @keyframes floatBob{0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);}}
  .float-card strong{display:block; font-size:26px; color:var(--teal-700); font-weight:800; line-height:1;}
  .float-card span{font-size:12.5px; color:var(--ink-500); font-weight:600; text-align:center; margin-top:4px;}

  
  .feature-strip-wrap{padding:0 0 80px; position:relative; z-index:5;}
  .feature-strip-wrap .container{max-width:1320px;}
  .feature-strip{
    background:#fff;
    border-radius:24px;
    box-shadow:var(--shadow-card);
    padding:32px 30px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    position:relative;
    z-index:5;
    margin-top:-64px;
    overflow:hidden;
  }
  .feature-item{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:14px;
    padding:0 22px;
    border-left:1px solid var(--line);
  }
  .feature-item:nth-child(1){transition-delay:0ms;}
  .feature-item:nth-child(2){transition-delay:100ms;}
  .feature-item:nth-child(3){transition-delay:200ms;}
  .feature-item:nth-child(4){transition-delay:300ms;}
  .feature-item:first-child{padding-left:0; border-left:none;}
  .feature-item:last-child{padding-right:0;}
  .feature-item .icon-circle{
    width:50px;height:50px;border-radius:50%;
    background:#eef1f5; color:#7c94a1;
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
    transition:transform .3s ease, background .3s ease, color .3s ease;
  }
  .feature-item:hover .icon-circle{transform:scale(1.1); background:var(--teal-100); color:var(--teal-700);}
  .feature-item .icon-circle svg{width:21px;height:21px;}
  .feature-item h4{font-size:14.5px; color:var(--teal-950); white-space:nowrap;}
  .feature-item p{font-size:12.5px; line-height:1.45; color:var(--ink-700); margin-top:3px;}

  
  .section-head{
    max-width:680px;
    margin-bottom:48px;
  }
  .section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
  .section-head p.desc{margin-top:16px; color:var(--ink-700); font-size:16px;}

  section.pad{padding:100px 0;}

  
  .tab-panels{position:relative; display:flex; flex-direction:column; gap:64px;}
  .tab-panel{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:64px;
    align-items:center;
    padding-bottom:64px;
    border-bottom:1px solid var(--line);
  }
  .tab-panel:last-child{padding-bottom:0; border-bottom:none;}
  .tab-panel-reverse{grid-template-columns:1.1fr 0.9fr;}
  .tab-panel-reverse .tab-visual{order:2; margin-left:auto;}
  .tab-panel-reverse .tab-content{order:1;}
  @keyframes fade{from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);}}

  
  .tab-visual{position:relative; z-index:1; max-width:420px;}
  .tab-visual::before{
    content:'';
    position:absolute;
    top:-26px; left:-26px; right:26px; bottom:26px;
    background:linear-gradient(155deg, var(--teal-100), var(--teal-50));
    border-radius:36px;
    z-index:-1;
  }
  .visual-frame{
    border-radius:var(--radius-lg);
    overflow:hidden;
    aspect-ratio:4/5;
    box-shadow:var(--shadow-soft);
  }
  .visual-frame img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
  }
  .tab-visual:hover .visual-frame img{transform:scale(1.04);}
  .visual-badge{
    position:absolute;
    left:24px; bottom:-26px;
    display:flex; align-items:center; gap:14px;
    background:#fff;
    border-radius:18px;
    padding:16px 20px;
    box-shadow:var(--shadow-card);
    max-width:82%;
  }
  .visual-badge .badge-icon{
    width:44px; height:44px; flex-shrink:0;
    border-radius:13px;
    background:var(--teal-100);
    display:flex; align-items:center; justify-content:center;
  }
  .visual-badge .badge-icon svg{width:22px; height:22px; color:var(--teal-700);}
  .visual-badge .badge-text{font-size:13.5px; font-weight:700; color:var(--teal-900); line-height:1.35;}

  
  .tab-index{
    display:flex; align-items:center; gap:12px;
    margin-bottom:18px;
    font-size:13px; font-weight:700;
    letter-spacing:.08em; text-transform:uppercase;
    color:var(--teal-700);
  }
  .tab-index::before{content:''; width:34px; height:2px; background:var(--teal-500);}
  .tab-panel h3{font-size:26px; margin-bottom:16px;}
  .tab-panel p{color:var(--ink-700); font-size:16px; margin-bottom:18px;}
  .tab-panel p:last-of-type{margin-bottom:28px;}

  
  .why-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:64px;
    align-items:center;
  }
  .why-visual{position:relative; z-index:1; max-width:380px;}
  .why-visual::before{
    content:'';
    position:absolute;
    top:-24px; left:-24px; right:24px; bottom:24px;
    background:linear-gradient(155deg, var(--teal-100), var(--teal-50));
    border-radius:32px;
    z-index:-1;
  }
  .why-frame{
    border-radius:var(--radius-lg);
    overflow:hidden;
    aspect-ratio:4/5;
    box-shadow:var(--shadow-soft);
  }
  .why-frame img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease;}
  .why-visual:hover .why-frame img{transform:scale(1.04);}
  .why-badge{
    position:absolute;
    left:24px; bottom:-26px;
    display:flex; align-items:center; gap:14px;
    background:#fff;
    border-radius:18px;
    padding:16px 20px;
    box-shadow:var(--shadow-card);
    max-width:82%;
  }
  .why-badge .badge-icon{
    width:44px; height:44px; flex-shrink:0;
    border-radius:13px;
    background:var(--teal-100);
    display:flex; align-items:center; justify-content:center;
  }
  .why-badge .badge-icon svg{width:22px; height:22px; color:var(--teal-700);}
  .why-badge .badge-text{font-size:13.5px; font-weight:700; color:var(--teal-900); line-height:1.35;}

  .why-content p{color:var(--ink-700); font-size:16.5px; margin-bottom:16px;}
  .why-content p strong{color:var(--teal-900);}
  .why-divider{width:56px; height:3px; background:var(--teal-500); border-radius:2px; margin:32px 0 28px;}
  .why-content h3{font-size:22px; margin-bottom:14px; color:var(--ink-900);}
  .check-list{margin-top:24px; display:flex; flex-direction:column; gap:14px;}
  .check-list li{display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink-700); font-weight:500;}
  .check-list svg{width:20px;height:20px; color:var(--teal-600); flex-shrink:0; margin-top:1px;}

  
  .timeline{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    margin-top:64px;
    position:relative;
  }
  .timeline::before{
    content:"";
    position:absolute;
    top:26px;
    left:calc(100%/6);
    right:calc(100%/6);
    height:1px;
    background:var(--line);
    z-index:0;
  }
  .timeline-step{
    background:transparent;
    padding:0 28px;
    position:relative;
    transition:opacity .6s ease, transform .5s ease;
  }
  .timeline-step:first-child{padding-left:0;}
  .timeline-step:last-child{padding-right:0;}
  .timeline-step:nth-child(1){transition-delay:0ms,0ms;}
  .timeline-step:nth-child(2){transition-delay:120ms,0ms;}
  .timeline-step:nth-child(3){transition-delay:240ms,0ms;}
  .timeline-step:hover .step-num{background:var(--teal-700); border-color:var(--teal-700); color:#fff; transform:scale(1.06);}
  .step-num{
    width:52px;height:52px;
    border-radius:50%;
    background:#fff;
    border:1.5px solid var(--teal-700);
    color:var(--teal-800);
    display:flex;align-items:center;justify-content:center;
    font-family:var(--font-display);
    font-size:18px;font-weight:700;
    margin-bottom:24px;
    position:relative;
    z-index:1;
    transition:transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  }
  .timeline-step h4{font-size:18px; margin-bottom:10px; color:var(--teal-950);}
  .timeline-step .step-tag{font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--teal-600); font-weight:700; display:block; margin-bottom:6px;}
  .timeline-step p{font-size:14.5px; color:var(--ink-700); margin-top:0;}
  .timeline-connector{
    display:none;
  }
  @media (max-width:860px){
    .timeline::before{display:none;}
    .timeline-step{padding:0 !important;}
  }

  
  .postop-intro{max-width:420px; margin-bottom:0; color:var(--ink-700); font-size:16.5px;}
  .postop-wrap{
    display:grid;
    grid-template-columns:0.82fr 1.18fr;
    gap:72px;
    align-items:start;
  }
  .postop-aside{position:sticky; top:110px;}
  .postop-list{display:flex; flex-direction:column;}
  .postop-item{
    display:grid;
    grid-template-columns:56px 1fr;
    gap:24px;
    padding:34px 0;
    border-bottom:1px solid var(--line);
    transition:opacity .6s ease, transform .5s ease;
  }
  .postop-item:first-child{padding-top:0;}
  .postop-item:last-child{border-bottom:none; padding-bottom:0;}
  .postop-item:nth-child(1){transition-delay:0ms,0ms;}
  .postop-item:nth-child(2){transition-delay:130ms,0ms;}
  .postop-item-icon{
    width:56px;height:56px;
    border-radius:16px;
    background:var(--teal-50);
    border:1px solid var(--teal-100);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
    transition:background .3s ease, border-color .3s ease, transform .3s ease;
  }
  .postop-item-icon svg{width:23px;height:23px;color:var(--teal-700); transition:color .3s ease;}
  .postop-item:hover .postop-item-icon{background:var(--teal-700); border-color:var(--teal-700); transform:translateY(-3px);}
  .postop-item:hover .postop-item-icon svg{color:#fff;}
  .postop-item h4{font-size:19px; margin-bottom:10px; color:var(--teal-950);}
  .postop-item p{font-size:15px; line-height:1.75; color:var(--ink-700);}
  .postop-item p + p{margin-top:10px;}

  .author-byline{
    display:flex; align-items:center; gap:14px;
    margin-top:40px;
    padding-top:32px;
    border-top:1px solid var(--line);
  }
  .author-byline img{width:52px;height:52px;border-radius:50%; object-fit:cover;}
  .author-byline strong{display:block; font-size:15px; color:var(--teal-950);}
  .author-byline span{font-size:13px; color:var(--ink-500);}
  @media (max-width:960px){
    .postop-wrap{grid-template-columns:1fr; gap:40px;}
    .postop-aside{position:static;}
  }

  
  .testi-rating-bar{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin:28px auto 48px;
    padding:14px 26px;
    width:fit-content;
    background:var(--teal-50);
    border:1px solid var(--teal-100);
    border-radius:999px;
  }
  .testi-rating-bar .num{font-family:var(--font-display); font-size:20px; font-weight:800; color:var(--teal-950);}
  .testi-rating-bar .testi-stars{display:flex; gap:2px;}
  .testi-rating-bar .testi-stars svg{width:15px;height:15px;}
  .testi-rating-bar .sep{width:1px; height:16px; background:var(--teal-100);}
  .testi-rating-bar .txt{font-size:13.5px; font-weight:600; color:var(--ink-700);}

  .testi-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
  }
  .testi-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius-md);
    padding:30px 26px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:opacity .6s ease, transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  }
  .testi-card:nth-child(1){transition-delay:0ms,0ms,0ms,0ms;}
  .testi-card:nth-child(2){transition-delay:100ms,0ms,0ms,0ms;}
  .testi-card:nth-child(3){transition-delay:200ms,0ms,0ms,0ms;}
  .testi-card:nth-child(4){transition-delay:300ms,0ms,0ms,0ms;}
  .testi-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-soft); border-color:transparent;}
  .testi-card .quote-mark{
    width:38px; height:38px;
    border-radius:11px;
    background:var(--teal-50);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .testi-card .quote-mark svg{width:17px; height:17px; color:var(--teal-600);}
  .testi-card .testi-stars{display:flex; gap:3px;}
  .testi-card .testi-stars svg{width:13px;height:13px; color:#f0b13e;}
  .testi-card p.body{font-size:14.5px; line-height:1.7; color:var(--ink-700); flex-grow:1;}
  .testi-foot{display:flex; align-items:center; gap:12px; margin-top:2px; padding-top:18px; border-top:1px solid var(--line);}
  .testi-avatar{
    width:38px; height:38px;
    border-radius:50%;
    background:var(--teal-700);
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:12.5px; font-weight:700;
    flex-shrink:0;
  }
  .testi-name{font-weight:700; font-size:14px; color:var(--teal-950); display:block;}
  .testi-role{font-size:12px; color:var(--ink-500);}

  @media (max-width:960px){
    .testi-grid{grid-template-columns:repeat(2,1fr);}
  }
  @media (max-width:560px){
    .testi-grid{grid-template-columns:1fr;}
    .testi-rating-bar{gap:10px; padding:12px 20px;}
  }

  
  .contact-section{
    background:var(--teal-950);
    color:#e7f2f2;
    border-radius:40px;
    padding:72px;
    margin:0 24px;
    max-width:1200px;
    margin-inline:auto;
    position:relative;
    overflow:hidden;
  }
  .contact-pulse{
    position:absolute;
    right:0; bottom:0;
    width:56%;
    max-width:560px;
    opacity:.16;
    pointer-events:none;
    z-index:0;
  }
  .contact-pulse path{
    stroke-dasharray:900;
    stroke-dashoffset:900;
    transition:stroke-dashoffset 2.2s cubic-bezier(.16,.8,.3,1);
  }
  .contact-section.is-visible .contact-pulse path{stroke-dashoffset:0;}
  .contact-grid{position:relative; z-index:1;}
  .contact-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:64px;
  }
  .contact-section .eyebrow{color:#8fd7e3; background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18);}
  .contact-section h2{color:#fff;}
  .contact-section > .contact-grid > div > p.desc{color:#b9d6d8; margin-top:16px; font-size:15.5px; max-width:44ch;}
  .contact-list{margin-top:32px; display:flex; flex-direction:column; gap:20px;}
  .contact-list li{display:flex; gap:14px; align-items:flex-start;}
  .contact-list .icon-badge{
    width:42px;height:42px;border-radius:12px;
    background:rgba(255,255,255,.1);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .contact-list .icon-badge svg{width:19px;height:19px; color:var(--coral-500);}
  .contact-list a, .contact-list span.txt{font-size:15px; font-weight:600; color:#fff;}
  .contact-list a{display:inline-block; padding:8px 0; margin:-8px 0;}
  .contact-list .sub{display:block; font-size:12.5px; font-weight:400; color:#9fc3c6; margin-bottom:2px;}

  .contact-form{
    background:#fff;
    border-radius:28px;
    padding:36px;
    display:grid;
    gap:16px;
  }
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
  .field{
    display:flex;
    flex-direction:column;
    gap:6px;
  }
  .field label{font-size:12.5px; font-weight:600; color:var(--ink-500); text-transform:uppercase; letter-spacing:.03em;}
  .field input, .field textarea{
    border:1.5px solid var(--line);
    border-radius:12px;
    padding:13px 16px;
    font-family:inherit;
    font-size:14.5px;
    color:var(--ink-900);
    background:var(--cream);
    transition:border-color .2s ease, background .2s ease;
  }
  .field input:focus, .field textarea:focus{
    outline:none;
    border-color:var(--teal-600);
    background:#fff;
  }
  .field textarea{resize:vertical; min-height:110px;}
  .contact-form .btn{width:100%; margin-top:4px;}

  
  footer{
    margin-top:110px;
    background:var(--ink-900);
    color:#b7c4c6;
    padding:76px 0 0;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 0.8fr 0.8fr 1fr;
    gap:40px;
    padding-bottom:56px;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .footer-brand p{margin-top:18px; font-size:14px; color:#93a9ab; max-width:32ch;}
  .footer-social{display:flex; gap:10px; margin-top:22px;}
  .footer-social a{
    width:38px;height:38px;border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;align-items:center;justify-content:center;
    transition:background .2s ease;
  }
  .footer-social a:hover{background:var(--teal-600);}
  .footer-social svg{width:16px;height:16px;color:#fff;}
  .footer-col h5{
    color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.06em;
    margin-bottom:20px; font-weight:700; font-family:var(--font-body);
  }
  .footer-col ul{display:flex; flex-direction:column; gap:12px;}
  .footer-col a{font-size:14.5px; color:#b7c4c6; transition:color .2s ease; display:inline-block; padding:6px 0; margin:-6px 0;}
  .footer-col a:hover{color:#fff;}
  .footer-col li{display:flex; gap:10px; align-items:flex-start; font-size:14.5px;}
  .footer-col li svg{width:16px;height:16px; margin-top:3px; color:var(--teal-500); flex-shrink:0;}
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding:26px 0; font-size:13px; color:#7e9294; flex-wrap:wrap; gap:10px;
  }
  .footer-bottom a{color:#7e9294; text-decoration:underline; text-underline-offset:2px; display:inline-block; padding:8px 0; margin:-8px 0;}

  
  @media (max-width:1080px){
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:1180px){
    nav.main-nav{display:none;}
    .menu-toggle{display:flex;}
  }
  @media (max-width:960px){
    .hero{min-height:0; background-image:none; background-color:#fff;}
    .hero::before{display:none;}
    .hero .container{grid-template-columns:1fr;}
    .hero-visual{
      max-width:100%; height:300px; min-height:0; margin:28px auto 0;
      border-radius:24px; overflow:hidden;
      background-image:url('../img/Hero.png');
      background-size:cover;
      background-position:76% top;
      box-shadow:var(--shadow-card);
    }
    .hero-actions{justify-content:flex-start;}
    .feature-strip{grid-template-columns:repeat(2,1fr); row-gap:28px; margin-top:40px;}
    .feature-item{border-left:none; padding:0 16px;}
    .feature-item:nth-child(odd){padding-left:0;}
    .feature-item h4{white-space:normal;}
    .why-grid{grid-template-columns:1fr; gap:48px;}
    .why-visual{max-width:280px; margin:0 auto 40px;}
    .tab-panel{grid-template-columns:1fr; gap:0;}
    .tab-panel-reverse{grid-template-columns:1fr;}
    .tab-visual{max-width:300px; margin:0 auto;}
    .tab-panel-reverse .tab-visual{order:2; margin:0 auto;}
    .tab-panel-reverse .tab-content{order:1;}
    .tab-visual::before{top:-16px; left:-16px; right:16px; bottom:16px; border-radius:28px;}
    .visual-badge{left:50%; transform:translateX(-50%); bottom:-20px; max-width:92%; text-align:center; justify-content:center;}
    .tab-content{margin-top:48px; text-align:center;}
    .tab-content .tab-index{justify-content:center;}
    .tab-content .tab-index::before{display:none;}
    .timeline{grid-template-columns:1fr; gap:36px;}
    .testi-grid{grid-template-columns:repeat(2,1fr);}
    .contact-grid{grid-template-columns:1fr; gap:40px;}
    .contact-section{padding:48px 28px; border-radius:28px;}
    .footer-grid{padding-bottom:40px;}
  }
  @media (max-width:520px){
    .header-cta .btn-primary{display:none;}
  }
  @media (max-width:640px){
    section.pad{padding:64px 0;}
    .hero{padding:32px 0 40px;}
    .hero-visual{height:240px;}
    .feature-strip{grid-template-columns:1fr; padding:28px; row-gap:22px; margin-top:-40px;}
    .feature-item{border-left:none; padding:0;}
    .testi-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr; gap:32px;}
    .form-row{grid-template-columns:1fr;}
    .topbar .container{justify-content:center; text-align:center;}
    .float-card.stat-card{right:2%;}
  }

  
  .mobile-nav{
    position:fixed; inset:0; z-index:200;
    background:rgba(14,31,43,.65);
    backdrop-filter:blur(4px);
    opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s ease;
  }
  .mobile-nav.open{opacity:1; visibility:visible;}
  .mobile-nav-panel{
    position:absolute; top:0; right:0; height:100%;
    width:min(340px,86vw);
    background:#fff;
    padding:0;
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.4,0,.2,1);
    display:flex; flex-direction:column; gap:0;
    overflow-y:auto;
    box-shadow:-6px 0 24px rgba(14,31,43,.16);
  }
  .mobile-nav.open .mobile-nav-panel{transform:translateX(0);}
  .mobile-nav-head{display:flex; justify-content:space-between; align-items:center; padding:18px 20px; border-bottom:1px solid var(--line);}
  .mobile-nav-head strong{font-size:16px; font-weight:800; color:var(--teal-950);}
  .mobile-nav a{
    display:block; padding:14px 20px; font-weight:600; font-size:15px;
    color:var(--ink-900); border-bottom:1px solid var(--line);
    transition:color .2s ease, background .2s ease;
  }
  .mobile-nav a:not(.btn):hover{color:var(--teal-700); background:var(--teal-50);}
  .mobile-nav .btn.btn-primary{margin:16px 20px 24px !important; display:flex; justify-content:center;}
  .mobile-nav .sub-link{padding-left:34px; font-weight:500; font-size:14px; color:var(--ink-700);}
  .mobile-nav .group-label{padding:12px 20px 4px; font-size:11.5px; text-transform:uppercase; letter-spacing:.07em; color:var(--ink-500); font-weight:700;}

  
  .page-hero{
    padding:96px 0 104px;
    min-height:520px;
    display:flex;
    align-items:center;
    background-image:url('../img/hero-4.png');
    background-size:auto 100%;
    background-position:right center;
    background-repeat:no-repeat;
    background-color:#eef0f4;
    border-bottom:1px solid var(--line);
    position:relative;
    overflow:hidden;
  }
  .page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(92deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.7) 36%, rgba(255,255,255,0) 62%);
    z-index:0;
  }
  .page-hero > .container{position:relative; z-index:1; width:100%;}
  .page-hero-copy{max-width:640px;}
  .crumbs{display:flex; align-items:center; gap:10px; font-size:13px; font-weight:600; color:var(--ink-500); margin-bottom:22px;}
  .crumbs a{color:var(--teal-700); display:inline-block; padding:8px 0; margin:-8px 0;}
  .crumbs a:hover{text-decoration:underline;}
  .crumbs .sep{color:var(--ink-300);}
  .page-hero h1{font-size:clamp(34px,4.4vw,52px); font-weight:900; line-height:1.08; letter-spacing:-0.02em; color:var(--ink-900);}
  .page-hero h1 .accent{color:var(--teal-600);}
  .page-hero .lede{font-size:17px; color:var(--ink-700); margin-top:18px; max-width:54ch;}
  @media (max-width:960px){
    .page-hero{padding:64px 0 72px; min-height:0;}
    .page-hero::before{background:rgba(255,255,255,.82);}
  }
  .timeline.cols-2{grid-template-columns:repeat(2,1fr);}
  .timeline.cols-2::before{left:calc(100%/4); right:calc(100%/4);}
  @media (max-width:860px){
    .timeline.cols-2{grid-template-columns:1fr; gap:44px;}
  }
  .prose-block{max-width:860px;}
  .prose-block p{color:var(--ink-700); font-size:16.5px; margin-bottom:16px;}
  .prose-block p strong{color:var(--teal-900);}
  .prose-block h3{font-size:22px; margin:0 0 14px; color:var(--ink-900);}

  
  .surgeon-section{
    background:radial-gradient(120% 140% at 100% 0%, var(--teal-800) 0%, var(--teal-950) 58%);
    color:#e7f2f2;
  }
  .surgeon-grid{display:grid; grid-template-columns:0.72fr 1.28fr; gap:64px; align-items:center;}
  .surgeon-photo{border-radius:26px; overflow:hidden; box-shadow:var(--shadow-card); max-width:400px;}
  .surgeon-photo img{width:100%; height:auto; display:block;}
  .surgeon-section .eyebrow{background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.16); color:#8fd3dd;}
  .surgeon-section h2{font-size:clamp(26px,3vw,38px); font-weight:800; line-height:1.15; color:#fff; margin-top:14px;}
  .surgeon-lede{color:#eaf5f5; font-size:16.5px; margin-top:16px; line-height:1.75;}
  .surgeon-chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:26px;}
  .surgeon-chips span{
    display:inline-flex; align-items:center; gap:8px;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.14);
    font-size:13px; font-weight:600; color:#dff0f4;
  }
  .surgeon-chips svg{width:14px; height:14px; color:#7fd0dc;}
  @media (max-width:960px){
    .surgeon-grid{grid-template-columns:1fr; gap:36px;}
    .surgeon-photo{max-width:420px;}
  }

  
  .results-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:72px; align-items:center;}
  .results-head .desc{margin-top:16px; color:var(--ink-700); font-size:16px;}
  .results-cards{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
  .result-card{
    position:relative;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:28px;
    overflow:hidden;
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .result-card:hover{transform:translateY(-5px); box-shadow:var(--shadow-card); border-color:var(--teal-100);}
  .result-num{
    position:absolute;
    top:10px; right:18px;
    font-size:46px;
    font-weight:900;
    color:var(--teal-100);
    line-height:1;
    letter-spacing:-0.03em;
  }
  .result-icon{
    width:52px; height:52px;
    border-radius:15px;
    background:var(--teal-50);
    border:1px solid var(--teal-100);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:18px;
  }
  .result-icon svg{width:24px; height:24px; color:var(--teal-700);}
  .result-card h4{font-size:17px; color:var(--teal-950); margin-bottom:8px;}
  .result-card p{font-size:14px; color:var(--ink-700); line-height:1.65;}
  @media (max-width:960px){
    .results-grid{grid-template-columns:1fr; gap:40px;}
  }
  @media (max-width:620px){
    .results-cards{grid-template-columns:1fr;}
  }

  
  section.surgeon-section{padding-bottom:180px;}
  .expertise-cards-wrap{padding:0;}
  .expertise-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
    margin-top:-90px;
    position:relative;
    z-index:2;
  }
  .expertise-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    padding:36px;
    box-shadow:var(--shadow-card);
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .expertise-card:hover{transform:translateY(-5px); box-shadow:var(--shadow-soft);}
  .expertise-card .card-icon{
    width:56px; height:56px;
    border-radius:16px;
    background:var(--teal-50);
    border:1px solid var(--teal-100);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:22px;
  }
  .expertise-card .card-icon svg{width:25px; height:25px; color:var(--teal-700);}
  .expertise-card h3{font-size:19px; color:var(--teal-950); margin-bottom:12px;}
  .expertise-card p{font-size:15px; line-height:1.75; color:var(--ink-700);}
  .expertise-card p + p{margin-top:10px;}
  .expertise-card p strong{color:var(--teal-700);}
  @media (max-width:960px){
    section.surgeon-section{padding-bottom:140px;}
    .expertise-cards{grid-template-columns:1fr; margin-top:-70px;}
    .expertise-card{padding:28px;}
  }

  
  .prose-wrap{max-width:860px;}
  .prose-wrap p{font-size:16px; line-height:1.85; color:var(--ink-700); margin:0 0 18px;}
  .prose-wrap p strong{color:var(--teal-700);}
  .prose-wrap p.list-intro{margin-bottom:14px; font-weight:600; color:var(--teal-950);}
  .prose-wrap .check-list{margin:0 0 22px;}

  .jump-nav{padding-bottom:20px;}
  .jump-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
  .jump-card{display:flex; flex-direction:column; gap:10px; background:#fff; border:1px solid var(--line);
    border-radius:20px; padding:24px 22px; text-decoration:none; box-shadow:var(--shadow-card);
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;}
  .jump-card:hover{transform:translateY(-5px); box-shadow:var(--shadow-soft); border-color:var(--teal-100);}
  .jump-card .jump-num{font-size:12px; font-weight:800; letter-spacing:.14em; color:var(--teal-600);}
  .jump-card .jump-label{font-size:16.5px; font-weight:700; color:var(--teal-950); line-height:1.4;}
  .jump-card .jump-go{margin-top:auto; padding-top:10px; font-size:13px; font-weight:600; color:var(--teal-700);
    display:inline-flex; align-items:center; gap:7px;}
  .jump-card .jump-go svg{width:15px; height:15px; transition:transform .3s ease;}
  .jump-card:hover .jump-go svg{transform:translateX(4px);}

  .topic-list{max-width:1000px; margin:0 auto;}
  .topic-block{background:#fff; border:1px solid var(--line); border-radius:24px; padding:38px;
    box-shadow:var(--shadow-card); scroll-margin-top:130px;}
  .topic-block + .topic-block{margin-top:24px;}
  .topic-head{display:flex; align-items:center; gap:16px; margin-bottom:20px;}
  .topic-num{flex:none; width:46px; height:46px; border-radius:14px; background:var(--teal-50);
    border:1px solid var(--teal-100); color:var(--teal-700); font-weight:800; font-size:15px;
    display:flex; align-items:center; justify-content:center;}
  .topic-head h3{font-size:22px; color:var(--teal-950); margin:0; line-height:1.35;}
  .topic-block p{font-size:15.5px; line-height:1.8; color:var(--ink-700); margin:0 0 14px;}
  .topic-block p strong{color:var(--teal-700);}
  .topic-block p.list-intro{font-weight:600; color:var(--teal-950); margin-bottom:12px;}
  .topic-block .check-list{margin-bottom:16px;}
  .topic-block .btn{margin-top:8px;}
  .topic-block .btn svg{width:15px; height:15px;}

  .faq-list{max-width:900px; margin:0 auto;}
  .faq-item{background:#fff; border:1px solid var(--line); border-radius:18px; margin-bottom:14px;}
  .faq-item summary{list-style:none; cursor:pointer; padding:22px 26px; font-size:16.5px; font-weight:700;
    color:var(--teal-950); display:flex; align-items:center; justify-content:space-between; gap:18px;
    line-height:1.5;}
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary::after{content:""; flex:none; width:11px; height:11px; margin-top:-5px;
    border-right:2.5px solid var(--teal-600); border-bottom:2.5px solid var(--teal-600);
    transform:rotate(45deg); transition:transform .3s ease;}
  .faq-item[open] summary::after{transform:rotate(-135deg); margin-top:4px;}
  .faq-item summary:hover{color:var(--teal-700);}
  .faq-item .faq-answer{padding:0 26px 24px; font-size:15.5px; line-height:1.8; color:var(--ink-700);}

  .final-cta{max-width:900px; margin:0 auto; text-align:center;}
  .final-cta h2{margin-bottom:16px;}
  .final-cta p{font-size:16.5px; line-height:1.8; color:var(--ink-700); margin:0 auto 30px; max-width:760px;}
  .final-cta .hero-actions{justify-content:center;}

  @media (max-width:1080px){ .jump-grid{grid-template-columns:repeat(3,1fr);} }
  @media (max-width:960px){
    .jump-grid{grid-template-columns:repeat(2,1fr);}
    .topic-block{padding:28px 22px; border-radius:20px;}
    .topic-head h3{font-size:19px;}
    .faq-item summary{padding:18px 20px; font-size:15.5px;}
    .faq-item .faq-answer{padding:0 20px 20px; font-size:15px;}
    .prose-wrap p{font-size:15.5px;}
  }
  @media (max-width:520px){
    .jump-grid{grid-template-columns:1fr;}
    .topic-head{gap:12px;}
    .topic-num{width:38px; height:38px; font-size:13px;}
  }


  
  [dir="rtl"] body{
    font-family:"Cairo","Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  }
  [dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3,[dir="rtl"] h4,
  [dir="rtl"] .btn,[dir="rtl"] .eyebrow,[dir="rtl"] .lang-label,
  [dir="rtl"] input,[dir="rtl"] textarea,[dir="rtl"] select,[dir="rtl"] button{
    font-family:"Cairo","Inter",sans-serif;
  }
  
  [dir="rtl"] p,[dir="rtl"] li{line-height:1.9;}
  [dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3{letter-spacing:0;}

  
  [dir="rtl"] .hero .container{direction:ltr;}
  [dir="rtl"] .hero-copy{direction:rtl; text-align:right;}
  [dir="rtl"] .hero-actions{justify-content:flex-start;}

  
  [dir="rtl"] .lang-menu{right:auto; left:0;}
  [dir="rtl"] .dropdown{left:auto; right:0;}
  [dir="rtl"] .float-call{right:auto; left:24px;}
  [dir="rtl"] .float-card.stat-card{right:auto; left:6%;}
  [dir="rtl"] .testi-card .quote-mark{right:auto; left:20px;}
  [dir="rtl"] .postop-item::before{left:auto; right:0;}
  [dir="rtl"] .postop-item::after{right:auto; left:26px;}
  [dir="rtl"] .contact-pulse{right:auto; left:0;}

  
  [dir="rtl"] .mobile-nav-panel{right:auto; left:0;}
  [dir="rtl"] .mobile-nav .sub-link{padding-left:0; padding-right:34px;}

  
  [dir="rtl"] .feature-item{border-left:none; border-right:1px solid var(--line);}
  [dir="rtl"] .feature-item:first-child{border-right:none; padding-right:0; padding-left:22px;}
  [dir="rtl"] .feature-item:last-child{padding-left:0; padding-right:22px;}

  
  [dir="rtl"] .check-list li svg,[dir="rtl"] .surgeon-chips span svg{margin-right:0; margin-left:10px;}
  [dir="rtl"] .tab-panel-reverse .tab-visual{margin-left:0; margin-right:auto;}

  
  [dir="rtl"] input,[dir="rtl"] textarea,[dir="rtl"] select{text-align:right; direction:rtl;}
  [dir="rtl"] input[type="tel"],[dir="rtl"] input[type="email"]{direction:ltr; text-align:right;}

  
  [dir="rtl"] .topbar a[href^="tel:"],[dir="rtl"] .topbar a[href^="mailto:"]{direction:ltr; unicode-bidi:embed;}

  @media (max-width:960px){
    [dir="rtl"] .hero .container{direction:rtl;}
    [dir="rtl"] .feature-item{border-right:none;}
    [dir="rtl"] .feature-item:first-child,[dir="rtl"] .feature-item:last-child{padding-right:0; padding-left:0;}
    [dir="rtl"] .float-call{left:16px;}
  }

  
  [dir="rtl"] .hero3 .container{direction:ltr;}
  [dir="rtl"] .hero3-copy{direction:rtl; text-align:right;}
  [dir="rtl"] .hero3 .hero-actions{justify-content:flex-start;}
  [dir="rtl"] .hero3-creds{justify-content:flex-start;}
  [dir="rtl"] .hero3-cred{padding-right:0; padding-left:24px; border-right:none; border-left:1px solid var(--line);}
  [dir="rtl"] .hero3-cred:last-child{border-left:none; padding-left:0;}
  [dir="rtl"] .hero3-chip{text-align:right;}

  
  [dir="rtl"] .page-hero > .container{direction:ltr;}
  [dir="rtl"] .page-hero-copy{direction:rtl; text-align:right;}
  [dir="rtl"] .page-hero .crumbs{justify-content:flex-start;}
  [dir="rtl"] .page-hero .hero-actions{justify-content:flex-start;}
  [dir="rtl"] .page-hero-grid{direction:rtl;}
  [dir="rtl"] .page-hero-media{justify-self:start;}

  
  [dir="rtl"] .why6-item{text-align:right; padding-right:30px; padding-left:104px;}
  [dir="rtl"] .why6-item::before{left:auto; right:0;}
  [dir="rtl"] .why6-num{right:auto; left:26px;}
  [dir="rtl"] .why6-item:hover{transform:translateX(-6px);}

  
  [dir="rtl"] .rtl-arrow{transform:scaleX(-1);}
  [dir="rtl"] .hero3 .btn-outline:hover .rtl-arrow{transform:scaleX(-1) translateX(3px);}
  [dir="rtl"] .btn:hover .rtl-arrow{transform:scaleX(-1) translateX(3px);}

  
  [dir="rtl"] .journey-steps::before{left:auto; right:27px;}
  [dir="rtl"] .journey-step:hover .journey-card{transform:translateX(-6px);}
  [dir="rtl"] .journey-photo::before{left:16px; right:-16px;}
  @media (max-width:640px){
    [dir="rtl"] .journey-steps::before{left:auto; right:21px;}
  }