:root {
      --ink: #092144;
      --ink-2: #123765;
      --ink-3: #173f70;
      --coral: #f06452;
      --coral-dark: #dc4f3e;
      --mint: #c7ebe1;
      --sky: #dceeff;
      --gold: #ffca67;
      --paper: #fffdfa;
      --cloud: #f4f7fb;
      --line: #dfe7f1;
      --muted: #60718a;
      --white: #ffffff;
      --shadow: 0 18px 50px rgba(6, 29, 61, .12);
      --radius: 22px;
      --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.55; overflow-x: hidden; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
    .eyebrow { margin: 0 0 10px; color: var(--coral); font-size: .73rem; font-weight: 800; letter-spacing: .12em; line-height: 1.25; text-transform: uppercase; }
    .section-heading { max-width: 720px; }
    .section-heading h2, h1, h3, p { overflow-wrap: anywhere; }
    .section-heading h2 { max-width: 690px; margin: 0; font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.04; letter-spacing: -.052em; }
    .section-heading > p:last-child { max-width: 660px; margin: 17px 0 0; color: var(--muted); font-size: 1.04rem; }
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 19px; border: 1px solid transparent; border-radius: 999px; color: var(--white); background: var(--coral); font-weight: 800; font-size: .93rem; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
    .btn:hover { transform: translateY(-2px); background: var(--coral-dark); box-shadow: 0 9px 22px rgba(240,100,82,.25); }
    .btn--light { color: var(--ink); background: var(--white); }
    .btn--light:hover { background: #f6faff; }
    .btn--outline { color: var(--ink); border-color: #cfdbea; background: transparent; }
    .btn--outline:hover { background: #edf3fa; box-shadow: none; }
    .arrow { font-size: 1.15em; line-height: 0; }
    .icon { width: 21px; height: 21px; flex: 0 0 auto; }

    /* Top bar and navigation */
    .topbar { color: #d8e4f5; background: var(--ink); font-size: .79rem; }
    .topbar__inner { display: flex; min-height: 36px; align-items: center; justify-content: space-between; gap: 18px; }
    .topbar strong { color: #fff; }
    .topbar__items { display: flex; align-items: center; gap: 20px; }
    .topbar__items a { transition: color .15s ease; }
    .topbar__items a:hover { color: var(--white); }
    .site-header { position: sticky; z-index: 30; top: 0; background: rgba(255,253,250,.93); border-bottom: 1px solid rgba(223,231,241,.9); backdrop-filter: blur(14px); }
    .nav { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; }
    .brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 1.17rem; font-weight: 900; letter-spacing: -.052em; white-space: nowrap; }
    .brand-mark { position: relative; display: grid; width: 33px; height: 33px; place-items: center; overflow: hidden; border-radius: 10px; color: var(--white); background: var(--coral); box-shadow: inset -4px -4px 0 rgba(0,0,0,.08); }
    .brand-mark svg { width: 21px; height: 21px; }
    .nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; font-size: .89rem; font-weight: 700; }
    .nav-links a { position: relative; color: #36506f; }
    .nav-links a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--coral); content: ""; transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta { min-height: 42px; padding: 9px 16px; font-size: .85rem; }
    .menu-toggle { display: none; width: 43px; height: 43px; padding: 0; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; }
    .menu-toggle svg { width: 21px; height: 21px; }

    /* Hero */
    .hero { position: relative; isolation: isolate; min-height: 640px; overflow: hidden; color: var(--white); background: var(--ink); }
    .hero::before { position: absolute; z-index: -1; top: -285px; right: -148px; width: 690px; height: 690px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 58px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.025); content: ""; }
    .hero::after { position: absolute; z-index: -1; right: 33%; bottom: -180px; width: 590px; height: 290px; border-radius: 50%; background: rgba(21,74,129,.53); filter: blur(4px); content: ""; }
    .hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr); min-height: 640px; align-items: center; gap: 50px; padding: 70px 0 66px; }
    .hero-copy { position: relative; z-index: 1; }
    .hero .eyebrow { color: var(--mint); }
    .hero h1 { max-width: 680px; margin: 0; font-size: clamp(2.9rem, 6vw, 5.2rem); font-weight: 850; line-height: .98; letter-spacing: -.072em; }
    .hero h1 em { color: var(--gold); font-style: normal; }
    .hero-copy > p:not(.eyebrow) { max-width: 550px; margin: 24px 0 0; color: #c7d8ee; font-size: 1.08rem; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
    .hero-note { display: flex; align-items: center; gap: 12px; margin-top: 27px; color: #c7d8ee; font-size: .83rem; }
    .avatars { display: flex; padding-left: 7px; }
    .avatars span { display: grid; width: 27px; height: 27px; margin-left: -7px; place-items: center; overflow: hidden; border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); background: var(--mint); font-size: .56rem; font-weight: 900; }
    .avatars span:nth-child(2) { background: var(--gold); }
    .avatars span:nth-child(3) { background: #ff9a8c; }
    .hero-visual { position: relative; min-height: 463px; }
    .hero-orbit { position: absolute; top: 21px; right: 10px; width: 431px; height: 431px; border: 1px dashed rgba(255,255,255,.28); border-radius: 50%; animation: spin 28s linear infinite; }
    .hero-orbit::before, .hero-orbit::after { position: absolute; width: 14px; height: 14px; border-radius: 50%; content: ""; }
    .hero-orbit::before { top: 26px; left: 74px; background: var(--gold); }
    .hero-orbit::after { right: 20px; bottom: 88px; background: var(--coral); }
    .hero-photo { position: absolute; top: 24px; right: 36px; width: min(100%, 398px); aspect-ratio: .84; overflow: hidden; border: 9px solid #fff; border-radius: 200px 200px 24px 24px; box-shadow: 0 26px 50px rgba(0,0,0,.26); background: #f6f6f6; }
    .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
    .label-card { position: absolute; right: 0; bottom: 30px; width: 195px; padding: 16px 17px 14px; border-radius: 15px; color: var(--ink); background: var(--white); box-shadow: 0 18px 36px rgba(0,0,0,.21); transform: rotate(2.3deg); }
    .label-card__top { display: flex; align-items: center; justify-content: space-between; color: #6281a3; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
    .label-card__top svg { color: var(--coral); }
    .label-card strong { display: block; margin-top: 7px; font-size: 1.07rem; line-height: 1.2; letter-spacing: -.03em; }
    .label-card__route { display: flex; align-items: center; gap: 5px; margin-top: 12px; color: #4f6682; font-size: .67rem; }
    .route-line { display: block; width: 31px; height: 1px; background: #b9c8d8; }
    .tracking-card { position: absolute; bottom: 0; left: 0; display: flex; width: 214px; align-items: center; gap: 10px; padding: 12px; border: 1px solid rgba(255,255,255,.36); border-radius: 14px; color: #e4effd; background: rgba(14,48,90,.78); box-shadow: 0 12px 25px rgba(0,0,0,.16); backdrop-filter: blur(8px); }
    .tracking-card__icon { display: grid; width: 37px; height: 37px; flex: 0 0 auto; place-items: center; border-radius: 10px; color: var(--ink); background: var(--mint); }
    .tracking-card__copy b, .tracking-card__copy span { display: block; }
    .tracking-card__copy b { font-size: .76rem; line-height: 1.1; }
    .tracking-card__copy span { margin-top: 4px; color: #b9cae1; font-size: .65rem; }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Trust strip */
    .trust { position: relative; z-index: 2; margin-top: -1px; color: var(--ink); background: var(--mint); }
    .trust__grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); align-items: stretch; }
    .trust__intro, .trust__item { display: flex; min-height: 106px; align-items: center; }
    .trust__intro { padding-right: 35px; font-size: 1.15rem; font-weight: 850; line-height: 1.22; letter-spacing: -.035em; }
    .trust__item { gap: 11px; padding: 20px 20px; border-left: 1px solid rgba(9,33,68,.14); }
    .trust__item svg { width: 27px; height: 27px; flex: 0 0 auto; color: var(--coral); }
    .trust__item b, .trust__item span { display: block; }
    .trust__item b { font-size: .9rem; line-height: 1.15; }
    .trust__item span { margin-top: 2px; color: #416072; font-size: .73rem; line-height: 1.3; }

    /* Generic sections */
    section { scroll-margin-top: 78px; }
    .services { padding: 112px 0 100px; }
    .services-top { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
    .services-top .btn { flex: 0 0 auto; }
    .service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; margin-top: 44px; }
    .service-card { position: relative; min-height: 282px; padding: 24px 21px 20px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
    .service-card:hover { z-index: 1; border-color: transparent; box-shadow: var(--shadow); transform: translateY(-6px); }
    .service-card:nth-child(2) { background: #eef7f4; }
    .service-card:nth-child(3) { color: white; background: var(--ink-2); }
    .service-card:nth-child(4) { background: #fff4e9; }
    .service-card:nth-child(5) { background: #f1f5fe; }
    .service-card__number { color: #8ca0b7; font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
    .service-card:nth-child(3) .service-card__number, .service-card:nth-child(3) p { color: #bfd2eb; }
    .service-icon { display: grid; width: 46px; height: 46px; margin-top: 22px; place-items: center; border-radius: 13px; color: var(--ink); background: var(--gold); }
    .service-card:nth-child(2) .service-icon { color: #fff; background: #45ae90; }
    .service-card:nth-child(3) .service-icon { color: var(--ink); background: var(--mint); }
    .service-card:nth-child(4) .service-icon { color: #fff; background: var(--coral); }
    .service-card:nth-child(5) .service-icon { color: #fff; background: #607ec7; }
    .service-icon svg { width: 24px; height: 24px; }
    .service-card h3 { margin: 19px 0 7px; font-size: 1.08rem; line-height: 1.18; letter-spacing: -.03em; }
    .service-card p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.55; }
    .service-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: inherit; font-size: .76rem; font-weight: 850; }
    .service-card a:hover { color: var(--coral); }

    /* Service switcher */
    .how { padding: 104px 0; background: var(--cloud); }
    .how-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
    .how-header .section-heading { max-width: 650px; }
    .tablist { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
    .tab { padding: 10px 14px; border: 1px solid #d7e1ed; border-radius: 999px; color: #52708f; background: #fff; font-size: .78rem; font-weight: 800; transition: all .18s ease; }
    .tab:hover { border-color: #a8bfd6; color: var(--ink); }
    .tab[aria-selected="true"] { border-color: var(--ink); color: #fff; background: var(--ink); }
    .tab-panel { display: none; margin-top: 38px; }
    .tab-panel.is-active { display: block; animation: rise .3s ease both; }
    @keyframes rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
    .path-panel { display: grid; grid-template-columns: .95fr 1.05fr; overflow: hidden; border-radius: 25px; background: #fff; box-shadow: 0 13px 34px rgba(20,52,89,.08); }
    .path-panel__intro { position: relative; padding: 46px 44px; overflow: hidden; color: var(--white); background: var(--ink); }
    .path-panel__intro::after { position: absolute; right: -125px; bottom: -180px; width: 375px; height: 375px; border: 42px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; }
    .path-panel__intro .eyebrow { color: var(--gold); }
    .path-panel__intro h3 { position: relative; z-index: 1; margin: 0; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.03; letter-spacing: -.055em; }
    .path-panel__intro > p:not(.eyebrow) { position: relative; z-index: 1; margin: 17px 0 0; color: #c6d6e9; font-size: .91rem; }
    .mini-estimate { position: relative; z-index: 1; margin-top: 29px; padding: 17px; border: 1px solid rgba(255,255,255,.19); border-radius: 13px; background: rgba(255,255,255,.07); }
    .mini-estimate span, .mini-estimate strong, .mini-estimate small { display: block; }
    .mini-estimate span { color: var(--mint); font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
    .mini-estimate strong { margin: 4px 0 1px; font-size: 1.56rem; line-height: 1.1; letter-spacing: -.045em; }
    .mini-estimate small { color: #c0d2e5; font-size: .7rem; }
    .path-panel__details { padding: 39px 43px; }
    .step-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
    .step-list li { position: relative; min-height: 73px; padding: 0 0 21px 63px; counter-increment: steps; }
    .step-list li:last-child { min-height: auto; padding-bottom: 0; }
    .step-list li::before { position: absolute; top: 0; left: 0; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--coral); background: #fff0ed; content: counter(steps, decimal-leading-zero); font-size: .69rem; font-weight: 900; }
    .step-list li:not(:last-child)::after { position: absolute; top: 42px; bottom: 3px; left: 18px; width: 1px; background: #d7e2ed; content: ""; }
    .step-list b { display: block; margin-top: 2px; font-size: .93rem; line-height: 1.25; }
    .step-list p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.53; }
    .panel-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 25px; }
    .text-link { color: var(--ink); font-size: .8rem; font-weight: 850; }
    .text-link:hover { color: var(--coral); }
    .panel-note { grid-column: 1 / -1; display: flex; align-items: start; gap: 11px; padding: 14px 21px; border-top: 1px solid var(--line); color: #47617f; background: #f9fbfd; font-size: .76rem; }
    .panel-note svg { width: 18px; flex: 0 0 auto; color: var(--coral); }

    /* Pricing */
    .pricing { padding: 111px 0; }
    .pricing__head { display: flex; justify-content: space-between; gap: 35px; align-items: end; }
    .pricing-disclaimer { max-width: 315px; margin: 0 0 5px; color: var(--muted); font-size: .8rem; }
    .price-grid { display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; gap: 13px; margin-top: 45px; }
    .price-card { display: flex; min-height: 415px; flex-direction: column; padding: 24px 20px 20px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
    .price-card--featured { position: relative; border-color: var(--ink); color: #fff; background: var(--ink); box-shadow: 0 18px 33px rgba(7,34,70,.18); transform: translateY(-10px); }
    .popular { position: absolute; top: -12px; left: 50%; padding: 5px 10px; border-radius: 99px; color: var(--ink); background: var(--gold); font-size: .62rem; font-weight: 900; letter-spacing: .07em; white-space: nowrap; text-transform: uppercase; transform: translateX(-50%); }
    .price-card__size { color: #7286a0; font-size: .69rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
    .price-card--featured .price-card__size { color: var(--mint); }
    .price-card h3 { min-height: 45px; margin: 12px 0 8px; font-size: 1.18rem; line-height: 1.08; letter-spacing: -.04em; }
    .price-card__price { margin: 0; font-size: 2.15rem; font-weight: 900; letter-spacing: -.065em; }
    .price-card__price small { color: var(--muted); font-size: .67rem; font-weight: 700; letter-spacing: 0; }
    .price-card--featured .price-card__price small { color: #bdd2ea; }
    .price-divider { height: 1px; margin: 20px 0 16px; background: var(--line); }
    .price-card--featured .price-divider { background: rgba(255,255,255,.18); }
    .item-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .77rem; line-height: 1.35; }
    .item-list li { position: relative; padding-left: 17px; }
    .item-list li::before { position: absolute; left: 0; color: var(--coral); content: "✓"; font-weight: 900; }
    .price-card--featured .item-list { color: #c8d8e9; }
    .price-card__button { width: 100%; min-height: 39px; margin-top: auto; padding: 8px 10px; border: 1px solid #d3dfec; border-radius: 10px; color: var(--ink); background: #fff; font-size: .75rem; font-weight: 850; }
    .price-card__button:hover { border-color: var(--coral); color: var(--coral); }
    .price-card--featured .price-card__button { border-color: transparent; color: var(--ink); background: var(--mint); }
    .price-card--featured .price-card__button:hover { color: var(--ink); background: #e1f7f0; }
    .pricing-footnote { display: flex; align-items: center; gap: 11px; max-width: 825px; margin: 35px auto 0; padding: 15px 17px; border-radius: 12px; color: #466382; background: #f0f6fc; font-size: .77rem; }
    .pricing-footnote svg { flex: 0 0 auto; color: var(--coral); }

    /* Image block */
    .promise { position: relative; padding: 106px 0; overflow: hidden; color: #fff; background: var(--ink-2); }
    .promise::before { position: absolute; top: -198px; right: -157px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 52px rgba(255,255,255,.028); content: ""; }
    .promise-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
    .promise-visual { position: relative; min-height: 380px; }
    .promise-visual__shape { position: absolute; bottom: 0; left: 0; width: 84%; height: 80%; border-radius: 28px; background: var(--coral); transform: rotate(-4deg); }
    .promise-visual__photo { position: absolute; top: 0; left: 10%; width: 82%; overflow: hidden; border: 7px solid #fff; border-radius: 20px; box-shadow: 0 24px 40px rgba(0,0,0,.23); transform: rotate(2.5deg); }
    .promise-visual__photo img { width: 100%; height: 325px; object-fit: cover; object-position: center 39%; }
    .promise-stat { position: absolute; right: -4px; bottom: 17px; padding: 13px 17px; border-radius: 13px; color: var(--ink); background: var(--gold); box-shadow: 0 12px 26px rgba(0,0,0,.2); }
    .promise-stat strong, .promise-stat span { display: block; }
    .promise-stat strong { font-size: 1.55rem; line-height: 1; letter-spacing: -.05em; }
    .promise-stat span { margin-top: 4px; font-size: .65rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
    .promise-copy .eyebrow { color: var(--gold); }
    .promise-copy h2 { max-width: 610px; margin: 0; font-size: clamp(2rem, 3.6vw, 3.25rem); line-height: 1.04; letter-spacing: -.053em; }
    .promise-copy > p:not(.eyebrow) { max-width: 590px; margin: 19px 0 0; color: #c7d8ec; font-size: .96rem; }
    .check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; margin: 28px 0 30px; }
    .check-grid div { display: flex; align-items: flex-start; gap: 9px; color: #edf4fb; font-size: .82rem; font-weight: 700; }
    .check-grid svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--mint); }

    /* Packing calculator */
    .supplies { padding: 113px 0; background: #fff7eb; }
    .supplies-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 65px; }
    .kit-list { display: grid; gap: 8px; margin: 27px 0 29px; padding: 0; list-style: none; }
    .kit-list li { display: flex; align-items: center; gap: 10px; color: #49627e; font-size: .85rem; }
    .kit-list li::before { display: grid; width: 20px; height: 20px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--ink); background: var(--gold); content: "✓"; font-size: .68rem; font-weight: 900; }
    .kit-banner { display: flex; align-items: center; gap: 13px; padding: 14px 16px; border: 1px dashed #e4bc7a; border-radius: 13px; color: #6a522f; background: #fffdfa; font-size: .81rem; }
    .kit-banner strong { color: var(--ink); }
    .calc { padding: 26px; border: 1px solid #e9e2d6; border-radius: 20px; background: #fff; box-shadow: 0 17px 35px rgba(51,47,35,.09); }
    .calc__header { display: flex; align-items: start; justify-content: space-between; gap: 14px; margin-bottom: 19px; }
    .calc__header h3 { margin: 0; font-size: 1.2rem; line-height: 1.15; letter-spacing: -.035em; }
    .calc__header p { margin: 4px 0 0; color: var(--muted); font-size: .72rem; }
    .calc-reset { padding: 0; border: 0; color: var(--coral); background: none; font-size: .73rem; font-weight: 850; }
    .calc-reset:hover { text-decoration: underline; }
    .calc-row { display: grid; grid-template-columns: 1fr auto 68px; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid #edf0f3; }
    .calc-item b, .calc-item span { display: block; }
    .calc-item b { font-size: .82rem; line-height: 1.2; }
    .calc-item span { margin-top: 2px; color: #71839a; font-size: .7rem; }
    .counter { display: inline-flex; align-items: center; overflow: hidden; border: 1px solid #d8e0e8; border-radius: 9px; }
    .counter button { display: grid; width: 27px; height: 29px; padding: 0; place-items: center; border: 0; color: var(--ink); background: #f6f8fa; font-size: 1rem; font-weight: 800; }
    .counter button:hover { color: var(--coral); background: #eef3f7; }
    .counter output { width: 27px; text-align: center; font-size: .77rem; font-weight: 800; }
    .row-total { text-align: right; color: var(--ink); font-size: .8rem; font-weight: 850; }
    .calc-total { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; padding: 16px 0 0; border-top: 2px solid var(--ink); }
    .calc-total span { color: #60728b; font-size: .75rem; font-weight: 800; }
    .calc-total strong { font-size: 1.45rem; line-height: 1; letter-spacing: -.05em; }
    .calc .btn { width: 100%; min-height: 43px; margin-top: 18px; font-size: .8rem; }

    /* International */
    .international { padding: 110px 0; }
    .intl-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
    .intl-card { position: relative; min-height: 437px; overflow: hidden; border-radius: 25px; color: #fff; background: var(--ink); }
    .intl-card::before { position: absolute; top: 51px; left: -62px; width: 475px; height: 260px; border: 1px dashed rgba(255,255,255,.28); border-radius: 50%; content: ""; transform: rotate(-20deg); }
    .globe { position: absolute; top: 75px; left: 50%; width: 225px; height: 225px; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; background: radial-gradient(circle at 33% 30%, #4d83bd, #173c6c 74%); box-shadow: inset -20px -18px 30px rgba(0,0,0,.22), 0 15px 30px rgba(0,0,0,.2); transform: translateX(-50%); }
    .globe::before { position: absolute; top: 16px; right: 47px; width: 62px; height: 87px; border-radius: 57% 43% 49% 51% / 33% 47% 53% 67%; background: var(--mint); content: ""; transform: rotate(25deg); }
    .globe::after { position: absolute; bottom: 29px; left: 34px; width: 98px; height: 42px; border-radius: 60% 40% 46% 54% / 51% 46% 54% 49%; background: var(--mint); content: ""; transform: rotate(11deg); }
    .globe-lat, .globe-long { position: absolute; inset: 17px 3px; border: 1px solid rgba(255,255,255,.27); border-radius: 50%; }
    .globe-long { right: 60px; left: 60px; }
    .paper-plane { position: absolute; top: 33px; right: 40px; color: var(--gold); filter: drop-shadow(0 8px 8px rgba(0,0,0,.2)); transform: rotate(-8deg); }
    .paper-plane svg { width: 52px; height: 52px; }
    .intl-card__label { position: absolute; right: 22px; bottom: 22px; left: 22px; padding: 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.08); backdrop-filter: blur(5px); }
    .intl-card__label b, .intl-card__label span { display: block; }
    .intl-card__label b { font-size: .95rem; }
    .intl-card__label span { margin-top: 3px; color: #c9dcf1; font-size: .72rem; }
    .intl-copy > p:not(.eyebrow) { max-width: 620px; margin: 17px 0 0; color: var(--muted); font-size: .9rem; }
    .intl-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 27px; }
    .intl-feature { padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
    .intl-feature:last-child { grid-column: 1 / -1; }
    .intl-feature svg { width: 22px; height: 22px; color: var(--coral); }
    .intl-feature h3 { margin: 9px 0 4px; font-size: .85rem; line-height: 1.2; }
    .intl-feature p { margin: 0; color: var(--muted); font-size: .71rem; line-height: 1.48; }

    /* FAQ and quote */
    .faq-quote { padding: 109px 0; background: var(--cloud); }
    .faq-quote-grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: start; gap: 72px; }
    .faq-list { margin-top: 29px; }
    .faq-item { border-top: 1px solid #d7e1ec; }
    .faq-item:last-child { border-bottom: 1px solid #d7e1ec; }
    .faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border: 0; color: var(--ink); background: none; text-align: left; font-size: .87rem; font-weight: 850; }
    .faq-question span:last-child { display: grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--coral); background: #fff; font-size: 1.17rem; font-weight: 500; transition: transform .2s ease; }
    .faq-item.is-open .faq-question span:last-child { transform: rotate(45deg); }
    .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
    .faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
    .faq-answer > div { overflow: hidden; }
    .faq-answer p { margin: 0; padding: 0 36px 17px 0; color: var(--muted); font-size: .79rem; line-height: 1.62; }
    .quote-card { padding: 33px; border-radius: 22px; color: #fff; background: var(--ink); box-shadow: 0 19px 40px rgba(10,34,69,.18); }
    .quote-card .eyebrow { color: var(--gold); }
    .quote-card h2 { margin: 0; font-size: clamp(1.72rem, 3vw, 2.3rem); line-height: 1.08; letter-spacing: -.045em; }
    .quote-card > p:not(.eyebrow) { margin: 12px 0 25px; color: #c4d5e9; font-size: .84rem; }
    .quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-field { display: grid; gap: 6px; }
    .form-field--full { grid-column: 1 / -1; }
    .form-field label { color: #c3d5ea; font-size: .69rem; font-weight: 750; }
    .form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; outline: 0; color: #fff; background: rgba(255,255,255,.09); font-size: .78rem; transition: border-color .15s ease, background .15s ease; }
    .form-field select option { color: var(--ink); background: #fff; }
    .form-field textarea { min-height: 72px; resize: vertical; }
    .form-field input::placeholder, .form-field textarea::placeholder { color: #aac0da; }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--mint); background: rgba(255,255,255,.14); }
    .quote-submit { width: 100%; margin-top: 5px; border: 0; color: var(--ink); background: var(--mint); }
    .quote-submit:hover { color: var(--ink); background: #e0f9f1; }
    .form-message { display: none; grid-column: 1 / -1; margin: 4px 0 0; color: var(--mint); font-size: .76rem; font-weight: 700; }
    .form-message.is-visible { display: block; }

    /* Footer */
    .footer { color: #c5d6e9; background: #061a35; }
    .footer-main { display: grid; grid-template-columns: 1.55fr .75fr .75fr 1.05fr; gap: 45px; padding: 70px 0 48px; }
    .footer .brand { color: #fff; }
    .footer-copy { max-width: 288px; margin: 17px 0 20px; font-size: .78rem; line-height: 1.62; }
    .socials { display: flex; gap: 7px; }
    .socials a { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; font-size: .7rem; font-weight: 850; }
    .socials a:hover { border-color: var(--coral); color: var(--coral); }
    .footer h3 { margin: 5px 0 16px; color: #fff; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
    .footer-links { display: grid; gap: 9px; font-size: .76rem; }
    .footer-links a:hover { color: var(--gold); }
    .footer-contact { display: grid; gap: 11px; font-size: .76rem; }
    .footer-contact div { display: flex; gap: 9px; align-items: flex-start; }
    .footer-contact svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--gold); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 61px; border-top: 1px solid rgba(255,255,255,.12); color: #9ab0ca; font-size: .68rem; }
    .footer-bottom__links { display: flex; gap: 18px; }
    .footer-bottom__links a:hover { color: #fff; }

    /* responsive */
    @media (max-width: 1040px) {
      .nav-links { gap: 16px; }
      .service-grid, .price-grid { grid-template-columns: repeat(3, 1fr); }
      .price-card--featured { transform: none; }
      .price-card:nth-child(4), .price-card:nth-child(5) { grid-column: span 1; }
      .hero-grid { grid-template-columns: 1fr .82fr; gap: 26px; }
      .hero-photo { right: 15px; }
      .hero-orbit { right: -9px; }
      .footer-main { grid-template-columns: 1.35fr .9fr .9fr; }
      .footer-main > :last-child { grid-column: 2 / 4; }
    }
    @media (max-width: 820px) {
      .topbar__inner { justify-content: center; }
      .topbar__items { display: none; }
      .nav { min-height: 69px; }
      .menu-toggle { display: grid; place-items: center; }
      .nav-links { position: absolute; top: 69px; right: 20px; left: 20px; display: grid; gap: 0; max-height: 0; overflow: hidden; border: 1px solid transparent; border-radius: 14px; background: #fff; box-shadow: 0 14px 28px rgba(9,33,68,.11); opacity: 0; transition: all .25s ease; }
      .nav-links.is-open { max-height: 760px; padding: 8px 15px 15px; border-color: var(--line); opacity: 1; }
      .nav-links a { padding: 12px 7px; }
      .nav-links a::after { display: none; }
      .nav-cta { margin-top: 4px; }
      .hero { min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 71px 0 57px; }
      .hero-copy { max-width: 650px; }
      .hero-visual { width: min(520px, 100%); min-height: 408px; margin: 0 auto; }
      .hero-photo { right: 10%; width: 345px; }
      .hero-orbit { top: 12px; right: calc(10% - 25px); width: 375px; height: 375px; }
      .trust__grid { grid-template-columns: 1fr 1fr; }
      .trust__intro { grid-column: 1 / -1; min-height: 70px; padding: 18px 0; }
      .trust__item:nth-child(2) { border-left: 0; }
      .services-top, .how-header, .pricing__head { align-items: start; flex-direction: column; }
      .how-header .tablist { justify-content: flex-start; }
      .path-panel, .promise-grid, .supplies-grid, .intl-grid, .faq-quote-grid { grid-template-columns: 1fr; }
      .path-panel__intro, .path-panel__details { padding: 37px 33px; }
      .promise-grid, .supplies-grid, .intl-grid, .faq-quote-grid { gap: 44px; }
      .promise-visual { max-width: 480px; width: 100%; margin: 0 auto; }
      .footer-main { grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
      .footer-main > :last-child { grid-column: auto; }
    }
    @media (max-width: 560px) {
      .container { width: min(var(--max), calc(100% - 30px)); }
      .topbar { font-size: .7rem; }
      .brand { font-size: 1.05rem; }
      .hero-grid { padding-top: 55px; }
      .hero h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
      .hero-copy > p:not(.eyebrow) { font-size: .95rem; }
      .hero-visual { min-height: 348px; margin-top: 1px; }
      .hero-photo { right: 4%; width: 285px; border-width: 6px; }
      .hero-orbit { top: 9px; right: calc(4% - 24px); width: 311px; height: 311px; }
      .label-card { right: 1px; bottom: 23px; width: 165px; padding: 12px; }
      .label-card strong { font-size: .9rem; }
      .tracking-card { bottom: 2px; left: 0; width: 182px; padding: 9px; }
      .trust__grid { grid-template-columns: 1fr; }
      .trust__intro { min-height: 68px; }
      .trust__item { min-height: 72px; padding: 13px 0; border-top: 1px solid rgba(9,33,68,.14); border-left: 0; }
      .trust__item:nth-child(3), .trust__item:nth-child(4) { display: none; }
      .services, .how, .pricing, .promise, .supplies, .international, .faq-quote { padding: 77px 0; }
      .services-top .btn { width: 100%; margin-top: 3px; }
      .service-grid, .price-grid { grid-template-columns: 1fr; gap: 11px; margin-top: 29px; }
      .service-card { min-height: 0; padding: 19px; }
      .service-card__number, .service-icon { display: inline-grid; }
      .service-icon { margin: 0 0 0 12px; vertical-align: middle; }
      .service-card h3 { margin-top: 15px; }
      .price-card { min-height: 0; }
      .price-card--featured { order: -1; }
      .price-card h3 { min-height: 0; }
      .price-card__button { margin-top: 20px; }
      .tablist { display: grid; width: 100%; grid-template-columns: 1fr 1fr; }
      .tab { min-height: 43px; padding: 8px; font-size: .68rem; }
      .path-panel { border-radius: 17px; }
      .path-panel__intro, .path-panel__details { padding: 28px 22px; }
      .panel-note { padding: 14px 17px; }
      .pricing-disclaimer { margin: 0; }
      .promise-visual { min-height: 315px; }
      .promise-visual__photo img { height: 265px; }
      .promise-stat { right: 0; }
      .check-grid { grid-template-columns: 1fr; gap: 11px; }
      .calc { padding: 20px 16px; }
      .calc-row { grid-template-columns: 1fr auto 53px; gap: 6px; }
      .row-total { font-size: .73rem; }
      .intl-card { min-height: 359px; }
      .globe { top: 53px; width: 192px; height: 192px; }
      .paper-plane { right: 23px; }
      .intl-feature-grid { grid-template-columns: 1fr; }
      .intl-feature:last-child { grid-column: auto; }
      .quote-card { padding: 25px 19px; }
      .quote-form { grid-template-columns: 1fr; }
      .form-field--full { grid-column: auto; }
      .footer-main { grid-template-columns: 1fr 1fr; padding: 52px 0 36px; gap: 30px 18px; }
      .footer-main > :first-child { grid-column: 1 / -1; }
      .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 13px 0; }
    }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

    /* Expanded navigation: Home, Pricing, Services, Contact */
    .nav-links { gap: 27px; }
    .nav-dropdown { position: relative; }
    .dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; color: #36506f; background: transparent; font-size: .89rem; font-weight: 700; }
    .dropdown-toggle > span { display: inline-block; margin-top: -3px; color: var(--coral); font-size: 1.08rem; line-height: 1; transition: transform .2s ease; }
    .dropdown-toggle:hover, .nav-dropdown.is-open .dropdown-toggle { color: var(--ink); }
    .nav-dropdown.is-open .dropdown-toggle > span { transform: rotate(180deg); }
    .dropdown-menu { position: absolute; top: calc(100% + 20px); left: 50%; display: grid; width: 250px; padding: 7px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 16px 35px rgba(9,33,68,.14); opacity: 0; pointer-events: none; transform: translate(-50%, -7px); transition: opacity .18s ease, transform .18s ease; }
    .dropdown-menu::before { position: absolute; top: -6px; left: 50%; width: 11px; height: 11px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: #fff; content: ""; transform: translateX(-50%) rotate(45deg); }
    .dropdown-menu--services { width: 276px; }
    .nav-dropdown.is-open .dropdown-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
    .dropdown-menu a { display: grid; gap: 2px; padding: 10px 11px; border-radius: 9px; color: var(--ink); transition: color .16s ease, background .16s ease; }
    .dropdown-menu a::after { display: none; }
    .dropdown-menu a:hover, .dropdown-menu a:focus-visible { color: var(--coral); background: #fff2ef; outline: 0; }
    .dropdown-menu a span { font-size: .79rem; font-weight: 850; line-height: 1.2; }
    .dropdown-menu a small { color: #72849a; font-size: .66rem; font-weight: 550; line-height: 1.25; }
    @media (min-width: 821px) { .nav-dropdown::after { position: absolute; top: 100%; right: -12px; left: -12px; height: 24px; content: ""; } .nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); } }
    @media (max-width: 820px) {
      .nav-links { gap: 0; }
      .nav-dropdown { width: 100%; }
      .dropdown-toggle { width: 100%; justify-content: space-between; padding: 12px 7px; }
      .dropdown-menu, .dropdown-menu--services { position: static; width: 100%; max-height: 0; margin: 0; padding: 0 7px; overflow: hidden; border: 0; border-radius: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; transition: max-height .25s ease, padding .25s ease; }
      .dropdown-menu::before { display: none; }
      .nav-dropdown.is-open .dropdown-menu { max-height: 400px; padding: 0 7px 7px; transform: none; }
      .dropdown-menu a { padding: 9px 10px; background: #f5f8fc; }
    }
  
    /* Mobile optimization pass */
    @media (max-width: 600px) {
      html { -webkit-text-size-adjust: 100%; }
      body { min-width: 320px; overflow-x: hidden; }
      .container { width: min(var(--max), calc(100% - 28px)); }
      .topbar__inner { min-height: 32px; text-align: center; }
      .nav { min-height: 64px; }
      .brand-mark { width: 31px; height: 31px; }
      .menu-toggle { width: 44px; height: 44px; }
      .nav-links { top: 64px; right: 12px; left: 12px; }
      .nav-links.is-open { max-height: calc(100dvh - 78px); overflow-y: auto; overscroll-behavior: contain; }
      .nav-links a, .dropdown-toggle { min-height: 46px; padding: 12px 8px; }
      .dropdown-menu a { min-height: 48px; padding: 10px 11px; }
      .hero-grid { gap: 25px; padding: 45px 0 43px; }
      .hero h1 { font-size: clamp(2.45rem, 12vw, 3.5rem); line-height: 1.02; }
      .hero-copy > p:not(.eyebrow) { margin-top: 17px; font-size: .92rem; }
      .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 23px; }
      .hero-actions .btn { width: 100%; min-height: 50px; }
      .hero-note { align-items: flex-start; margin-top: 20px; font-size: .75rem; }
      .hero-visual { min-height: 315px; }
      .hero-photo { right: 6%; width: 252px; }
      .hero-orbit { top: 7px; right: calc(6% - 21px); width: 277px; height: 277px; }
      .label-card { right: 0; bottom: 19px; width: 155px; padding: 11px; }
      .tracking-card { bottom: 0; width: 172px; padding: 8px; }
      .trust__item:nth-child(3), .trust__item:nth-child(4) { display: flex; }
      .trust__item { min-height: 66px; }
      .services, .how, .pricing, .promise, .supplies, .international, .faq-quote { padding: 67px 0; }
      .section-heading h2 { font-size: clamp(1.9rem, 9vw, 2.45rem); line-height: 1.07; }
      .section-heading > p:last-child { font-size: .9rem; }
      .service-grid { margin-top: 27px; }
      .service-card { padding: 18px; }
      .service-card a { min-height: 32px; margin-top: 14px; }
      .tablist { grid-template-columns: 1fr; gap: 7px; }
      .tab { min-height: 46px; text-align: left; font-size: .75rem; }
      .path-panel__intro, .path-panel__details { padding: 26px 20px; }
      .path-panel__intro h3 { font-size: 1.85rem; }
      .step-list li { min-height: 0; padding: 0 0 24px 55px; }
      .step-list li::before { width: 36px; height: 36px; }
      .step-list li:not(:last-child)::after { top: 39px; left: 17px; }
      .panel-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
      .panel-actions .btn { width: 100%; min-height: 48px; }
      .panel-note { font-size: .73rem; }
      .price-grid { gap: 14px; }
      .price-card { padding: 21px 18px 18px; }
      .price-card__button { min-height: 45px; }
      .pricing-footnote { align-items: flex-start; margin-top: 25px; font-size: .74rem; }
      .promise-visual { min-height: 280px; }
      .promise-visual__photo img { height: 233px; }
      .promise-stat { bottom: 0; padding: 11px 13px; }
      .promise-stat strong { font-size: 1.28rem; }
      .calc { padding: 19px 14px; }
      .calc-row { grid-template-columns: minmax(0, 1fr) auto 54px; gap: 6px; }
      .counter button { width: 29px; height: 32px; }
      .calc .btn { min-height: 48px; }
      .intl-card { min-height: 335px; }
      .quote-card { padding: 24px 18px; }
      .form-field input, .form-field select, .form-field textarea { min-height: 44px; }
      .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 46px 0 33px; }
      .footer-main > :first-child, .footer-main > :last-child { grid-column: auto; }
      .footer-bottom { padding: 15px 0; }
      .footer-bottom__links { flex-wrap: wrap; gap: 10px 16px; }
    }
    @media (max-width: 380px) {
      .container { width: calc(100% - 24px); }
      .hero h1 { font-size: 2.32rem; }
      .hero-visual { min-height: 300px; }
      .hero-photo { width: 235px; }
      .hero-orbit { width: 257px; height: 257px; }
    }

/* Brand logo, responsive tablet layouts, and scroll-reveal motion */
.brand--image { display: inline-flex; width: 208px; max-width: 42vw; align-items: center; gap: 0; }
.brand-logo { display: block; width: 100%; height: auto; max-height: 38px; object-fit: contain; object-position: left center; }
.footer .brand--image { width: 196px; max-width: 100%; padding: 6px 9px; border-radius: 9px; background: #fff; }
.footer .brand-logo { max-height: 32px; }

@media (min-width: 821px) and (max-width: 1080px) {
  .container { width: min(var(--max), calc(100% - 52px)); }
  .brand--image { width: 186px; }
  .nav-links { gap: 17px; font-size: .84rem; }
  .dropdown-menu { top: calc(100% + 17px); }
  .sub-hero__grid { gap: 28px; }
  .sub-hero h1 { font-size: clamp(2.7rem, 5vw, 4rem); }
  .service-glance .glance-card { padding: 15px 13px; }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card--featured { transform: none; }
}
@media (min-width: 601px) and (max-width: 820px) {
  .container { width: min(var(--max), calc(100% - 48px)); }
  .brand--image { width: 194px; max-width: 48vw; }
  .nav-links { right: 24px; left: 24px; }
  .sub-hero__grid { padding: 58px 0; }
  .hero-actions { gap: 11px; }
  .glance-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-overview { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
}
@media (max-width: 600px) {
  .brand--image { width: 178px; max-width: 56vw; }
  .brand-logo { max-height: 31px; }
  .footer .brand--image { width: 184px; padding: 6px 8px; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translate3d(0, 26px, 0); transition: opacity .62s ease, transform .62s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
  .reveal.reveal--scale { transform: scale(.96); }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: .08s; }
  .reveal-delay-2 { transition-delay: .16s; }
  .reveal-delay-3 { transition-delay: .24s; }
  .hero-mark { animation: hs-float 5.5s ease-in-out infinite; }
  @keyframes hs-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
}


/* Logo visibility and second-pass tablet/mobile typography refinements */
.site-header .brand--image { flex: 0 0 auto; }
.footer .brand--footer { width: 228px; max-width: 100%; padding: 0; border-radius: 0; background: transparent; }
.footer .brand--footer .brand-logo { width: 100%; max-height: 38px; object-fit: contain; object-position: left center; }

@media (min-width: 1081px) {
  .site-header .nav { min-height: 86px; }
  .site-header .brand--image { width: 286px; max-width: 286px; }
  .site-header .brand-logo { max-height: 48px; }
  .site-header .nav-links { gap: 24px; font-size: .9rem; }
}
@media (min-width: 821px) and (max-width: 1080px) {
  .site-header .brand--image { width: 210px; max-width: 210px; }
  .site-header .brand-logo { max-height: 35px; }
  .site-header .nav-links { gap: 16px; }
}
@media (min-width: 601px) and (max-width: 820px) {
  .site-header .brand--image { width: 202px; max-width: 50vw; }
  .footer .brand--footer { width: 214px; }
}
@media (max-width: 600px) {
  .footer .brand--footer { width: 198px; }
  .footer .brand--footer .brand-logo { max-height: 33px; }
  p, li, .glance-card span, .feature p, .item-list, .footer-copy { overflow-wrap: anywhere; }
  .topbar { padding: 4px 0; }
  .topbar__inner > span { max-width: 100%; font-size: .68rem; }
  .hero h1, .page-hero h1, .sub-hero h1 { letter-spacing: -.055em; }
  .hero-copy > p:not(.eyebrow), .page-hero p:last-child, .sub-hero__copy > p:last-child { max-width: 100%; }
  .services-top, .how-header, .pricing__head, .map-heading { gap: 17px; }
  .service-card h3, .price-card h3 { min-height: 0; }
  .service-card p, .price-card p, .feature p { line-height: 1.52; }
  .price-card__price { white-space: nowrap; }
  .intl-feature-grid { gap: 10px; }
  .quote-card > p:not(.eyebrow), .contact-form-card > p { line-height: 1.55; }
  .footer-copy { max-width: 100%; }
}
@media (max-width: 380px) {
  .site-header .brand--image { width: 166px; max-width: 54vw; }
  .site-header .brand-logo { max-height: 29px; }
  .footer .brand--footer { width: 185px; }
}


/* Prevent decorative circles from covering actions and show the full mobile hero collage. */
.hero::before, .hero::after, .hero-orbit,
.sub-hero::before, .sub-hero::after,
.page-hero::before, .page-hero::after { pointer-events: none; }
.hero-copy, .sub-hero__grid, .page-hero__inner { position: relative; z-index: 2; }
.hero-actions { position: relative; z-index: 4; }

@media (max-width: 820px) {
  .sub-hero::after { display: none; }
}
@media (max-width: 600px) {
  .hero::before, .hero::after { opacity: .35; }
  .hero-visual { min-height: 415px; }
  .hero-photo { right: 5%; width: 238px; aspect-ratio: 2 / 3; }
  .hero-photo img { height: 100%; object-fit: contain; object-position: center; }
  .hero-orbit { right: calc(5% - 22px); width: 268px; height: 355px; border-radius: 46%; }
  .label-card { right: 0; bottom: 24px; z-index: 3; }
  .tracking-card { bottom: 0; left: 0; z-index: 3; }
}
@media (max-width: 380px) {
  .hero-visual { min-height: 390px; }
  .hero-photo { width: 220px; }
  .hero-orbit { width: 246px; height: 330px; }
}


/* Mobile hero composition: keeps the full shipping collage, tracking card, and move-in card readable. */
@media (max-width: 820px) {
  .hero-visual {
    isolation: isolate;
    width: min(100%, 620px);
    min-height: clamp(430px, 72vw, 535px);
    margin: 6px auto 0;
  }
  .hero-visual::before {
    position: absolute;
    z-index: -1;
    top: 2px;
    right: -6%;
    width: min(86vw, 510px);
    height: min(86vw, 510px);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
    background: radial-gradient(circle at 42% 45%, rgba(29,79,135,.55), rgba(9,33,68,0) 66%);
    box-shadow: 0 0 0 42px rgba(255,255,255,.018);
    content: "";
  }
  .hero-photo {
    z-index: 1;
    top: 13px;
    right: max(5%, 24px);
    width: clamp(280px, 67vw, 410px);
    height: auto;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 7px solid #fff;
    border-radius: 210px 210px 25px 25px;
    box-shadow: 0 23px 42px rgba(0,0,0,.27);
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .hero-orbit {
    z-index: 0;
    top: 14px;
    right: max(2%, 8px);
    width: min(78vw, 450px);
    height: min(78vw, 450px);
  }
  .label-card {
    z-index: 3;
    right: 0;
    bottom: 32px;
    width: min(204px, 48vw);
    padding: 14px 15px 13px;
    transform: rotate(2deg);
  }
  .tracking-card {
    z-index: 3;
    bottom: 9px;
    left: 0;
    width: min(220px, 57vw);
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .hero-visual { min-height: 430px; }
  .hero-photo { right: 5%; width: 280px; }
  .hero-orbit { right: calc(5% - 12px); width: 315px; height: 315px; }
  .label-card { right: 0; bottom: 26px; width: 170px; padding: 11px 12px; }
  .label-card strong { font-size: .93rem; }
  .tracking-card { width: 184px; bottom: 0; padding: 8px; }
}


/* Sticky header, hierarchy, icon alignment, and service-hero refinement. */
body .site-header { z-index: 1000; overflow: visible !important; isolation: isolate; }
body .site-header .nav { display: flex; align-items: center; overflow: visible; }
body .site-header .brand--image { display: flex; align-items: center; }
body .site-header .nav-links, body .site-header .nav-dropdown, body .site-header .dropdown-toggle { align-items: center; }
body .site-header .dropdown-toggle { line-height: 1; white-space: nowrap; }
body.admin-bar .site-header { top: 32px; }

.hero-copy > p:not(.eyebrow) { color: #e0ecfb; font-size: 1.18rem; font-weight: 520; line-height: 1.7; }
.sub-hero__copy > p:last-child { color: #d5e4f5; font-size: 1.13rem; font-weight: 520; line-height: 1.68; }
.page-hero p:last-child { color: #d5e4f5; font-size: 1.1rem; font-weight: 520; line-height: 1.66; }
.hero .eyebrow, .sub-hero .eyebrow { font-size: .78rem; }

.price-card__icon { display: grid; width: 42px; height: 42px; margin: 13px 0 2px; place-items: center; border-radius: 12px; color: var(--page-accent, var(--coral)); background: var(--page-soft, #fff0ed); }
.price-card__icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.price-card--featured .price-card__icon { color: var(--ink); background: var(--mint); }
.glance-card, .trust__item, .info-item, .note { align-items: center; }
.glance-card__icon, .trust__item > svg, .info-item > svg, .note > svg { flex: 0 0 auto; }

.service-hero-media { position: relative; z-index: 1; min-height: 318px; overflow: hidden; border: 6px solid rgba(255,255,255,.96); border-radius: 26px; box-shadow: 0 23px 42px rgba(0,0,0,.28); background: #173c69; }
.service-hero-media::after { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(6,27,56,.10) 15%, rgba(6,27,56,0) 58%, rgba(6,27,56,.28)); content: ""; pointer-events: none; }
.service-hero-media img { width: 100%; height: 318px; object-fit: cover; object-position: center; }
.service-hero-media figcaption { position: absolute; z-index: 2; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: #fff; background: rgba(7,30,62,.76); box-shadow: 0 7px 16px rgba(0,0,0,.16); font-size: .68rem; font-weight: 850; backdrop-filter: blur(7px); }
.service-hero-media figcaption svg { width: 17px; height: 17px; color: var(--gold); }

@media (min-width: 1081px) {
  body .site-header { min-height: 94px; }
  body .site-header .nav { height: 94px; min-height: 94px !important; }
  body .site-header .brand--image { width: 302px; max-width: 302px; }
  body .site-header .brand-logo { max-height: 50px; }
  body .site-header .nav-links { gap: 27px; }
}
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
@media (max-width: 820px) {
  .sub-hero__copy > p:last-child { font-size: 1.03rem; }
  .service-hero-media { width: min(100%, 570px); min-height: 285px; margin: 2px auto 0; border-width: 5px; }
  .service-hero-media img { height: 285px; }
}
@media (max-width: 600px) {
  .hero-copy > p:not(.eyebrow), .sub-hero__copy > p:last-child, .page-hero p:last-child { font-size: 1rem; line-height: 1.62; }
  .hero .eyebrow, .sub-hero .eyebrow { font-size: .72rem; }
  .price-card__icon { width: 39px; height: 39px; margin-top: 11px; }
  .service-hero-media { min-height: 210px; border-width: 4px; border-radius: 19px; }
  .service-hero-media img { height: 210px; }
  .service-hero-media figcaption { right: 10px; bottom: 10px; padding: 7px 9px; font-size: .64rem; }
}


/* Slightly larger supporting text for improved readability. */
.topbar { font-size: .85rem; }
.nav-links, .dropdown-toggle { font-size: .93rem; }
.dropdown-menu a span { font-size: .83rem; }
.dropdown-menu a small { font-size: .72rem; }
.eyebrow { font-size: .76rem; }
.hero-label { font-size: .8rem; }
.hero-label b { font-size: .98rem; }
.service-card__number, .price-card__size { font-size: .74rem; }
.service-card p, .feature p, .kit-card p { font-size: .84rem; }
.item-list { font-size: .81rem; }
.notice, .service-endnote { font-size: .83rem; }
.glance-card b { font-size: .86rem; }
.glance-card span { font-size: .74rem; }
.footer-copy, .footer-links, .footer-contact { font-size: .82rem; }
.footer-bottom { font-size: .72rem; }
@media (max-width: 600px) {
  .topbar { font-size: .74rem; }
  .nav-links, .dropdown-toggle { font-size: .91rem; }
  .dropdown-menu a span { font-size: .81rem; }
  .dropdown-menu a small { font-size: .7rem; }
  .eyebrow { font-size: .74rem; }
  .service-card p, .feature p, .kit-card p { font-size: .82rem; }
  .item-list { font-size: .79rem; }
  .notice, .service-endnote { font-size: .8rem; }
  .glance-card span { font-size: .71rem; }
  .footer-copy, .footer-links, .footer-contact { font-size: .8rem; }
}


/* Mobile legal-navigation spacing: each footer route becomes a clear separate tap target. */
@media (max-width: 600px) {
  .footer-bottom > div,
  .footer-bottom__links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 3px;
  }
  .footer-bottom > div a,
  .footer-bottom__links a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    line-height: 1;
  }
  .footer-bottom > div a:hover,
  .footer-bottom__links a:hover { border-color: var(--gold); }
}


/* Stronger mobile logo treatment: larger wordmark, better contrast, and a safe sticky-header height. */
@media (max-width: 600px) {
  body .site-header { min-height: 74px; }
  body .site-header .nav { min-height: 74px; height: 74px; }
  body .site-header .brand--image { width: 220px; max-width: 64vw; }
  body .site-header .brand-logo { max-height: 42px; filter: contrast(1.26) saturate(1.12); }
  .nav-links { top: 74px; }
  .footer .brand--footer { width: 214px; }
  .footer .brand--footer .brand-logo { max-height: 36px; filter: none; }
}
@media (max-width: 380px) {
  body .site-header .brand--image { width: 202px; max-width: 63vw; }
  body .site-header .brand-logo { max-height: 38px; }
}


/* Homepage v2: roadmap, packing tools, and stand-alone FAQ. */
.student-roadmap { padding: 108px 0 102px; background: var(--paper); }
.roadmap-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.roadmap-head .btn { flex: 0 0 auto; }
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 42px; }
.roadmap-card { position: relative; min-height: 288px; padding: 25px 23px 21px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.roadmap-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.roadmap-card:nth-child(2) { background: #eef8f4; }
.roadmap-card:nth-child(3) { color: #fff; background: var(--ink-2); }
.roadmap-card__icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; color: var(--ink); background: var(--gold); }
.roadmap-card:nth-child(2) .roadmap-card__icon { color: #fff; background: #40aa8e; }
.roadmap-card:nth-child(3) .roadmap-card__icon { color: var(--ink); background: var(--mint); }
.roadmap-card__icon svg { width: 25px; height: 25px; }
.roadmap-card__step { display: block; margin-top: 22px; color: #7186a0; font-size: .71rem; font-weight: 900; letter-spacing: .09em; }
.roadmap-card:nth-child(3) .roadmap-card__step, .roadmap-card:nth-child(3) p { color: #c3d4e8; }
.roadmap-card h3 { margin: 8px 0 6px; font-size: 1.18rem; line-height: 1.15; letter-spacing: -.035em; }
.roadmap-card p { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.55; }
.roadmap-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: inherit; font-size: .8rem; font-weight: 850; }
.roadmap-card a:hover { color: var(--coral); }

.campus-kit { position: relative; padding: 105px 0; overflow: hidden; background: #fff7eb; }
.campus-kit::after { position: absolute; right: -160px; bottom: -230px; width: 540px; height: 540px; border: 45px solid rgba(240,100,82,.08); border-radius: 50%; content: ""; }
.campus-kit__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 76px; }
.campus-kit__visual { position: relative; min-height: 365px; }
.campus-kit__halo { position: absolute; bottom: 0; left: 0; width: 84%; height: 82%; border-radius: 27px; background: var(--coral); transform: rotate(-4deg); }
.campus-kit__visual img { position: absolute; top: 0; left: 10%; width: 82%; height: 320px; border: 7px solid #fff; border-radius: 20px; box-shadow: 0 23px 38px rgba(61,42,19,.2); object-fit: cover; object-position: center 42%; transform: rotate(2deg); }
.campus-kit__tag { position: absolute; right: 0; bottom: 8px; display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; border-radius: 12px; color: var(--ink); background: var(--gold); box-shadow: 0 12px 23px rgba(61,42,19,.18); font-size: .76rem; font-weight: 900; }
.campus-kit__tag svg { width: 18px; height: 18px; }
.campus-kit__copy h2 { max-width: 610px; margin: 0; font-size: clamp(2rem, 3.7vw, 3.25rem); line-height: 1.05; letter-spacing: -.055em; }
.campus-kit__copy > p:not(.eyebrow) { max-width: 600px; margin: 18px 0 0; color: var(--muted); font-size: 1rem; }
.campus-kit__list { display: grid; gap: 12px; margin: 27px 0 30px; padding: 0; list-style: none; }
.campus-kit__list li { display: flex; align-items: center; gap: 10px; color: #405d7b; font-size: .86rem; font-weight: 700; }
.campus-kit__list svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--coral); }
.campus-kit__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 17px; }

.faq-home { padding: 106px 0; background: var(--cloud); }
.faq-home__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 76px; align-items: start; }
.faq-home__intro h2 { max-width: 500px; margin: 0; font-size: clamp(2rem, 3.8vw, 3.25rem); line-height: 1.05; letter-spacing: -.055em; }
.faq-home__intro > p:not(.eyebrow) { max-width: 460px; margin: 17px 0 27px; color: var(--muted); font-size: .96rem; }
.faq-home .faq-list { margin: 0; }
.faq-home .faq-item { border-color: #d3dfeb; }
.faq-home .faq-question { min-height: 61px; font-size: .92rem; }

@media (max-width: 1040px) {
  .roadmap-grid { grid-template-columns: repeat(3, 1fr); }
  .campus-kit__grid, .faq-home__grid { gap: 48px; }
}
@media (max-width: 820px) {
  .student-roadmap, .campus-kit, .faq-home { padding: 77px 0; }
  .roadmap-head { align-items: start; flex-direction: column; }
  .campus-kit__grid, .faq-home__grid { grid-template-columns: 1fr; }
  .campus-kit__visual { max-width: 500px; width: 100%; margin: 0 auto; }
}
@media (max-width: 600px) {
  .student-roadmap, .campus-kit, .faq-home { padding: 66px 0; }
  .roadmap-head .btn { width: 100%; min-height: 49px; }
  .roadmap-grid { grid-template-columns: 1fr; gap: 11px; margin-top: 28px; }
  .roadmap-card { min-height: 0; padding: 20px 18px; }
  .roadmap-card__icon { width: 43px; height: 43px; }
  .roadmap-card__step { margin-top: 15px; }
  .roadmap-card p { font-size: .84rem; }
  .roadmap-card a { min-height: 36px; }
  .campus-kit__grid, .faq-home__grid { gap: 38px; }
  .campus-kit__visual { min-height: 285px; }
  .campus-kit__visual img { height: 240px; }
  .campus-kit__tag { right: 0; bottom: 0; padding: 10px 12px; }
  .campus-kit__copy h2, .faq-home__intro h2 { font-size: clamp(1.9rem, 9vw, 2.45rem); line-height: 1.08; }
  .campus-kit__copy > p:not(.eyebrow), .faq-home__intro > p:not(.eyebrow) { font-size: .92rem; }
  .campus-kit__list { gap: 10px; margin: 23px 0 25px; }
  .campus-kit__list li { align-items: flex-start; font-size: .83rem; }
  .campus-kit__actions { display: grid; grid-template-columns: 1fr; gap: 13px; }
  .campus-kit__actions .btn { width: 100%; min-height: 49px; }
  .faq-home .faq-question { min-height: 58px; font-size: .86rem; }
  .faq-home .faq-answer p { padding-right: 8px; font-size: .8rem; }
  .faq-home__intro .btn { width: 100%; min-height: 49px; }
}


/* Homepage Move-Ready Support section, replaces the former packing-supplies block. */
.move-ready { position: relative; padding: 106px 0; overflow: hidden; background: #eff7f5; }
.move-ready::after { position: absolute; top: -245px; right: -188px; width: 550px; height: 550px; border: 46px solid rgba(36,152,121,.08); border-radius: 50%; content: ""; }
.move-ready__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 78px; }
.move-ready__visual { position: relative; min-height: 365px; }
.move-ready__shape { position: absolute; bottom: 0; left: 0; width: 84%; height: 82%; border-radius: 28px; background: #2aa281; transform: rotate(-4deg); }
.move-ready__visual img { position: absolute; top: 0; left: 10%; width: 82%; height: 320px; border: 7px solid #fff; border-radius: 21px; box-shadow: 0 24px 39px rgba(15,66,57,.2); object-fit: cover; object-position: center 42%; transform: rotate(2deg); }
.move-ready__tag { position: absolute; right: 0; bottom: 8px; display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; border-radius: 12px; color: var(--ink); background: var(--mint); box-shadow: 0 12px 23px rgba(15,66,57,.17); font-size: .78rem; font-weight: 900; }
.move-ready__tag svg { width: 18px; height: 18px; color: #22866d; }
.move-ready__copy h2 { max-width: 600px; margin: 0; font-size: clamp(2rem, 3.7vw, 3.25rem); line-height: 1.05; letter-spacing: -.055em; }
.move-ready__copy > p:not(.eyebrow) { max-width: 605px; margin: 18px 0 0; color: var(--muted); font-size: 1rem; }
.move-ready__points { display: grid; gap: 15px; margin: 28px 0 30px; }
.move-ready__points > div { display: flex; align-items: flex-start; gap: 11px; }
.move-ready__point-icon { display: grid; width: 35px; height: 35px; flex: 0 0 auto; place-items: center; border-radius: 11px; color: #fff; background: #2aa281; }
.move-ready__point-icon svg { width: 19px; height: 19px; }
.move-ready__points b, .move-ready__points span { display: block; }
.move-ready__points b { font-size: .87rem; line-height: 1.2; }
.move-ready__points div div span { margin-top: 3px; color: var(--muted); font-size: .77rem; line-height: 1.42; }
.move-ready__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 17px; }
@media (max-width: 820px) {
  .move-ready { padding: 77px 0; }
  .move-ready__grid { grid-template-columns: 1fr; gap: 44px; }
  .move-ready__visual { max-width: 500px; width: 100%; margin: 0 auto; }
}
@media (max-width: 600px) {
  .move-ready { padding: 66px 0; }
  .move-ready__grid { gap: 38px; }
  .move-ready__visual { min-height: 285px; }
  .move-ready__visual img { height: 240px; }
  .move-ready__tag { right: 0; bottom: 0; padding: 10px 12px; font-size: .7rem; }
  .move-ready__copy h2 { font-size: clamp(1.9rem, 9vw, 2.45rem); line-height: 1.08; }
  .move-ready__copy > p:not(.eyebrow) { font-size: .92rem; }
  .move-ready__points { gap: 13px; margin: 24px 0; }
  .move-ready__points b { font-size: .84rem; }
  .move-ready__points div div span { font-size: .74rem; }
  .move-ready__actions { display: grid; grid-template-columns: 1fr; gap: 13px; }
  .move-ready__actions .btn { width: 100%; min-height: 49px; }
}


/* Explicit roadmap icons and colored action buttons. */
.roadmap-card__icon svg { display: block; width: 25px; height: 25px; stroke: currentColor; }
.roadmap-card .roadmap-card__button { display: inline-flex; min-height: 40px; align-items: center; gap: 7px; margin-top: 18px; padding: 9px 12px; border-radius: 9px; color: #fff; background: var(--coral); box-shadow: 0 7px 15px rgba(240,100,82,.2); font-size: .78rem; font-weight: 850; line-height: 1.1; }
.roadmap-card .roadmap-card__button:hover { color: #fff; background: var(--coral-dark); }
.roadmap-card:nth-child(2) .roadmap-card__button { background: #258f76; box-shadow: 0 7px 15px rgba(37,143,118,.2); }
.roadmap-card:nth-child(2) .roadmap-card__button:hover { background: #1f7d67; }
.roadmap-card:nth-child(3) .roadmap-card__button { color: var(--ink); background: var(--mint); box-shadow: none; }
.roadmap-card:nth-child(3) .roadmap-card__button:hover { color: var(--ink); background: #e0f8f0; }
@media (max-width: 600px) {
  .roadmap-card .roadmap-card__button { width: 100%; min-height: 45px; justify-content: center; margin-top: 16px; font-size: .8rem; }
}


/* Desktop footer legal links: clear, separate click targets. */
@media (min-width: 601px) {
  .footer-bottom > div,
  .footer-bottom__links {
    display: flex !important;
    align-items: center;
    gap: 18px !important;
  }
  .footer-bottom > div a,
  .footer-bottom__links a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 4px 9px;
    border-radius: 7px;
    line-height: 1;
  }
  .footer-bottom > div a + a,
  .footer-bottom__links a + a { margin-left: 2px; }
  .footer-bottom > div a:hover,
  .footer-bottom__links a:hover { background: rgba(255,255,255,.08); }
}


/* Keep the service-panel note tight to its content; prevent unused grid-row space below it. */
.path-panel { grid-template-rows: auto auto; align-content: start; }
.panel-note { min-height: 0; height: auto; align-self: start; }
@media (max-width: 600px) { .panel-note { padding-bottom: 14px; } }


/* Structural fix: the note is outside the two-column grid, eliminating the stretched empty grid row. */
.service-panel-stack { overflow: hidden; border-radius: 25px; background: #fff; box-shadow: 0 13px 34px rgba(20,52,89,.08); }
.service-panel-stack .path-panel { border-radius: 0; box-shadow: none; }
.panel-note--outside { display: flex; min-height: 0; align-items: flex-start; gap: 11px; padding: 14px 21px; border-top: 1px solid var(--line); color: #47617f; background: #f9fbfd; font-size: .76rem; }
.panel-note--outside svg { width: 18px; flex: 0 0 auto; color: var(--coral); }
@media (max-width: 600px) { .service-panel-stack { border-radius: 17px; } .panel-note--outside { padding: 14px 17px; font-size: .73rem; } }


/* Final height guard: prevent any inherited/theme grid sizing from stretching service notes. */
.tab-panel, .service-panel-stack, .service-panel-stack .path-panel, .panel-note--outside {
  min-height: 0 !important;
  height: auto !important;
}
.service-panel-stack { display: block !important; }
.panel-note--outside {
  display: flex !important;
  flex: 0 0 auto !important;
  padding-bottom: 14px !important;
}


/* Content-sized service note, deliberately not a grid/flex panel. */
.path-panel { border-radius: 25px; }
.service-included { display: block !important; min-height: 0 !important; height: auto !important; margin: 12px 4px 0; padding: 12px 14px; border-left: 3px solid var(--coral); border-radius: 8px; color: #48627f; background: #f8fbfe; font-size: .78rem; line-height: 1.5; }
.service-included strong { color: var(--ink); }
@media (max-width: 600px) { .path-panel { border-radius: 17px; } .service-included { margin: 10px 0 0; padding: 11px 12px; font-size: .75rem; } }


/* Final small-text boost for clearer reading without changing the main visual hierarchy. */
.topbar { font-size: .89rem; }
.nav-links, .dropdown-toggle { font-size: .96rem; }
.dropdown-menu a small { font-size: .75rem; }
.eyebrow, .roadmap-card__step, .price-card__size { font-size: .79rem; }
.roadmap-card p, .service-card p, .feature p, .kit-card p { font-size: .89rem; }
.glance-card span, .move-ready__points div div span { font-size: .8rem; }
.footer-copy, .footer-links, .footer-contact { font-size: .85rem; }
.footer-bottom { font-size: .75rem; }
@media (max-width: 600px) {
  .topbar { font-size: .77rem; }
  .nav-links, .dropdown-toggle { font-size: .94rem; }
  .dropdown-menu a small { font-size: .73rem; }
  .roadmap-card p, .service-card p, .feature p, .kit-card p { font-size: .86rem; }
  .glance-card span, .move-ready__points div div span { font-size: .77rem; }
  .footer-copy, .footer-links, .footer-contact { font-size: .83rem; }
}


/* Accessible supporting type scale for desktop, tablet, and mobile. */
.topbar { font-size: .96rem; }
.nav-links, .dropdown-toggle { font-size: 1rem; }
.dropdown-menu a span { font-size: .9rem; }
.dropdown-menu a small { font-size: .82rem; }
.eyebrow, .roadmap-card__step, .price-card__size { font-size: .85rem; }
.hero-label { font-size: .88rem; }
.hero-label b { font-size: 1.04rem; }
.roadmap-card p, .service-card p, .feature p, .kit-card p { font-size: .96rem; line-height: 1.6; }
.item-list { font-size: .9rem; }
.notice, .service-included, .service-endnote { font-size: .9rem; line-height: 1.58; }
.glance-card b { font-size: .92rem; }
.glance-card span, .move-ready__points div div span { font-size: .86rem; }
.footer-copy, .footer-links, .footer-contact { font-size: .92rem; }
.footer-bottom { font-size: .82rem; }
@media (min-width: 601px) and (max-width: 1024px) {
  .topbar { font-size: .92rem; }
  .roadmap-card p, .service-card p, .feature p, .kit-card p { font-size: .93rem; }
  .footer-copy, .footer-links, .footer-contact { font-size: .89rem; }
}
@media (max-width: 600px) {
  .topbar { font-size: .84rem; }
  .nav-links, .dropdown-toggle { font-size: .98rem; }
  .dropdown-menu a span { font-size: .87rem; }
  .dropdown-menu a small { font-size: .78rem; }
  .eyebrow, .roadmap-card__step, .price-card__size { font-size: .8rem; }
  .roadmap-card p, .service-card p, .feature p, .kit-card p { font-size: .92rem; line-height: 1.58; }
  .item-list { font-size: .86rem; }
  .notice, .service-included, .service-endnote { font-size: .86rem; line-height: 1.56; }
  .glance-card b { font-size: .89rem; }
  .glance-card span, .move-ready__points div div span { font-size: .82rem; }
  .footer-copy, .footer-links, .footer-contact { font-size: .87rem; }
  .footer-bottom { font-size: .78rem; }
}


/* Keep service selector tabs on one horizontal line; allow touch-scroll instead of wrapping on narrow screens. */
.how-header .tablist { display: flex; width: 100%; flex-wrap: nowrap; justify-content: flex-end; overflow-x: auto; overscroll-behavior-x: contain; padding: 2px 0 5px; scrollbar-width: none; }
.how-header .tablist::-webkit-scrollbar { display: none; }
.how-header .tab { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 820px) { .how-header .tablist { justify-content: flex-start; } }
@media (max-width: 600px) { .how-header .tablist { display: flex !important; grid-template-columns: none !important; gap: 7px; } .how-header .tab { min-height: 44px; padding: 10px 13px; font-size: .78rem; text-align: center; } }


/* Readable FAQ and supporting-content scale across desktop, tablet, and mobile. */
body { font-size: 17px; }
.section-heading > p:last-child, .heading > p:last-child, .intl-copy > p:not(.eyebrow), .move-ready__copy > p:not(.eyebrow), .roadmap-card p { font-size: 1.03rem; line-height: 1.65; }
.faq-question { min-height: 66px; font-size: 1.1rem; line-height: 1.35; }
.faq-question span:last-child { width: 29px; height: 29px; font-size: 1.3rem; }
.faq-answer p { padding-bottom: 20px; color: #536b88; font-size: 1rem; line-height: 1.68; }
.faq-home .faq-question { font-size: 1.08rem; }
.faq-home .faq-answer p { font-size: 1rem; line-height: 1.68; }
.form-field label, .field label { font-size: .8rem; }
.footer-copy, .footer-links, .footer-contact { line-height: 1.62; }
@media (min-width: 601px) and (max-width: 1024px) {
  body { font-size: 16.5px; }
  .faq-question, .faq-home .faq-question { font-size: 1.04rem; }
  .faq-answer p, .faq-home .faq-answer p { font-size: .97rem; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section-heading > p:last-child, .heading > p:last-child, .intl-copy > p:not(.eyebrow), .move-ready__copy > p:not(.eyebrow), .roadmap-card p { font-size: .96rem; }
  .faq-question, .faq-home .faq-question { min-height: 62px; font-size: .98rem; line-height: 1.38; }
  .faq-question span:last-child { width: 28px; height: 28px; font-size: 1.22rem; }
  .faq-answer p, .faq-home .faq-answer p { padding-bottom: 18px; font-size: .93rem; line-height: 1.64; }
}


/* Larger packing calculator controls and type for clearer shopping on every device. */
.calculator, .calc { padding: 32px; }
.calculator h2, .calc__header h3 { font-size: 1.42rem; }
.calculator__header p, .calc__header p { font-size: .84rem; }
.calc-reset { font-size: .84rem; }
.calc-row { min-height: 67px; padding: 14px 0; }
.calc-item b { font-size: .98rem; }
.calc-item span { font-size: .81rem; }
.counter button { width: 34px; height: 37px; font-size: 1.12rem; }
.counter output { width: 34px; font-size: .9rem; }
.row-total { font-size: .94rem; }
.calc-total span { font-size: .86rem; }
.calc-status { font-size: .77rem; }
.calc-total strong { font-size: 1.7rem; }
.calculator .btn, .calc .btn { min-height: 52px; font-size: .92rem; }
.trust__icon { display: grid; width: 29px; height: 29px; flex: 0 0 auto; place-items: center; color: var(--coral); }
.trust__icon svg { width: 27px; height: 27px; stroke: currentColor; }
@media (min-width: 601px) and (max-width: 1024px) {
  .calculator, .calc { padding: 28px; }
  .calc-row { min-height: 63px; }
}
@media (max-width: 600px) {
  .calculator, .calc { padding: 23px 18px; }
  .calculator h2, .calc__header h3 { font-size: 1.28rem; }
  .calculator__header p, .calc__header p { font-size: .79rem; }
  .calc-row { min-height: 61px; padding: 12px 0; }
  .calc-item b { font-size: .91rem; }
  .calc-item span { font-size: .77rem; }
  .counter button { width: 32px; height: 35px; }
  .counter output { width: 30px; }
  .row-total { font-size: .88rem; }
  .calc-total strong { font-size: 1.55rem; }
  .calculator .btn, .calc .btn { min-height: 50px; font-size: .88rem; }
}


/* Centered desktop menu and account actions. */
.auth-actions { display: flex; align-items: center; gap: 9px; }
.auth-actions--mobile { display: none; }
.auth-link { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; padding: 8px 13px; border: 1px solid #d5e0ec; border-radius: 999px; color: var(--ink); background: #fff; font-size: .84rem; font-weight: 850; white-space: nowrap; }
.auth-link:hover { border-color: var(--coral); color: var(--coral); }
.auth-link--primary { border-color: var(--coral); color: #fff; background: var(--coral); }
.auth-link--primary:hover { border-color: var(--coral-dark); color: #fff; background: var(--coral-dark); }
@media (min-width: 821px) {
  .nav { display: grid; grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr); }
  .nav > .brand { grid-column: 1; justify-self: start; }
  .nav > .nav-links { grid-column: 2; margin-left: 0; justify-self: center; }
  .nav > .auth-actions--desktop { grid-column: 3; justify-self: end; }
}
@media (max-width: 820px) {
  .auth-actions--desktop { display: none; }
  .auth-actions--mobile { display: flex; width: 100%; padding: 10px 7px 3px; }
  .auth-actions--mobile .auth-link { width: 50%; min-height: 43px; }
}
@media (max-width: 380px) {
  .auth-actions { gap: 7px; }
  .auth-link { padding: 8px 9px; font-size: .8rem; }
}


/* Compact single-line homepage headline only. */
.hero h1.hero-title--single { max-width: none; white-space: nowrap; font-size: clamp(2rem, 4.8vw, 4.15rem); letter-spacing: -.06em; }
@media (max-width: 600px) { .hero h1.hero-title--single { font-size: clamp(1.7rem, 7vw, 2.35rem); letter-spacing: -.052em; } }
@media (max-width: 380px) { .hero h1.hero-title--single { font-size: 1.58rem; } }


/* Restored hero tagline beneath the compact single-line title. */
.hero-copy > p.hero-tagline { margin: 7px 0 0; color: var(--gold); font-size: clamp(1.12rem, 2.1vw, 1.55rem); font-weight: 850; font-style: italic; line-height: 1.15; letter-spacing: -.035em; }
.hero-tagline + p { margin-top: 18px !important; }
@media (max-width: 600px) { .hero-copy > p.hero-tagline { margin-top: 6px; font-size: 1.1rem; } .hero-tagline + p { margin-top: 15px !important; } }


/* Make the restored tagline the stronger visual statement. */
.hero-copy > p.hero-tagline { font-size: clamp(2.45rem, 5.6vw, 4.8rem); line-height: .98; letter-spacing: -.065em; }
@media (max-width: 600px) { .hero-copy > p.hero-tagline { font-size: clamp(2.2rem, 9.8vw, 3rem); line-height: 1; } }
@media (max-width: 380px) { .hero-copy > p.hero-tagline { font-size: 2.05rem; } }


/* Logged-in account controls replace Sign in / Sign up. */
.auth-link--logout { border-color: #e9b6ae; color: #b84b3d; background: #fff7f5; }
.auth-link--logout:hover { border-color: #d94c3c; color: #fff; background: #d94c3c; }


/* Homepage content refresh: chill move hero, illustrated steps, rates, and moving services. */
.home-how-steps { padding: 104px 0; background: #fff; }.home-how-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 40px; }.home-step-card { overflow: hidden; border: 1px solid #d8e4ef; border-radius: 17px; background: #fff; box-shadow: 0 10px 22px rgba(9,33,68,.06); }.home-step-card img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; }.home-step-card__copy { padding: 19px; }.home-step-card__copy > span { color: #c06049; font-size: .72rem; font-weight: 900; letter-spacing: .09em; }.home-step-card h3 { margin: 8px 0 7px; color: #092144; font-size: 1.08rem; line-height: 1.2; }.home-step-card p { margin: 0; color: #60758e; font-size: .84rem; line-height: 1.55; }.home-step-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; color: #174d85; font-size: .78rem; font-weight: 850; }
.home-estimated-rates { padding: 92px 0; color: #fff; background: linear-gradient(125deg, #092144 0%, #174d85 100%); }.home-estimated-rates .container { display: grid; grid-template-columns: .75fr 1.25fr; gap: 42px; align-items: center; }.home-estimated-rates .eyebrow { color: var(--gold); }.home-estimated-rates h2 { margin: 0; font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.05; letter-spacing: -.055em; }.home-estimated-rates__intro > p:last-child { color: #d6e6f8; line-height: 1.6; }.home-estimated-rates__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }.home-estimated-rates__grid article { padding: 20px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: rgba(255,255,255,.08); }.home-estimated-rates__grid span,.home-estimated-rates__grid strong,.home-estimated-rates__grid p { display: block; }.home-estimated-rates__grid span { color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }.home-estimated-rates__grid strong { margin-top: 6px; font-size: 1.32rem; line-height: 1.1; letter-spacing: -.04em; }.home-estimated-rates__grid strong small { color: #d6e6f8; font-size: .67rem; letter-spacing: 0; }.home-estimated-rates__grid p { margin: 8px 0 0; color: #d6e6f8; font-size: .75rem; line-height: 1.4; }.home-estimated-rates .btn { grid-column: 1 / -1; justify-self: start; color: #092144; background: var(--gold); }.home-estimated-rates .btn:hover { color: #092144; background: #ffe2a0; }
.home-moving-services { padding: 108px 0; background: #f5f8fc; }.home-moving-services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }.home-service-block { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 28px; border: 1px solid #d8e4ef; border-radius: 18px; background: #fff; }.home-service-block__number { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: #174d85; background: #fff0bf; font-size: .8rem; font-weight: 900; }.home-service-block .eyebrow { margin-bottom: 4px; color: #c06049; font-size: .7rem; }.home-service-block h3 { margin: 0; color: #092144; font-size: 1.45rem; line-height: 1.12; letter-spacing: -.045em; }.home-service-block h3 small { display: block; margin-top: 4px; color: #60758e; font-size: .72rem; font-weight: 700; letter-spacing: 0; }.home-service-block > div > p:not(.eyebrow) { margin: 12px 0; color: #556f8a; line-height: 1.6; }.home-service-block h4 { margin: 17px 0 8px; color: #174d85; font-size: .87rem; }.home-service-block ol { display: grid; gap: 7px; margin: 0; padding-left: 19px; color: #60758e; font-size: .82rem; line-height: 1.5; }.home-service-block li::marker { color: #f06452; font-weight: 900; }.home-service-block .btn { min-height: 43px; margin-top: 20px; font-size: .78rem; }
@media (max-width: 1024px) { .home-how-steps__grid { grid-template-columns: repeat(2, 1fr); }.home-estimated-rates .container { grid-template-columns: 1fr; }.home-estimated-rates .btn { grid-column: auto; }.home-moving-services__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .home-how-steps,.home-estimated-rates,.home-moving-services { padding: 66px 0; }.home-how-steps__grid,.home-estimated-rates__grid { grid-template-columns: 1fr; }.home-step-card__copy { padding: 17px; }.home-estimated-rates .container { gap: 27px; }.home-estimated-rates .btn { width: 100%; min-height: 49px; }.home-moving-services__grid { margin-top: 28px; }.home-service-block { grid-template-columns: 1fr; gap: 12px; padding: 21px; }.home-service-block h3 { font-size: 1.28rem; }.home-service-block .btn { width: 100%; min-height: 47px; } }


/* Hero typography refinement for the new longer homepage message. */
.hero h1 { max-width: 780px; font-size: clamp(2.45rem, 4.55vw, 4.75rem); font-weight: 850; line-height: 1.05; letter-spacing: -.062em; }
.hero h1 em { color: var(--gold); }
.hero-copy > p.hero-tagline { max-width: 680px; margin: 14px 0 0; color: var(--gold); font-size: clamp(1.14rem, 1.85vw, 1.58rem); font-weight: 850; font-style: italic; line-height: 1.32; letter-spacing: -.025em; }
.hero-tagline + p { margin-top: 19px !important; }
.hero-copy > p:not(.eyebrow):not(.hero-tagline) { max-width: 650px; color: #dbe8f9; font-size: clamp(1rem, 1.5vw, 1.16rem); font-weight: 560; line-height: 1.62; }
@media (max-width: 820px) { .hero h1 { max-width: 650px; font-size: clamp(2.35rem, 7.2vw, 3.75rem); } }
@media (max-width: 600px) { .hero h1 { max-width: 100%; font-size: clamp(2.15rem, 10.2vw, 3.15rem); line-height: 1.07; letter-spacing: -.055em; }.hero-copy > p.hero-tagline { margin-top: 11px; font-size: 1.15rem; line-height: 1.36; }.hero-copy > p:not(.eyebrow):not(.hero-tagline) { font-size: .98rem; line-height: 1.58; } }


/* Balanced line breaks for the homepage hero phrase. */
.hero h1.hero-message { max-width: 920px; text-wrap: balance; }
.hero-message__line { display: inline; }
@media (max-width: 820px) {
  .hero h1.hero-message { max-width: 100%; font-size: clamp(2.2rem, 6.4vw, 3.35rem); line-height: 1.03; }
  .hero-message__line, .hero h1.hero-message em { display: block; }
  .hero h1.hero-message em { margin-top: 2px; }
}
@media (max-width: 600px) {
  .hero h1.hero-message { font-size: clamp(2.05rem, 9vw, 2.8rem); line-height: 1.06; }
}


/* Exact two-line hero message. */
.hero h1.hero-message { max-width: none; }
.hero-message__line, .hero h1.hero-message em { display: block; white-space: nowrap; }
.hero h1.hero-message { font-size: clamp(2.3rem, 4.05vw, 4.4rem); line-height: 1.05; }
.hero h1.hero-message em { margin-top: 2px; }
@media (max-width: 820px) { .hero h1.hero-message { font-size: clamp(2rem, 6.6vw, 3.1rem); } }
@media (max-width: 600px) { .hero h1.hero-message { font-size: clamp(1.6rem, 7.2vw, 2.2rem); letter-spacing: -.055em; } }


/* Orange CTA buttons for the Home How-It-Works and Helpful Answers sections. */
.home-step-card a { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; gap: 7px; padding: 9px 12px; border-radius: 9px; color: #fff; background: #f06452; font-size: .78rem; font-weight: 850; }.home-step-card a:hover { color: #fff; background: #d94c3c; }
.faq-home__intro .btn { border-color: #f06452; color: #fff; background: #f06452; }.faq-home__intro .btn:hover { color: #fff; background: #d94c3c; }
@media (max-width: 600px) { .home-step-card a { width: 100%; min-height: 45px; }.faq-home__intro .btn { width: 100%; } }


/* Keep all Here’s How It Works CTA buttons aligned along the card baseline. */
.home-step-card { display: flex; flex-direction: column; }
.home-step-card__copy { display: flex; flex: 1 1 auto; flex-direction: column; }
.home-step-card__copy a { margin-top: auto; align-self: flex-start; }
@media (max-width: 600px) { .home-step-card__copy a { align-self: stretch; } }


/* Requested homepage hero copy accents. */
.hero .eyebrow { color: var(--coral); }
.hero-note > span { color: var(--gold); font-weight: 850; }


/* Orange CTA for the estimated shipping rates section. */
.home-estimated-rates .btn { color: #fff; background: #f06452; }.home-estimated-rates .btn:hover { color: #fff; background: #d94c3c; }


/* Orange sign-up CTAs and larger gold homepage vibe line. */
.sticky-note .btn { color: #fff !important; background: #f06452 !important; }.sticky-note .btn:hover { color: #fff !important; background: #d94c3c !important; }
.hero .eyebrow { color: #ffca67; font-size: .94rem; font-weight: 900; letter-spacing: .13em; }
@media (max-width: 600px) { .hero .eyebrow { font-size: .8rem; } }
