/* ============================================================
   PortVPS — fresh light editorial design system
   ============================================================ */
:root {
  --ink:        #0b1726;
  --ink-2:      #3a4b5e;
  --muted:      #6b7c90;
  --line:       #e4e9f1;
  --bg:         #ffffff;
  --bg-soft:    #f4f7fc;
  --bg-deep:    #08111e;
  --brand:      #1e5bff;
  --brand-ink:  #1346d4;
  --teal:       #00c2a8;
  --accent:     #ff7a45;
  --shadow-sm:  0 1px 2px rgba(11,23,38,.06), 0 2px 8px rgba(11,23,38,.05);
  --shadow-md:  0 8px 24px rgba(11,23,38,.08);
  --shadow-lg:  0 24px 60px rgba(11,23,38,.14);
  --radius:     18px;
  --radius-sm:  12px;
  --maxw:       1180px;
  --font:       "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display:    "Sora", var(--font);
  --mono:       "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 11px 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad);
  font-family: var(--display);
  font-weight: 600; font-size: .94rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(30,91,255,.32); }
.btn-primary:hover { background: var(--brand-ink); box-shadow: 0 10px 26px rgba(30,91,255,.4); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #16263a; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); background: var(--bg-soft); }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { --pad: 15px 28px; font-size: 1.02rem; }
.btn-sm { --pad: 9px 18px; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 76px; padding: 6px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.22rem; letter-spacing: -.03em; color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand b { color: var(--brand); }
.logo-img { width: 180px; max-width: 100%; height: auto; display: block; }
.logo-img-footer { width: 160px; max-width: 100%; height: auto; filter: brightness(0) invert(1); }
.main-nav { display: flex; gap: 4px; margin-left: 12px; }
.main-nav a {
  padding: 8px 14px; border-radius: 999px; font-weight: 500; font-size: .94rem; color: var(--ink-2);
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 76px 0 64px; background:
  radial-gradient(1100px 460px at 80% -10%, rgba(30,91,255,.10), transparent 60%),
  radial-gradient(700px 400px at 0% 10%, rgba(0,194,168,.10), transparent 55%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(0,194,168,.18); }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); margin: 22px 0 0; }
.hero h1 .hl { color: var(--brand); }
.hero-sub { color: var(--ink-2); font-size: 1.12rem; max-width: 30em; margin: 18px 0 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; padding-top: 26px; border-top: 1px dashed var(--line); }
.hero-points li { list-style: none; font-size: .92rem; font-weight: 500; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.hero-points .ck { color: var(--teal); font-weight: 800; }
.hero-points { margin-bottom: 0; padding-left: 0; }

/* Terminal / deploy card */
.console { background: var(--bg-deep); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid #16263a; }
.console-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: #0d1a2c; border-bottom: 1px solid #16263a; }
.console-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.console-bar i:nth-child(1){ background:#ff5f57; } .console-bar i:nth-child(2){ background:#febc2e; } .console-bar i:nth-child(3){ background:#28c840; }
.console-bar span { margin-left: 8px; font-family: var(--mono); font-size: .76rem; color: #62799a; }
.console-body { padding: 20px 20px 24px; font-family: var(--mono); font-size: .86rem; line-height: 1.85; color: #c7d6ea; }
.console-body .pr { color: var(--teal); }
.console-body .cm { color: #8fb3ff; }
.console-body .ok { color: #58d68d; }
.console-body .dim { color: #5f7593; }
.console-body .bar { display: inline-block; width: 130px; height: 7px; border-radius: 4px; background: #1c3050; vertical-align: middle; overflow: hidden; }
.console-body .bar b { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--teal)); border-radius: 4px; animation: fill 2.4s ease .5s forwards; }
@keyframes fill { to { width: 100%; } }
.cursor { display:inline-block; width:8px; height:1.05em; background:var(--teal); vertical-align:-2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Logos / trust marquee ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 22px 24px; }
.trust-stat { text-align: center; flex: 1 1 140px; }
.trust-stat b { display: block; font-family: var(--display); font-size: 1.7rem; font-weight: 800; letter-spacing: -.03em; }
.trust-stat span { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Sections ---------- */
.section { padding: 86px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.eyebrow { display: inline-block; font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--ink-2); font-size: 1.06rem; margin: 14px 0 0; }

/* ---------- Bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.cell { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; position: relative; overflow: hidden; }
.cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cell .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.35rem; background: rgba(30,91,255,.1); color: var(--brand); margin-bottom: 16px; }
.cell h3 { font-size: 1.16rem; margin-bottom: 8px; }
.cell p { color: var(--ink-2); margin: 0; font-size: .96rem; }
.cell.wide { grid-column: span 2; }
.cell.feature-hero { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, #0b1726, #133a8a); color: #fff; border-color: #16263a; }
.cell.feature-hero .ico { background: rgba(255,255,255,.12); color: #fff; }
.cell.feature-hero h3 { font-size: 1.6rem; }
.cell.feature-hero p { color: #b9c8de; font-size: 1.02rem; }
.cell.feature-hero .mini { display: flex; gap: 22px; margin-top: 24px; flex-wrap: wrap; }
.cell.feature-hero .mini div b { font-family: var(--display); font-size: 1.5rem; display: block; }
.cell.feature-hero .mini div span { font-size: .82rem; color: #9fb1ca; }

/* ---------- Pricing cards ---------- */
.plans-shell { position: relative; }
.plans-nav {
  position: absolute; top: calc(50% - 16px); transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); cursor: pointer;
  font-size: 1.5rem; line-height: 1; font-family: var(--display);
  transition: background .15s ease, color .15s ease, opacity .2s ease, transform .15s ease, box-shadow .2s ease;
}
.plans-nav:hover { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 10px 26px rgba(30,91,255,.4); }
.plans-nav:active { transform: translateY(-50%) scale(.94); }
.plans-nav.prev { left: -16px; }
.plans-nav.next { right: -16px; }
.plans-nav[disabled] { opacity: 0; pointer-events: none; }
.plans { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(248px, 1fr); gap: 18px; overflow-x: auto; padding: 6px 2px 22px; scroll-snap-type: x mandatory; scroll-behavior: smooth; }
.plans::-webkit-scrollbar { height: 8px; }
.plans::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.plan { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.popular { border-color: var(--brand); box-shadow: 0 16px 40px rgba(30,91,255,.18); position: relative; }
.plan.popular::before { content: "Most popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .04em; padding: 5px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap; }
.plan-name { font-family: var(--display); font-weight: 700; font-size: 1.18rem; }
.plan-price { margin: 14px 0 4px; font-family: var(--display); letter-spacing: -.03em; }
.plan-price .cur { font-size: 1.1rem; vertical-align: top; color: var(--ink-2); font-weight: 600; }
.plan-price .amt { font-size: 2.5rem; font-weight: 800; }
.plan-price .per { color: var(--muted); font-size: .92rem; font-weight: 500; }
.plan-specs { list-style: none; padding: 18px 0; margin: 16px 0 22px; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.plan-specs li { display: flex; justify-content: space-between; align-items: center; font-size: .92rem; }
.plan-specs li span { color: var(--muted); }
.plan-specs li b { font-family: var(--mono); font-weight: 600; font-size: .9rem; }
.plan .btn { margin-top: auto; }
.plan-note { text-align: center; color: var(--ink-2); font-size: .94rem; margin-top: 26px; }

/* ---------- Locations ---------- */
.loc-controls { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.loc-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.loc-tab { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-family: var(--display); font-weight: 600; font-size: .86rem; color: var(--ink-2); cursor: pointer; transition: .15s; }
.loc-tab:hover { border-color: var(--ink); }
.loc-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.loc-search { position: relative; }
.loc-search input { width: 240px; max-width: 60vw; padding: 10px 16px 10px 38px; border-radius: 999px; border: 1px solid var(--line); font: inherit; font-size: .92rem; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7c90' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") 14px center no-repeat; }
.loc-search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(30,91,255,.12); }
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.loc-card { display: flex; align-items: center; gap: 13px; padding: 15px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease, border-color .2s; }
.loc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #cdd8e8; }
.loc-card img { width: 30px; height: 22px; border-radius: 4px; object-fit: cover; box-shadow: 0 1px 2px rgba(0,0,0,.15); flex: none; }
.loc-card .city { font-family: var(--display); font-weight: 600; font-size: .95rem; line-height: 1.2; }
.loc-card .ctry { font-size: .8rem; color: var(--muted); }
.loc-card .go { margin-left: auto; color: var(--muted); transition: transform .15s ease, color .15s; }
.loc-card:hover .go { color: var(--brand); transform: translateX(3px); }
.loc-empty { text-align: center; color: var(--muted); padding: 30px; grid-column: 1 / -1; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 16px 0; font-family: var(--display); font-weight: 600; font-size: 1.04rem; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--brand); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; color: var(--ink-2); }

/* ---------- CTA ---------- */
.cta { padding: 84px 0; }
.cta-box { background: linear-gradient(135deg, #0b1726 0%, #143a8f 100%); border-radius: 28px; padding: 64px 48px; text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-box::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 85% 0%, rgba(0,194,168,.35), transparent 60%); pointer-events: none; }
.cta-box h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); position: relative; }
.cta-box p { color: #c2d0e6; font-size: 1.1rem; margin: 14px auto 28px; max-width: 34em; position: relative; }
.cta-box .btn { position: relative; }
.cta-box .btn-primary { background: #fff; color: var(--brand-ink); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.cta-box .btn-primary:hover { background: #eef3ff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: #9fb0c6; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: #8497af; max-width: 26em; margin: 16px 0 0; font-size: .95rem; }
.footer-col h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #6f83a0; margin-bottom: 14px; font-family: var(--display); }
.footer-col a { display: block; color: #b5c3d8; padding: 6px 0; font-size: .94rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 24px; border-top: 1px solid #16263a; color: #6f83a0; font-size: .88rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: #fff; }

/* ---------- Location page hero ---------- */
.loc-hero { padding: 56px 0 40px; background:
  radial-gradient(900px 380px at 85% -20%, rgba(30,91,255,.1), transparent 60%),
  radial-gradient(600px 320px at 0% 0%, rgba(0,194,168,.1), transparent 55%); }
.breadcrumb { font-size: .86rem; color: var(--muted); margin-bottom: 22px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--brand); }
.loc-hero-flag { width: 64px; height: 48px; border-radius: 8px; box-shadow: var(--shadow-md); margin-bottom: 18px; }
.loc-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); }
.loc-hero h1 .hl { color: var(--brand); }
.loc-hero-sub { color: var(--ink-2); font-size: 1.1rem; max-width: 44em; margin: 16px 0 0; }
.loc-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.loc-meta span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: .88rem; font-weight: 500; box-shadow: var(--shadow-sm); }

/* ---------- About stats ---------- */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 8px 0 36px; }
.about-stats .stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; text-align: center; box-shadow: var(--shadow-sm); }
.about-stats .stat strong { display: block; font-family: var(--display); font-size: 1.7rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.about-stats .stat span { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .c-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.35rem; background: rgba(30,91,255,.1); margin-bottom: 16px; }
.contact-card h3 { font-size: 1.14rem; margin-bottom: 6px; }
.contact-card p { color: var(--ink-2); margin: 0 0 14px; font-size: .95rem; }
.contact-card a { font-family: var(--display); font-weight: 600; color: var(--brand); font-size: .96rem; word-break: break-word; }
.contact-card a:hover { text-decoration: underline; }

/* ---------- Legal / prose pages ---------- */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 56px 0 44px; }
.page-hero .breadcrumb { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.page-hero p { color: var(--ink-2); max-width: 680px; margin: 14px 0 0; font-size: 1.08rem; }
.page-hero .eff-date { display: inline-block; margin-top: 18px; font-size: .82rem; font-weight: 600; color: var(--brand-ink); background: #eef3ff; border: 1px solid #d9e4ff; padding: 6px 16px; border-radius: 999px; }

.prose { max-width: 820px; margin: 0 auto; padding: 56px 0 80px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--display); font-size: 1.12rem; font-weight: 600; margin: 24px 0 8px; }
.prose p { color: var(--ink-2); margin: 0 0 14px; }
.prose ul, .prose ol { color: var(--ink-2); margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--brand); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
/* buttons inside prose must keep their own colors, not the link color */
.prose a.btn { text-decoration: none; }
.prose a.btn-primary { color: #fff; }
.prose a.btn-dark { color: #fff; }
.prose a.btn-outline { color: var(--ink); }
.prose .callout { background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--radius-sm); padding: 14px 18px; color: #9a3412; margin: 18px 0; font-size: .95rem; }
.prose .toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.prose .toc strong { font-family: var(--display); }
.prose .toc ol { margin: 10px 0 0; padding-left: 20px; color: var(--ink-2); }
.prose .toc li { margin-bottom: 6px; }
.brand-note { background: #eef3ff; border: 1px solid #d9e4ff; border-radius: var(--radius-sm); padding: 16px 20px; color: var(--ink); font-size: .95rem; margin-bottom: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell.feature-hero { grid-column: span 2; grid-row: auto; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav, .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 20px; box-shadow: var(--shadow-md); }
  .main-nav.open a { padding: 12px 8px; }
  .section { padding: 64px 0; }
  .bento { grid-template-columns: 1fr; }
  .cell.wide, .cell.feature-hero { grid-column: auto; }
  .loc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 48px 24px; }
  .plans-nav { width: 42px; height: 42px; font-size: 1.3rem; }
  .plans-nav.prev { left: -8px; }
  .plans-nav.next { right: -8px; }
}
