*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 160px; }

:root {
  --bg:       #f4f2ef;
  --card:     #ffffff;
  --section:  #eceae6;
  --cta:      #1e3a5f;
  --cta-h:    #152d4a;
  --text:     #1a1612;
  --muted:    #6e6560;
  --border:   rgba(0,0,0,0.08);
  --cta-dim:  rgba(30,58,95,0.08);
  --font-h:   'Syne', sans-serif;
  --font-b:   'DM Sans', sans-serif;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 41px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 48px;
  background: rgba(244,242,239,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo-img { height: 100px; width: auto; }
.nav-logo span { color: var(--cta); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 16px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--cta) !important; color: #fff !important;
  font-size: 13px; font-weight: 700; padding: 10px 22px;
  border-radius: 6px; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--cta-h) !important; }
@media (max-width: 680px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
}

/* ── SHARED ── */
.section { padding: 88px 24px; }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cta);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--font-h); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.sub {
  color: var(--muted); font-size: 1.05rem; line-height: 1.75;
  max-width: 600px; margin-bottom: 48px;
}
.sub strong { color: var(--text); font-weight: 500; }

.btn {
  display: inline-block; font-family: var(--font-b); font-weight: 700;
  font-size: 14px; padding: 13px 26px; border-radius: 7px;
  text-decoration: none; transition: background 0.2s, transform 0.15s, opacity 0.2s;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-h); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(0,0,0,0.2); }

