/* ── Custom Properties ── */
:root {
  --plum: #6B2150;
  --plum-dark: #4A1638;
  --plum-deep: #3A1030;
  --plum-light: #8B3A6A;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --amber-dark: #D97706;
  --cream: #FFFBF0;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(107,33,80,0.08);
  --shadow-md: 0 4px 16px rgba(107,33,80,0.10);
  --shadow-lg: 0 8px 32px rgba(107,33,80,0.12);
  --shadow-xl: 0 16px 48px rgba(107,33,80,0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--plum-dark); }
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107,33,80,0.3);
}
.btn-primary:hover {
  background: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,33,80,0.35);
}
.btn-amber {
  background: var(--amber);
  color: var(--plum-dark);
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn-amber:hover {
  background: var(--amber-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,251,240,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,33,80,0.08);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,251,240,0.95);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--plum-dark);
}
.logo-icon { color: var(--plum); }
.logo-accent { color: var(--amber-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--plum); background: rgba(107,33,80,0.06); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #FFF5E6 50%, var(--cream) 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo {
  position: absolute;
  border-radius: var(--radius-lg);
  opacity: 0.12;
}
.geo-1 {
  width: 400px; height: 400px;
  background: var(--plum);
  top: -100px; right: -100px;
  transform: rotate(15deg);
  animation: float1 8s ease-in-out infinite;
}
.geo-2 {
  width: 250px; height: 250px;
  background: var(--amber);
  bottom: 10%; left: 5%;
  border-radius: 50%;
  animation: float2 10s ease-in-out infinite;
}
.geo-3 {
  width: 180px; height: 180px;
  background: var(--plum-light);
  top: 30%; left: 15%;
  transform: rotate(45deg);
  animation: float3 7s ease-in-out infinite;
}
.geo-4 {
  width: 120px; height: 120px;
  background: var(--amber);
  bottom: 20%; right: 15%;
  border-radius: 50%;
  animation: float1 9s ease-in-out infinite reverse;
}
.geo-5 {
  width: 80px; height: 80px;
  background: var(--plum);
  top: 15%; right: 30%;
  transform: rotate(30deg);
  animation: float2 6s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: rotate(15deg) translateY(0); } 50% { transform: rotate(15deg) translateY(-20px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }
@keyframes float3 { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(15px); } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
  background: rgba(107,33,80,0.08);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--plum-dark);
}
.hero-headline span { color: var(--amber-dark); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Floating cards */
.hero-cards {
  position: relative;
  height: 420px;
}
.card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(107,33,80,0.06);
}
.card-float-1 {
  top: 0; right: 0;
  width: 220px;
  animation: floatCard1 6s ease-in-out infinite;
}
.card-float-2 {
  top: 55%; right: 20px;
  width: 220px;
  animation: floatCard2 7s ease-in-out infinite;
}
.card-float-3 {
  bottom: 0; right: 80px;
  width: 220px;
  animation: floatCard3 8s ease-in-out infinite;
}
@keyframes floatCard1 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes floatCard2 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(-1deg); } }
@keyframes floatCard3 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
.cf-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 12px;
}
.cf-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--plum-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.cf-label { font-size: 0.85rem; color: var(--gray-600); }

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum-light), var(--amber));
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.svc-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.svc-card:hover {
  border-color: rgba(107,33,80,0.12);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  background: var(--white);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.svc-icon-1 { background: linear-gradient(135deg, #6B2150, #9B3A70); }
.svc-icon-2 { background: linear-gradient(135deg, #F59E0B, #FCD34D); }
.svc-icon-3 { background: linear-gradient(135deg, #4A1638, #6B2150); }
.svc-icon-4 { background: linear-gradient(135deg, #D97706, #F59E0B); }
.svc-icon-5 { background: linear-gradient(135deg, #8B3A6A, #B04890); }
.svc-icon-6 { background: linear-gradient(135deg, #6B2150, #D97706); }
.svc-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--plum-dark);
}
.svc-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.svc-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.svc-link:hover { color: var(--amber-dark); gap: 10px; }
.svc-link span { font-size: 1.1rem; transition: var(--transition); }

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-accent {
  position: absolute;
  width: 200px; height: 200px;
  background: var(--amber);
  border-radius: var(--radius-xl);
  top: -30px; right: -30px;
  z-index: 0;
  opacity: 0.3;
}
.about-stat-card {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--plum);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.about-stat-card .asc-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber);
}
.about-stat-card .asc-label { font-size: 0.85rem; opacity: 0.9; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.av-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}
.av-check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

/* ── WHY US ── */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-us .section-tag { background: rgba(245,158,11,0.2); color: var(--amber-light); border-color: rgba(245,158,11,0.4); }
.why-us .section-title { color: var(--white); }
.why-us .section-desc { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.test-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(107,33,80,0.06);
  transition: var(--transition);
}
.test-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.2);
}
.test-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.test-quote {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ta-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.ta-name { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--plum-dark); }
.ta-location { font-size: 0.8rem; color: var(--gray-500); }

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.cd-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 4px; }
.cd-value { font-size: 1rem; color: var(--plum-dark); font-weight: 500; }
.cd-value a { color: var(--plum); transition: var(--transition); }
.cd-value a:hover { color: var(--amber-dark); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(107,33,80,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(107,33,80,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(107,33,80,0.06);
  border: 1px solid rgba(107,33,80,0.15);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--plum);
  font-weight: 500;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--amber-dark); flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-accent { color: var(--amber); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--amber); padding-left: 4px; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { height: 300px; max-width: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,251,240,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(107,33,80,0.08);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-cards { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-img-wrap img { height: 300px; }
  .about-accent { width: 120px; height: 120px; top: -15px; right: -15px; }
  .about-stat-card { bottom: -10px; left: -10px; padding: 16px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.85rem; }
  .section-title { font-size: 1.75rem; }
  .hero-trust { flex-direction: column; gap: 12px; }
}
