: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 46px;
    min-height:706px;
    display:flex;
    align-items:center;
    background-image:url('../img/hero-home.png');
    background-size:auto 110%;
    background-position:right top;
    background-repeat:no-repeat;
    background-color:#f2f4f9;
    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-kicker{
    font-size:13px; font-weight:800; letter-spacing:0.16em; text-transform:uppercase;
    color:var(--ink-500); margin:0;
  }
  .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-tall{align-items:start;}
  .imc-scale{
    list-style:none; margin:0 0 20px; padding:0;
    display:grid; grid-template-columns:repeat(3,1fr); gap:12px;
  }
  .imc-scale li{
    background:var(--teal-50); border:1px solid var(--teal-100);
    border-radius:14px; padding:13px 15px;
    display:flex; flex-direction:column; gap:3px;
  }
  .imc-scale b{font-size:15px; font-weight:800; color:var(--teal-700);}
  .imc-scale span{font-size:13px; color:var(--ink-700);}
  @media (max-width:560px){ .imc-scale{grid-template-columns:1fr; gap:9px;} }
  .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:26px;
    margin-top:64px;
    position:relative;
  }
  .timeline::before{
    content:"";
    position:absolute;
    top:27px;
    left:12%;
    right:12%;
    height:2px;
    background:linear-gradient(90deg, var(--teal-100) 0%, var(--teal-500) 50%, var(--teal-100) 100%);
    z-index:0;
  }
  .timeline-step{
    background:transparent;
    position:relative;
    transition:opacity .6s ease, transform .5s ease;
  }
  .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.08);}
  .step-num{
    width:56px;height:56px;
    border-radius:50%;
    background:#fff;
    border:1.5px solid var(--teal-600);
    color:var(--teal-800);
    display:flex;align-items:center;justify-content:center;
    font-family:var(--font-display);
    font-size:18px;font-weight:800;
    margin:0 auto 24px;
    position:relative;
    z-index:1;
    box-shadow:0 0 0 6px #fff;
    transition:transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  }
  .step-card{
    position:relative;
    background:linear-gradient(160deg, #ffffff 0%, var(--teal-50) 170%);
    border:1px solid var(--line);
    border-radius:24px;
    padding:28px;
    height:calc(100% - 80px);
    overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }
  .step-card::before{
    content:""; position:absolute; top:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg, var(--teal-500), var(--teal-700));
    transform:scaleX(0); transform-origin:left;
    transition:transform .4s ease;
  }
  .timeline-step:hover .step-card{transform:translateY(-6px); box-shadow:var(--shadow-card); border-color:var(--teal-100);}
  .timeline-step:hover .step-card::before{transform:scaleX(1);}
  .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{grid-template-columns:1fr; gap:22px;}
    .timeline::before{display:none;}
    .step-num{margin:0 0 16px;}
    .step-card{height:auto;}
  }

  
  .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; gap:22px; counter-reset:po;}
  .postop-cols{display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:56px; align-items:stretch;}
  .postop-item{
    position:relative;
    display:grid;
    grid-template-columns:56px 1fr;
    gap:24px;
    padding:32px 96px 32px 30px;
    background:linear-gradient(160deg, #ffffff 0%, var(--teal-50) 170%);
    border:1px solid var(--line);
    border-radius:24px;
    overflow:hidden;
    counter-increment:po;
    transition:opacity .6s ease, transform .5s ease, box-shadow .35s ease, border-color .35s ease;
  }
  .postop-item::before{
    content:""; position:absolute; top:0; left:0; bottom:0; width:3px;
    background:linear-gradient(180deg, var(--teal-500), var(--teal-700));
    transform:scaleY(0); transform-origin:top;
    transition:transform .4s ease;
  }
  .postop-item::after{
    content:"0" counter(po);
    position:absolute; top:20px; right:26px;
    font-size:38px; font-weight:900; color:var(--teal-100);
    line-height:1; letter-spacing:-0.03em;
  }
  .postop-item:hover{box-shadow:var(--shadow-card); border-color:var(--teal-100);}
  .postop-item:hover::before{transform:scaleY(1);}
  .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;}
    .postop-cols{grid-template-columns:1fr;}
  }

  
  .testi-rating-bar{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    margin:28px auto 52px;
    padding:16px 30px;
    width:fit-content;
    background:#fff;
    border:1px solid var(--line);
    border-radius:999px;
    box-shadow:var(--shadow-card);
  }
  .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{
    position:relative;
    background:linear-gradient(160deg, #ffffff 0%, var(--teal-50) 175%);
    border:1px solid var(--line);
    border-radius:24px;
    padding:30px 26px;
    display:flex;
    flex-direction:column;
    gap:18px;
    overflow:hidden;
    transition:opacity .6s ease, transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  }
  .testi-card::after{
    content:""; position:absolute; top:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg, var(--teal-500), var(--teal-700));
    transform:scaleX(0); transform-origin:left;
    transition:transform .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-card); border-color:var(--teal-100);}
  .testi-card:hover::after{transform:scaleX(1);}
  .testi-card .quote-mark{
    position:absolute; top:18px; right:20px;
    width:auto; height:auto;
    background:transparent;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
    pointer-events:none;
  }
  .testi-card .quote-mark svg{width:44px; height:44px; color:var(--teal-100);}
  .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:40px; height:40px;
    border-radius:50%;
    background:linear-gradient(140deg, var(--teal-600), var(--teal-800));
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:12.5px; font-weight:700;
    flex-shrink:0;
    box-shadow:0 8px 16px -8px rgba(14,107,122,.5);
  }
  .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;
      overflow:visible;
      padding:0 0 44px;
      align-items:stretch;
    }
    .hero::before{display:none;}
    .hero .container{grid-template-columns:1fr; gap:0;}
    .hero-copy{max-width:100%;}

    
    .hero-lead{
      position:relative;
      width:auto;
      margin-left:calc(50% - 50vw);
      margin-right:calc(50% - 50vw);
      transform:none;
      min-height:clamp(300px,95vw,480px);
      background-image:url('../img/hero-home.png');
      background-size:cover;
      background-position:87% top;
      background-repeat:no-repeat;
      background-color:#eaf1f5;
      border-radius:0;
      padding:0;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
    }
    .hero-lead::before{
      content:"";
      position:absolute; inset:0;
      background:linear-gradient(0deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 13%, rgba(255,255,255,.62) 29%, rgba(255,255,255,0) 50%);
      z-index:0;
    }
    .hero-lead > *,
