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

:root {
  --black: #0a0f0d;
  --dark: #111a14;
  --card: #141f17;
  --green: #00e676;
  --green-dim: #00c85a;
  --green-glow: rgba(0,230,118,0.18);
  --text: #e8f0ea;
  --muted: #7a9980;
  --border: rgba(0,230,118,0.12);
  --font-head: 'Fustat', sans-serif;
  --font-body: 'Fustat', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

@media (min-width: 960px) {
  html { scroll-padding-top: 7rem; }
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: rgba(10,15,13,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--green); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none !important; }
  .nav-drawer { display: none !important; }
  .nav-overlay { display: none !important; }
}

/* Mobile drawer — hidden off-screen by default */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; left: auto;
  width: min(280px, 85vw);
  height: 100vh;
  background: var(--dark);
  border-left: 1px solid var(--border);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 4.5rem 2rem 2rem;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  visibility: hidden;
  overflow-y: auto;
}

.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.nav-drawer a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.55rem 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--green); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
}

.nav-overlay.open { display: block; }

/* Hamburger sits above overlay so X is always clickable */
.hamburger {
  position: relative;
  z-index: 201;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-icon svg { width: 28px; height: 28px; color: var(--text); }

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.hamburger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* canvas fills hero background */
#plexus-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(280px, 38vw, 560px);
}

.hero-logo-circle {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem;
}

.hero-logo-circle svg { width: 60px; height: 60px; color: #fff; }

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.74rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 auto 1.8rem;
  position: relative;
  color: #fff;
}

.hero h1 em {
  font-style: normal;
  color: #fff;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.2vw, 1rem) clamp(1.8rem, 2.5vw, 2.6rem);
  background: transparent;
  border: 2px solid #fff;
  border-radius: 40px;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 1.4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  position: relative;
}

.hero-cta:hover {
  background: #fff;
  color: var(--black);
  box-shadow: 0 0 32px rgba(255,255,255,0.15);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint-arrow {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-drop 1.8s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  80% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}

/* ── SECTIONS ── */
section {
  padding: 4.5rem 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  text-align: center;
}

.section-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--green);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 auto 1.2rem;
  max-width: 700px;
}

.section-body {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── INTRO / SOLVE ── */
.intro {
  background: var(--dark);
  position: relative;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.intro-icon {
  width: 52px; height: 52px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}

.intro-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 1.5; }

/* ── FEATURE CARDS ── */
.features { background: var(--black); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
  width: 100%;
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  border-color: rgba(0,230,118,0.3);
  box-shadow: 0 8px 40px rgba(0,230,118,0.07);
}

.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 44px; height: 44px;
  background: rgba(0,230,118,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}

.feat-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.5; }

.feat-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.feat-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.feat-card { text-align: left; }

/* ── CONSULTING ── */
.consulting {
  background: var(--dark);
  position: relative;
}

.consulting-list {
  list-style: none;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  width: 100%;
}

@media (max-width: 640px) {
  .consulting-list { grid-template-columns: 1fr; }
}

.consulting-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.consulting-list li:hover {
  border-color: rgba(0,230,118,0.3);
  box-shadow: 0 8px 40px rgba(0,230,118,0.07);
}

.consulting-list li span {
  display: block;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  color: var(--green);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,230,118,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
}

.cta-link:hover { border-color: var(--green); gap: 0.65rem; }

/* ── TEAM ── */
.team {
  background: var(--black);
  text-align: center;
}

.team-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  width: 100%;
  max-width: 300px;
  transition: border-color 0.3s;
}

.team-card:hover { border-color: rgba(0,230,118,0.35); }

.avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: none;
  margin: 0 auto 1rem;
  overflow: hidden;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.avatar-initials {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
}

.team-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}

.footer-logo-icon svg { width: 28px; height: 28px; color: var(--text); }

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}

footer p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

footer p + p {
  margin-top: .7rem;
}

footer a {
  color: var(--green);
  text-decoration: none;
  font-size: 1rem;
}

