/* EDT Consulting — Minimal Design System */
:root {
  --orange: #F37021;
  --orange-dark: #E05A0A;
  --red: #D32F2F;
  --black: #111111;
  --gray-900: #1F2937;
  --gray-600: #6B7280;
  --gray-400: #9CA3AF;
  --gray-100: #F3F4F6;
  --gray-50: #FAFAFA;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  flex-shrink: 0;
}

.logo img {
  display: none;
}

.logo__brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.logo__suffix {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__logo-text {
  margin-bottom: 16px;
}

.footer__logo-text .logo__brand {
  font-size: 1.25rem;
  color: var(--orange);
}

.footer__logo-text .logo__suffix {
  font-size: 0.75rem;
  color: var(--white);
}

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

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

.nav__link:hover,
.nav__link.active {
  color: var(--orange);
  background: rgba(243, 112, 33, 0.08);
}

.nav__cta {
  margin-left: 8px;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}

.nav__cta:hover {
  background: var(--orange-dark);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--gray-900);
  border: 2px solid var(--gray-100);
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #1DA851;
}

/* ── Hero Human ── */
.hero--human {
  padding: calc(var(--header-height) + 80px) 0 100px;
  background: var(--white);
}

.hero--human .hero__grid {
  gap: 80px;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero--human .hero__title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
}

.hero--human .hero__text {
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 480px;
}

.hero--human .hero__image {
  max-width: 340px;
  margin-left: auto;
}

.hero--human .hero__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  max-height: 260px;
}

.hero__image-caption {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-style: italic;
  text-align: center;
}

/* ── Promise ── */
.promise {
  padding: 64px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.promise__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.promise__quote {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  line-height: 1.7;
  color: var(--gray-900);
  font-weight: 500;
}

.promise__author {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 600;
}

/* ── Journey ── */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.journey__step {
  padding-top: 8px;
}

.journey__number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.journey__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.journey__text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Human Story ── */
.human-story {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.human-story__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  max-height: 320px;
}

.human-story__content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* ── Offer Block ── */
.offer-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.offer-block__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.offer-block__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.offer-block .btn {
  margin-top: 32px;
}

.offer-pricing {
  margin-top: 32px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-banner__outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.human-story__content .about-list {
  margin-top: 24px;
}

.human-story__content .btn {
  margin-top: 28px;
}

/* ── Refined value cards (no emoji) ── */
.value-card {
  text-align: left;
  padding: 32px;
}

.value-card__icon {
  display: none;
}

/* ── Cleaner service cards ── */
.service-card {
  padding: 28px;
  border-left: 3px solid var(--orange);
}

.service-card__icon {
  display: none;
}

.service-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ── Hero ── */
.hero {
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  overflow: hidden;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(243, 112, 33, 0.1);
  color: var(--orange);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--orange);
}

.hero__text {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 520px;
}

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

.hero__stats {
  display: flex;
  gap: 40px;
}

.stat__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 4px;
}

.hero__image {
  position: relative;
}

.hero__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--gray-50);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* ── Values ── */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 112, 33, 0.1);
  border-radius: 14px;
  font-size: 1.5rem;
}

.value-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.value-card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured::before {
  content: 'Populaire';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
}

.pricing-card__features {
  margin: 24px 0;
  text-align: left;
}

.pricing-card__features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

/* ── Hero Collage ── */
.hero--visual .hero__grid {
  align-items: center;
}

.hero__collage {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 4/5;
}

.hero__collage-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 78%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

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

.hero__collage-small {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  z-index: 3;
}

.hero__collage-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__collage-small--1 {
  bottom: 8%;
  left: 0;
  width: 48%;
  height: 38%;
}

.hero__collage-small--2 {
  top: 12%;
  left: 4%;
  width: 42%;
  height: 32%;
}

.hero__collage-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.12;
}

/* ── Photo Banner ── */
.photo-banner {
  padding: 0;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.photo-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-banner__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}

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

.photo-banner__item:hover img {
  transform: scale(1.06);
}

.photo-banner__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Visual Service Cards ── */
.services-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

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

.service-visual__image {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

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

.service-visual:hover .service-visual__image img {
  transform: scale(1.05);
}

.service-visual__body {
  padding: 24px;
}

.service-visual__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 8px;
}

.service-visual__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.service-visual__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ── Split Feature ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-split__image {
  position: relative;
}

.feature-split__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.feature-split__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(243, 112, 33, 0.35);
}

.feature-split__content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-split__content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.feature-split__list {
  margin: 24px 0;
}

.feature-split__list li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.feature-split__list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(243, 112, 33, 0.1);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Photo Mosaic ── */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.photo-mosaic__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

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

.photo-mosaic__item:hover img {
  transform: scale(1.04);
}

.photo-mosaic__item--1 { grid-column: span 5; }
.photo-mosaic__item--2 { grid-column: span 4; }
.photo-mosaic__item--3 { grid-column: span 3; }
.photo-mosaic__item--4 { grid-column: span 4; }
.photo-mosaic__item--5 { grid-column: span 5; }
.photo-mosaic__item--6 { grid-column: span 3; }

.photo-mosaic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-mosaic__item:hover .photo-mosaic__overlay {
  opacity: 1;
}

/* ── Flyer Wall ── */
.flyer-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.flyer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

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

