:root {
      --ink: #102e35;
      --teal-950: #052f38;
      --teal-900: #083f4a;
      --teal-800: #0a5360;
      --teal-700: #0c6974;
      --teal-100: #dff1ef;
      --teal-50: #f1f9f7;
      --orange: #f27a3a;
      --orange-dark: #df6227;
      --orange-soft: #fff0e6;
      --paper: #fffdf8;
      --white: #ffffff;
      --muted: #60787e;
      --line: rgba(8, 63, 74, .12);
      --shadow: 0 24px 70px rgba(8, 63, 74, .14);
      --radius-lg: 30px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }
    img, svg { display: block; }
    :focus-visible { outline: 3px solid rgba(242, 122, 58, .42); outline-offset: 3px; }

    .container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 18px;
      color: var(--teal-700);
      font-size: .77rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--orange); }
    .section-title {
      max-width: 760px;
      margin: 0;
      color: var(--teal-950);
      font-size: clamp(2.05rem, 4.2vw, 3.6rem);
      line-height: 1.06;
      letter-spacing: -.045em;
    }
    .section-copy { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 1.04rem; }

    .site-header {
      position: fixed;
      z-index: 50;
      inset: 0 0 auto;
      transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
    }
    .site-header.scrolled {
      background: rgba(255, 253, 248, .92);
      box-shadow: 0 8px 32px rgba(8, 63, 74, .08);
      backdrop-filter: blur(16px);
    }
    .nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
    .brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
    .brand-mark { width: 43px; height: 49px; }
    .brand-word { display: flex; align-items: baseline; font-size: 1.54rem; font-weight: 900; letter-spacing: -.055em; }
    .brand-word .teal { color: var(--teal-700); }
    .brand-word .orange { color: var(--orange); }
    .nav-links { display: flex; align-items: center; gap: 32px; font-size: .92rem; font-weight: 700; }
    .nav-links a:not(.nav-cta) { color: #33545b; transition: color .2s ease; }
    .nav-links a:not(.nav-cta):hover { color: var(--orange); }
    .nav-cta, .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 21px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 800;
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .nav-cta, .btn-primary { color: var(--white); background: var(--orange); box-shadow: 0 10px 24px rgba(242, 122, 58, .22); }
    .nav-cta:hover, .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
    .btn-secondary { color: var(--teal-900); border-color: rgba(8, 63, 74, .18); background: rgba(255, 255, 255, .7); }
    .btn-secondary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(8, 63, 74, .09); }
    .menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
    .menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 19px; height: 2px; margin: 4px auto; background: var(--teal-900); transition: .2s ease; }

    .hero {
      position: relative;
      min-height: 810px;
      padding: 178px 0 110px;
      overflow: hidden;
      background:
        radial-gradient(circle at 82% 14%, rgba(242, 122, 58, .14), transparent 22%),
        linear-gradient(118deg, #f4faf7 0%, #fffdf8 58%, #fff4ea 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 650px;
      height: 650px;
      right: -300px;
      top: 40px;
      border: 1px solid rgba(12, 105, 116, .1);
      border-radius: 50%;
      box-shadow: 0 0 0 64px rgba(12, 105, 116, .025), 0 0 0 128px rgba(12, 105, 116, .018);
    }
    .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
    .hero h1 { margin: 0; color: var(--teal-950); font-size: clamp(3.25rem, 6.7vw, 6.45rem); line-height: .94; letter-spacing: -.065em; }
    .hero h1 span { color: var(--orange); }
    .hero-copy { max-width: 630px; margin: 26px 0 0; color: #536f75; font-size: clamp(1.03rem, 1.5vw, 1.2rem); }
    .hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
    .hero-note { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: #48646a; font-size: .9rem; font-weight: 700; }
    .hero-note .avatars { display: flex; }
    .hero-note .avatars span { display: grid; place-items: center; width: 31px; height: 31px; margin-left: -7px; border: 2px solid var(--paper); border-radius: 50%; color: var(--white); background: var(--teal-700); font-size: .64rem; }
    .hero-note .avatars span:first-child { margin-left: 0; background: var(--orange); }
    .hero-note .avatars span:last-child { background: #d7a64b; }

    .hero-art { position: relative; min-height: 500px; }
    .passport-card {
      position: absolute;
      width: min(88%, 440px);
      aspect-ratio: 1.34 / 1;
      top: 49%;
      left: 49%;
      padding: 34px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 26px;
      color: var(--white);
      background: linear-gradient(145deg, #0c6570, #073a44 72%);
      box-shadow: var(--shadow);
      transform: translate(-50%, -50%) rotate(-5deg);
    }
    .passport-card::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      right: -105px;
      bottom: -125px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 50%;
      box-shadow: 0 0 0 25px rgba(255,255,255,.025), 0 0 0 50px rgba(255,255,255,.018);
    }
    .passport-top { display: flex; align-items: center; justify-content: space-between; text-transform: uppercase; letter-spacing: .18em; font-size: .67rem; font-weight: 800; opacity: .8; }
    .passport-globe { width: 102px; height: 102px; margin: 54px auto 34px; border: 2px solid rgba(255,255,255,.86); border-radius: 50%; position: relative; }
    .passport-globe::before, .passport-globe::after { content: ""; position: absolute; inset: 15px -2px; border: 1px solid rgba(255,255,255,.68); border-radius: 50%; }
    .passport-globe::after { inset: -2px 24px; }
    .passport-globe span { position: absolute; left: 7px; right: 7px; top: 49px; border-top: 1px solid rgba(255,255,255,.68); }
    .passport-title { position: relative; text-align: center; text-transform: uppercase; letter-spacing: .28em; font-size: .94rem; font-weight: 800; }
    .ticket {
      position: absolute;
      right: 2%;
      bottom: 2%;
      width: min(78%, 370px);
      padding: 22px 25px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: var(--white);
      box-shadow: 0 20px 60px rgba(8, 63, 74, .14);
      transform: rotate(5deg);
    }
    .ticket-route { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .airport strong { display: block; color: var(--teal-950); font-size: 1.35rem; letter-spacing: -.04em; }
    .airport small { color: var(--muted); font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; }
    .flight-line { position: relative; flex: 1; height: 1px; border-top: 1px dashed #a9bcbe; }
    .flight-line svg { position: absolute; width: 20px; top: -10px; left: calc(50% - 10px); color: var(--orange); background: var(--white); }
    .ticket-meta { display: flex; justify-content: space-between; gap: 15px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
    .ticket-meta strong { display: block; color: var(--ink); font-size: .78rem; }
    .stamp {
      position: absolute;
      z-index: 4;
      display: grid;
      place-items: center;
      width: 106px;
      height: 106px;
      top: 1%;
      right: 0;
      border: 2px solid var(--orange);
      border-radius: 50%;
      color: var(--orange);
      font-size: .7rem;
      font-weight: 900;
      letter-spacing: .13em;
      text-align: center;
      text-transform: uppercase;
      transform: rotate(11deg);
    }
    .stamp::after { content: ""; position: absolute; inset: 7px; border: 1px dashed var(--orange); border-radius: 50%; }

    .trust-strip { position: relative; z-index: 4; margin-top: -48px; }
    .trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 18px 55px rgba(8, 63, 74, .1); }
    .trust-item { display: flex; align-items: center; gap: 14px; min-height: 96px; padding: 19px 24px; border-right: 1px solid var(--line); }
    .trust-item:last-child { border-right: 0; }
    .trust-icon { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px; color: var(--teal-700); background: var(--teal-50); }
    .trust-icon svg { width: 20px; }
    .trust-item strong { display: block; color: var(--teal-950); font-size: .9rem; }
    .trust-item span { display: block; margin-top: 2px; color: var(--muted); font-size: .75rem; line-height: 1.35; }

    section { padding: 118px 0; }
    .services { background: var(--paper); }
    .section-head { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 55px; }
    .section-head .section-copy { max-width: 440px; margin-bottom: 5px; }
    .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .service-card {
      position: relative;
      min-height: 285px;
      padding: 30px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: #fffefa;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .service-card:hover { transform: translateY(-7px); border-color: rgba(12, 105, 116, .24); box-shadow: 0 20px 50px rgba(8, 63, 74, .1); }
    .service-card::after { content: attr(data-number); position: absolute; right: 18px; bottom: -31px; color: rgba(12, 105, 116, .045); font-size: 8rem; font-weight: 900; line-height: 1; }
    .service-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: var(--orange); background: var(--orange-soft); }
    .service-icon svg { width: 24px; }
    .service-card h3 { margin: 28px 0 9px; color: var(--teal-950); font-size: 1.25rem; letter-spacing: -.025em; }
    .service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .9rem; }

    .destinations { overflow: hidden; color: var(--white); background: var(--teal-950); }
    .destinations .eyebrow { color: #85d4ce; }
    .destinations .section-title { color: var(--white); }
    .destinations .section-copy { color: #a9c1c4; }
    .destination-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 52px; }
    .destination-card { min-height: 194px; padding: 26px; border: 1px solid rgba(255,255,255,.11); border-radius: 19px; background: rgba(255,255,255,.045); transition: background .2s ease, transform .2s ease; }
    .destination-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
    .flag { font-size: 1.85rem; }
    .destination-card h3 { margin: 38px 0 4px; font-size: 1.05rem; }
    .destination-card p { margin: 0; color: #9fb8bb; font-size: .78rem; }
    .destination-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); }
    .destination-foot p { margin: 0; color: #a9c1c4; font-size: .9rem; }
    .text-link { display: inline-flex; align-items: center; gap: 8px; color: #ff9b67; font-size: .87rem; font-weight: 800; }

    .process { background: #f3f9f7; }
    .process-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 90px; }
    .process-aside { position: sticky; top: 125px; }
    .process-list { position: relative; display: grid; gap: 14px; }
    .process-list::before { content: ""; position: absolute; left: 31px; top: 55px; bottom: 55px; width: 1px; background: rgba(12, 105, 116, .18); }
    .process-step { position: relative; z-index: 1; display: grid; grid-template-columns: 64px 1fr; gap: 21px; padding: 26px; border: 1px solid var(--line); border-radius: 19px; background: var(--white); }
    .step-num { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(12, 105, 116, .16); border-radius: 50%; color: var(--teal-700); background: var(--teal-50); font-weight: 900; }
    .process-step h3 { margin: 4px 0 5px; color: var(--teal-950); font-size: 1.1rem; }
    .process-step p { margin: 0; color: var(--muted); font-size: .88rem; }

    .agency { background: var(--paper); }
    .agency-panel { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; padding: 70px; overflow: hidden; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg, #0b5f69, #06343d); box-shadow: var(--shadow); }
    .agency-panel::after { content: "B2B"; position: absolute; right: -30px; bottom: -85px; color: rgba(255,255,255,.035); font-size: 15rem; font-weight: 900; line-height: 1; }
    .agency-panel .eyebrow { color: #9ee0db; }
    .agency-panel .section-title { color: var(--white); font-size: clamp(2.1rem, 4vw, 3.45rem); }
    .agency-panel .section-copy { color: #bdd0d2; }
    .agency-points { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: center; }
    .agency-point { min-height: 125px; padding: 23px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.055); }
    .agency-point strong { display: block; margin-bottom: 6px; color: var(--white); }
    .agency-point span { color: #abc2c5; font-size: .8rem; }

    .faq { padding-top: 20px; }
    .faq-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 95px; }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; color: var(--teal-950); background: transparent; text-align: left; font-weight: 800; }
    .faq-question span:last-child { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); transition: transform .2s ease; }
    .faq-item.active .faq-question span:last-child { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
    .faq-answer p { margin: 0; padding: 0 46px 24px 0; color: var(--muted); font-size: .91rem; }

    .contact { padding-bottom: 55px; }
    .contact-panel { display: grid; grid-template-columns: .92fr 1.08fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: 0 22px 65px rgba(8, 63, 74, .1); }
    .contact-copy { padding: 66px 58px; background: #fff7ef; }
    .contact-copy .section-title { font-size: clamp(2.2rem, 4.5vw, 3.65rem); }
    .contact-links { display: grid; gap: 12px; margin-top: 34px; }
    .contact-link { display: flex; align-items: center; gap: 14px; color: var(--teal-900); font-size: .9rem; font-weight: 800; }
    .contact-link i { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; color: var(--orange); background: var(--white); font-style: normal; }
    .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 58px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    .field label { color: #3a5b62; font-size: .75rem; font-weight: 800; }
    .field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(8, 63, 74, .16); border-radius: 11px; color: var(--ink); background: #fffefa; padding: 13px 14px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
    .field textarea { min-height: 105px; resize: vertical; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-700); box-shadow: 0 0 0 4px rgba(12, 105, 116, .08); }
    .form-submit { grid-column: 1 / -1; width: 100%; border: 0; }
    .form-note { grid-column: 1 / -1; margin: -4px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

    footer { padding: 30px 0 42px; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 27px; border-top: 1px solid var(--line); }
    .footer-copy { color: var(--muted); font-size: .75rem; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 22px; color: #49666c; font-size: .75rem; font-weight: 700; }

    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 1020px) {
      .nav-links { gap: 20px; }
      .hero-grid { gap: 25px; }
      .hero h1 { font-size: clamp(3.6rem, 8vw, 5.3rem); }
      .trust-inner { grid-template-columns: 1fr 1fr; }
      .trust-item:nth-child(2) { border-right: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .section-head { align-items: start; flex-direction: column; }
      .service-grid { grid-template-columns: 1fr 1fr; }
      .destination-row { grid-template-columns: 1fr 1fr; }
      .process-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
      .process-aside { position: static; }
      .agency-panel { grid-template-columns: 1fr; padding: 58px; }
      .contact-panel { grid-template-columns: 1fr; }
    }

    @media (max-width: 780px) {
      .container { width: min(calc(100% - 28px), var(--max)); }
      .site-header { background: rgba(255, 253, 248, .92); backdrop-filter: blur(14px); }
      .nav { min-height: 72px; }
      .brand-mark { width: 37px; height: 42px; }
      .brand-word { font-size: 1.35rem; }
      .menu-toggle { display: block; position: relative; z-index: 3; }
      .menu-toggle.active span { opacity: 0; }
      .menu-toggle.active::before { transform: translateY(6px) rotate(45deg); }
      .menu-toggle.active::after { transform: translateY(-6px) rotate(-45deg); }
      .nav-links {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 90px 28px 35px;
        opacity: 0;
        visibility: hidden;
        color: var(--teal-950);
        background: var(--paper);
        font-size: 1.15rem;
        transition: opacity .2s ease, visibility .2s ease;
      }
      .nav-links.open { opacity: 1; visibility: visible; }
      .hero { min-height: auto; padding: 132px 0 102px; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero h1 { max-width: 650px; font-size: clamp(3.4rem, 16vw, 5.3rem); }
      .hero-art { min-height: 460px; margin-top: 24px; }
      .stamp { right: 2%; }
      .ticket { right: 0; }
      .trust-strip { margin-top: -40px; }
      section { padding: 90px 0; }
      .agency-panel { padding: 42px 28px; }
      .contact-copy, .contact-form { padding: 42px 30px; }
    }

    @media (max-width: 560px) {
      .hero { padding-top: 118px; }
      .hero h1 { font-size: clamp(3.1rem, 16vw, 4.45rem); }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .hero-actions .btn { width: 100%; }
      .hero-art { min-height: 390px; }
      .passport-card { width: 94%; padding: 26px; }
      .passport-globe { width: 82px; height: 82px; margin: 38px auto 26px; }
      .passport-globe span { top: 39px; }
      .ticket { width: 88%; padding: 18px; }
      .stamp { width: 84px; height: 84px; font-size: .56rem; }
      .trust-inner, .service-grid, .destination-row, .agency-points, .contact-form { grid-template-columns: 1fr; }
      .trust-item { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
      .trust-item:last-child { border-bottom: 0; }
      .section-title { font-size: clamp(2rem, 11vw, 3rem); }
      .destination-foot { align-items: start; flex-direction: column; }
      .process-step { grid-template-columns: 50px 1fr; gap: 15px; padding: 21px; }
      .step-num { width: 50px; height: 50px; }
      .process-list::before { left: 25px; }
      .agency-panel::after { font-size: 9rem; }
      .field.full, .form-submit, .form-note { grid-column: auto; }
      .footer-inner { align-items: start; flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }

/* Extensions built from the approved Hebviza landing-page design */
.logo-crop{position:relative;display:block;width:200px;height:58px;overflow:hidden;flex:0 0 200px}.logo-crop img{position:absolute;width:320px;max-width:none;height:320px;left:-61px;top:-144px}.site-header.scrolled .logo-crop img{mix-blend-mode:multiply}.skip-link{position:fixed;left:18px;top:-90px;z-index:1000;padding:11px 16px;border-radius:10px;color:#fff;background:var(--teal-950)}.skip-link:focus{top:12px}.main-offset{padding-top:84px}.page-hero{min-height:510px;padding:165px 0 90px}.page-hero .hero-grid{grid-template-columns:1.16fr .84fr}.page-hero h1{font-size:clamp(3rem,6vw,5.6rem)}.page-hero .hero-art{min-height:330px}.page-hero .passport-card{max-width:340px;padding:26px}.page-hero .passport-globe{width:72px;height:72px;margin:30px auto 22px}.page-hero .passport-globe span{top:34px}.page-hero .ticket{width:min(74%,300px)}
.breadcrumbs{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin:0 0 24px;color:var(--teal-700);font-size:.76rem;font-weight:800}.breadcrumbs span{color:#97aaad}.page-section{padding:86px 0}.page-section.alt{background:#f3f9f7}.content-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:38px;align-items:start}.content-card{padding:38px;border:1px solid var(--line);border-radius:var(--radius-md);background:#fffefa}.content-card+.content-card{margin-top:18px}.content-card h2{margin:0 0 16px;color:var(--teal-950);font-size:clamp(1.65rem,3vw,2.25rem);line-height:1.15;letter-spacing:-.035em}.content-card h3{margin:27px 0 9px;color:var(--teal-950);font-size:1.1rem}.content-card p,.content-card li{color:var(--muted)}.content-card p{margin:0 0 15px}.content-card ul,.content-card ol{margin:0;padding-left:22px}.content-card li{margin:8px 0}.side-card{position:sticky;top:112px;padding:28px;border-radius:var(--radius-md);color:#fff;background:linear-gradient(145deg,#0c6570,#073a44)}.side-card h2{margin:0 0 10px;font-size:1.6rem;line-height:1.15}.side-card p{margin:0 0 20px;color:#bdd0d2;font-size:.88rem}.side-card .btn{width:100%}.side-list{display:grid;gap:10px;margin:23px 0 0;padding:20px 0 0;border-top:1px solid rgba(255,255,255,.13);font-size:.78rem}.side-list span:before{content:"✓";margin-right:8px;color:#ff9b67}
.quick-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:13px;margin-bottom:18px}.quick-card{padding:21px;border:1px solid var(--line);border-radius:16px;background:#fff}.quick-card small{display:block;color:var(--muted);font-size:.65rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.quick-card strong{display:block;margin-top:7px;color:var(--teal-950);font-size:.92rem}.check-list{list-style:none;padding:0!important}.check-list li{position:relative;padding:10px 0 10px 30px;border-bottom:1px solid var(--line)}.check-list li:last-child{border-bottom:0}.check-list li:before{content:"✓";position:absolute;left:0;top:10px;display:grid;place-items:center;width:20px;height:20px;border-radius:50%;color:var(--teal-700);background:var(--teal-50);font-size:.65rem;font-weight:900}.notice{padding:17px 19px;border-left:4px solid var(--orange);border-radius:0 12px 12px 0;color:#74503b;background:var(--orange-soft);font-size:.84rem}.source-links{display:grid;gap:10px}.source-links a{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:15px 17px;border:1px solid var(--line);border-radius:12px;color:var(--teal-900);font-size:.83rem;font-weight:800}.source-links a:after{content:"↗";color:var(--orange)}
.finder-section{padding:74px 0;background:#f3f9f7}.finder-panel{display:grid;grid-template-columns:.65fr 1.35fr;gap:45px;align-items:center;padding:38px;border:1px solid var(--line);border-radius:var(--radius-lg);background:#fff;box-shadow:0 18px 55px rgba(8,63,74,.08)}.finder-form{display:grid;grid-template-columns:1fr 1fr auto;gap:13px;align-items:end}.finder-form label{display:grid;gap:7px;color:#3a5b62;font-size:.72rem;font-weight:800}.finder-form select,.search-input{width:100%;min-height:50px;padding:11px 14px;border:1px solid rgba(8,63,74,.16);border-radius:11px;color:var(--ink);background:#fffefa}.finder-form .btn{border:0}.directory-tools{display:grid;grid-template-columns:1fr auto;gap:13px;margin:35px 0 24px}.directory-count{display:flex;align-items:center;color:var(--muted);font-size:.82rem;font-weight:700}.country-directory{display:grid;grid-template-columns:repeat(4,1fr);gap:13px}.country-link{display:grid;grid-template-columns:auto 1fr auto;gap:12px;align-items:center;padding:18px;border:1px solid var(--line);border-radius:15px;background:#fffefa;transition:.2s}.country-link:hover{transform:translateY(-3px);border-color:rgba(12,105,116,.26);box-shadow:0 12px 32px rgba(8,63,74,.08)}.country-link .flag{font-size:1.45rem}.country-link strong{display:block;color:var(--teal-950);font-size:.86rem;line-height:1.2}.country-link small{display:block;margin-top:3px;color:var(--muted);font-size:.65rem}.country-link b{color:var(--orange)}
.update-grid,.tool-grid,.story-grid,.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.update-card,.tool-card,.story-card,.value-card{padding:28px;border:1px solid var(--line);border-radius:var(--radius-md);background:#fffefa}.update-card .meta{display:flex;align-items:center;justify-content:space-between;gap:15px;color:var(--muted);font-size:.68rem}.pill{display:inline-flex;padding:4px 9px;border-radius:999px;color:var(--teal-700);background:var(--teal-50);font-size:.64rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.update-card h3,.tool-card h3,.story-card h3,.value-card h3{margin:18px 0 9px;color:var(--teal-950);font-size:1.2rem;line-height:1.24}.update-card p,.tool-card p,.story-card p,.value-card p{margin:0 0 18px;color:var(--muted);font-size:.83rem}.tool-card .service-icon{margin-bottom:22px}.tools-dark{color:#fff;background:var(--teal-950)}.tools-dark .section-title{color:#fff}.tools-dark .section-copy{color:#a9c1c4}.tools-dark .tool-card{border-color:rgba(255,255,255,.11);background:rgba(255,255,255,.045)}.tools-dark .tool-card h3{color:#fff}.tools-dark .tool-card p{color:#a9c1c4}.testimonial-card blockquote{margin:18px 0;color:var(--teal-950);font-size:1.02rem;font-weight:700}.stars{color:var(--orange);letter-spacing:.1em}.person{color:var(--muted);font-size:.75rem}
.faq-list details{border-bottom:1px solid var(--line)}.faq-list details:first-child{border-top:1px solid var(--line)}.faq-list summary{cursor:pointer;padding:21px 34px 21px 0;color:var(--teal-950);font-weight:800;list-style:none}.faq-list details p{padding:0 34px 20px 0}.faq-list summary::-webkit-details-marker{display:none}
.tool-shell{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:30px;align-items:start}.tool-form{display:grid;grid-template-columns:1fr 1fr;gap:16px}.tool-form .field.full,.tool-form .form-submit{grid-column:1/-1}.result-panel{display:none;margin-top:22px;padding:24px;border:1px solid var(--line);border-radius:16px;background:var(--teal-50)}.result-panel.visible{display:block}.result-panel h3{margin:0 0 12px;color:var(--teal-950)}.result-panel pre{margin:0;white-space:pre-wrap;color:#3a5b62;font:inherit;font-size:.84rem}.result-actions{display:flex;gap:10px;margin-top:18px}.rate-note{margin-bottom:26px}.coverage-grid{display:flex;flex-wrap:wrap;gap:8px}.coverage-grid span{padding:7px 11px;border:1px solid var(--line);border-radius:999px;color:#3a5b62;background:#fff;font-size:.72rem;font-weight:800}.legal-copy{max-width:850px}.legal-copy h2{margin:36px 0 12px;color:var(--teal-950);font-size:1.55rem}.legal-copy p,.legal-copy li{color:var(--muted)}.legal-copy a{color:var(--teal-700);text-decoration:underline}.whatsapp-float{position:fixed;z-index:45;right:20px;bottom:20px;display:inline-flex;align-items:center;gap:9px;padding:8px 9px 8px 16px;border-radius:999px;color:#fff;background:#20bd5a;box-shadow:0 14px 38px rgba(0,0,0,.2);font-size:.75rem;font-weight:900}.whatsapp-float b{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;color:#168642;background:#fff;font-size:.6rem}.site-map-list{columns:3;column-gap:40px}.site-map-list a{display:block;padding:6px 0;color:var(--teal-700);font-size:.82rem}
@media(max-width:1020px){.content-layout,.tool-shell{grid-template-columns:1fr}.side-card{position:static}.quick-grid{grid-template-columns:1fr 1fr}.country-directory{grid-template-columns:repeat(3,1fr)}.finder-panel{grid-template-columns:1fr}.update-grid,.tool-grid,.story-grid,.value-grid{grid-template-columns:1fr 1fr}}
@media(max-width:780px){.logo-crop{width:174px;height:52px;flex-basis:174px}.logo-crop img{width:280px;height:280px;left:-53px;top:-126px}.page-hero{padding:128px 0 72px}.page-hero .hero-grid{grid-template-columns:1fr}.page-hero .hero-art{display:none}.country-directory{grid-template-columns:1fr 1fr}.finder-form{grid-template-columns:1fr}.finder-form .btn{width:100%}.directory-tools{grid-template-columns:1fr}.site-map-list{columns:2}}
@media(max-width:560px){.logo-crop{width:158px;flex-basis:158px}.country-directory,.update-grid,.tool-grid,.story-grid,.value-grid,.quick-grid,.tool-form{grid-template-columns:1fr}.tool-form .field.full,.tool-form .form-submit{grid-column:auto}.content-card{padding:25px}.finder-panel{padding:25px}.site-map-list{columns:1}.whatsapp-float span{display:none}.whatsapp-float{padding:7px}}

/* HostGator patch: searchable destination picker */
.search-select-native{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.country-combobox{position:relative;width:100%;font-size:.9rem}.country-combobox-input{width:100%;min-height:50px;padding:11px 42px 11px 14px;border:1px solid rgba(8,63,74,.16);border-radius:11px;color:var(--ink);background:#fffefa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23083f4a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;appearance:none}.country-combobox-input:focus{border-color:var(--teal-700);box-shadow:0 0 0 3px rgba(12,105,116,.12);outline:0}.country-combobox-list{position:absolute;z-index:80;inset:calc(100% + 7px) 0 auto;max-height:270px;overflow:auto;padding:7px;border:1px solid rgba(8,63,74,.14);border-radius:13px;background:#fff;box-shadow:0 18px 45px rgba(8,63,74,.18)}.country-combobox-list[hidden]{display:none}.country-combobox-option{display:block;width:100%;padding:10px 11px;border:0;border-radius:8px;color:var(--ink);background:transparent;text-align:left}.country-combobox-option:hover,.country-combobox-option.active{color:#fff;background:var(--teal-800)}.country-combobox-empty{padding:12px;color:var(--muted);text-align:center}.finder-form label:has(.country-combobox){position:relative;z-index:4}

/* HostGator patch: full mobile logo and compact premium menu */
@media(max-width:780px){
  .site-header{background:rgba(255,253,248,.96);box-shadow:0 8px 28px rgba(8,63,74,.07);backdrop-filter:blur(16px)}
  .nav{min-height:66px}
  .logo-crop{width:174px;height:50px;flex-basis:174px}
  .logo-crop img{width:270px;height:270px;left:-50px;top:-122px}
  .menu-toggle{width:42px;height:42px;border-color:rgba(8,63,74,.14);background:rgba(255,255,255,.82);box-shadow:0 7px 20px rgba(8,63,74,.08)}
  .menu-toggle.active{border-color:var(--teal-900);background:var(--teal-900)}
  .menu-toggle.active::before,.menu-toggle.active::after{background:#fff}
  .nav-links{
    inset:66px 14px auto auto;
    width:min(286px,calc(100vw - 28px));
    max-height:calc(100vh - 82px);
    justify-content:flex-start;
    align-items:stretch;
    gap:3px;
    overflow-y:auto;
    padding:12px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:0 0 18px 18px;
    color:#fff;
    background:radial-gradient(circle at 100% 0,rgba(242,122,58,.18),transparent 34%),linear-gradient(145deg,rgba(5,47,56,.985),rgba(10,83,96,.985));
    box-shadow:0 22px 55px rgba(5,47,56,.28);
    font-size:.9rem;
    transform:translateY(-8px) scale(.985);
    transform-origin:top right;
    pointer-events:none;
    transition:opacity .18s ease,visibility .18s ease,transform .18s ease;
  }
  .nav-links.open{transform:translateY(0) scale(1);pointer-events:auto}
  .nav-links a:not(.nav-cta){display:flex;align-items:center;width:100%;min-height:38px;padding:8px 11px;border-radius:9px;color:#edf8f7}
  .nav-links a:not(.nav-cta):hover,.nav-links a:not(.nav-cta):focus-visible{color:#fff;background:rgba(255,255,255,.1)}
  .nav-links .nav-cta{width:100%;min-height:42px;margin-top:6px;padding:0 15px;box-shadow:0 8px 20px rgba(242,122,58,.2)}
  .page-hero{min-height:auto;padding:104px 0 52px}
  .page-hero h1{font-size:clamp(2.35rem,10.5vw,3.4rem);line-height:1}
  .hero:not(.page-hero){padding:112px 0 72px}
  .hero:not(.page-hero) h1{font-size:clamp(3rem,13vw,4.35rem)}
  .hero:not(.page-hero) .hero-art{min-height:350px;margin-top:8px}
}
@media(max-width:560px){
  .hero:not(.page-hero){padding-top:98px}
  .hero:not(.page-hero) h1{font-size:clamp(2.7rem,13vw,3.65rem)}
  .page-hero{padding:96px 0 44px}
  .page-hero h1{font-size:clamp(2.25rem,10.5vw,3rem)}
}
@media(max-width:380px){
  .nav{min-height:64px;gap:16px}
  .logo-crop{width:166px;height:48px;flex-basis:166px}
  .logo-crop img{width:260px;height:260px;left:-49px;top:-117px}
  .nav-links{inset:64px 10px auto auto;width:min(278px,calc(100vw - 20px))}
}
@media print{.site-header,.whatsapp-float,.site-footer,.tool-shell>aside,.result-actions{display:none!important}.main-offset{padding-top:0}.result-panel{display:block}.page-section{padding:20px 0}}
