/*
Theme Name: New Freedom Tax Resolution
Theme URI: https://newfreedomtaxres-fagybrn48o.live-website.com
Author: New Freedom Tax Resolution
Author URI: https://newfreedomtaxres-fagybrn48o.live-website.com
Description: A professional, conversion-focused WordPress theme for New Freedom Tax Resolution — a tax resolution firm led by a former IRS Revenue Officer, Appeals Officer, and licensed Enrolled Agent.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: new-freedom-tax
Tags: business, professional, tax, legal, services
*/

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #152338;
  --navy-lt:   #1e3352;
  --gold:      #c9a84c;
  --gold-lt:   #e2c47a;
  --gold-pale: #f5e9cb;
  --cream:     #f8f4ec;
  --white:     #ffffff;
  --gray:      #8a96a3;
  --text:      #2c3e50;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', sans-serif;
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.site-branding { display: flex; flex-direction: column; gap: 2px; }
.site-name {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.04em; line-height: 1;
}
.site-tagline {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 500;
  color: var(--gray); letter-spacing: 0.18em; text-transform: uppercase;
}
#primary-menu {
  display: flex; gap: 2.5rem; list-style: none;
}
#primary-menu a {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.2s;
}
#primary-menu a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

/* hamburger (mobile) */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: 15%; bottom: 15%; left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 6% 80px 8%; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 600; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-family: var(--sans); font-size: 1rem; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.65);
  max-width: 440px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2.2rem; display: inline-block;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); color: var(--navy); }
.btn-ghost {
  background: transparent; color: var(--white);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2.2rem; display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-credentials {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.credential { display: flex; align-items: center; gap: 0.6rem; }
.credential-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.credential span {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 400;
  color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
}
.hero-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 7% 80px 6%; position: relative; z-index: 1;
}
.urgency-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem; margin-bottom: 1.5rem;
}
.urgency-card-title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--gold-lt); margin-bottom: 1.2rem; line-height: 1.35;
}
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.problem-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.7); line-height: 1.5;
}
.problem-list li::before { content: '→'; color: var(--gold); font-size: 0.8rem; margin-top: 0.1rem; flex-shrink: 0; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(201,168,76,0.15);
}
.hero-stat { background: rgba(13,27,42,0.9); padding: 1.5rem 1rem; text-align: center; }
.hero-stat-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 400;
  color: rgba(255,255,255,0.45); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 0.4rem; line-height: 1.4;
}

/* ─────────────────────────────────────────────
   SHARED SECTION UTILITIES
───────────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.section-label-line { width: 30px; height: 1px; background: var(--gold); }
.section-label span {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.15; color: var(--navy);
}
.section-title em { font-style: italic; }
.section-title-light { color: var(--white); }
.section-body {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 300;
  line-height: 1.9; color: #4a5568; max-width: 560px;
}
.section-body-light { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────── */
.trust-section {
  background: var(--gold-pale); padding: 60px 0;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.8rem; }