/* ── STATS BAR ── */
.stats {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── DIVIDER ── */
.divider {
  width: 40px; height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 1.5rem auto;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DESKTOP ── */
@media (min-width: 640px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .team-cards { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 960px) {
  section { padding: 6rem 0; }
  .section-body { font-size: 1rem; }
}

@media (min-width: 1200px) {
  section { padding: 7rem 0; }
  nav { padding: 1.2rem 4rem; }
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES (privacy-policy, terms-and-conditions)
   ═══════════════════════════════════════════════ */

/* ── PAGE HEADER ── */
.page-header {
  padding: 8rem 2rem 4rem;
  background: var(--dark);
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.page-header .section-eyebrow { margin-bottom: 1rem; }

.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 auto 1rem;
  max-width: 700px;
}

.page-header .meta {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* ── POLICY LAYOUT ── */
.policy-content {
  background: var(--black);
  padding: 4.5rem 2rem 8rem;
}

@media (min-width: 960px) {
  .policy-content {
    padding: 6rem 2rem 8rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 0 4rem;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
  }
}

.policy-body { min-width: 0; }

@media (min-width: 960px) {
  .policy-body { grid-column: 1; grid-row: 1; }
}

/* ── TOC: mobile fixed bottom, desktop sticky sidebar ── */
.policy-toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  top: auto;
  z-index: 100;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 959px) {
  .policy-toc.toc-offscreen {
    transform: translateY(calc(100% + 3rem));
    opacity: 0;
    pointer-events: none;
  }
}

.toc-chevron { transform: rotate(0deg); }
.policy-toc.is-open .toc-chevron { transform: rotate(180deg); }

@media (min-width: 960px) {
  .policy-toc {
    position: sticky;
    top: 5.5rem;
    bottom: auto;
    left: auto;
    right: auto;
    grid-column: 2;
    grid-row: 1;
    border-radius: 18px;
    padding: 1.6rem 1.8rem;
    z-index: 1;
    box-shadow: none;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
  }

  .toc-chevron { transform: none; }
}

.policy-toc-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (max-width: 959px) {
  .policy-toc-title {
    margin: -1rem -1.8rem;
    padding: 1rem 1.8rem;
    width: calc(100% + 3.6rem);
  }
}

.toc-chevron {
  width: 14px; height: 14px;
  stroke: var(--green);
  fill: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.policy-toc ol {
  list-style: none;
  counter-reset: toc-counter;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}

.policy-toc.is-open ol {
  max-height: 600px;
  margin-top: 1rem;
}

@media (min-width: 960px) {
  .policy-toc-title { pointer-events: none; cursor: default; }
  .toc-chevron { display: none; }
  .policy-toc ol { max-height: none !important; margin-top: 1rem !important; }
}

.policy-toc li {
  counter-increment: toc-counter;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.policy-toc li::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green);
  opacity: 0.6;
  min-width: 1.6em;
  flex-shrink: 0;
}

.policy-toc a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
  padding: 0.2rem 0;
  display: block;
}

.policy-toc a:hover,
.policy-toc a.active { color: var(--green); opacity: 1; }

/* ── SECTION BLOCKS ── */
.policy-section { margin-bottom: 3rem; }

.policy-section-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.policy-section h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.policy-section p {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul,
.policy-section ol {
  margin: 0.75rem 0 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-section li {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.75;
}

.policy-section strong { color: var(--text); font-weight: 600; }

.policy-section a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,230,118,0.3);
  transition: border-color 0.2s;
}

.policy-section a:hover { border-color: var(--green); }

/* ── HIGHLIGHT BOX ── */
.policy-highlight {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.4rem;
  margin: 0 0 3rem 0;
}

.policy-highlight p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ── SECTION DIVIDER ── */
.policy-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */

.contact-section {
  background: var(--black);
  padding: 3rem 0 3rem;
}

@media (min-width: 960px) {
  .contact-section { padding: 4rem 0 4rem; }
}

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.contact-disclaimer {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
  margin-top: 2rem;
}

.contact-disclaimer a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,230,118,0.3);
  transition: border-color 0.2s;
}

.contact-disclaimer a:hover { border-color: var(--green); }

/* ── FORM FIELDS ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-row .form-group { margin-bottom: 0; }

.form-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.form-label sup {
  color: var(--green);
  font-size: 0.7em;
}

.form-input,
.form-textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  width: 100%;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(0,230,118,0.45);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.08);
}

/* ── PHONE FIELD ── */
.phone-wrap {
  display: flex;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.phone-wrap:focus-within {
  border-color: rgba(0,230,118,0.45);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.08);
}

.phone-country {
  background: rgba(0,230,118,0.06);
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.85rem 0.9rem 0.85rem 1.2rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a9980' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  padding-right: 1.8rem;
  flex-shrink: 0;
}

.phone-number {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  width: 100%;
  outline: none;
}

.phone-number::placeholder { color: var(--muted); opacity: 0.7; }

/* ── SUBMIT BUTTON ── */
.contact-submit {
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #fff;
  border: none;
  border-radius: 50px;
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
}

.contact-submit:hover {
  background: var(--green);
  box-shadow: 0 0 32px rgba(0,230,118,0.2);
}

.contact-submit:active { transform: scale(0.98); }

/* ── SUCCESS STATE ── */
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 3rem 0;
}

.contact-success.visible { display: flex; }

.contact-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.3);
  display: flex; align-items: center; justify-content: center;
}

.contact-success-icon svg {
  width: 28px; height: 28px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
}

.contact-success h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-success p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 360px;
}
