/* ============================================
   Cliff's Quick Lube & Auto Repair
   Classic & Elegant — Emerald + Cream
   ============================================ */

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

:root {
  --emerald-900: #1B4332;
  --emerald-800: #2D6A4F;
  --emerald-700: #40916C;
  --emerald-600: #52B788;
  --cream-50: #FDF8F0;
  --cream-100: #F5F0E8;
  --cream-200: #EDE5D5;
  --cream-300: #E0D5C0;
  --charcoal: #1A1A1A;
  --charcoal-700: #2D2D2D;
  --charcoal-500: #555555;
  --charcoal-300: #888888;
  --charcoal-200: #AAAAAA;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--cream-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* --- Typography --- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-title .text-emerald {
  color: var(--emerald-800);
}

.section-title .text-cream {
  color: var(--cream-200);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-500);
  max-width: 560px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--emerald-800);
  color: var(--cream-50);
  border-color: var(--emerald-800);
}

.btn--primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(245, 240, 232, 0.4);
}

.btn--ghost:hover {
  border-color: var(--cream-100);
  background: rgba(245, 240, 232, 0.1);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--emerald-800);
  border-color: var(--emerald-800);
}

.btn--outline:hover {
  background: var(--emerald-800);
  color: var(--cream-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.25);
}

.btn--light {
  background: var(--cream-50);
  color: var(--emerald-900);
  border-color: var(--cream-50);
}

.btn--light:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(253, 248, 240, 0.5);
}

.btn--outline-light:hover {
  border-color: var(--cream-50);
  background: rgba(253, 248, 240, 0.1);
  transform: translateY(-2px);
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(27, 67, 50, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__brand-mark {
  width: 40px;
  height: 40px;
  background: var(--cream-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--emerald-900);
  transition: var(--transition);
}

.nav__brand:hover .nav__brand-mark {
  background: var(--cream-50);
  transform: rotate(-5deg) scale(1.05);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream-50);
}

.nav__brand-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-200);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-200);
  border-radius: 50px;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--cream-50);
  background: rgba(253, 248, 240, 0.1);
}

.nav__link--cta {
  background: var(--cream-50);
  color: var(--emerald-900);
  font-weight: 600;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--cream-100);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-line {
  width: 24px;
  height: 2px;
  background: var(--cream-100);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  background: var(--emerald-900);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(64, 145, 108, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream-50);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--emerald-600);
}

.hero__subheadline {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cream-200);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
}

.hero__trust-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream-100);
}

.hero__trust-label {
  font-size: 0.75rem;
  color: var(--cream-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.2);
}

.hero__visual {
  position: relative;
  height: 680px;
}

.hero__image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-accent {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(27, 67, 50, 0.8);
}

.hero__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__accent-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(27, 67, 50, 0.9));
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--cream-100);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-300);
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Section Divider --- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

.section-divider svg {
  color: var(--emerald-700);
  opacity: 0.4;
}

/* --- Services Section --- */
.services {
  padding: 100px 0;
  background: var(--cream-50);
}

.services__header {
  text-align: center;
  margin-bottom: 64px;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--cream-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--emerald-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card:hover .service-card__icon {
  background: var(--emerald-800);
  color: var(--cream-50);
  transform: scale(1.05);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.925rem;
  color: var(--charcoal-500);
  line-height: 1.75;
}

/* --- About Section --- */
.about {
  padding: 100px 0;
  background: var(--cream-100);
}

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

.about__visual {
  position: relative;
  height: 600px;
}

.about__image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--cream-100);
}

.about__image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  max-width: 520px;
}

.about__divider {
  width: 60px;
  height: 3px;
  background: var(--emerald-700);
  border-radius: 3px;
  margin-bottom: 32px;
}

.about__body {
  font-size: 1rem;
  color: var(--charcoal-500);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.value-item__mark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--emerald-800);
  color: var(--cream-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 2px;
}

.value-item__text {
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* --- Why Us Section --- */
.why-us {
  padding: 100px 0;
  background: var(--emerald-900);
}

.why-us__header {
  text-align: center;
  margin-bottom: 64px;
}

.why-us__header .section-eyebrow {
  color: var(--emerald-600);
}

.why-us__header .section-title {
  color: var(--cream-50);
}

.why-us__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-block {
  padding: 40px;
  background: rgba(253, 248, 240, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(253, 248, 240, 0.1);
  transition: var(--transition);
}

.feature-block:hover {
  background: rgba(253, 248, 240, 0.08);
  border-color: rgba(253, 248, 240, 0.2);
  transform: translateY(-4px);
}

.feature-block__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--emerald-700);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}

.feature-block__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 12px;
}

.feature-block__desc {
  font-size: 0.925rem;
  color: var(--cream-200);
  line-height: 1.75;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 100px 0;
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.cta-banner__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 20px;
}

.cta-banner__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.cta-banner__text {
  font-size: 1.05rem;
  color: var(--charcoal-500);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__divider {
  width: 60px;
  height: 3px;
  background: var(--emerald-700);
  border-radius: 3px;
  margin-bottom: 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

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

.contact-detail__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-800);
}

.contact-detail__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-300);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail__link {
  font-size: 0.95rem;
  color: var(--emerald-800);
  font-weight: 500;
}

.contact-detail__link:hover {
  color: var(--emerald-600);
  text-decoration: underline;
}

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact__form-wrap {
  width: 100%;
}

.contact__form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--cream-200);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact__form-subtitle {
  font-size: 0.9rem;
  color: var(--charcoal-300);
  margin-bottom: 32px;
}

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

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

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-500);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  color: var(--charcoal);
  background: var(--cream-50);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--charcoal-200);
}

.form-input:focus {
  border-color: var(--emerald-700);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(64, 145, 108, 0.1);
}

.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='%23888888' 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-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--emerald-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-50);
}

.form-success__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-success__text {
  font-size: 0.925rem;
  color: var(--charcoal-500);
  line-height: 1.7;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 44px;
  height: 44px;
  background: var(--emerald-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream-50);
}

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream-100);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--charcoal-300);
  line-height: 1.75;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-200);
  margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--charcoal-300);
}

.footer__links a:hover {
  color: var(--cream-50);
  padding-left: 4px;
}

.footer__contact .footer__phone {
  color: var(--emerald-600);
  font-weight: 500;
}

.footer__contact .footer__phone:hover {
  color: var(--emerald-500);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--charcoal-500);
}

.footer__location {
  font-size: 0.8rem;
  color: var(--charcoal-500);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__grid {
    gap: 40px;
  }

  .hero__visual {
    height: 520px;
  }

  .about__grid {
    gap: 48px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--emerald-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    display: block;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    height: 420px;
    order: -1;
  }

  .hero__image-main {
    width: 100%;
    height: 100%;
  }

  .hero__image-accent {
    width: 60%;
    bottom: 20px;
  }

  .hero__trust {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__trust-divider {
    display: none;
  }

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

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__visual {
    height: 400px;
  }

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

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form-card {
    padding: 32px 24px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
