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

:root {
  --charcoal: #1a1a2e;
  --charcoal-light: #2d2d44;
  --charcoal-mid: #3a3a54;
  --coral: #e8636f;
  --coral-dark: #d14e5c;
  --coral-light: #f4727e;
  --neutral-50: #f8f8fa;
  --neutral-100: #f0f0f4;
  --neutral-200: #e2e2ea;
  --neutral-300: #c8c8d4;
  --neutral-400: #9898a8;
  --neutral-500: #6e6e80;
  --neutral-600: #4a4a5c;
  --white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.1);
  --shadow-lg: 0 8px 32px rgba(26, 26, 46, 0.12);
  --shadow-xl: 0 16px 48px rgba(26, 26, 46, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 16px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active {
  transform: translateY(0);
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}
.btn-coral-outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}
.btn-coral-outline:hover {
  background: var(--coral);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--neutral-100);
  border-color: var(--neutral-100);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  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: 12px;
}
.logo--light .logo-text {
  color: var(--white);
}
.logo--light .logo-sub {
  color: rgba(255, 255, 255, 0.7);
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--charcoal);
  line-height: 1.2;
}
.amp {
  color: var(--coral);
  font-style: italic;
}
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.688rem;
  font-weight: 500;
  color: var(--neutral-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  padding: 8px 16px;
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.site-nav a:hover {
  color: var(--coral);
  background: rgba(232, 99, 111, 0.06);
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
  transition: all var(--transition);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
}
.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);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  position: relative;
  padding: 0 16px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--coral);
}
.section-tag::before { left: 0; }
.section-tag::after { right: 0; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title--light {
  color: var(--white);
}
.section-desc {
  font-size: 1.063rem;
  color: var(--neutral-500);
  line-height: 1.7;
}
.section-desc--light {
  color: rgba(255, 255, 255, 0.7);
}

/* HERO */
.hero {
  padding: 140px 0 100px;
  background: var(--neutral-50);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 99, 111, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  border: 1px solid var(--neutral-200);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  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.2); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: 0.813rem;
  color: var(--neutral-500);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--neutral-300);
}
.hero-image {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}
.hero-img-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}
.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  border: 1px solid var(--neutral-100);
}
.float-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 99, 111, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.float-text {
  display: flex;
  flex-direction: column;
}
.float-text strong {
  font-size: 0.875rem;
  color: var(--charcoal);
}
.float-text span {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 99, 111, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--coral);
  color: var(--white);
}
.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.938rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ABOUT */
.about {
  padding: 100px 0;
  background: var(--neutral-50);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/6;
}
.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/5;
}
.about-accent {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: var(--coral);
  border-radius: var(--radius-md);
  opacity: 0.1;
  z-index: -1;
}
.about-content .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}
.about-body {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--charcoal);
}
.value-icon {
  width: 36px;
  height: 36px;
  background: rgba(232, 99, 111, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.about-content .btn {
  margin-top: 8px;
}

/* WHY US */
.why-us {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 99, 111, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 99, 111, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 99, 111, 0.3);
  transform: translateY(-4px);
}
.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--coral);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.why-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-desc {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px 32px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--coral);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 28px;
  pointer-events: none;
}
.testimonial-text {
  font-size: 0.938rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}
.author-role {
  font-size: 0.813rem;
  color: var(--neutral-500);
}

/* CTA BANNER */
.cta-banner {
  padding: 80px 0;
  background: var(--coral);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-desc {
  font-size: 1.063rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* CONTACT */
.contact {
  padding: 100px 0;
  background: var(--neutral-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}
.contact-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.contact-desc {
  font-size: 1rem;
  color: var(--neutral-500);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 99, 111, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.938rem;
  color: var(--neutral-500);
  line-height: 1.6;
}
.contact-item a {
  color: var(--coral);
  transition: color var(--transition);
}
.contact-item a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
}
.contact-form-wrap {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-100);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.938rem;
  color: var(--charcoal);
  background: var(--neutral-50);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 99, 111, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-400);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 0.813rem;
  color: var(--neutral-400);
  text-align: center;
  margin-top: 16px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-sm);
  color: #16a34a;
  font-size: 0.938rem;
  font-weight: 500;
  margin-top: 20px;
}
.form-success svg {
  flex-shrink: 0;
  color: #16a34a;
}

/* FOOTER */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover {
  color: var(--coral);
}
.footer-col address {
  font-style: normal;
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
.footer-col address a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-col address a:hover {
  color: var(--coral);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: var(--coral);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 48px;
  }
  .about-grid {
    gap: 56px;
  }
  .contact-grid {
    gap: 56px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
    z-index: 99;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav a {
    padding: 12px 16px;
  }
  .site-nav .btn {
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    padding: 120px 0 80px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-image {
    order: -1;
  }
  .hero-float-card {
    left: 16px;
    bottom: 24px;
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-images {
    max-width: 480px;
  }
  .about-content .section-title {
    text-align: center;
  }
  .about-content .section-tag {
    display: inline-block;
  }
  .about-body {
    text-align: center;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .about-content .btn {
    display: inline-flex;
  }

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

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info .section-title {
    text-align: center;
  }
  .contact-info .section-tag {
    display: inline-block;
  }
  .contact-desc {
    text-align: center;
  }
  .contact-form-wrap {
    padding: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
  .section-header {
    margin-bottom: 48px;
  }
  .services, .about, .why-us, .testimonials, .contact {
    padding: 72px 0;
  }
}
