@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080c10;
  --bg1:      #0d1318;
  --bg2:      #111820;
  --bg3:      #162030;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);
  --text:     #c8d8e8;
  --text2:    #7a94a8;
  --text3:    #3e5568;
  --accent:   #00c4a0;
  --accent2:  #0097c4;
  --white:    #eaf2f8;
  --mono:     'DM Mono', monospace;
  --sans:     'DM Sans', sans-serif;
  --nav-h:    64px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(8,12,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
#nav .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  color: var(--white); letter-spacing: .04em;
}
#nav .logo img { height: 28px; mix-blend-mode: screen; opacity: .9; }
#nav .logo span { color: var(--accent); }

#nav-links { display: flex; align-items: center; gap: 2rem; }
#nav-links a {
  font-size: 13px; font-weight: 400; color: var(--text2);
  letter-spacing: .03em; transition: color .2s;
  position: relative;
}
#nav-links a:hover, #nav-links a.active { color: var(--white); }
#nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent);
}
#nav-links .nav-cta {
  background: var(--accent); color: #071010 !important;
  font-weight: 500; padding: 7px 16px; border-radius: 6px;
  font-size: 12px; letter-spacing: .04em; transition: opacity .2s;
}
#nav-links .nav-cta:hover { opacity: .85; }
#nav-links .nav-cta::after { display: none !important; }

.ham { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.ham span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text2); margin: 5px 0; transition: .25s;
}

/* ── PAGE SHELL ── */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 6rem 2.5rem 4rem;
  max-width: 1100px; margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 400;
  color: var(--accent); letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--sans); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 15px; color: var(--text2); line-height: 1.8;
  max-width: 460px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: 7px; cursor: pointer;
  transition: opacity .2s, background .2s; border: none; letter-spacing: .03em;
}
.btn-primary { background: var(--accent); color: #071010; }
.btn-primary:hover { opacity: .85; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,196,160,.05); }

.hero-img { position: relative; }
.hero-img img {
  width: 100%; border-radius: 12px;
  filter: saturate(.8) contrast(1.05);
  border: 1px solid var(--border);
}
.hero-img::before {
  content: ''; position: absolute; inset: -12px;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,196,160,.08) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}

/* ── SECTION SHARED ── */
.section { padding: 5rem 2.5rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 300;
  color: var(--white); line-height: 1.2; margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-sub { font-size: 14px; color: var(--text2); max-width: 540px; line-height: 1.8; }

.divider { border: none; border-top: 1px solid var(--border); max-width: 1100px; margin: 0 auto; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; margin-top: 3rem; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.svc-card {
  background: var(--bg1); padding: 1.75rem;
  border-right: 1px solid var(--border); transition: background .2s;
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--bg2); }
.svc-num { font-family: var(--mono); font-size: 11px; color: var(--text3); margin-bottom: 1rem; }
.svc-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: .5rem; }
.svc-desc { font-size: 12px; color: var(--text2); line-height: 1.7; }

/* ── PORTFOLIO GRID ── */
.port-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.port-card {
  background: var(--bg1); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.port-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.port-thumb {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--bg2);
}
.port-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transition: filter .3s; }
.port-card:hover .port-thumb img { filter: saturate(1); }
.port-thumb-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; color: var(--text3);
}
.port-info { padding: 1.25rem; }
.port-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: .75rem; }
.port-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .06em;
  color: var(--text3); background: var(--bg2); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 100px;
}
.port-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: .4rem; }
.port-desc { font-size: 12px; color: var(--text2); line-height: 1.65; }
.port-link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: .75rem;
  font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: .05em;
  transition: gap .2s;
}
.port-link:hover { gap: 8px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.contact-info { }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.5rem; }
.contact-icon {
  width: 34px; height: 34px; border-radius: 7px; flex-shrink: 0;
  background: rgba(0,196,160,.08); border: 1px solid rgba(0,196,160,.15);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 1.7; }
