@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --violet-100: #ede9fe;
  --violet-200: #ddd6fe;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --fuchsia-50: #fdf4ff;
  --fuchsia-100: #fae8ff;
  --fuchsia-200: #f5d0fe;
  --fuchsia-300: #f0abfc;
  --fuchsia-500: #d946ef;
  --fuchsia-600: #c026d3;
  --fuchsia-700: #a21caf;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --teal-50: #f0fdfa;
  --teal-500: #14b8a6;
  --teal-700: #0f766e;
  --blue-50: #eff6ff;
  --blue-500: #3b82f6;
  --blue-700: #1d4ed8;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-600: #16a34a;
  --green-800: #166534;
  --green-900: #14532d;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --cream: #f7f6f3;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-900);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

.icon { width: 1.5em; height: 1.5em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 1em; height: 1em; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Gradient text */
.gtext {
  background: linear-gradient(90deg, var(--violet-600), var(--fuchsia-500), var(--orange-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gtext-vf { background: linear-gradient(90deg, var(--violet-600), var(--fuchsia-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gtext-fo { background: linear-gradient(90deg, var(--fuchsia-500), var(--orange-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gtext-vo { background: linear-gradient(90deg, var(--violet-600), var(--orange-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Badges / pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.badge-violet { background: var(--violet-100); border: 1px solid var(--violet-200); color: var(--violet-700); }
.badge-red { background: var(--red-50); border: 1px solid var(--red-100); color: var(--red-500); }
.badge-orange { background: var(--orange-50); border: 1px solid var(--orange-100); color: var(--orange-600); }
.badge-pink { background: var(--pink-50); border: 1px solid var(--pink-100); color: var(--pink-600); }
.badge-teal { background: var(--teal-50); color: var(--teal-700); }
.badge-solid-violet { background: var(--violet-600); color: #fff; }
.badge-white { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #fff; }
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot-violet { background: var(--violet-500); }
.dot-green { background: var(--green-400); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--violet-600); color: #fff; box-shadow: 0 4px 14px rgba(124,58,237,0.15); }
.btn-primary:hover { background: var(--violet-500); box-shadow: 0 8px 22px rgba(124,58,237,0.35); transform: translateY(-1px); }
.btn-secondary { background: var(--gray-100); color: var(--gray-900); border: 1px solid var(--gray-200); }
.btn-secondary:hover { background: var(--gray-200); }
.btn-white { background: #fff; color: var(--violet-700); font-weight: 800; }
.btn-white:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.15); transform: translateY(-1px); }
.btn-ghost-white { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; backdrop-filter: blur(4px); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.25); }
.btn-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--violet-600); font-weight: 700; font-size: 0.9rem; }
.btn-link:hover { gap: 0.75rem; }
.btn small-caps

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--gray-100); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--gray-900); }
.nav-links { display: none; align-items: center; gap: 2rem; font-size: 0.9rem; font-weight: 600; color: var(--gray-500); }
.nav-links a:hover { color: var(--gray-900); }
.nav-toggle { display: inline-flex; background: none; padding: 0.4rem; }
.nav-toggle svg { width: 24px; height: 24px; }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}
.nav-mobile { display: none; flex-direction: column; gap: 0.25rem; padding: 0.5rem 1.5rem 1.25rem; border-top: 1px solid var(--gray-100); background: #fff; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 0.6rem 0; font-weight: 600; color: var(--gray-600); font-size: 0.95rem; }

/* Sections */
.section { padding: 7rem 0; }
.section-tight { padding-top: 7rem; padding-bottom: 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: #fff; }
.bg-gray50 { background: var(--gray-50); }

/* Hero */
.hero-grid { display: flex; flex-direction: column; gap: 3rem; align-items: flex-start; padding-bottom: 0; }
@media (min-width: 1024px) { .hero-grid { flex-direction: row; align-items: flex-end; } }
.hero-text { flex: 1; padding: 2rem 0 4rem; }
.hero-text h1 { font-size: 2.75rem; line-height: 1.08; }
@media (min-width: 768px) { .hero-text h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-text h1 { font-size: 4.25rem; } }
.hero-text p.lead { font-size: 1.1rem; color: var(--gray-600); line-height: 1.7; margin: 1.5rem 0 2.25rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.stat-row { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.stat-value { font-size: 1.75rem; font-weight: 800; color: var(--gray-900); }
.stat-label { font-size: 0.75rem; color: var(--gray-500); font-weight: 600; margin-top: 0.15rem; }

/* Hero visual card */
.hero-visual { flex: 1; display: flex; justify-content: center; width: 100%; }
@media (min-width: 1024px) { .hero-visual { justify-content: flex-end; } }
.stack-card { width: 100%; max-width: 28rem; background: linear-gradient(135deg, var(--violet-600), var(--fuchsia-600)); border-radius: 2.5rem 2.5rem 0 0; padding: 2.5rem 2rem 0; box-shadow: 0 25px 60px rgba(0,0,0,0.2); position: relative; overflow: hidden; }
.stack-card.theme-orange { background: linear-gradient(135deg, var(--violet-600), var(--orange-500)); }
.stack-card.theme-rose { background: linear-gradient(135deg, var(--fuchsia-600), var(--pink-500)); }
.stack-card.theme-magenta { background: linear-gradient(135deg, var(--pink-600), var(--fuchsia-700)); }
.stack-card.theme-teal { background: linear-gradient(135deg, var(--violet-600), var(--teal-500)); }
.stack-card.theme-blue { background: linear-gradient(135deg, var(--violet-600), var(--blue-500)); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.tag-pill { font-size: 0.7rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px); cursor: pointer; transition: all 0.2s ease; display: inline-block; }
.tag-pill:hover { background: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.tag-pill.accent { background: rgba(251,146,60,0.9); }
.tag-pill.accent:hover { background: rgba(251,146,60,1); }
.tag-pill.pink { background: rgba(240,171,252,0.8); }
.tag-pill.pink:hover { background: rgba(240,171,252,0.95); }
.stack-card .kicker { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.stack-card h2 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.card-desc { color: rgba(255,255,255,0.75); font-size: 0.85rem; line-height: 1.5; margin-bottom: 1.5rem; position: relative; z-index: 1; min-height: 2.6em; }
.stat-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.stat-mini { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); border-radius: 1rem; padding: 1rem; backdrop-filter: blur(4px); }
.stat-mini .label { font-size: 0.7rem; color: rgba(255,255,255,0.7); margin-bottom: 0.25rem; }
.stat-mini .value { font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat-mini .check { font-size: 0.7rem; font-weight: 700; margin-top: 0.25rem; }
.stack-card .hero-img { height: 12rem; overflow: hidden; border-radius: 1rem 1rem 0 0; margin: 0 -0.25rem; position: relative; z-index: 1; }
.stack-card .hero-img img { width: 100%; height: 100%; object-fit: cover; }
.glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.2; }
.glow-orange { background: var(--orange-400); width: 12rem; height: 12rem; top: 0; right: 0; }
.glow-fuchsia { background: var(--fuchsia-300); width: 10rem; height: 10rem; bottom: 0; left: 0; }

/* Problem / Solution */
.problem-grid { display: flex; flex-direction: column; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .problem-grid { flex-direction: row; } }
.problem-col { flex: 1; }
.problem-col h2 { font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .problem-col h2 { font-size: 2.75rem; } }
.problem-col > p { color: var(--gray-500); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; }
.risk-list { display: flex; flex-direction: column; gap: 0.75rem; }
.risk-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.risk-dot-wrap { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--red-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.15rem; }
.risk-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-500); }
.risk-item span { color: var(--gray-600); font-size: 0.9rem; }

.solution-card { background: linear-gradient(135deg, var(--violet-50, #f5f3ff), var(--fuchsia-50)); border-radius: 2.5rem; padding: 2.5rem; border: 1px solid var(--violet-100); position: relative; overflow: hidden; }
.solution-card h3 { font-size: 1.5rem; margin: 1rem 0; }
.solution-card > p { color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; position: relative; z-index: 1; }
.benefit-list { display: flex; flex-direction: column; gap: 0.75rem; position: relative; z-index: 1; }
.benefit-item { display: flex; align-items: center; gap: 0.75rem; }
.benefit-item span { color: var(--gray-700); font-size: 0.9rem; font-weight: 600; }
.benefit-item .icon { color: var(--violet-600); }

/* What we do */
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .section-head h2 { font-size: 2.75rem; } }
.section-head p { color: var(--gray-500); margin-top: 1rem; max-width: 36rem; margin-left: auto; margin-right: auto; line-height: 1.7; }
.section-head.left { text-align: left; margin: 0; }

.icon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .icon-grid { grid-template-columns: repeat(4, 1fr); } }
.icon-card { border-radius: 2rem; padding: 1.75rem; transition: transform 0.25s ease; }
.icon-card:hover { transform: translateY(-4px); }
.icon-card .icon-box { width: 3rem; height: 3rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.icon-card .icon-box .icon { color: #fff; }
.icon-card .title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.25rem; }
.icon-card .sub { font-size: 0.9rem; color: var(--gray-600); }
.ic-violet { background: linear-gradient(135deg, var(--violet-100), var(--violet-200)); } .ic-violet .icon-box { background: var(--violet-600); } .ic-violet .title { color: var(--violet-700); }
.ic-fuchsia { background: linear-gradient(135deg, var(--fuchsia-100), var(--fuchsia-200)); } .ic-fuchsia .icon-box { background: var(--fuchsia-600); } .ic-fuchsia .title { color: var(--fuchsia-700); }
.ic-pink { background: linear-gradient(135deg, var(--pink-100), #fbcfe8); } .ic-pink .icon-box { background: var(--pink-500); } .ic-pink .title { color: var(--pink-700); }
.ic-orange { background: linear-gradient(135deg, var(--orange-100), #fed7aa); } .ic-orange .icon-box { background: var(--orange-500); } .ic-orange .title { color: var(--orange-600); }

/* Why Tezza */
.why-layout { display: flex; flex-direction: column; gap: 4rem; align-items: flex-start; }
@media (min-width: 1024px) { .why-layout { flex-direction: row; } }
.why-intro { flex-shrink: 0; }
@media (min-width: 1024px) { .why-intro { width: 20rem; } }
.why-intro h2 { font-size: 2.25rem; line-height: 1.2; margin: 0 0 1rem; }
@media (min-width: 768px) { .why-intro h2 { font-size: 2.75rem; } }
.why-intro p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; }
.why-grid { flex: 1; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card { background: #fff; border: 1px solid var(--gray-100); border-radius: 1.5rem; padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.03); transition: all 0.25s ease; }
.why-card:hover { border-color: var(--violet-200); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.why-card .icon { margin-bottom: 1rem; }
.why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* Core Services */
.services-head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .services-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.services-head h2 { font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .services-head h2 { font-size: 2.75rem; } }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { position: relative; border: 1px solid var(--gray-100); border-radius: 2rem; padding: 1.75rem; overflow: hidden; transition: all 0.3s ease; }
.service-card:hover { border-color: transparent; box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.service-card .service-bg { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; border-radius: 2rem; }
.service-card:hover .service-bg { opacity: 1; }
.service-card .content { position: relative; z-index: 1; }
.service-card .icon-box { width: 3rem; height: 3rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: all 0.3s ease; }
.service-card .icon-box .icon { transition: color 0.3s ease; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; transition: color 0.3s ease; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; transition: color 0.3s ease; }
.service-card:hover h3, .service-card:hover p { color: #fff; }
.service-card:hover .icon-box { background: rgba(255,255,255,0.2) !important; }
.service-card:hover .icon-box .icon { color: #fff; }

.sc-violet .service-bg { background: linear-gradient(135deg, var(--violet-500), var(--violet-700)); } .sc-violet .icon-box { background: var(--violet-100); color: var(--violet-600); }
.sc-fuchsia .service-bg { background: linear-gradient(135deg, var(--fuchsia-500), var(--fuchsia-700)); } .sc-fuchsia .icon-box { background: var(--fuchsia-100); color: var(--fuchsia-600); }
.sc-pink .service-bg { background: linear-gradient(135deg, var(--pink-500), var(--pink-700)); } .sc-pink .icon-box { background: var(--pink-100); color: var(--pink-600); }
.sc-orange .service-bg { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); } .sc-orange .icon-box { background: var(--orange-100); color: var(--orange-600); }
.sc-teal .service-bg { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); } .sc-teal .icon-box { background: var(--teal-50); color: var(--teal-500); }
.sc-blue .service-bg { background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); } .sc-blue .icon-box { background: var(--blue-50); color: var(--blue-500); }
.service-card .icon-box .icon { color: inherit; }

/* How we work */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { border-radius: 2rem; padding: 2rem; }
.step-card .step-num { color: #fff; font-size: 0.75rem; font-weight: 800; width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.step-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }
.step-violet { background: var(--violet-100); } .step-violet .step-num { background: var(--violet-600); }
.step-fuchsia { background: var(--fuchsia-100); } .step-fuchsia .step-num { background: var(--fuchsia-600); }
.step-orange { background: var(--orange-100); } .step-orange .step-num { background: var(--orange-500); }

.approach-banner { background: #fff; border: 1px solid var(--gray-100); border-radius: 2rem; padding: 2.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.03); display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center; }
.approach-banner p { color: var(--gray-700); font-weight: 600; max-width: 36rem; }
.tag-row-plain { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.tag-plain { background: var(--gray-100); color: var(--gray-700); font-size: 0.75rem; font-weight: 700; padding: 0.5rem 1rem; border-radius: 999px; }

/* Who we help */
.who-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .who-grid { grid-template-columns: 1fr 1fr; } }
.who-card { position: relative; border-radius: 2.5rem; padding: 2.25rem; color: #fff; overflow: hidden; transition: transform 0.3s ease; }
.who-card:hover { transform: translateY(-4px); }
.who-card .top-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.who-card .icon-box { background: rgba(255,255,255,0.15); border-radius: 1rem; padding: 0.75rem; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px); }
.who-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.who-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.6; position: relative; z-index: 1; }
.who-card .learn { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.9); position: relative; z-index: 1; }
.who-a { background: linear-gradient(135deg, var(--violet-600), var(--violet-700), var(--fuchsia-700)); }
.who-b { background: linear-gradient(135deg, var(--fuchsia-600), var(--fuchsia-700), var(--pink-700)); }
.who-c { background: linear-gradient(135deg, var(--pink-600), var(--pink-700), var(--orange-600)); }
.who-d { background: linear-gradient(135deg, var(--orange-500), var(--orange-600), #ca8a04); }

/* Final CTA */
.cta-outer { max-width: 64rem; margin: 0 auto; }
.cta-card { position: relative; border-radius: 3rem; overflow: hidden; background: linear-gradient(135deg, var(--violet-600), var(--fuchsia-600), var(--orange-500)); }
.cta-card .cta-inner { position: relative; z-index: 1; text-align: center; padding: 5rem 2.5rem; }
.cta-card h2 { color: #fff; font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-card h2 { font-size: 3rem; } }
.cta-card > .cta-inner > p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 34rem; margin: 0 auto 2.5rem; line-height: 1.6; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-foot { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 2rem; }

/* Footer */
.footer { padding: 4rem 0; background: var(--cream); border-top: 1px solid var(--gray-200); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; max-width: 320px; color: var(--gray-500); }
.footer h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul a { font-size: 0.9rem; color: var(--gray-500); }
.footer ul a:hover { color: var(--gray-900); }
.footer p { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--gray-500); }
.footer-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; color: var(--violet-600); font-size: 0.9rem; font-weight: 600; }
.footer-link:hover { color: var(--violet-700); }
.footer-bottom { border-top: 1px solid var(--gray-200); padding-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--gray-400); margin: 0; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }

/* Contact page */
.contact-header { padding: 7rem 0 3rem; background: var(--cream); }
.contact-header h1 { font-size: 2.75rem; line-height: 1.08; margin: 1.5rem 0; }
@media (min-width: 768px) { .contact-header h1 { font-size: 3.75rem; } }
.contact-header p { color: var(--gray-500); font-size: 1.1rem; line-height: 1.7; max-width: 32rem; }
.contact-main { padding: 0 0 7rem; background: var(--cream); }
.contact-layout { display: flex; flex-direction: column; gap: 2.5rem; align-items: flex-start; }
@media (min-width: 1024px) { .contact-layout { flex-direction: row; } }
.form-card { flex: 1; width: 100%; background: #fff; border-radius: 2.5rem; padding: 2rem; border: 1px solid var(--gray-100); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
@media (min-width: 768px) { .form-card { padding: 3rem; } }
.form-card h2 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.form-card .hint { color: var(--gray-400); font-size: 0.85rem; margin-bottom: 1.5rem; }
form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--gray-700); }
.field input, .field select, .field textarea {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--gray-900);
  font-family: inherit;
  transition: all 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(167,139,250,0.5);
}
.field textarea { resize: none; }
.submit-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--violet-600); color: #fff; font-weight: 700; padding: 1rem 2rem; border-radius: 999px; font-size: 0.9rem; box-shadow: 0 4px 14px rgba(124,58,237,0.15); transition: all 0.2s ease; }
.submit-btn:hover { background: var(--violet-500); box-shadow: 0 8px 22px rgba(124,58,237,0.3); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-foot { font-size: 0.75rem; color: var(--gray-400); text-align: center; }
.form-error { font-size: 0.8rem; color: var(--red-500); text-align: center; background: var(--red-50); border: 1px solid var(--red-100); border-radius: 0.75rem; padding: 0.75rem 1rem; }
.form-error a { color: var(--red-500); font-weight: 700; text-decoration: underline; }
.spinner { width: 1rem; height: 1rem; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.success-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5rem 0; text-align: center; }
.success-icon { width: 5rem; height: 5rem; background: var(--green-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.success-icon .icon { width: 2.5rem; height: 2.5rem; color: var(--green-600); }
.success-state h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.success-state p { color: var(--gray-500); max-width: 24rem; line-height: 1.6; }

.sidebar { display: flex; flex-direction: column; gap: 1.5rem; width: 100%; }
@media (min-width: 1024px) { .sidebar { width: 24rem; flex-shrink: 0; } }
.info-card { background: linear-gradient(135deg, var(--violet-600), var(--fuchsia-600)); border-radius: 2rem; padding: 2rem; color: #fff; position: relative; overflow: hidden; }
.info-card h3 { font-size: 1.25rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.info-row { display: flex; align-items: flex-start; gap: 1rem; position: relative; z-index: 1; }
.info-row + .info-row { margin-top: 1.25rem; }
.info-row .icon-box { background: rgba(255,255,255,0.15); border-radius: 0.75rem; padding: 0.6rem; border: 1px solid rgba(255,255,255,0.2); flex-shrink: 0; }
.info-row .icon-box .icon { width: 1rem; height: 1rem; }
.info-row .label { font-size: 0.7rem; color: rgba(255,255,255,0.6); font-weight: 600; margin-bottom: 0.15rem; }
.info-row .val { font-size: 0.9rem; font-weight: 600; }
.info-row .val:hover { text-decoration: underline; }

.help-card { background: #fff; border: 1px solid var(--gray-100); border-radius: 2rem; padding: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.help-card h3 { font-size: 1rem; margin-bottom: 1.25rem; }
.help-row { display: flex; align-items: center; gap: 0.75rem; }
.help-row + .help-row { margin-top: 0.75rem; }
.help-row .icon-box { width: 2rem; height: 2rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.help-row .icon-box .icon { width: 1rem; height: 1rem; }
.help-row span { font-size: 0.9rem; font-weight: 600; color: var(--gray-700); }

.promise-card { background: var(--green-50); border: 1px solid var(--green-100); border-radius: 2rem; padding: 1.75rem; }
.promise-card .top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.promise-card .top .icon { color: var(--green-600); }
.promise-card .top span { font-size: 0.9rem; font-weight: 800; color: var(--green-900); }
.promise-card p { font-size: 0.9rem; color: var(--green-800); line-height: 1.6; }