.trust-icon { font-size: 1.6rem; }
.trust-label {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.5;
}
.trust-sep { width: 1px; height: 36px; background: rgba(0,0,0,0.15); }

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about-section { background: var(--navy-mid); padding: 110px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-bio {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  color: rgba(255,255,255,0.5); margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  line-height: 1.75;
}
.about-right { display: flex; flex-direction: column; gap: 1.5rem; }
.about-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 1.8rem 2rem;
  transition: border-color 0.2s;
}
.about-card:hover { border-color: rgba(201,168,76,0.4); }
.about-card-num {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.about-card-title {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.8); letter-spacing: 0.1em; text-transform: uppercase; margin: 0.4rem 0;
}
.about-card-desc {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.45); line-height: 1.6;
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services-section { background: var(--cream); padding: 110px 0; }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 60px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(0,0,0,0.08);
}
.service-card {
  background: var(--white); padding: 2.5rem 2rem;
  transition: background 0.25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { background: var(--navy); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-name { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.55); }
.service-icon { font-size: 1.6rem; margin-bottom: 1.2rem; }
.service-name {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.8rem; transition: color 0.25s;
}
.service-desc {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 300;
  line-height: 1.75; color: #5a6470; transition: color 0.25s;
}

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.process-section { background: var(--navy); padding: 110px 0; }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-label { justify-content: center; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.15), rgba(201,168,76,0.5), rgba(201,168,76,0.15));
}
.process-step { padding: 0 1.5rem; text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: var(--gold); background: var(--navy); position: relative; z-index: 1;
}
.step-title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.7rem;
}
.step-desc {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,0.45); line-height: 1.7;
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-section { background: var(--white); padding: 110px 0; }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header .section-label { justify-content: center; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--navy); padding: 1.5rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-toggle {
  font-size: 1.4rem; color: var(--gold); flex-shrink: 0;
  transition: transform 0.25s; user-select: none; line-height: 1;
}
.faq-a {
  font-family: var(--sans); font-size: 0.87rem; font-weight: 300;
  line-height: 1.85; color: #5a6470;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open { max-height: 400px; padding-bottom: 1.5rem; }
.faq-toggle.open { transform: rotate(45deg); }

/* ─────────────────────────────────────────────
   CONTACT / CTA
───────────────────────────────────────────── */
.cta-section { background: var(--navy-lt); padding: 110px 0; }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-perks { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cta-perk { display: flex; align-items: center; gap: 0.8rem; }
.cta-perk-icon { font-size: 1.1rem; color: var(--gold); }
.cta-perk span {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.55);
}
.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 3rem;
}
.cta-form-title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: var(--gold-lt); margin-bottom: 0.4rem;
}
.cta-form-sub {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,0.4); margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600;
  color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 300;
  padding: 0.8rem 1rem; outline: none; width: 100%;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; margin-top: 1.5rem;
  background: var(--gold); color: var(--navy);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.1rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
.form-disclaimer {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 300;
  color: rgba(255,255,255,0.25); margin-top: 1rem; line-height: 1.5; text-align: center;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#site-footer { background: var(--navy); padding: 70px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo-name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: var(--gold); margin-bottom: 0.3rem;
}
.footer-logo-tagline {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 400;
  color: var(--gray); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-bio {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.38); max-width: 280px;
}
.footer-col-title {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.45); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-info p {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.45); line-height: 1.9;
}
.footer-contact-info a {
  color: rgba(255,255,255,0.45); transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: rgba(255,255,255,0.2); }
.footer-ea {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.1em;
  border: 1px solid rgba(201,168,76,0.3); padding: 0.3rem 0.8rem;
}

/* ─────────────────────────────────────────────
   PAGE TEMPLATE STYLES (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.page-hero .section-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600; color: var(--white); margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero p {
  font-family: var(--sans); font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; line-height: 1.8;
}
.page-content { padding: 80px 0; background: var(--white); }
.page-content .section-inner {
  max-width: 860px;
  font-family: var(--sans); font-size: 0.95rem; line-height: 1.9; color: var(--text);
}
.page-content h2 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 600;
  color: var(--navy); margin: 2.5rem 0 1rem;
}
.page-content h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: var(--navy); margin: 2rem 0 0.8rem;
}
.page-content p { margin-bottom: 1.2rem; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.page-content li { margin-bottom: 0.5rem; }

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { opacity: 0; animation: fadeUp 0.7s forwards; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.25s; }
.hero-left > *:nth-child(3) { animation-delay: 0.4s; }
.hero-left > *:nth-child(4) { animation-delay: 0.55s; }
.hero-left > *:nth-child(5) { animation-delay: 0.7s; }
.hero-right > * { opacity: 0; animation: fadeUp 0.7s forwards; }
.hero-right > *:nth-child(1) { animation-delay: 0.5s; }
.hero-right > *:nth-child(2) { animation-delay: 0.65s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  #primary-menu { display: none; }
  #primary-menu.active {
    display: flex; flex-direction: column;
    position: fixed; top: 80px; left: 0; right: 0;
    background: var(--navy); padding: 2rem;
    border-top: 1px solid rgba(201,168,76,0.2);
    gap: 1.5rem;
  }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero::after { display: none; }
  .hero-left { padding: 60px 6% 40px; }
  .hero-right { padding: 20px 6% 60px; }
  .about-grid,
  .services-header,
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
  .trust-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-form { padding: 2rem 1.5rem; }
}