.flyer-card__frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-50);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flyer-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.flyer-card__label {
  text-align: center;
  padding: 12px 8px 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
}

.flyer-card__desc {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  padding-bottom: 4px;
}

/* ── Gallery / Flyers ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

/* ── CTA Banner ── */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ── Page Header ── */
.page-header {
  padding: calc(var(--header-height) + 48px) 0 48px;
  background: var(--gray-50);
  text-align: center;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.page-header__text {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 320px;
  max-height: 240px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-grid__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
}

.about-grid__content p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.about-list {
  margin-top: 24px;
}

.about-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.about-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 112, 33, 0.1);
  border-radius: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.contact-info__value a:hover {
  color: var(--orange);
}

.contact-form {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-lg);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ── Service Detail ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-100);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail__content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.service-detail__content p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.service-detail__list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail__list li::before {
  content: '•';
  color: var(--orange);
  font-weight: 700;
}

/* ── Price Table ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.price-table th {
  background: var(--gray-50);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
}

.price-table td:last-child {
  font-weight: 700;
  color: var(--orange);
  text-align: right;
}

.price-table tr:last-child td {
  border-bottom: none;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

/* ── Professional Services Page ── */
.services-pro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-pro {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-pro:hover {
  border-color: rgba(243, 112, 33, 0.25);
  box-shadow: var(--shadow);
}

.service-pro__num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 112, 33, 0.1);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.service-pro__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.service-pro__desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 12px;
}

.service-pro__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-pro__tag {
  font-size: 0.8rem;
  padding: 4px 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  color: var(--gray-600);
}

.service-pro__price {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
}

.service-detail__image {
  max-width: 280px;
  margin: 0 auto;
}

.service-detail__image img {
  max-height: 200px;
  object-fit: contain;
  border-radius: var(--radius);
}

.footer__brand img {
  display: none;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--orange);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer__tagline {
  color: var(--orange);
  font-weight: 600;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Authentic Moments ── */
.moments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.moments__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow);
  max-height: 160px;
}

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

.moments__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.section__title--left {
  text-align: left;
  margin-bottom: 20px;
}

/* ── Mobile-first improvements ── */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .hero--human {
    padding: calc(var(--header-height) + 32px) 0 48px;
  }

  .hero--human .hero__grid {
    gap: 32px;
  }

  .hero--human .hero__image {
    max-width: 100%;
  }

  .hero--human .hero__image img {
    max-height: 220px;
  }

  .hero--human .hero__title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero--human .hero__title br {
    display: none;
  }

  .hero--human .hero__text {
    font-size: 1rem;
    line-height: 1.65;
  }

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

  .hero__actions .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .hero--human .hero__image {
    order: -1;
    max-width: 100%;
  }

  .hero--human .hero__image img {
    aspect-ratio: 16/11;
    border-radius: var(--radius);
  }

  .hero__image-caption {
    font-size: 0.85rem;
    margin-top: 12px;
  }

  .promise {
    padding: 40px 0;
  }

  .promise__quote {
    font-size: 1.05rem;
    line-height: 1.65;
    padding: 0 4px;
  }

  .section {
    padding: 48px 0;
  }

  .section__header {
    margin-bottom: 36px;
  }

  .section__title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .section__subtitle {
    font-size: 0.95rem;
  }

  .journey__step {
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
  }

  .moments {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .moments__item {
    aspect-ratio: 16/10;
  }

  .value-card {
    padding: 24px 20px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-pro {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .service-pro__num {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-card__price {
    font-size: 2rem;
  }

  .offer-block .btn {
    width: 100%;
  }

  .human-story {
    gap: 32px;
  }

  .human-story__image {
    max-width: 100%;
  }

  .human-story__image img {
    aspect-ratio: 16/11;
  }

  .human-story__content .btn {
    width: 100%;
    text-align: center;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }

  .cta-banner__actions .btn {
    width: 100%;
    padding: 16px 24px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .footer {
    padding: 48px 0 24px;
  }

  .nav__cta {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .btn--center-mobile {
    width: 100%;
    display: flex;
  }
}

@media (max-width: 380px) {
  .hero--human .hero__title {
    font-size: 1.55rem;
  }

  .section__title {
    font-size: 1.35rem;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__grid,
  .about-grid,
  .contact-grid,
  .service-detail,
  .human-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .values,
  .services-grid,
  .gallery,
  .services-visual,
  .flyer-wall {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-split {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .photo-mosaic__item--1,
  .photo-mosaic__item--2,
  .photo-mosaic__item--3,
  .photo-mosaic__item--4,
  .photo-mosaic__item--5,
  .photo-mosaic__item--6 {
    grid-column: span 1;
    height: 200px;
  }

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

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

  .nav__cta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

  .hero {
    padding-bottom: 48px;
  }

  .hero__image {
    order: -1;
  }

  .hero__image img {
    aspect-ratio: 16/10;
  }

  .hero__stats {
    gap: 24px;
  }

  .values,
  .services-grid,
  .gallery,
  .pricing-grid,
  .services-visual,
  .flyer-wall,
  .photo-banner__grid {
    grid-template-columns: 1fr;
  }

  .hero--human .hero__image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .journey {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .human-story__image {
    max-width: 360px;
    margin: 0 auto;
  }

  .offer-block .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-form {
    padding: 24px;
  }

  .section {
    padding: 56px 0;
  }
}
