  :root{
    --ink:#122b30;
    --teal-deep:#325A74;
    --teal:#0E6FA8;
    --sand:#F2F5F7;
    --gold:#E47718;
    --sky:#017CC0;
    --white:#ffffff;
    --text-soft:#5c7075;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}

  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--sand);
  }

  a{ text-decoration:none; color:inherit; }
  button{ font-family:inherit; cursor:pointer; border:none; background:none; }

  /* ================= HEADER ================= */
  .site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(6px);
    border-bottom:1px solid rgba(18,43,48,0.08);
  }

  .nav-wrap{
    max-width:1360px;
    margin:0 auto;
    padding:14px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
  }

  .brand{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .brand svg{ width:38px; height:38px; flex-shrink:0; }
  .brand-text{ display:flex; flex-direction:column; line-height:1.05; }
  .brand-text .name{
    font-family:'Poppins', sans-serif;
    font-weight:700;
    font-size:21px;
    color:var(--teal-deep);
    letter-spacing:0.01em;
  }
  .brand-text .tag{
    font-size:10.5px;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:var(--gold);
    font-weight:600;
  }

  .main-nav{
    display:flex;
    align-items:center;
    gap:34px;
  }
  .main-nav ul{
    list-style:none;
    display:flex;
    gap:30px;
  }
  .main-nav li{ position:relative; }
  .nav-link{
    display:flex;
    align-items:center;
    gap:5px;
    font-size:14.5px;
    font-weight:500;
    color:var(--ink);
    padding:8px 2px;
    transition:color .18s ease;
  }
  .nav-link:hover, .nav-link:focus-visible{ color:var(--sky); }
  .nav-link svg{ width:9px; height:9px; opacity:0.6; transition:transform .18s ease; }
  .has-dropdown:hover .nav-link svg{ transform:rotate(180deg); }

  .dropdown{
    position:absolute;
    top:calc(100% + 14px);
    left:50%;
    transform:translateX(-50%) translateY(6px);
    background:var(--white);
    border-radius:8px;
    box-shadow:0 18px 40px rgba(18,43,48,0.16);
    min-width:190px;
    padding:10px;
    opacity:0;
    visibility:hidden;
    transition:opacity .18s ease, transform .18s ease;
  }
  .has-dropdown:hover .dropdown{
    opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
  }
  .dropdown a{
    display:block;
    padding:9px 12px;
    font-size:13.5px;
    border-radius:5px;
    color:var(--ink);
  }
  .dropdown a:hover{ background:var(--sand); color:var(--sky); }

  .nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
  }

  .cta-small{
    background:var(--teal-deep);
    color:var(--white);
    font-size:13.5px;
    font-weight:600;
    padding:10px 20px;
    border-radius:24px;
    transition:background .18s ease;
  }
  .cta-small:hover{ background:var(--sky); }

  .grid-btn{
    width:38px; height:38px;
    border-radius:8px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:3px;
    padding:8px;
    background:var(--sand);
    transition:background .18s ease;
  }
  .grid-btn span{ width:4px; height:4px; border-radius:50%; background:var(--teal-deep); }
  .grid-btn:hover{ background:#dfe6ea; }

  .quick-panel{
    position:absolute;
    top:64px; right:28px;
    background:var(--white);
    border-radius:10px;
    box-shadow:0 20px 50px rgba(18,43,48,0.2);
    padding:16px;
    display:none;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    width:220px;
    z-index:50;
  }
  .quick-panel.open{ display:grid; }
  .quick-panel a{
    display:flex; flex-direction:column; align-items:center; gap:6px;
    font-size:11px; text-align:center; color:var(--text-soft);
    padding:8px 4px; border-radius:8px;
  }
  .quick-panel a:hover{ background:var(--sand); color:var(--teal-deep); }
  .quick-panel svg{ width:20px; height:20px; }

  .burger{
    display:none;
    width:24px; height:18px;
    position:relative;
  }
  .burger span{
    position:absolute; left:0; width:100%; height:2px; background:var(--ink);
    transition:transform .2s ease, opacity .2s ease;
  }
  .burger span:nth-child(1){ top:0; }
  .burger span:nth-child(2){ top:8px; }
  .burger span:nth-child(3){ top:16px; }
  .burger.is-active span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
  .burger.is-active span:nth-child(2){ opacity:0; }
  .burger.is-active span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

  @media (max-width: 980px){
    .main-nav{
      display:block;
      position:absolute;
      top:100%; left:0; right:0;
      background:var(--white);
      border-bottom:1px solid rgba(18,43,48,0.08);
      box-shadow:0 20px 30px rgba(18,43,48,0.1);
      max-height:0;
      overflow:hidden;
      transition:max-height .3s ease;
    }
    .main-nav.mobile-open{ max-height:600px; }
    .main-nav ul{ flex-direction:column; gap:0; padding:10px 24px 20px; }
    .main-nav li{ width:100%; }
    .nav-link{ width:100%; padding:12px 0; }
    .dropdown{
      position:static;
      transform:none;
      opacity:1; visibility:visible;
      box-shadow:none;
      display:none;
      padding:0 0 8px 14px;
      min-width:0;
    }
    .has-dropdown:hover .dropdown{ display:block; }
    .burger{ display:block; }
    .nav-actions .cta-small{ display:none; }
  }

  /* ================= HERO ================= */
  .hero{
    position:relative;
    min-height:720px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }

  .scene{
    position:absolute; inset:0;
    opacity:0;
    transition:opacity 1s ease;
  }
  .scene.active{ opacity:1; }
  .scene svg{ width:100%; height:100%; }

  .hero-shade{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(50,90,116,0.15) 0%, rgba(50,90,116,0.55) 100%);
  }

  .hero-content{
    position:relative;
    z-index:5;
    text-align:center;
    color:var(--white);
    padding:0 24px;
    max-width:760px;
  }

  .script-line{
    font-family:'Yellowtail', cursive;
    font-size:clamp(2.2rem, 4.5vw, 3.4rem);
    color:var(--gold);
    line-height:1;
    margin-bottom:6px;
  }

  .hero-headline{
    font-family:'Poppins', sans-serif;
    font-weight:700;
    font-size:clamp(2.4rem, 6vw, 4.6rem);
    line-height:1.05;
    letter-spacing:-0.01em;
  }

  .hero-sub{
    margin:20px auto 0;
    max-width:480px;
    font-size:15.5px;
    font-weight:400;
    color:rgba(255,255,255,0.88);
    line-height:1.6;
  }

  .explore-btn{
    margin-top:32px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:transparent;
    border:1.5px solid rgba(255,255,255,0.65);
    color:var(--white);
    font-size:15px;
    font-weight:600;
    padding:14px 30px;
    border-radius:32px;
    transition:background .2s ease, color .2s ease, border-color .2s ease;
  }
  .explore-btn svg{ width:16px; height:16px; transition:transform .2s ease; }
  .explore-btn:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--teal-deep);
  }
  .explore-btn:hover svg{ transform:translateX(4px); }

  /* thumbnails + counter */
  .slider-nav{
    position:absolute;
    right:36px;
    bottom:60px;
    z-index:6;
    display:flex;
    align-items:center;
    gap:14px;
  }
  .thumbs{ display:flex; gap:-10px; }
  .thumb{
    width:48px; height:48px;
    border-radius:50%;
    border:2.5px solid rgba(255,255,255,0.4);
    cursor:pointer;
    margin-left:-14px;
    overflow:hidden;
    transition:border-color .2s ease, transform .2s ease;
    background:var(--teal);
  }
  .thumb:first-child{ margin-left:0; }
  .thumb svg{ width:100%; height:100%; }
  .thumb.active{ border-color:var(--gold); transform:translateY(-4px); }

  .slide-counter{
    font-family:'Inter', sans-serif;
    font-size:13px;
    color:var(--white);
    font-weight:600;
    letter-spacing:0.05em;
  }

  .arrow-controls{
    position:absolute;
    left:36px;
    bottom:60px;
    z-index:6;
    display:flex;
    gap:10px;
  }
  .arrow-btn{
    width:42px; height:42px;
    border-radius:50%;
    border:1.5px solid rgba(255,255,255,0.5);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .2s ease, border-color .2s ease;
  }
  .arrow-btn:hover{ background:rgba(255,255,255,0.15); border-color:var(--white); }
  .arrow-btn svg{ width:16px; height:16px; }

  @media (max-width: 760px){
    .slider-nav, .arrow-controls{ bottom:80px; }
    .hero{ min-height:640px; }
  }
  @media (max-width: 520px){
    .arrow-controls{ left:16px; }
    .slider-nav{ right:16px; }
    .thumb{ width:38px; height:38px; }
  }

  @media (prefers-reduced-motion: reduce){
    .scene, .explore-btn, .arrow-btn, .thumb{ transition:none; }
  }

  /* ================= CATEGORIES ================= */
  .categories-section{
    max-width:1900px;
    margin:0 auto;
    padding:96px 24px 24px 24px;
    display:grid;
    grid-template-columns:240px 1fr;
    gap:28px;
    align-items:start;
  }

  .categories-sidebar{
    position:sticky;
    top:104px;
    margin-top:48px;
    display:flex;
    flex-direction:column;
    gap:22px;
    width:360px;
    justify-self:end;
  }
  .ad-slot{
    border:2px dashed rgba(1,124,192,0.35);
    border-radius:20px;
    background:rgba(1,124,192,0.05);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:22px;
    text-align:center;
    color:var(--text-soft);
    transition:border-color .2s ease, background .2s ease;
  }
  .ad-slot:hover{ border-color:var(--sky); background:rgba(1,124,192,0.09); }
  .ad-slot svg{ width:30px; height:30px; color:var(--sky); }
  .ad-slot .ad-label{
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--sky);
  }
  .ad-slot .ad-size{ font-size:11px; color:var(--text-soft); }
  .ad-slot.square{ aspect-ratio:3/2; }
  .ad-slot.tall{ aspect-ratio:3/2; }

  .categories-main{ min-width:0; }

  .categories-head{
    display:flex;
    align-items:flex-end;
    gap:28px;
    margin-bottom:44px;
    flex-wrap:nowrap;
  }
  .categories-head-title{ flex:0 0 auto; }
  .script-tag{
    font-family:'Yellowtail', cursive;
    font-size:1.9rem;
    color:var(--gold);
    margin-bottom:4px;
  }
  .section-title{
    font-family:'Poppins', sans-serif;
    font-weight:700;
    font-size:clamp(1.6rem, 2.6vw, 2.6rem);
    color:var(--teal-deep);
    line-height:1.15;
    white-space:nowrap;
  }
  .arrow-controls-inline{ display:flex; gap:10px; flex:0 0 auto; }
  .arrow-btn.dark{
    border-color:rgba(18,43,48,0.25);
    color:var(--teal-deep);
  }
  .arrow-btn.dark:hover{ background:var(--teal-deep); color:#fff; border-color:var(--teal-deep); }

  .continent-filter{
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
    flex:1 1 auto;
    overflow-x:auto;
    scrollbar-width:none;
    padding:4px 2px;
  }
  .continent-filter::-webkit-scrollbar{ display:none; }
  .continent-filter button{
    flex:0 0 auto;
    white-space:nowrap;
    font-family:'Inter', sans-serif;
    font-size:13.5px;
    font-weight:600;
    color:var(--text-soft);
    padding:9px 20px;
    border-radius:22px;
    border:1.5px solid rgba(18,43,48,0.15);
    transition:background .18s ease, color .18s ease, border-color .18s ease;
  }
  .continent-filter button:hover{ border-color:var(--sky); color:var(--sky); }
  .continent-filter button.active{
    background:var(--teal-deep);
    border-color:var(--teal-deep);
    color:#fff;
  }

  .categories-track{
    display:flex;
    gap:36px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
    scrollbar-width:none;
  }
  .categories-track::-webkit-scrollbar{ display:none; }

  .cat-card{
    flex:0 0 auto;
    width:260px;
    text-align:center;
    scroll-snap-align:start;
  }
  .cat-photo{
    width:260px; height:260px;
    border-radius:50%;
    overflow:hidden;
    box-shadow:0 20px 44px rgba(18,43,48,0.18);
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform .25s ease;
  }
  .cat-card:hover .cat-photo{ transform:translateY(-8px) scale(1.03); }
  .cat-photo svg{ width:86px; height:86px; display:block; }

  .cat-card h3{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:17px;
    color:var(--teal-deep);
    margin-bottom:4px;
  }
  .see-more{
    font-size:13px;
    color:var(--text-soft);
    display:inline-flex;
    align-items:center;
    gap:4px;
    transition:color .2s ease, gap .2s ease;
  }
  .see-more span{ transition:transform .2s ease; }
  .see-more:hover{ color:var(--sky); gap:8px; }

  .cat-card{ cursor:pointer; }
  .cat-card .cat-photo{ position:relative; }
  .cat-card.active .cat-photo::after{
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:50%;
    border:3px solid var(--gold);
  }
  .cat-card.active h3{ color:var(--sky); }

  .category-detail{
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:max-height .5s ease, opacity .4s ease, margin-top .5s ease;
  }
  .category-detail.open{
    max-height:3000px;
    opacity:1;
    margin-top:48px;
  }

  .map-card{
    margin-top:32px;
    background:#fff;
    border-radius:24px;
    box-shadow:0 24px 50px rgba(18,43,48,0.14);
    padding:24px;
  }
  .map-head{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:16px;
    color:var(--teal-deep);
  }
  .map-head svg{ width:20px; height:20px; color:var(--sky); flex-shrink:0; }
  .map-head span{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:15px;
  }
  .map-canvas{
    width:100%;
    aspect-ratio:5/4;
    border-radius:16px;
    overflow:hidden;
    background:var(--sand);
  }
  .leaflet-popup-content{
    font-family:'Inter', sans-serif;
    font-size:13px;
    color:var(--teal-deep);
    font-weight:600;
  }
  .leaflet-popup-content-wrapper{ border-radius:12px; }

  .detail-card{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:36px;
    align-items:center;
    background:#fff;
    border-radius:24px;
    box-shadow:0 24px 50px rgba(18,43,48,0.14);
    padding:36px;
  }
  .detail-visual{
    width:220px; height:220px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .detail-visual svg{ width:80px; height:80px; }
  .detail-eyebrow{
    font-size:12px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:8px;
  }
  .detail-title{
    font-family:'Poppins', sans-serif;
    font-weight:700;
    font-size:26px;
    color:var(--teal-deep);
    margin-bottom:14px;
  }
  .detail-text{
    font-size:14px;
    line-height:1.7;
    color:var(--text-soft);
    max-width:560px;
    margin-bottom:22px;
  }
  .detail-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:26px; }
  .detail-tags span{
    font-size:12px;
    font-weight:600;
    color:var(--teal-deep);
    background:var(--sand);
    padding:7px 14px;
    border-radius:16px;
  }
  .detail-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--sky);
    color:#fff;
    font-weight:600;
    font-size:14px;
    padding:12px 24px;
    border-radius:26px;
    transition:background .2s ease;
  }
  .detail-cta:hover{ background:var(--teal-deep); }
  .detail-cta svg{ width:16px; height:16px; }

  @media (max-width: 700px){
    .detail-card{ grid-template-columns:1fr; text-align:center; }
    .detail-visual{ margin:0 auto; }
    .detail-tags{ justify-content:center; }
  }

  @media (max-width: 1180px){
    .categories-section{ grid-template-columns:1fr; }
    .categories-sidebar{
      position:static;
      flex-direction:row;
      overflow-x:auto;
      width:auto;
      justify-self:stretch;
    }
    .ad-slot{ flex:0 0 220px; }
    .ad-slot.tall{ aspect-ratio:1/1; }
  }
  @media (max-width: 640px){
    .categories-head{ flex-wrap:wrap; }
    .section-title{ white-space:normal; }
  }

  /* ================= CTA SECTION ================= */
  .cta-section{
    max-width:1360px;
    margin:24px auto 120px;
    padding:0 28px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    overflow:hidden;
    max-height:900px;
    opacity:1;
    transition:opacity .5s ease, max-height .6s ease, margin .6s ease;
  }
  .cta-section.hidden{
    opacity:0;
    max-height:0;
    margin:0 auto;
    pointer-events:none;
  }

  .cta-visual{
    position:relative;
    min-height:480px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
  }

  .blob{
    position:absolute;
    overflow:hidden;
  }
  .blob svg{ width:100%; height:100%; display:block; }

  .blob-main{
    width:300px; height:400px;
    left:20px; bottom:0;
    border-radius:150px 150px 40px 40px;
    box-shadow:0 30px 60px rgba(1,124,192,0.25);
  }
  .blob-side{
    width:220px; height:280px;
    right:0; bottom:20px;
    border-radius:30px 130px 30px 130px;
    box-shadow:0 24px 50px rgba(18,43,48,0.18);
  }

  .balloon{
    position:absolute;
    z-index:3;
  }
  .balloon-sm{ width:26px; height:40px; top:26px; left:10px; opacity:0.55; }
  .balloon-lg{ width:36px; height:54px; top:0; left:58px; opacity:0.85; }

  .rating-badge{
    position:absolute;
    z-index:4;
    top:70px;
    right:20px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 16px 34px rgba(18,43,48,0.2);
    padding:12px 16px;
    display:flex;
    align-items:center;
    gap:8px;
  }
  .rating-badge svg{ width:22px; height:22px; flex-shrink:0; }
  .rating-badge span{
    font-family:'Poppins', sans-serif;
    font-weight:700;
    font-size:14px;
    color:var(--teal-deep);
    line-height:1.2;
  }
  .rating-badge small{
    font-family:'Inter', sans-serif;
    font-weight:400;
    font-size:10.5px;
    color:var(--text-soft);
    text-transform:uppercase;
    letter-spacing:0.04em;
  }

  .cta-content .section-title{ margin:8px 0 20px; }
  .cta-text{
    font-size:15px;
    line-height:1.7;
    color:var(--text-soft);
    max-width:480px;
    margin-bottom:34px;
  }

  .feature-list{ list-style:none; display:flex; flex-direction:column; gap:26px; }
  .feature-list li{ display:flex; gap:18px; align-items:flex-start; }
  .feature-icon{
    width:52px; height:52px;
    flex-shrink:0;
    border-radius:50%;
    background:var(--sky);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .feature-icon svg{ width:24px; height:24px; }
  .feature-list h4{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:16.5px;
    color:var(--teal-deep);
    margin-bottom:5px;
  }
  .feature-list p{
    font-size:13.5px;
    line-height:1.6;
    color:var(--text-soft);
    max-width:380px;
  }

  @media (max-width: 900px){
    .cta-section{ grid-template-columns:1fr; }
    .cta-visual{ min-height:420px; }
    .cat-card{ width:210px; }
    .cat-photo{ width:210px; height:210px; }
    .cat-photo svg{ width:70px; height:70px; }
  }
  @media (max-width: 560px){
    .categories-head{ align-items:flex-start; }
    .continent-filter{ justify-content:flex-start; }
    .blob-side{ display:none; }
    .rating-badge{ right:auto; left:20px; top:20px; }
    .cat-card{ width:180px; }
    .cat-photo{ width:180px; height:180px; }
    .cat-photo svg{ width:60px; height:60px; }
  }

  /* ================= WHY CHOOSE US ================= */
  .why-section{
    max-width:1360px;
    margin:0 auto;
    padding:20px 28px 120px;
    display:grid;
    grid-template-columns:0.85fr 1fr;
    gap:70px;
    align-items:center;
  }
  .why-visual{
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 30px 60px rgba(18,43,48,0.18);
    aspect-ratio:3/4;
  }
  .why-visual svg{ width:100%; height:100%; display:block; }

  .why-content .cta-text{ margin-bottom:36px; }

  .why-list{ display:flex; flex-direction:column; gap:8px; }
  .why-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:18px 14px;
    border-radius:16px;
    transition:box-shadow .2s ease, background .2s ease;
  }
  .why-item.highlight{
    background:#fff;
    box-shadow:0 20px 44px rgba(18,43,48,0.14);
    padding:26px 24px;
    margin-bottom:6px;
  }
  .why-icon{
    width:52px; height:52px;
    flex-shrink:0;
    border-radius:14px;
    background:rgba(1,124,192,0.1);
    color:var(--sky);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .why-item.highlight .why-icon{ background:var(--sky); color:#fff; }
  .why-icon svg{ width:24px; height:24px; }
  .why-item h4{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:16.5px;
    color:var(--teal-deep);
    margin-bottom:5px;
  }
  .why-item p{
    font-size:13.5px;
    line-height:1.6;
    color:var(--text-soft);
    max-width:400px;
  }

  @media (max-width: 900px){
    .why-section{ grid-template-columns:1fr; }
    .why-visual{ max-width:420px; margin:0 auto; }
  }

  /* ================= NEWSLETTER ================= */
  .newsletter-wrap{
    max-width:1360px;
    margin:0 auto;
    padding:0 28px 90px;
  }
  .newsletter-card{
    position:relative;
    overflow:hidden;
    background:linear-gradient(120deg, var(--sky) 0%, #4fa8cf 100%);
    border-radius:32px;
    padding:64px 60px;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    align-items:center;
    gap:20px;
    min-height:420px;
  }
  .newsletter-rings{
    position:absolute;
    top:-40px; right:-30px;
    width:300px; height:300px;
  }
  .newsletter-content{ position:relative; z-index:2; }
  .newsletter-title{
    font-family:'Poppins', sans-serif;
    font-weight:700;
    font-size:clamp(1.8rem, 3.2vw, 2.5rem);
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
  }
  .newsletter-text{
    color:rgba(255,255,255,0.9);
    font-size:14.5px;
    line-height:1.7;
    max-width:440px;
    margin-bottom:32px;
  }
  .newsletter-form{
    display:flex;
    background:rgba(255,255,255,0.18);
    border:1.5px solid rgba(255,255,255,0.35);
    border-radius:32px;
    padding:6px;
    max-width:440px;
  }
  .newsletter-form input{
    flex:1;
    background:transparent;
    border:none;
    padding:12px 18px;
    color:#fff;
    font-family:'Inter', sans-serif;
    font-size:14px;
  }
  .newsletter-form input::placeholder{ color:rgba(255,255,255,0.75); }
  .newsletter-form input:focus{ outline:none; }
  .newsletter-form button{
    background:var(--teal-deep);
    color:#fff;
    font-weight:600;
    font-size:14px;
    padding:12px 26px;
    border-radius:26px;
    transition:background .2s ease;
  }
  .newsletter-form button:hover{ background:#0a2530; }

  .newsletter-figure{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:center;
  }
  .newsletter-figure svg{ width:100%; max-width:280px; height:auto; }

  @media (max-width: 860px){
    .newsletter-card{ grid-template-columns:1fr; padding:48px 32px; text-align:center; }
    .newsletter-form{ margin:0 auto; }
    .newsletter-figure{ display:none; }
  }

  /* ================= BADGES MARQUEE ================= */
  .badges-section{
    max-width:1360px;
    margin:0 auto 100px;
    padding:0 28px;
    text-align:center;
  }
  .badges-dot{
    display:inline-block;
    width:9px; height:9px;
    border-radius:50%;
    background:var(--sky);
    margin-bottom:40px;
  }
  .badges-track{
    overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .badges-row{
    display:flex;
    gap:56px;
    width:max-content;
    animation:marquee 32s linear infinite;
  }
  .badges-row img, .badges-row svg{ width:110px; height:110px; flex-shrink:0; }
  @keyframes marquee{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce){
    .badges-row{ animation:none; }
  }

  /* ================= FOOTER ================= */
  .site-footer{
    position:relative;
    background:#0f2530;
    color:rgba(255,255,255,0.82);
    padding:76px 28px 0;
    overflow:hidden;
  }
  .footer-decor{
    position:absolute;
    left:20px; bottom:10px;
    width:130px; height:130px;
    z-index:0;
  }
  .footer-grid{
    position:relative;
    z-index:1;
    max-width:1360px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.3fr 0.8fr 0.9fr 1fr;
    gap:40px;
  }

  .footer-logo{ margin-bottom:20px; }
  .footer-logo .name{ color:#fff; }
  .footer-logo .tag{ color:var(--gold); }

  .footer-desc{
    font-size:13.5px;
    line-height:1.7;
    color:rgba(255,255,255,0.65);
    max-width:340px;
    margin-bottom:26px;
  }

  .social-row{ display:flex; gap:10px; }
  .social-row a{
    width:38px; height:38px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .2s ease, transform .2s ease;
  }
  .social-row a svg{ width:16px; height:16px; }
  .social-row a:hover{ background:var(--sky); transform:translateY(-3px); }

  .footer-col h4{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:17px;
    color:#fff;
    margin-bottom:22px;
  }
  .footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:13px; }
  .footer-col ul a{
    font-size:13.5px;
    color:rgba(255,255,255,0.68);
    display:flex;
    align-items:center;
    gap:6px;
    transition:color .18s ease, gap .18s ease;
  }
  .footer-col ul a span{ color:var(--gold); }
  .footer-col ul a:hover{ color:#fff; gap:10px; }

  .contact-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-bottom:20px;
    font-size:13px;
    line-height:1.6;
    color:rgba(255,255,255,0.75);
  }
  .contact-item svg{
    width:36px; height:36px;
    flex-shrink:0;
    padding:8px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:var(--sky);
  }

  .insta-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
  }
  .insta-item{
    border-radius:8px;
    overflow:hidden;
    aspect-ratio:1/1;
    transition:transform .2s ease;
  }
  .insta-item:hover{ transform:scale(1.06); }
  .insta-item svg{ width:100%; height:100%; display:block; }

  .footer-bottom{
    position:relative;
    z-index:1;
    max-width:1360px;
    margin:60px auto 0;
    padding:22px 0;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    font-size:12.5px;
    color:rgba(255,255,255,0.55);
  }

  .scroll-top{
    position:fixed;
    right:24px; bottom:24px;
    width:46px; height:46px;
    border-radius:50%;
    background:var(--sky);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 26px rgba(1,124,192,0.35);
    z-index:200;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:opacity .25s ease, transform .25s ease, background .2s ease;
  }
  .scroll-top.visible{ opacity:1; visibility:visible; transform:translateY(0); }
  .scroll-top:hover{ background:var(--teal-deep); }
  .scroll-top svg{ width:18px; height:18px; }

  @media (max-width: 980px){
    .footer-grid{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width: 600px){
    .footer-grid{ grid-template-columns:1fr; }
  }

/* ================= PAGE BANNER (inner pages) ================= */
.page-banner{
  position:relative;
  background:linear-gradient(120deg, var(--teal-deep) 0%, var(--sky) 100%);
  padding:90px 24px;
  text-align:center;
  overflow:hidden;
}
.page-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size:26px 26px;
  opacity:0.5;
}
.page-banner-content{ position:relative; z-index:1; }
.page-banner .script-tag{ color:var(--gold); margin-bottom:10px; }
.page-banner h1{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:clamp(2rem, 5vw, 3.2rem);
  color:#fff;
}
.page-banner .breadcrumb{
  margin-top:14px;
  font-size:13px;
  color:rgba(255,255,255,0.85);
}
.page-banner .breadcrumb a{ color:#fff; font-weight:600; }
.page-banner .breadcrumb span{ margin:0 6px; color:rgba(255,255,255,0.6); }

/* ================= PLACEHOLDER SECTION (pages not built yet) ================= */
.placeholder-section{
  max-width:900px;
  margin:0 auto;
  padding:100px 24px 140px;
  text-align:center;
}
.placeholder-section .placeholder-icon{
  width:64px; height:64px;
  margin:0 auto 24px;
  color:var(--sky);
  opacity:0.8;
}
.placeholder-section h2{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:1.8rem;
  color:var(--teal-deep);
  margin-bottom:14px;
}
.placeholder-section p{
  font-size:14.5px;
  line-height:1.7;
  color:var(--text-soft);
  max-width:480px;
  margin:0 auto 28px;
}
.placeholder-section .cta-small{
  display:inline-block;
  padding:12px 28px;
}

/* ================= AUTH PAGES (login/cadastro) ================= */
.auth-section{
  max-width:520px;
  margin:0 auto;
  padding:70px 24px 120px;
}
.auth-card{
  background:#fff;
  border-radius:24px;
  box-shadow:0 24px 50px rgba(18,43,48,0.14);
  padding:40px;
}
.auth-error{
  background:rgba(226,75,74,0.1);
  color:#a32d2d;
  border-radius:10px;
  padding:12px 16px;
  font-size:13.5px;
  margin-bottom:20px;
}
.auth-hint{
  background:rgba(1,124,192,0.08);
  color:var(--teal-deep);
  border-radius:10px;
  padding:12px 16px;
  font-size:13.5px;
  margin-bottom:20px;
}
.auth-form{ display:flex; flex-direction:column; gap:18px; }
.auth-form label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
  font-weight:600;
  color:var(--teal-deep);
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"]{
  border:1.5px solid rgba(18,43,48,0.15);
  border-radius:10px;
  padding:11px 14px;
  font-family:'Inter', sans-serif;
  font-size:14px;
  color:var(--ink);
}
.auth-form input:focus{ outline:none; border-color:var(--sky); }

.profile-choice{ border:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.profile-choice legend{ font-size:13px; font-weight:600; color:var(--teal-deep); padding:0; margin-bottom:4px; }
.profile-option{
  display:flex;
  align-items:flex-start;
  gap:10px;
  border:1.5px solid rgba(18,43,48,0.15);
  border-radius:10px;
  padding:12px 14px;
  cursor:pointer;
  font-weight:400;
  transition:border-color .18s ease, background .18s ease;
}
.profile-option:has(input:checked){ border-color:var(--sky); background:rgba(1,124,192,0.05); }
.profile-option input{ margin-top:3px; }
.profile-option span{ font-size:13px; color:var(--text-soft); line-height:1.5; }
.profile-option span strong{ color:var(--teal-deep); }

.auth-submit{ border:none; cursor:pointer; margin-top:6px; text-align:center; }
.auth-switch{ text-align:center; font-size:13.5px; color:var(--text-soft); margin-top:22px; }
.auth-switch a{ color:var(--sky); font-weight:600; }

/* ================= ACCOUNT / RESELLER PANEL ================= */
.account-section{
  max-width:720px;
  margin:0 auto;
  padding:70px 24px 120px;
}
.account-card{
  background:#fff;
  border-radius:24px;
  box-shadow:0 24px 50px rgba(18,43,48,0.14);
  padding:44px;
}
.account-card h2{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:24px;
  color:var(--teal-deep);
  margin-bottom:4px;
}
.account-email{ font-size:13.5px; color:var(--text-soft); margin-bottom:18px; }
.account-badges{ display:flex; gap:10px; margin-bottom:26px; }
.account-badge{
  font-size:12px;
  font-weight:600;
  color:var(--sky);
  background:rgba(1,124,192,0.08);
  padding:7px 14px;
  border-radius:16px;
}
.account-badge-rank{ color:var(--gold); background:rgba(228,119,24,0.1); }

.account-links{ display:flex; flex-direction:column; gap:16px; margin-bottom:26px; }
.account-link-item{ display:flex; flex-direction:column; gap:6px; }
.account-link-label{ font-size:12px; font-weight:600; color:var(--teal-deep); }
.account-link-box{
  font-family:'Inter', monospace;
  font-size:13px;
  color:var(--text-soft);
  background:var(--sand);
  border-radius:8px;
  padding:10px 14px;
  word-break:break-all;
}
.account-desc{ font-size:13.5px; line-height:1.7; color:var(--text-soft); margin-bottom:22px; }

.stat-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-bottom:28px;
}
.stat-box{
  background:var(--sand);
  border-radius:14px;
  padding:20px;
  text-align:center;
}
.stat-number{
  display:block;
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:24px;
  color:var(--teal-deep);
  margin-bottom:4px;
}
.stat-label{ font-size:12px; color:var(--text-soft); }

.auth-menu .dropdown{ min-width:170px; }

@media (max-width: 600px){
  .stat-grid{ grid-template-columns:1fr; }
  .auth-card, .account-card{ padding:28px; }
}