.hero-lead > .elementor-widget > *,
.hero-lead > .elementor-widget > .elementor-widget-container > *{position:relative; z-index:1;}
    .hero-lead .eyebrow{display:none;}
    .hero-lead h1{max-width:100%; margin:0; padding:0 24px; font-size:clamp(26px,7.6vw,36px);}
    .hero-lead .hero-subtitle{max-width:100%; margin-top:8px; padding:0 24px 24px; font-size:clamp(14px,3.8vw,17px);}

    .hero-rest{margin-top:24px;}
    .hero-rest .hero-actions{margin-top:22px;}
    .hero-visual{display:none;}
    .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:1; margin:0 auto;}
    .tab-panel-reverse .tab-content{order:2;}
    .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:0 0 32px;}
    .hero-lead{min-height:clamp(280px,92vw,420px); padding:0;}
    .hero-lead h1{padding:0 20px; font-size:clamp(23px,7.2vw,32px);}
    .hero-lead .hero-subtitle{padding:0 20px 20px; font-size:14px;}
    .hero-subtitle{font-size:clamp(15px,4vw,19px);}
    .hero-kicker{font-size:11.5px; letter-spacing:0.14em;}
    .feature-strip{grid-template-columns:1fr; padding:28px; row-gap:22px; margin-top:0;}
    .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;}

  
  [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;}
  }