/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --charcoal: #2C2C2C;
  --charcoal-light: #3D3D3D;
  --charcoal-dark: #1E1E1E;
  --coral: #E85D4A;
  --coral-light: #F07562;
  --coral-dark: #D14A38;
  --cream: #FFF8F6;
  --cream-dark: #FDF0EC;
  --white: #FFFFFF;
  --gray-100: #F7F7F7;
  --gray-200: #EEEEEE;
  --gray-300: #DDDDDD;
  --gray-500: #888888;
  --gray-700: #555555;
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.12);
  --shadow-coral: 0 8px 30px rgba(232, 93, 74, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --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(--cream);
  line-height: 1.7;
  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;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus {
  top: 16px;
}

.text-coral { color: var(--coral); }
.text-white { color: var(--white); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: var(--shadow-coral);
}
.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232, 93, 74, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 248, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.06);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255, 248, 246, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--charcoal);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-list a {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--charcoal);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.nav-list a:hover {
  background: var(--cream-dark);
  color: var(--coral);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 40px;
  height: 40px;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
  position: absolute;
  left: 9px;
}
.hamburger { top: 18px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; bottom: -7px; }
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 9px;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* ─── Hero ─── */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.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;
  background: var(--cream-dark);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--charcoal);
}
.hero-title .text-coral {
  color: var(--coral);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}
.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-float {
  position: absolute;
  bottom: -30px;
  left: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
  width: 55%;
}
.hero-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(44,44,44,0.8));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stat {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--coral);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Decorative */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.deco-circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 93, 74, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.deco-circle-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 93, 74, 0.06) 0%, transparent 70%);
  bottom: 50px;
  left: -60px;
}
.deco-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 50%;
  top: 120px;
  left: 45%;
  opacity: 0.3;
}

/* ─── Section Shared ─── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  background: rgba(232, 93, 74, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 600px;
  line-height: 1.8;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc {
  margin: 0 auto;
}

/* ─── Services ─── */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 93, 74, 0.15);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.service-card.featured::before {
  background: var(--coral);
}
.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}
.service-card.featured .service-icon {
  background: rgba(232, 93, 74, 0.2);
}
.service-card.featured .service-icon svg {
  stroke: var(--coral-light);
}
.featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 50px;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(232, 93, 74, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--cream);
  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-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7/8;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
  width: 58%;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent-box {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-coral);
}
.accent-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}
.accent-label {
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content {
  max-width: 500px;
}
.about-body {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}
.value-check {
  width: 24px;
  height: 24px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Why Us ─── */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-content .section-desc {
  margin-bottom: 40px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--coral);
  line-height: 1;
  opacity: 0.4;
  flex-shrink: 0;
  width: 50px;
}
.why-text h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.why-text p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}
.why-us-visual {
  position: relative;
}
.why-us-visual img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 13/17;
  object-fit: cover;
}
.visual-quote {
  position: absolute;
  bottom: -24px;
  left: -24px;
  right: -24px;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.visual-quote svg {
  margin-bottom: 12px;
}
.visual-quote blockquote {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 8px;
}
.visual-quote cite {
  font-size: 0.85rem;
  font-style: normal;
  opacity: 0.7;
}

/* ─── Reviews ─── */
.reviews {
  padding: 100px 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 93, 74, 0.2);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 93, 74, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 93, 74, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-content {
  flex: 1;
  min-width: 280px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  max-width: 480px;
}
.contact-desc {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 93, 74, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 4px;
}
.contact-item p,
.contact-item a {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-item a:hover {
  color: var(--coral);
  text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232, 93, 74, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(232, 93, 74, 0.08);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--coral);
  font-size: 0.95rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--charcoal-dark);
  color: rgba(255,255,255,0.7);
  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 .logo-text {
  color: var(--white);
}
.footer-desc {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--coral);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact a {
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--coral);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.85rem;
}
.footer-bottom a:hover {
  color: var(--coral);
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .why-us-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    max-width: 500px;
  }
  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: var(--transition);
    z-index: 99;
  }
  .nav-list.open {
    transform: translateY(0);
  }
  .nav-list a {
    padding: 14px 16px;
    font-size: 1rem;
  }
  .nav-list li:last-child {
    margin-top: 8px;
  }

  .hero {
    padding: 120px 0 60px;
  }
  .hero-grid {
    gap: 40px;
  }
  .hero-image-float {
    left: -10px;
    bottom: -20px;
  }
  .hero-stat {
    right: 0;
    top: 16px;
  }
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .about-img-accent {
    right: 0;
    bottom: -20px;
  }
  .about-accent-box {
    right: 0;
    top: -16px;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .why-us-visual {
    max-width: 400px;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .contact-form-wrapper {
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }
  .hero-image-float {
    display: none;
  }
  .visual-quote {
    left: 0;
    right: 0;
    bottom: -16px;
  }
}
