/* ConceptWaves marketing site — shared styles */
:root {
  --ink: #1a1d29;
  --ink-soft: #4b5065;
  --ink-faint: #8a8fa3;
  --surface: #ffffff;
  --surface-alt: #f6f7fb;
  --line: #e6e8f0;
  --brand: #1b7cc4;      /* deep wave blue from logo */
  --brand-deep: #145e96;
  --brand-soft: #e6f3fb; /* light wave blue tint */
  --accent: #0ea5a4;
  --accent-soft: #e0f5f4;
  --gold: #b7791f;
  --gold-soft: #fdf3e0;
  --rose: #d3405c;
  --rose-soft: #fdeaee;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(26, 29, 41, 0.08);
  --grad: linear-gradient(135deg, #3fa9e0 0%, #1b7cc4 55%, #145e96 100%); /* light→deep wave */
}

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

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px;
}

/* inline stroke icons */
.ic {
  width: 22px; height: 22px; display: block;
  stroke: currentColor; fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Announcement bar ---------- */
.announce { background: #0c2233; color: rgba(255, 255, 255, 0.85); font-size: 0.85rem; }
.announce-in { display: flex; gap: 16px; justify-content: center; align-items: center; padding: 9px 0; flex-wrap: wrap; text-align: center; }
.announce a { color: #7ec8e3; font-weight: 600; white-space: nowrap; }
.announce a:hover { color: #a9dcf2; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { display: flex; align-items: center; }
.logo img { height: 38px; width: auto; display: block; }
.logo:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-links .current { color: var(--brand); font-weight: 600; }

/* dropdown */
.has-menu > a::after { content: " ▾"; font-size: 0.7em; color: var(--ink-faint); }
.menu {
  display: none; position: absolute; top: 100%; left: -16px; padding: 10px 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); min-width: 240px; list-style: none;
}
.has-menu:hover .menu, .has-menu:focus-within .menu { display: block; }
.menu a { display: block; padding: 9px 20px; font-size: 0.92rem; }
.menu a:hover { background: var(--surface-alt); }
.menu .menu-tag { display: block; font-size: 0.78rem; color: var(--ink-faint); font-weight: 400; }

.btn {
  display: inline-block; padding: 11px 24px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--grad); color: #fff !important; box-shadow: 0 4px 14px rgba(27, 124, 196, 0.35); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27, 124, 196, 0.45); text-decoration: none; }
.btn-ghost { background: #fff; color: var(--brand) !important; border: 1.5px solid var(--brand); }
.btn-ghost:hover { background: var(--brand-soft); text-decoration: none; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* mobile nav */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; margin-left: auto; cursor: pointer; font-size: 1.6rem; color: var(--ink); }

@media (max-width: 900px) {
  .nav-toggle-label { display: block; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 20px;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { display: block; padding: 10px 0; }
  .menu { display: block; position: static; border: none; box-shadow: none; padding: 0 0 0 16px; min-width: 0; }
  .nav-cta { margin-top: 8px; }
}

/* ---------- Hero ---------- */
.hero { padding: 88px 0 72px; background:
  radial-gradient(1000px 500px at 85% -10%, var(--brand-soft) 0%, transparent 60%),
  radial-gradient(700px 400px at -10% 110%, var(--accent-soft) 0%, transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-grid > * { min-width: 0; }
.eyebrow {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-deep);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); line-height: 1.12; letter-spacing: -0.03em; font-weight: 800; }
h1 .grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { font-size: 1.18rem; color: var(--ink-soft); margin: 22px 0 32px; max-width: 34em; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.88rem; color: var(--ink-faint); }

/* CSS product mock */
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
}
.mock-bar { display: flex; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--surface-alt); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.mock-bar i:first-child { background: #f0a5a5; }
.mock-bar i:nth-child(2) { background: #f3d38f; }
.mock-bar i:nth-child(3) { background: #a4dcb4; }
.mock-body { padding: 22px; display: grid; gap: 14px; }
.mock-row { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; }
.mock-tile { border-radius: 10px; padding: 16px; }
.mock-tile.t-brand { background: var(--grad); color: #fff; }
.mock-tile.t-soft { background: var(--surface-alt); border: 1px solid var(--line); }
.mock-tile .big { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin: 3px 0; }
.mock-tile .small { display: block; font-size: 0.78rem; opacity: 0.85; }
.mock-li { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.mock-li:first-of-type { margin-top: 4px; }
.mock-li .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); flex: none; }
.mock-li .t { font-size: 0.78rem; color: var(--ink-soft); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-pill { font-size: 0.68rem; font-weight: 700; padding: 2px 10px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-deep); flex: none; }
.mock-pill.ok { background: #e2f6e9; color: #187a3d; }
.mock-bars { display: flex; align-items: flex-end; gap: 8px; height: 74px; }
.mock-bars b { flex: 1; border-radius: 4px 4px 0 0; background: var(--brand-soft); }
.mock-bars b.hi { background: var(--brand); }

@media (max-width: 900px) {
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }
section.alt { background: var(--surface-alt); }
.sec-head { max-width: 640px; margin-bottom: 44px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; font-weight: 800; line-height: 1.2; }
.sec-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.05rem; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }

/* pillar cards */
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pillar-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; color: var(--ink); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pillar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.pillar-icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pi-brand { background: var(--brand-soft); color: var(--brand); }
.pi-accent { background: var(--accent-soft); color: #0d8a89; }
.pi-gold { background: var(--gold-soft); color: #a06a15; }
.pi-rose { background: var(--rose-soft); color: #c23553; }
.pillar-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 10px 0 16px; }
.pillar-card .modules { display: block; font-size: 0.83rem; color: var(--ink-faint); line-height: 1.7; margin-bottom: 14px; }
.pillar-card .go { display: inline-block; font-weight: 600; color: var(--brand); font-size: 0.92rem; }
@media (max-width: 760px) { .pillar-grid { grid-template-columns: 1fr; } }

/* AI band */
.ai-band { background: linear-gradient(135deg, #0c2233 0%, #103a58 60%, #145e96 100%); color: #fff; }
.ai-band h2, .ai-band h3 { color: #fff; }
.ai-band .sec-head p { color: rgba(255, 255, 255, 0.75); }
.ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ai-card { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius); padding: 26px 24px; }
.ai-card .em { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, 0.12); color: #9ed3f0; margin-bottom: 16px; }
.ai-card p { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; margin-top: 8px; }
@media (max-width: 860px) { .ai-grid { grid-template-columns: 1fr; } }

/* feature list (pillar pages) */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.feat-card .em { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); margin-bottom: 16px; }
.feat-card p { color: var(--ink-soft); font-size: 0.93rem; margin-top: 8px; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr; } }

/* segments */
.seg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.seg-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.seg-card .em { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); }
.seg-card h3 { margin: 14px 0 8px; }
.seg-card p { color: var(--ink-soft); font-size: 0.93rem; }
.seg-card ul { margin: 14px 0 0 18px; color: var(--ink-soft); font-size: 0.9rem; }
.seg-card li { margin-bottom: 5px; }
@media (max-width: 860px) { .seg-grid { grid-template-columns: 1fr; } }

/* proof */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proof-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: 10px; padding: 26px 24px;
}
.proof-card .kind { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--brand); }
.proof-card h3 { margin: 10px 0 8px; font-size: 1.05rem; }
.proof-card p { color: var(--ink-soft); font-size: 0.9rem; }
.proof-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .proof-grid, .proof-grid-4 { grid-template-columns: 1fr; } }

/* resources (case studies & videos) */
.res-head { text-align: center; margin-top: 56px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.res-card {
  position: relative; display: block; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px;
  color: var(--ink); transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.res-card::after { content: "→"; position: absolute; top: 20px; right: 20px; color: var(--ink-faint); transition: color 0.15s ease, transform 0.15s ease; }
.res-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--brand); }
.res-card:hover::after { color: var(--brand); transform: translateX(3px); }
.res-type { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }
.res-type.video { background: var(--rose-soft); color: #c23553; }
.res-type.case { background: var(--accent-soft); color: #0d8a89; }
.res-card h3 { font-size: 0.98rem; }
.res-card p { color: var(--ink-faint); font-size: 0.85rem; margin-top: 6px; }
@media (max-width: 860px) { .res-grid { grid-template-columns: 1fr; } }

/* segment CTA strip */
.seg-strip {
  margin-top: 26px; background: var(--brand-soft); border: 1px solid var(--brand); border-radius: var(--radius);
  padding: 24px 30px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
.seg-strip .btn { flex: none; }

/* stats strip */
.stats { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { text-align: center; flex: 1; min-width: 140px; }
.stat .n { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { font-size: 0.88rem; color: var(--ink-soft); }

/* platform diagram (pillar pages) */
.spine { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.spine span {
  padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
}
.spine span.on { background: var(--brand-soft); border-color: var(--brand); color: var(--brand-deep); }

/* CTA band */
.cta-band { background: var(--grad); color: #fff; text-align: center; padding: 72px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 14px auto 30px; max-width: 36em; }
.cta-band .btn-ghost { background: #fff; border-color: #fff; }

/* Cisco-style split CTA (index) */
.cta-split { text-align: left; }
.cta-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cta-split-grid > * { min-width: 0; }
.cta-card { background: #fff; color: var(--ink); border-radius: 16px; padding: 44px 42px; box-shadow: 0 20px 50px rgba(10, 40, 70, 0.35); }
.cta-card h2 { color: var(--ink); }
.cta-card p { color: var(--ink-soft); margin: 14px 0 28px; max-width: none; }
@media (max-width: 860px) { .cta-split-grid { grid-template-columns: 1fr; gap: 36px; } .cta-card { padding: 32px 28px; } }

/* Editorial section (heading left, borderless points right) */
.editorial-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.editorial-grid > * { min-width: 0; }
.editorial-grid h2 { position: sticky; top: 100px; }
.editorial-points > div { padding: 26px 0; border-top: 1px solid var(--line); }
.editorial-points > div:first-child { border-top: none; padding-top: 0; }
.editorial-points p { color: var(--ink-soft); margin-top: 8px; max-width: 44em; }
@media (max-width: 860px) { .editorial-grid { grid-template-columns: 1fr; gap: 28px; } .editorial-grid h2 { position: static; } }

/* awards */
.award-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.award { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; display: flex; gap: 16px; align-items: center; }
.award .em { flex: none; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); }
.award .em .ic { width: 19px; height: 19px; }
.award p { color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 760px) { .award-list { grid-template-columns: 1fr; } }

/* timeline / values */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Trust / security ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 40px; }
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.trust-item .em { flex: none; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px; background: var(--brand-soft); color: var(--brand); }
.trust-item h3 { font-size: 1.02rem; margin-bottom: 4px; }
.trust-item p { color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid var(--line); }
details.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 19px 0; font-weight: 600; font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 300; line-height: 1; color: var(--brand); transition: transform 0.2s ease; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding: 0 34px 20px 0; font-size: 0.97rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px 32px; }
.form-card label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); margin: 16px 0 7px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 0.92rem; font-family: inherit; background: #fff; color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-card input::placeholder, .form-card textarea::placeholder { color: #9aa5b1; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(27, 124, 196, 0.14);
}
.form-card .btn { width: 100%; margin-top: 26px; letter-spacing: 0.01em; }
/* Unified phone control: dial-code select + number share one bordered box */
.phone-field {
  display: flex; align-items: stretch; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.phone-field:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(27, 124, 196, 0.14); }
.phone-field select {
  width: auto; flex: 0 0 auto; max-width: 42%;
  border: none; border-right: 1px solid var(--line); border-radius: 0;
  background: var(--surface-alt); padding: 12px 8px 12px 12px; font-size: 0.88rem; color: var(--ink);
}
.phone-field input { flex: 1 1 auto; border: none; border-radius: 0; }
.phone-field select:focus, .phone-field input:focus { outline: none; box-shadow: none; border-color: transparent; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-card label .opt, .chips-label span { font-weight: 500; color: var(--ink-soft); font-size: 0.8rem; }
.chips-label { display: block; font-size: 0.88rem; font-weight: 600; margin: 20px 0 10px; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px) { .opt-grid { grid-template-columns: 1fr; } }
.opt-card {
  position: relative; display: flex; align-items: center; gap: 11px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  cursor: pointer; user-select: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.opt-card:hover { border-color: var(--brand); box-shadow: 0 3px 12px rgba(20, 94, 150, 0.09); }
.opt-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.oc-ic {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--surface-alt); color: var(--brand); transition: all 0.15s ease;
}
.oc-ic svg { width: 19px; height: 19px; }
.oc-tx { font-size: 0.85rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.opt-card:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); box-shadow: inset 0 0 0 1px var(--brand); }
.opt-card input:checked + .oc-ic { background: var(--brand); color: #fff; }
.opt-card input:checked ~ .oc-tx { color: var(--brand-deep); }
.opt-card input:focus-visible + .oc-ic { outline: 2px solid var(--brand); outline-offset: 2px; }
.form-note { margin: 14px 0 0; font-size: 0.88rem; }
.form-note.err { color: #b42318; }
.form-success { text-align: center; padding: 20px 8px 8px; }
.form-success .fs-check {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand); font-size: 1.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); }
.contact-info h3 { margin-bottom: 6px; }
.contact-info .block { margin-bottom: 28px; }
.contact-info p { color: var(--ink-soft); }
.contact-info a { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #0f1c26; color: rgba(255, 255, 255, 0.72); padding: 56px 0 28px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255, 255, 255, 0.72); }
.site-footer a:hover { color: #fff; }
.footer-logo { font-weight: 800; font-size: 1.15rem; color: #fff; }
.footer-logo .wave { color: #6fc0e8; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
