/* =============================================
   NOVANE MATCH MAKER — Global Styles
   ============================================= */

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

:root {
  --navy:      #12132a;
  --navy-mid:  #1c1e45;
  --navy-light:#2a2d5e;
  --gold:      #c8956c;
  --gold-light:#dba882;
  --gold-pale: #f2e4d8;
  --cream:     #faf7f3;
  --cream-dark:#f0ebe3;
  --white:     #ffffff;
  --text:      #1a1b3a;
  --text-mid:  #3d3f5c;
  --text-muted:#7a7c98;
  --border:    rgba(200,149,108,0.2);
  --shadow-sm: 0 2px 12px rgba(18,19,42,0.08);
  --shadow-md: 0 8px 32px rgba(18,19,42,0.12);
  --shadow-lg: 0 20px 60px rgba(18,19,42,0.15);
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;
  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,149,108,0.4); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-lg { padding: 1rem 2.5rem; font-size: 0.875rem; }

.w100 { width: 100%; }

/* ============== NAVIGATION ============== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(18,19,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}
.nav-logo-text {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  border-radius: 2px;
}
.nav-link:hover { color: var(--gold); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 10001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============== HERO ============== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18,19,42,0.88) 0%,
    rgba(18,19,42,0.65) 50%,
    rgba(18,19,42,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 2rem;
  margin-left: max(2rem, calc((100vw - 1160px) / 2 + 2rem));
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.hero-scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(200,149,108,0.4);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.6; }
}

/* ============== STATEMENT BAND ============== */
.statement-band {
  background: var(--navy);
  padding: 3.5rem 0;
  text-align: center;
}
.statement-band p {
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  line-height: 1.5;
}

/* ============== ABOUT ============== */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--radius-lg);
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.about-content p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.about-content .section-title { margin-bottom: 1.5rem; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pillar-icon {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.pillar strong { display: block; color: var(--navy); margin-bottom: 0.2rem; }
.pillar p { margin: 0; font-size: 0.9rem; }

/* ============== PROCESS ============== */
.process { background: var(--white); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-card {
  position: relative;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  background: var(--white);
}
.process-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.process-num {
  font-family: var(--ff-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  transition: background 0.3s;
}
.process-card:hover .process-icon { background: var(--gold); color: var(--white); }
.process-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.process-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ============== TEAM ============== */
.team { background: var(--cream); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.team-photo-wrap { overflow: hidden; height: 340px; }
.team-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-photo { transform: scale(1.04); }

.team-info { padding: 1.75rem; }
.team-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-bio { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ============== TESTIMONIALS ============== */
.testimonials { background: var(--navy); overflow: hidden; }
.testimonials .eyebrow { color: var(--gold); }
.testimonials .section-title { color: var(--white); }

.testimonials-wrap { position: relative; }

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.t-card {
  flex: 0 0 calc(33.33% - 1.33rem);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,149,108,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color 0.3s;
}
.t-card:hover { border-color: rgba(200,149,108,0.5); }

.t-quote {
  font-family: var(--ff-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.t-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.t-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.t-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.t-author span { color: var(--gold); font-size: 0.8rem; }

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(200,149,108,0.3);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-btn:hover { background: var(--gold); border-color: var(--gold); }

.t-dots { display: flex; gap: 0.5rem; }
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.2s;
}
.t-dot.active { background: var(--gold); transform: scale(1.2); }

/* ============== GET STARTED FORM ============== */
.get-started { background: var(--cream); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  max-width: 840px;
  margin: 0 auto;
}

.intake-form, .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid #e2ddd8;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,149,108,0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e05c5c; }

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  margin-top: 0.15rem;
  cursor: pointer;
}
.form-check label {
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.6;
}

.form-submit-btn { width: 100%; margin-top: 0.5rem; }

/* Form section labels */
.form-section-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}

/* Birthdate row */
.birthdate-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 0.75rem;
}
.birthdate-row select {
  padding: 0.875rem 1rem;
  border: 1.5px solid #e2ddd8;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  cursor: pointer;
  width: 100%;
}
.birthdate-row select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,149,108,0.15);
}
.birthdate-row select.error { border-color: #e05c5c; }

@media (max-width: 480px) {
  .birthdate-row { grid-template-columns: 1fr 1fr; }
  .birthdate-row select:last-child { grid-column: 1 / -1; }
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-check {
  width: 72px;
  height: 72px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.form-success p { color: var(--text-mid); margin-bottom: 0.75rem; }
.success-note { font-size: 0.875rem; color: var(--text-muted); }

/* ============== CONTACT ============== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info p { color: var(--text-mid); margin: 1.25rem 0 2rem; line-height: 1.7; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.c-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-list strong { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-list a, .contact-list span { color: var(--navy); font-weight: 500; }
.contact-list a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-success {
  margin-top: 1rem;
  padding: 1rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ============== SOCIALS ============== */
.socials { display: flex; gap: 0.75rem; }
.social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.2s;
}
.social:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ============== FOOTER ============== */
.footer { background: var(--navy); padding: 5rem 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.footer-brand .social { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.12); }
.footer-brand .social:hover { color: var(--white); background: var(--gold); border-color: var(--gold); }

.footer-col strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.825rem; }

/* ============== MOBILE MENU OVERLAY ============== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.is-open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
  border: 2px solid rgba(200,149,108,0.4);
}
.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--gold); }
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0 2rem;
}
.mobile-menu-link {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  padding: 0.6rem 1.5rem;
  text-align: center;
  width: 100%;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-link:last-child { border-bottom: none; }
.mobile-menu-link:hover { color: var(--gold); }
.mobile-menu-cta {
  margin-top: 1.5rem;
  border: 1px solid var(--gold) !important;
  border-radius: 2px;
  color: var(--gold) !important;
  font-size: 1rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2rem !important;
}
.mobile-menu-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* ============== SCROLL REVEAL ============== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Delay variants */
[style*="--delay"] { transition-delay: var(--delay); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { margin-left: 0; padding: 0 1.5rem; }
  .hero-title { font-size: 3rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { height: 380px; }
  .about-badge { right: 0; bottom: -1rem; }

  .process-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .testimonials-track .t-card { flex: 0 0 100%; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .form-card { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { margin-bottom: 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