/* ── HERO ── */
.hero-wrap {
  position: relative;
  overflow: hidden;
  background: #1e3a5f;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 20, 40, 0.82);
  pointer-events: none;
}
.hero-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 48px;
  padding: 240px 48px 80px;
  max-width: 1100px;
}
.hero-left { display: flex; flex-direction: column; }
.hero-right {
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px; background: rgba(10,20,40,0.6);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
  backdrop-filter: blur(8px);
}
.hero-right-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #7aa8d8; margin-bottom: 4px;
}
.hero-stat-row {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-num {
  font-family: var(--font-h); font-size: 2rem; font-weight: 800;
  line-height: 1; color: #f5f0ea;
}
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}
@media (max-width: 680px) {
  .hero { padding: 120px 20px 60px; }
  .hero-proof { gap: 24px; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #a8c8e8; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px; width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: #7aa8d8;
  border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: var(--font-h); font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 24px; color: #f5f0ea;
}
.hero h1 em { font-style: normal; color: #7aa8d8; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 540px;
  margin-bottom: 40px; line-height: 1.75;
}
.hero-sub strong { color: #f5f0ea; font-weight: 500; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-proof { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.proof-stat { display: flex; flex-direction: column; }
.proof-num { font-family: var(--font-h); font-size: 1.9rem; font-weight: 800; line-height: 1; color: #f5f0ea; }
.proof-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── ABOUT ── */
.about-section { background: var(--section); padding-bottom: 64px; }
.about-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 56px; align-items: start; margin-top: 48px;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

.about-photo {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.about-photo-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--section); border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.about-photo-label { font-size: 13px; color: var(--muted); text-align: center; line-height: 1.6; }
.about-photo-label small { font-size: 11px; opacity: 0.5; display: block; }

.about-content { display: flex; flex-direction: column; gap: 22px; padding-top: 8px; }
.about-quote {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 700;
  line-height: 1.45; border-left: 3px solid var(--cta); padding-left: 18px; color: var(--text);
}
.about-body { color: var(--muted); line-height: 1.8; font-size: 1rem; }
.about-body strong { color: var(--text); font-weight: 500; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; color: var(--muted);
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
@media (max-width: 860px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

.port-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  display: flex; flex-direction: column;
}
.port-card:hover { transform: translateY(-4px); border-color: rgba(217,79,0,0.3); }

.port-preview {
  width: 100%; aspect-ratio: 16/10; background: #0a1525;
  overflow: hidden; position: relative;
  border-bottom: 1px solid var(--border);
}
.port-preview iframe {
  width: 200%; height: 200%;
  transform: scale(0.5); transform-origin: top left;
  border: none; pointer-events: none;
}
.port-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.port-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; width: fit-content;
}
.badge-business {
  background: var(--cta-dim); color: var(--cta);
  border: 1px solid rgba(30,58,95,0.2);
}
.badge-starter {
  background: rgba(0,0,0,0.05); color: var(--muted);
  border: 1px solid var(--border);
}
.port-name { font-family: var(--font-h); font-size: 1rem; font-weight: 700; }
.port-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.port-tag {
  font-size: 11px; color: var(--muted); background: var(--bg);
  border: 1px solid var(--border); border-radius: 4px; padding: 2px 8px;
}
.port-link {
  margin-top: auto; color: var(--cta); font-size: 13px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.port-link:hover { text-decoration: underline; }

/* ── PRICING ── */
.pricing-section { background: var(--section); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 48px; max-width: 800px;
}
.pricing-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 100%;
}
@media (max-width: 900px) { .pricing-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .pricing-grid, .pricing-grid-3 { grid-template-columns: 1fr; } }
.plan-price-tag {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 800;
  line-height: 1.3; color: var(--text); margin-bottom: 6px;
}

.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; position: relative;
}
.price-card.featured { border-color: rgba(30,58,95,0.35); }
.featured-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--cta); color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.plan-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-h); font-size: 3rem; font-weight: 800;
  line-height: 1; margin-bottom: 6px;
}
.plan-price sup { font-size: 1.3rem; vertical-align: super; }
.plan-price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  font-size: 14px; color: var(--muted);
  display: grid; grid-template-columns: 16px 1fr;
  gap: 10px; line-height: 1.5;
}
.plan-features li::before { content: '✓'; color: var(--cta); font-weight: 700; }
.plan-features li strong { color: var(--text); font-weight: 600; }
.plan-cta {
  display: block; text-align: center; padding: 13px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none; transition: background 0.2s, opacity 0.2s;
}
.plan-cta.solid { background: var(--cta); color: #fff; }
.plan-cta.solid:hover { background: var(--cta-h); }
.plan-cta.outline { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.plan-cta.outline:hover { border-color: var(--cta); color: var(--cta); }
.plan-value-note { font-size: 12px; color: var(--cta); font-weight: 600; margin-bottom: 16px; }
.plan-price-tag {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 800;
  line-height: 1.3; color: var(--text); margin-bottom: 6px;
}

/* ── HOSTING ADD-ONS ── */
.hosting-addons {
  margin-top: 36px; padding-top: 32px;
  border-top: 1px solid var(--border); max-width: 800px;
}
.hosting-addons-title {
  font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.hosting-addon-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 560px) { .hosting-addon-grid { grid-template-columns: 1fr; } }
.hosting-addon-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 22px;
}
.hosting-addon-name {
  font-size: 13px; font-weight: 700; color: var(--text);
  margin-bottom: 6px;
}
.hosting-addon-price {
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 800;
  color: var(--cta); line-height: 1; margin-bottom: 8px;
}
.hosting-addon-price span { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.hosting-addon-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }
.featured-addon { border-color: rgba(30,58,95,0.3); background: rgba(30,58,95,0.03); }

/* ── PAGE PRICING TABLE ── */
.plan-page-pricing {
  border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; margin-bottom: 24px;
}
.page-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; font-size: 13px; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.page-price-row:last-child { border-bottom: none; }
.page-price-row span:last-child { font-weight: 700; color: var(--cta); }
.page-price-row.muted { background: rgba(0,0,0,0.02); }
.page-price-row.muted span { color: var(--muted); font-size: 12px; font-weight: 400; }

/* ── HOSTING ADDONS TITLE ── */
.hosting-addons-title {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 800;
  color: var(--text); margin-bottom: 16px;
}

.plan-cta.outline { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.plan-cta.outline:hover { border-color: var(--cta); color: var(--cta); }
.pricing-note { font-size: 13px; color: var(--muted); margin-top: 20px; max-width: 800px; }
.pricing-note a { color: var(--cta); text-decoration: none; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 48px;
}
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

.step-num {
  font-family: var(--font-h); font-size: 2.8rem; font-weight: 800;
  color: var(--cta); line-height: 1; margin-bottom: 14px;
}
.step-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-list { margin-top: 48px; max-width: 680px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: var(--font-b); font-size: 15px; font-weight: 500;
  text-align: left; padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--cta); }
.faq-icon { color: var(--cta); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.32s ease, padding 0.2s;
  font-size: 14px; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 280px; padding-bottom: 20px; }

/* ── CONTACT ── */
.contact-section { background: var(--section); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; margin-top: 48px; align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted); }
.c-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.contact-row a { color: var(--muted); text-decoration: none; }
.contact-row a:hover { color: var(--text); }

