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

:root {
  --terracotta: #C4704B;
  --terracotta-dark: #A85A38;
  --terracotta-light: #D4916F;
  --sand: #F5EDE4;
  --sand-light: #FAF6F1;
  --sand-dark: #E8DDD2;
  --charcoal: #2C2420;
  --charcoal-light: #4A3F38;
  --warm-gray: #7A6E66;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.12);
  --shadow-xl: 0 16px 60px rgba(44, 36, 32, 0.14);
  --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(--sand-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(196, 112, 75, 0.35);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 112, 75, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

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

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

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  padding: 12px 24px;
  font-size: 0.9rem;
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

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

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 112, 75, 0.1);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(250, 246, 241, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 400;
}

.nav__logo-text {
  font-weight: 600;
}

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

.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--terracotta);
  background: rgba(196, 112, 75, 0.08);
}

.nav__link--cta {
  background: var(--terracotta);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--terracotta-dark);
}

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

.nav__toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

.nav__overlay {
  display: none;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(196, 112, 75, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero__content {
  max-width: 540px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 112, 75, 0.1);
  color: var(--terracotta);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hero__subhead {
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-light);
}

/* Hero Visual */
.hero__visual {
  position: relative;
}

.hero__image-stack {
  position: relative;
}

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

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

.hero__image-accent {
  position: absolute;
  bottom: -30px;
  left: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--sand-light);
}

.hero__image-accent img {
  width: 280px;
  height: 200px;
  object-fit: cover;
}

.hero__floating-card {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

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

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

.hero__floating-label {
  font-size: 0.75rem;
  color: var(--warm-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__floating-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* ── Section Shared ── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-tag--dark {
  color: var(--terracotta);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-title--dark {
  color: var(--charcoal);
}

.section-header {
  margin-bottom: 56px;
}

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

.section-header--center .section-tag {
  margin-bottom: 12px;
}

.section-header--center .section-desc {
  max-width: 560px;
  margin: 0 auto;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: var(--sand-light);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  overflow: hidden;
  height: 200px;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 28px;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(196, 112, 75, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── Why Us ── */
.why-us {
  padding: 100px 0;
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.why-us__content {
  max-width: 500px;
}

.why-us__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 16px;
}

.why-feature__mark {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.why-feature__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.why-us__visual {
  position: relative;
}

.why-us__image-group {
  position: relative;
}

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

.why-us__main-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.why-us__stat-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.why-us__stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}

.why-us__stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Process ── */
.process {
  padding: 100px 0;
  background: var(--sand);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta-light), var(--terracotta), var(--terracotta-light));
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--terracotta);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step__dot {
  width: 20px;
  height: 20px;
  background: var(--terracotta);
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(196, 112, 75, 0.15);
}

.process-step__final-dot {
  width: 20px;
  height: 20px;
  background: var(--terracotta);
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(196, 112, 75, 0.15);
}

.process-step__body {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.process-step:hover .process-step__body {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.process-step__desc a {
  color: var(--terracotta);
  font-weight: 700;
}

/* ── Service Area ── */
.service-area {
  padding: 100px 0;
  background: var(--sand-light);
}

.service-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-area__desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-area__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-tag {
  background: var(--white);
  color: var(--charcoal-light);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.location-tag:hover {
  background: var(--terracotta);
  color: var(--white);
}

.service-area__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  background: var(--sand-dark);
  padding: 48px;
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.map-placeholder p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.map-placeholder p:first-of-type {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* ── CTA Band ── */
.cta-band {
  padding: 80px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(196, 112, 75, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.cta-band__text {
  max-width: 520px;
}

.cta-band__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}

.cta-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--sand);
}

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

.contact__desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-detail__icon {
  width: 48px;
  height: 48px;
  background: rgba(196, 112, 75, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--warm-gray);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact-detail__link {
  color: var(--terracotta);
  transition: color var(--transition);
}

.contact-detail__link:hover {
  color: var(--terracotta-dark);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: all var(--transition);
  outline: none;
}

.contact-form__input:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 112, 75, 0.1);
}

.contact-form__input::placeholder {
  color: var(--warm-gray);
  opacity: 0.7;
}

.contact-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='%237A6E66' stroke-width='2.5' 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;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__success {
  text-align: center;
  padding: 40px 20px;
}

.contact-form__success svg {
  margin: 0 auto 16px;
}

.contact-form__success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-form__success p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--terracotta-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    max-width: 480px;
  }

  .hero__image-main img {
    height: 480px;
  }

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

  .why-us__visual {
    max-width: 480px;
  }

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

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

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

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 246, 241, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .nav__links.open {
    transform: translateY(0);
  }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
  }

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

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.active {
    background: rgba(196, 112, 75, 0.08);
    border-radius: var(--radius-sm);
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__image-accent {
    left: -10px;
    bottom: -20px;
  }

  .hero__floating-card {
    right: 10px;
    top: 20px;
  }

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

  .process__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process__steps::before {
    display: none;
  }

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

  .cta-band__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-band__actions .btn {
    justify-content: center;
  }

  .contact-form {
    padding: 28px;
  }

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

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

@media (max-width: 480px) {
  .hero__image-main img {
    height: 360px;
  }

  .hero__image-accent {
    display: none;
  }

  .hero__floating-card {
    display: none;
  }

  .why-us__stat-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    display: inline-block;
  }

  .why-us__main-img img {
    height: 360px;
  }
}

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

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