/* ============================================================
   styles.css | Evia Marketing
   ============================================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* === CSS Variables === */
:root {
  --purple: #8A2BE2;
  --purple-light: #BF5FFF;
  --gradient: linear-gradient(135deg, #8A2BE2 0%, #BF5FFF 100%);
  --dark-bg: #0A0A0F;
  --light-bg: #F8F7FF;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --nav-height: 72px;
  --section-pad: 96px;
  --container: 1200px;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

/* === Container === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--purple-light);
}

.nav-cta {
  background: var(--gradient) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: filter 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  filter: brightness(1.1) !important;
  transform: scale(1.02) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--purple-light);
}

.nav-mobile .nav-cta-mobile {
  background: var(--gradient) !important;
  color: var(--white) !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem !important;
  margin-top: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, opacity 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.12);
  transform: scale(1.02);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  transform: scale(1.02);
}

.btn-white {
  background: var(--white);
  color: var(--purple);
  border-color: transparent;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-outline-purple:hover {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.02);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Animated gradient aura */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(138, 43, 226, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(191, 95, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 55% 85%, rgba(138, 43, 226, 0.10) 0%, transparent 50%);
  animation: heroAura 12s ease-in-out infinite alternate;
}

@keyframes heroAura {
  0% { opacity: 0.75; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04); }
}

/* Dot grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 880px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid rgba(138, 43, 226, 0.35);
  color: var(--purple-light);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Inner page hero (shorter) */
.hero-inner {
  min-height: 48vh;
}

.hero-inner .hero-content {
  padding: 48px 24px;
}

.hero-inner h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--dark-bg);
  color: var(--white);
}

.section-light {
  background: var(--light-bg);
}

.section-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.58);
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(138, 43, 226, 0.08);
  transform: translateY(-2px);
}

.card-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.card-glass:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(138, 43, 226, 0.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 10px;
}

.card-glass h3 {
  color: var(--white);
}

.card-glass p {
  color: rgba(255, 255, 255, 0.62);
}

/* Step cards */
.step-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gradient);
  padding: var(--section-pad) 24px;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ============================================================
   NO-WIN NO-FEE STICKY STRIP
   ============================================================ */
.nwnf-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #6a1db5 0%, #8A2BE2 50%, #BF5FFF 100%);
  color: #fff;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(138, 43, 226, 0.35);
}

.nwnf-strip.visible {
  transform: translateY(0);
}

.nwnf-strip-text {
  letter-spacing: 0.01em;
}

.nwnf-strip-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 6px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.nwnf-strip-cta:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
  box-shadow: 0 12px 40px rgba(138, 43, 226, 0.1);
  transform: translateY(-3px);
}

.team-card-avatar {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.08) 0%, rgba(191, 95, 255, 0.14) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

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

.team-card-fun .team-card-avatar img {
  object-position: center;
}

.team-card-fun {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.06) 0%, rgba(191, 95, 255, 0.1) 100%);
  border-color: rgba(138, 43, 226, 0.15);
}

.team-card-fun .team-card-role {
  color: var(--purple);
}

.team-card-fun .team-card-avatar {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.12) 0%, rgba(191, 95, 255, 0.2) 100%);
}

.team-card-body {
  padding: 28px 24px;
}

.team-card h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.team-card-role {
  color: var(--purple);
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.team-card .btn {
  width: 100%;
  font-size: 0.875rem;
  padding: 12px 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(138, 43, 226, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.contact-detail-text a,
.contact-detail-text span,
.contact-detail-text p {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-detail-text a:hover {
  color: var(--purple);
}

.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-hours h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.contact-hours p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-submit-row {
  margin-top: 8px;
}

.form-submit-row .btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.hidden {
  display: none !important;
}

/* ============================================================
   PRICING BOX
   ============================================================ */
.pricing-box {
  background: var(--light-bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  max-width: 700px;
  margin: 64px auto 0;
}

.pricing-box h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.pricing-highlight {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 12px;
  display: block;
}

.pricing-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES CALL CTA
   ============================================================ */
.call-cta {
  text-align: center;
  padding: 64px 0 0;
}

.call-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.call-cta > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.phone-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.phone-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  min-width: 180px;
}

.phone-card-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}

.phone-card-number {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  transition: color 0.2s;
}

.phone-card-number:hover {
  color: var(--purple-light);
}

/* ============================================================
   MISSION (ABOUT PAGE)
   ============================================================ */
.mission-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 260px;
}

.footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--purple-light);
}

.footer-contact p,
.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-page {
  min-height: 100vh;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.thankyou-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(138, 43, 226, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(191, 95, 255, 0.08) 0%, transparent 55%);
}

.thankyou-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.thankyou-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.thankyou-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.thankyou-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.thankyou-check {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-check svg {
  width: 38px;
  height: 38px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.thankyou-content > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.thankyou-phones {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.thankyou-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.thankyou-phone-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.thankyou-phone-number {
  color: var(--purple-light);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.2s;
}

.thankyou-phone-number:hover {
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid-3,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .card-grid-3,
  .card-grid-2,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
  }

  .thankyou-phones {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .phone-cards {
    flex-direction: column;
    align-items: center;
  }

  .phone-card {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .card,
  .card-glass {
    padding: 24px 20px;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .pricing-box {
    padding: 36px 24px;
  }

  .cta-banner {
    padding: 64px 24px;
  }

  .nwnf-strip {
    gap: 12px;
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .nwnf-strip-cta {
    font-size: 0.82rem;
    padding: 5px 14px;
  }
}