.contact-label { font-size: 11px; color: var(--text3); font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px; }
.contact-val { font-size: 14px; color: var(--text); }

.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: 11px; font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--text3); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--bg1); border: 1px solid var(--border);
  border-radius: 7px; color: var(--text); font-family: var(--sans);
  font-size: 14px; padding: 10px 13px; outline: none; transition: border-color .15s;
}
.form-field input:focus, .form-field textarea:focus { border-color: rgba(0,196,160,.4); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-msg { padding: 10px 13px; border-radius: 7px; font-size: 13px; margin-top: 8px; display: none; }
.form-msg.success { background: rgba(0,196,160,.08); border: 1px solid rgba(0,196,160,.25); color: var(--accent); display: block; }
.form-msg.error   { background: rgba(220,60,60,.08); border: 1px solid rgba(220,60,60,.2); color: #e05555; display: block; }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 720px; margin: 0 auto; padding: 5rem 2.5rem; }
.legal-wrap h1 { font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: .5rem; }
.legal-date { font-family: var(--mono); font-size: 11px; color: var(--text3); margin-bottom: 3rem; }
.legal-wrap h2 { font-size: 1rem; font-weight: 500; color: var(--white); margin: 2rem 0 .75rem; }
.legal-wrap p, .legal-wrap li { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: .75rem; }
.legal-wrap ul { padding-left: 1.25rem; }
.legal-wrap a { color: var(--accent); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-left { display: flex; align-items: center; gap: 1rem; }
.footer-left img { height: 20px; mix-blend-mode: screen; opacity: .55; }
.footer-copy { font-family: var(--mono); font-size: 11px; color: var(--text3); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text3); transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 5rem 2.5rem 3rem;
  max-width: 1100px; margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.page-header .section-label { margin-bottom: .75rem; }
.page-header h1 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; color: var(--white); }
.page-header h1 em { font-style: normal; color: var(--accent); }
.page-header p { font-size: 14px; color: var(--text2); max-width: 500px; margin-top: .75rem; line-height: 1.8; }

/* ── SIGNATURE ── */
.signature-wrap { margin-top: 2rem; }
.signature-wrap img { height: 50px; mix-blend-mode: screen; opacity: .6; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.25rem 2rem; }
  .hero-img { order: -1; max-width: 280px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  #nav { padding: 0 1.25rem; }
  .section { padding: 3.5rem 1.25rem; }
  #nav-links { display: none; flex-direction: column; position: fixed; inset: var(--nav-h) 0 0; background: var(--bg); padding: 2rem 1.25rem; gap: 1.5rem; }
  #nav-links.open { display: flex; }
  .ham { display: block; }
  footer { padding: 1.5rem 1.25rem; }
  .page-header { padding: 3rem 1.25rem 2rem; }
}

/* ── FREE WEBSITE CAMPAIGN ── */
.fw-card { color:var(--text); background:transparent; font-size:15px; line-height:1.6; max-width:1100px; margin:0 auto; padding:0 2.5rem; }
.fw-hero { padding:3rem 0 2rem; border-bottom:1px solid var(--border); }
.fw-section { padding:2rem 0; border-bottom:1px solid var(--border); }
.fw-waitlist { padding:2rem 0; border-bottom:1px solid var(--border); }
.fw-footer { padding:2rem 0; background:transparent; }
.fw-inc-card { background:var(--bg1); border:1px solid var(--border); }
.fw-cost-card { background:var(--bg1); border:1px solid var(--border); }
.fw-qi { background:var(--bg1); border:1px solid var(--border); }
.fw-card .fw-hero *,
.fw-card .fw-section *,
.fw-card .fw-waitlist *,
.fw-card .fw-footer * { box-sizing:border-box; }
.fw-hero { padding:2.5rem 2rem; border-bottom:1px solid rgba(255,255,255,0.07); }
.fw-badge { display:inline-flex; align-items:center; gap:6px; background:rgba(0,196,160,0.1); color:#00c4a0; font-size:11px; font-weight:600; padding:4px 12px; border-radius:100px; margin-bottom:1.25rem; border:1px solid rgba(0,196,160,0.25); letter-spacing:.06em; text-transform:uppercase; }
.fw-badge .fw-dot { width:6px; height:6px; border-radius:50%; background:#00c4a0; animation:fw-pulse 2s infinite; flex-shrink:0; }
@keyframes fw-pulse { 0%,100%{opacity:1} 50%{opacity:.2} }
.fw-card h1 { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700; line-height:1.2; margin-bottom:.9rem; color:#fff; font-family:inherit; }
.fw-card h1 span { color:#00c4a0; }
.fw-sub { font-size:14px; color:#8fb0cc; line-height:1.7; max-width:540px; margin-bottom:1.5rem; }
.fw-cta-btn { display:inline-flex; align-items:center; gap:8px; background:#00c4a0; color:#0d1b2a !important; font-size:14px; font-weight:600; padding:10px 20px; border-radius:7px; border:none; cursor:pointer; text-decoration:none !important; transition:opacity .15s; }
.fw-cta-btn:hover { opacity:.85; }
.fw-stats { display:flex; gap:2rem; margin-top:1.75rem; flex-wrap:wrap; }
.fw-stat-num { font-size:24px; font-weight:700; color:#fff; line-height:1; }
.fw-stat-label { font-size:12px; color:#7a9bb5; margin-top:3px; }
.fw-section { padding:1.5rem 2rem; border-bottom:1px solid rgba(255,255,255,0.07); }
.fw-section-label { display:block; font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#4a6a85; margin-bottom:1rem; }
.fw-includes { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.fw-inc-card { background:#112236; border:1px solid rgba(255,255,255,0.07); border-radius:8px; padding:.85rem; display:flex; gap:10px; align-items:flex-start; }
.fw-inc-icon { width:28px; height:28px; border-radius:6px; background:rgba(0,196,160,0.1); border:1px solid rgba(0,196,160,0.2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.fw-inc-icon svg { width:13px; height:13px; stroke:#00c4a0; fill:none; stroke-width:1.8; }
.fw-inc-title { font-size:13px; font-weight:600; color:#e8f0f7; margin-bottom:2px; }
.fw-inc-desc { font-size:11px; color:#7a9bb5; line-height:1.4; }
.fw-extras { background:rgba(0,151,196,0.06); border:1px solid rgba(0,151,196,0.18); border-radius:8px; padding:.85rem 1rem; margin-top:.75rem; }
.fw-extras-title { font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#0097c4; margin-bottom:.55rem; }
.fw-extras-list { display:flex; flex-wrap:wrap; gap:6px; }
.fw-extras-tag { display:inline-flex; align-items:center; gap:5px; background:rgba(0,151,196,0.1); border:1px solid rgba(0,151,196,0.2); border-radius:100px; padding:3px 10px; font-size:11px; font-weight:500; color:#7ab8d4; }
.fw-extras-tag svg { width:9px; height:9px; stroke:#0097c4; fill:none; stroke-width:2.2; flex-shrink:0; }
.fw-extras-note { font-size:11px; color:#4a6a85; margin-top:.6rem; line-height:1.5; }
.fw-nonprofit { display:flex; align-items:flex-start; gap:10px; background:rgba(255,180,50,0.06); border:1px solid rgba(255,180,50,0.2); border-radius:8px; padding:.85rem 1rem; margin-top:.75rem; }
.fw-nonprofit-icon { width:24px; height:24px; border-radius:50%; flex-shrink:0; margin-top:1px; background:rgba(255,180,50,0.12); border:1px solid rgba(255,180,50,0.25); display:flex; align-items:center; justify-content:center; }
.fw-nonprofit-icon svg { width:11px; height:11px; stroke:#f0a830; fill:none; stroke-width:1.8; }
.fw-nonprofit-title { font-size:12px; font-weight:700; color:#f0c060; margin-bottom:3px; }
.fw-nonprofit-text { font-size:11px; color:#7a9bb5; line-height:1.5; }
.fw-nonprofit-text strong { color:#e8f0f7; }
.fw-costs { display:grid; grid-template-columns:1fr 1fr 1fr; gap:8px; }
.fw-cost-card { background:#112236; border:1px solid rgba(255,255,255,0.07); border-radius:8px; padding:.85rem; }
.fw-cost-head { display:flex; align-items:center; gap:7px; margin-bottom:7px; }
.fw-cost-icon { width:24px; height:24px; border-radius:5px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.fw-cost-icon svg { width:11px; height:11px; fill:none; stroke-width:1.8; }
.fw-cost-icon.domain { background:rgba(0,151,196,.12); border:1px solid rgba(0,151,196,.2); }
.fw-cost-icon.domain svg { stroke:#0097c4; }
.fw-cost-icon.hosting { background:rgba(0,196,160,.10); border:1px solid rgba(0,196,160,.2); }
.fw-cost-icon.hosting svg { stroke:#00c4a0; }
.fw-cost-icon.email { background:rgba(255,180,50,.08); border:1px solid rgba(255,180,50,.18); }
.fw-cost-icon.email svg { stroke:#f0a830; }
.fw-cost-name { font-size:11px; color:#7a9bb5; }
.fw-cost-amount { font-size:20px; font-weight:700; color:#fff; line-height:1; }
.fw-cost-amount .fw-yr { font-size:12px; font-weight:400; color:#7a9bb5; }
.fw-cost-note { font-size:11px; color:#4a6a85; line-height:1.4; margin-top:4px; }
.fw-optional { display:inline-block; background:rgba(255,180,50,.1); color:#f0a830; font-size:10px; font-weight:600; padding:1px 7px; border-radius:100px; border:1px solid rgba(255,180,50,.2); margin-bottom:4px; }
.fw-required { display:inline-block; background:rgba(0,196,160,.1); color:#00c4a0; font-size:10px; font-weight:600; padding:1px 7px; border-radius:100px; border:1px solid rgba(0,196,160,.25); margin-bottom:4px; }
.fw-waitlist { padding:1.5rem 2rem; border-bottom:1px solid rgba(255,255,255,0.07); }
.fw-wl-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:1rem; flex-wrap:wrap; gap:6px; }
.fw-wl-pos { font-size:12px; color:#7a9bb5; }
.fw-wl-pos strong { color:#00c4a0; }
.fw-form p { margin-bottom:8px; }
.fw-form label { display:block; font-size:11px; color:#4a6a85; letter-spacing:.08em; text-transform:uppercase; margin-bottom:5px; }
.fw-form input[type="text"],.fw-form input[type="email"],.fw-form input[type="tel"] { width:100%; font-size:14px; padding:9px 13px; border:1px solid rgba(255,255,255,0.1); border-radius:7px; background:#162c42; color:#e8f0f7; outline:none; display:block; transition:border-color .15s; }
.fw-form input:focus { border-color:rgba(0,196,160,0.5); }
.fw-form input[type="submit"] { background:#00c4a0; color:#0d1b2a; font-size:14px; font-weight:600; padding:10px 22px; border:none; border-radius:7px; cursor:pointer; width:100%; margin-top:2px; transition:opacity .15s; }
.fw-form input[type="submit"]:hover { opacity:.85; }
.fw-msg { border-radius:7px; padding:9px 13px; font-size:13px; margin-top:8px; }
.fw-msg.error { background:rgba(220,60,60,.07); border:1px solid rgba(220,60,60,.2); color:#e05555; }
.fw-already { display:flex; align-items:flex-start; gap:12px; background:rgba(0,196,160,0.07); border:1px solid rgba(0,196,160,0.25); border-radius:8px; padding:1rem 1.1rem; margin-bottom:.5rem; }
.fw-already-icon { width:24px; height:24px; border-radius:50%; flex-shrink:0; background:rgba(0,196,160,0.15); border:1px solid rgba(0,196,160,0.3); display:flex; align-items:center; justify-content:center; color:#00c4a0; font-size:13px; font-weight:700; }
.fw-already-title { font-size:14px; font-weight:600; color:#00c4a0; margin-bottom:3px; }
.fw-already-sub { font-size:12px; color:#7a9bb5; line-height:1.5; }
.fw-queue { margin-top:1.25rem; display:flex; flex-direction:column; gap:5px; }
.fw-queue-label { display:block; font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#4a6a85; margin-bottom:.6rem; }
.fw-qi { display:flex; align-items:center; gap:9px; padding:.6rem .85rem; background:#112236; border:1px solid rgba(255,255,255,0.07); border-radius:7px; }
.fw-qi.fw-done { opacity:.45; }
.fw-qnum { width:20px; height:20px; border-radius:50%; background:#162c42; border:1px solid rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:700; color:#8fb0cc; flex-shrink:0; }
.fw-qi.fw-done .fw-qnum { background:rgba(0,196,160,.12); border-color:rgba(0,196,160,.3); color:#00c4a0; }
.fw-qname { font-size:13px; font-weight:600; color:#e8f0f7; flex:1; }
.fw-qtype { font-size:11px; color:#7a9bb5; }
.fw-qstatus { font-size:10px; font-weight:600; padding:2px 7px; border-radius:100px; white-space:nowrap; }
.fw-qstatus.fw-waiting  { background:#162c42; color:#5a7a95; border:1px solid rgba(255,255,255,0.08); }
.fw-qstatus.fw-progress { background:rgba(255,180,50,.1); color:#f0a830; border:1px solid rgba(255,180,50,.2); }
.fw-qstatus.fw-done-s   { background:rgba(0,196,160,.1); color:#00c4a0; border:1px solid rgba(0,196,160,.25); }
.fw-queue-empty { font-size:13px; color:#4a6a85; padding:.4rem 0; }
.fw-footer { padding:1.5rem 2rem; background:#112236; }
.fw-footer-inner { display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.fw-footer h3 { font-size:14px; font-weight:700; color:#fff; margin-bottom:3px; }
.fw-footer p { font-size:12px; color:#7a9bb5; }
.fw-footer-btn { display:inline-flex; align-items:center; gap:6px; background:transparent; border:1px solid rgba(255,255,255,0.15); border-radius:7px; padding:8px 16px; font-size:13px; font-weight:500; color:#e8f0f7 !important; text-decoration:none !important; transition:border-color .15s,background .15s; white-space:nowrap; }
.fw-footer-btn:hover { border-color:rgba(0,196,160,.4); background:rgba(0,196,160,.05); }
@media(max-width:600px) {
  .fw-costs { grid-template-columns:1fr; }
  .fw-includes { grid-template-columns:1fr; }
  .fw-hero,.fw-section,.fw-waitlist,.fw-footer { padding-left:1rem; padding-right:1rem; }
}

/* ── FREE WEBSITE FAQ CARDS ── */
.fw-faq-card {
  background: #112236;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.fw-faq-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00c4a0, transparent);
  opacity: 0;
  transition: opacity .2s;
}
.fw-faq-card:hover { border-color: rgba(0,196,160,.2); transform: translateY(-2px); }
.fw-faq-card:hover::before { opacity: 1; }
.fw-faq-icon {
  width: 36px; height: 36px;
  background: rgba(0,196,160,.1);
  border: 1px solid rgba(0,196,160,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.fw-faq-label {
  font-size: 14px;
  font-weight: 600;
  color: #e8f0f7;
  margin-bottom: .6rem;
}
.fw-faq-body {
  font-size: 13px;
  color: #8fb0cc;
  line-height: 1.75;
}
@media (max-width: 600px) {
  .fw-faq-card { padding: 1.25rem; }
  .fw-section .fw-faq-grid { grid-template-columns: 1fr; }
}
