/* ============================================
   Catoosa Business Services — Style System
   Bold Editorial | Forest Green + Off-White
   ============================================ */

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

:root {
  --green-900: #0B2218;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --green-400: #74C69D;
  --cream-100: #FDF8F0;
  --cream-200: #F5F0E6;
  --cream-300: #E8E0D0;
  --warm-100: #FAFAF7;
  --warm-200: #F2EDE4;
  --warm-300: #E5DDD0;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--cream-100);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green-800);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 500;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: box-shadow 0.3s var(--ease-out);
}
.header.scrolled {
  box-shadow: 0 4px 40px rgba(27, 67, 50, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-800);
  background: var(--green-800);
  color: var(--cream-100);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  letter-spacing: -0.02em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-line1 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: -0.02em;
}

.logo-line2 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}

.nav-menu li a:hover {
  color: var(--green-800);
  background: rgba(27, 67, 50, 0.06);
}

.nav-cta {
  background: var(--green-800) !important;
  color: var(--cream-100) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  margin-left: 8px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--green-700) !important;
  color: var(--cream-100) !important;
  transform: translateY(-1px);
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.03) 0%, rgba(27, 67, 50, 0.01) 100%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--green-600);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--green-900);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--green-700);
}

.hero-subhead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--green-600);
  flex-shrink: 0;
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(27, 67, 50, 0.15);
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--green-800);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.1;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--green-800);
  color: var(--cream-100);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27, 67, 50, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid var(--green-800);
}
.btn-secondary:hover {
  background: var(--green-800);
  color: var(--cream-100);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid var(--green-800);
}
.btn-outline:hover {
  background: var(--green-800);
  color: var(--cream-100);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ============================================
   Section Shared
   ============================================ */
.section-header {
  margin-bottom: 64px;
}

.section-header--centered {
  text-align: center;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--green-900);
  letter-spacing: -0.03em;
}

/* ============================================
   Services
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream-100);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(27, 67, 50, 0.1);
  border-color: rgba(27, 67, 50, 0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-800);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--cream-100);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   Why Us
   ============================================ */
.why-us {
  padding: 120px 0;
  background: var(--cream-100);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-eyebrow {
  margin-bottom: 16px;
}

.why-content .section-title {
  margin-bottom: 24px;
}

.why-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.why-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.why-check {
  width: 24px;
  height: 24px;
  background: var(--green-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-check svg {
  width: 14px;
  height: 14px;
  color: var(--cream-100);
}

.why-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(27, 67, 50, 0.12);
}

/* ============================================
   Process
   ============================================ */
.process {
  padding: 120px 0;
  background: var(--green-800);
  color: var(--cream-100);
}

.process .section-eyebrow {
  color: var(--green-400);
}

.process .section-title {
  color: var(--cream-100);
  margin-bottom: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}

.process-step {
  padding: 0 40px;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: rgba(253, 248, 240, 0.08);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--cream-100);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.step-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(253, 248, 240, 0.65);
}

.step-connector {
  position: absolute;
  right: -20px;
  top: 44px;
  width: 40px;
  height: 2px;
  background: rgba(253, 248, 240, 0.15);
}
.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(253, 248, 240, 0.3);
}

/* ============================================
   About
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(27, 67, 50, 0.12);
}

.about-content .section-eyebrow {
  margin-bottom: 16px;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-300);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  padding: 100px 0;
  background: var(--cream-200);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--cream-100);
}

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

.contact-info .section-eyebrow {
  margin-bottom: 16px;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--green-800);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cream-100);
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}
.contact-value a {
  color: var(--green-700);
  transition: color 0.2s;
}
.contact-value a:hover {
  color: var(--green-800);
  text-decoration: underline;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 24px 64px rgba(27, 67, 50, 0.06);
  border: 1px solid rgba(27, 67, 50, 0.06);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-300);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--cream-100);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
  background: var(--white);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(82, 183, 136, 0.1);
  border: 1px solid rgba(82, 183, 136, 0.3);
  border-radius: 10px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 500;
}
.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--green-900);
  color: var(--cream-100);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.logo--footer .logo-mark {
  background: rgba(253, 248, 240, 0.15);
  color: var(--cream-100);
}
.logo--footer .logo-line1 {
  color: var(--cream-100);
}
.logo--footer .logo-line2 {
  color: rgba(253, 248, 240, 0.5);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(253, 248, 240, 0.55);
  margin-top: 20px;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 248, 240, 0.4);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(253, 248, 240, 0.7);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--cream-100);
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(253, 248, 240, 0.7);
}

.footer-phone, .footer-email {
  font-size: 14px;
  color: var(--green-400);
  transition: color 0.2s;
}
.footer-phone:hover, .footer-email:hover {
  color: var(--green-300);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(253, 248, 240, 0.35);
}

/* ============================================
   Animations
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .hero-image img {
    height: 560px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid,
  .about-grid,
  .contact-grid {
    gap: 48px;
  }
  .why-image img,
  .about-image img {
    height: 400px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream-100);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    transition: right 0.4s var(--ease-out);
    z-index: 999;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-menu li a {
    font-size: 17px;
    padding: 12px 0;
    width: 100%;
  }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 16px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }
  .nav-overlay.active {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    height: 400px;
    border-radius: 16px;
  }
  .hero-headline {
    font-size: clamp(32px, 8vw, 48px);
  }
  .hero-trust {
    gap: 20px;
  }

  .services {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 28px 24px;
  }

  .why-us,
  .about {
    padding: 80px 0;
  }
  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-image img,
  .about-image img {
    height: 320px;
  }
  .why-content .section-title,
  .about-content .section-title {
    font-size: clamp(28px, 6vw, 38px);
  }
  .about-stats {
    gap: 32px;
  }

  .process {
    padding: 80px 0;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .step-connector {
    display: none;
  }
  .step-number {
    font-size: 56px;
  }

  .cta-banner {
    padding: 80px 0;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .cta-body {
    max-width: 100%;
  }
  .cta-actions {
    justify-content: center;
  }

  .contact {
    padding: 80px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }

  .footer {
    padding: 60px 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}
