/* ===================================================
   IN IT TOGETHER LLC — Website Styles
   Brand: Dark Teal #0D4B4B | Soft Pink #E7B5AD | Cream #F7F4EE
   Fonts: Montserrat (headings) | Merriweather (body)
   =================================================== */

/* --- TOKENS --- */
:root {
  /* Brand Colors */
  --teal:          #0D4B4B;
  --teal-dark:     #092e2e;
  --teal-mid:      #1a6b6b;
  --teal-light:    #e6f0f0;
  --pink:          #E7B5AD;
  --pink-dark:     #c9877d;
  --pink-light:    #f9ebe8;
  --cream:         #F7F4EE;
  --cream-dark:    #ede8df;

  /* Semantic */
  --color-bg:        #ffffff;
  --color-surface:   var(--cream);
  --color-text:      #1a2424;
  --color-text-muted:#4a6060;
  --color-primary:   var(--teal);
  --color-accent:    var(--pink);

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw,  0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw,  1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw,    1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw,  2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw,   3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem + 4vw,       5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(13,75,75,0.08);
  --shadow-md: 0 4px 16px rgba(13,75,75,0.12);
  --shadow-lg: 0 12px 40px rgba(13,75,75,0.16);

  /* Fonts */
  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Merriweather', Georgia, serif;

  /* Layout */
  --container: 1160px;
  --container-narrow: 760px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

img, picture, video { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.15;
  color: var(--color-text);
}
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

/* --- EYEBROW / SECTION HEADERS --- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: var(--space-3);
}
.eyebrow--light { color: var(--pink); }

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-header h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-inline: auto;
}
.section-sub--light { color: rgba(255,255,255,0.8); }
.section-header--light h2 { color: white; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-lg {
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-8);
}
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

.btn-light {
  background: white;
  color: var(--teal);
  border-color: white;
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* =====================
   NAVIGATION
   ===================== */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--teal);
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
  padding-block: var(--space-2);
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--teal); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,46,46,0.82) 0%, rgba(13,75,75,0.75) 60%, rgba(26,107,107,0.65) 100%);
  pointer-events: none;
}

.hero::after { display: none; }

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: clamp(var(--space-4), 6vw, var(--space-16));
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--space-4);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 2rem + 4vw, 5.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  font-family: var(--font-body);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero-trust {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.trust-item svg { color: var(--pink); flex-shrink: 0; }

/* =====================
   HOW IT WORKS
   ===================== */
.how-it-works {
  background-color: var(--cream);
  background-image: url('assets/neighborhood-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247,244,238,0.55);
  pointer-events: none;
}
.how-it-works .container { position: relative; z-index: 1; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.step-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
  border-top: 4px solid var(--pink);
  border: 1px solid rgba(255,255,255,0.7);
  border-top: 4px solid var(--pink);
}
.step-card:hover {
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.04em;
}

.step-icon {
  width: 64px; height: 64px;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: var(--space-5);
}

.step-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--teal);
}

.step-card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.section-cta { text-align: center; }

/* =====================
   ABOUT
   ===================== */
.about { background: white; }

.about-content-centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.about-content-centered h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
  color: var(--teal);
}

.about-lead {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-weight: 300;
  line-height: 1.7;
}

.about-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.about-values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  text-align: left;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.about-values--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-6);
}
.about-values li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.about-values li svg { color: var(--teal); flex-shrink: 0; }

.about-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.about-social {
  display: flex;
  gap: var(--space-3);
}
.about-social a {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.about-social a:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

.about-lic {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* =====================
   SITUATIONS
   ===================== */
.situations {
  background-color: var(--teal);
  background-image: url('assets/aerial-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  text-align: center;
  position: relative;
}
.situations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,75,75,0.50);
  pointer-events: none;
}
.situations .container { position: relative; z-index: 1; }

.situations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-10);
}

.situation-chip {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}
.situation-chip:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.situations-cta-text {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

/* =====================
   COMPARISON TABLE
   ===================== */
.compare { background: white; }

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.compare-table thead tr {
  background: var(--teal);
  color: white;
}

.compare-table th {
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
}

.compare-table th:first-child { width: 30%; }
.compare-table th.col-us { background: var(--teal-dark); }

.col-us-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--transition);
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--cream); }

.compare-table td {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  vertical-align: middle;
  color: var(--color-text-muted);
}
.compare-table td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
}
.compare-table td.col-us { background: rgba(13,75,75,0.04); }
.compare-table td.col-agent { color: #888; }

.check-badge {
  display: inline-flex;
  align-items: center;
  background: var(--teal-light);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* =====================
   BENEFITS
   ===================== */
.benefits { background: var(--cream); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.benefit-card {
  text-align: center;
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 72px; height: 72px;
  background: var(--teal-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.benefit-card h3 {
  font-size: var(--text-lg);
  color: var(--teal);
  margin-bottom: var(--space-3);
}
.benefit-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

.contact-info h2 {
  font-size: var(--text-2xl);
  color: white;
  margin-bottom: var(--space-5);
}
.contact-info > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
  font-size: var(--text-base);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--pink); }
.contact-link svg { flex-shrink: 0; }

/* FORMS */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,75,75,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal);
}
.form-checkbox label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: calc(-1 * var(--space-2));
}

/* =====================
   HOME VALUATION
   ===================== */
.valuation { background: var(--cream); }

.valuation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

.valuation-text { padding-top: var(--space-4); }

.valuation-text h2 {
  font-size: var(--text-2xl);
  color: var(--teal);
  margin-bottom: var(--space-5);
}
.valuation-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.valuation-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-md);
}

.valuation-form h3 {
  font-size: var(--text-lg);
  color: var(--teal);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--cream-dark);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.8);
  padding-top: clamp(var(--space-12), 6vw, var(--space-20));
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  padding-bottom: var(--space-12);
}

.footer-logo {
  height: auto;
  width: 200px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  background: white;
  padding: var(--space-4);
}

.footer-brand p {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--pink); color: var(--teal-dark); }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-5);
}

.footer-links ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-contact a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--pink); }

.footer-lic {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-5);
  text-align: center;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--pink); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image-col {
    max-width: 400px;
    margin-inline: auto;
  }
  .about-badge { right: 0; }

  .contact-grid,
  .valuation-inner {
    grid-template-columns: 1fr;
  }

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

  .compare-table th,
  .compare-table td {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-xs);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: var(--text-base); }
  .nav-cta {
    padding: var(--space-3) var(--space-8) !important;
  }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: center; }

  .form-row { grid-template-columns: 1fr; }

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

  .hero-trust { flex-direction: column; align-items: center; gap: var(--space-3); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