.stripe-box {
  margin-top: 28px; background: var(--cta-dim);
  border: 1px solid rgba(30,58,95,0.2); border-radius: 10px; padding: 22px 24px;
}
.stripe-box-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cta); margin-bottom: 8px;
}
.stripe-box p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.stripe-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.stripe-btn-primary {
  background: var(--cta); color: #fff; font-size: 13px; font-weight: 700;
  padding: 10px 20px; border-radius: 6px; text-decoration: none; transition: background 0.2s;
}
.stripe-btn-primary:hover { background: var(--cta-h); }
.stripe-btn-ghost {
  background: rgba(0,0,0,0.06); color: var(--text); font-size: 13px; font-weight: 700;
  padding: 10px 20px; border-radius: 6px; text-decoration: none;
  border: 1px solid var(--border); transition: opacity 0.2s;
}
.stripe-btn-ghost:hover { opacity: 0.75; }

.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-field label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }
.form-input {
  background: var(--card); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-family: var(--font-b); font-size: 14px;
  padding: 12px 16px; outline: none; width: 100%; transition: border-color 0.2s;
}
.form-input:focus { border-color: rgba(30,58,95,0.4); }
.form-input::placeholder { color: #aaa8a5; }
textarea.form-input { resize: vertical; min-height: 110px; }
select.form-input { cursor: pointer; }
select.form-input option { background: var(--card); }
.form-submit {
  width: 100%; background: var(--cta); color: #fff; border: none;
  border-radius: 8px; padding: 14px; font-family: var(--font-b);
  font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--cta-h); }

/* ── FOOTER ── */
footer {
  padding: 48px 24px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center;
}
.footer-logo {
  font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--text);
}
.footer-logo span { color: var(--cta); }
footer p { font-size: 13px; color: var(--muted); }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }
.footer-links { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── NAV SCROLL EFFECT ── */
nav { transition: box-shadow 0.3s ease, background 0.3s ease; }
nav.nav-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  background: rgba(244,242,239,1) !important;
}

/* ── COUNTER ANIMATION ── */
.proof-num {
  font-family: var(--font-h); font-size: 1.9rem; font-weight: 800;
  line-height: 1; color: #f5f0ea;
  transition: transform 0.3s ease;
}
.proof-num.counting { transform: scale(1.08); }

/* ── CARD HOVER LIFT ── */
.price-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.price-card.featured:hover {
  box-shadow: 0 16px 48px rgba(30,58,95,0.18);
}

/* ── PORTFOLIO CARD IMAGE ZOOM ── */
.port-preview iframe {
  transition: transform 0.4s ease;
  transform-origin: top left;
}
.port-card:hover .port-preview iframe {
  transform: scale(0.52);
}

/* ── URGENCY BANNER ── */
.urgency-banner {
  background: var(--cta);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 103;
}
.urgency-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
}
.urgency-banner a:hover { opacity: 0.85; }

/* ── MOBILE MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}@media (max-width: 680px) {
  .nav-hamburger { display: flex; }
  nav { padding: 10px 20px; top: 41px; }
  .nav-links { display: none; }
  .nav-logo-img { height: 50px; }
  .hero { padding: 180px 20px 60px; grid-template-columns: 1fr; }
  .hero-right { display: none; }
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(244,242,239,0.98);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  position: fixed;
  top: 120px; left: 0; right: 0;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu-cta {
  background: var(--cta);
  color: #fff !important;
  text-align: center;
  border-radius: 7px;
  padding: 13px !important;
  margin-top: 12px;
  border-bottom: none !important;
  font-weight: 700 !important;
}

/* ── VALUE ANCHOR ── */
.value-anchor {
  margin-bottom: 36px;
}
.value-anchor-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cta);  border-radius: 10px;
  padding: 20px 24px;
  max-width: 800px;
}
.value-anchor-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cta); display: block; margin-bottom: 8px;
}
.value-anchor-inner p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.value-anchor-inner p strong { color: var(--text); font-weight: 600; }

/* ── PLAN VALUE NOTE ── */
.plan-value-note {
  font-size: 11px; color: var(--cta);
  font-weight: 600; margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* ── TRUST ROW ── */
.pricing-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 800px;
}
.trust-item {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 7px;
}
.trust-item span { color: var(--cta); font-weight: 700; }
