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

:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2B;
  --burgundy-light: #9A3D4E;
  --blush: #FDF2F4;
  --blush-mid: #F9E4E8;
  --blush-dark: #F4C7D0;
  --cream: #FFF9F9;
  --warm-white: #FFFDFD;
  --text-dark: #2D1F24;
  --text-mid: #5C4448;
  --text-light: #8A6F74;
  --text-on-dark: #FDF2F4;
  --shadow-sm: 0 1px 3px rgba(123,45,59,0.08), 0 1px 2px rgba(123,45,59,0.06);
  --shadow-md: 0 4px 14px rgba(123,45,59,0.1), 0 2px 6px rgba(123,45,59,0.06);
  --shadow-lg: 0 10px 30px rgba(123,45,59,0.12), 0 4px 12px rgba(123,45,59,0.08);
  --shadow-xl: 0 20px 50px rgba(123,45,59,0.15), 0 8px 20px rgba(123,45,59,0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

a:hover { color: var(--burgundy-light); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--text-dark);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--text-on-dark);
  border-color: var(--burgundy);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--text-on-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(253,242,244,0.6);
}

.btn-outline-light:hover {
  background: rgba(253,242,244,0.15);
  border-color: var(--text-on-dark);
  color: var(--text-on-dark);
}

.btn-light {
  background: var(--warm-white);
  color: var(--burgundy);
  border-color: var(--warm-white);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background: var(--blush);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,242,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.logo-light .logo-text { color: var(--text-on-dark); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a:not(.btn) {
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:not(.btn):hover {
  color: var(--burgundy);
  background: var(--blush);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover { background: var(--blush); }

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger {
  position: relative;
  margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--burgundy-dark);
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92,31,43,0.92) 0%,
    rgba(123,45,59,0.85) 50%,
    rgba(154,61,78,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(253,242,244,0.15);
  color: var(--blush);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(253,242,244,0.2);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
  font-weight: 400;
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  color: var(--blush-dark);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(253,242,244,0.85);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 620px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253,242,244,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Decorative shapes */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

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

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--warm-white);
}

.about-img-accent img {
  width: 220px;
  height: 160px;
  object-fit: cover;
}

.about-stat-card {
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  background: var(--burgundy);
  color: var(--text-on-dark);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-stat-card .stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat-card .stat-label {
  font-size: 0.8rem;
  opacity: 0.85;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.value-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== SERVICES ========== */
.services {
  background: var(--blush);
}

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

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(123,45,59,0.06);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123,45,59,0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--blush);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--burgundy);
}

.service-card:hover .service-icon svg {
  stroke: var(--text-on-dark);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ========== WHY US ========== */
.why-us {
  background: var(--warm-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-content .section-subtitle {
  margin-bottom: 2rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

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

.why-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.why-desc {
  color: var(--text-mid);
  font-size: 0.92rem;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-accent-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--burgundy);
  color: var(--text-on-dark);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.accent-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.accent-label {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.4;
}

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

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--burgundy);
  color: var(--text-on-dark);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.process-step p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

.process-step-connector {
  flex: 0 0 60px;
  align-self: flex-start;
  margin-top: 1.5rem;
}

.process-step-connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--blush-dark) 100%);
  border-radius: 2px;
  position: relative;
}

.process-step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid var(--blush-dark);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--warm-white);
}

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

.testimonial-card {
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(123,45,59,0.06);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--burgundy);
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.88rem;
  color: var(--burgundy);
  font-weight: 600;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--burgundy);
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}

.cta-subtitle {
  color: rgba(253,242,244,0.8);
  font-size: 1.05rem;
}

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

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

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blush);
  border: 1px solid rgba(123,45,59,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-item span,
.contact-item a {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--burgundy);
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(123,45,59,0.06);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--blush-dark);
  border-radius: var(--radius-md);
  background: var(--blush);
  color: var(--text-dark);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--burgundy);
}

.form-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--text-dark);
  color: var(--text-on-dark);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: rgba(253,242,244,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blush-dark);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(253,242,244,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-contact address {
  font-style: normal;
  color: rgba(253,242,244,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-contact p {
  color: rgba(253,242,244,0.6);
  font-size: 0.9rem;
}

.footer-contact a {
  color: rgba(253,242,244,0.6);
}

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

.footer-bottom {
  border-top: 1px solid rgba(253,242,244,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  color: rgba(253,242,244,0.4);
  font-size: 0.82rem;
}

.footer-disclaimer {
  font-size: 0.78rem !important;
  max-width: 500px;
  text-align: right;
}

/* ========== SCROLL REVEAL (progressive enhancement) ========== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Default visible state for no-JS */
.reveal {
  opacity: 1;
  transform: none;
}

/* ========== MOBILE NAV ========== */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--blush);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-xl);
    z-index: 999;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .main-nav a:not(.btn) {
    font-size: 1.1rem;
    padding: 0.6rem 1.25rem;
  }

  .main-nav .btn {
    margin-top: 0.5rem;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45,31,36,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .about-grid,
  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-images {
    order: -1;
    max-width: 480px;
  }

  .about-img-main img {
    height: 300px;
  }

  .about-img-accent {
    right: 0;
    bottom: -1.5rem;
  }

  .about-stat-card {
    left: 0;
    top: -0.75rem;
  }

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

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

  .process-steps {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .process-step-connector {
    display: none;
  }

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero {
    padding: 5rem 0 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .about-values {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer {
    text-align: center;
  }

  .why-accent-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    display: inline-block;
  }

  .why-us-image img {
    height: 360px;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}
