@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --red:        #C0152A;
  --red-dark:   #8B0F1E;
  --red-light:  #E8192F;
  --red-glow:   rgba(192, 21, 42, 0.25);
  --charcoal:   #1C1C1E;
  --charcoal-2: #242426;
  --charcoal-3: #2E2E32;
  --ash:        #3A3A3F;
  --smoke:      #555560;
  --muted:      #9090A0;
  --white:      #F2F0EB;
  --off-white:  #D8D6D0;
  --black:      #0D0D0F;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:   8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-red: 0 8px 40px rgba(192, 21, 42, 0.35);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.45);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; }

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  border: 1px solid var(--red-dark);
  background: rgba(192,21,42,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
}

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

.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  text-align: center;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-light);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary:hover { box-shadow: var(--shadow-red); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--ash);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-light);
}

/* ---------- Noise Overlay ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom: 1px solid var(--ash);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo span { color: var(--red-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color var(--transition);
  line-height: 1.1;
}
.mobile-menu a:hover { color: var(--red-light); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-heading);
  transition: color var(--transition);
}
.mobile-close:hover { color: var(--red-light); }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
          radial-gradient(ellipse 60% 80% at 80% 50%, rgba(192,21,42,0.18) 0%, transparent 70%),
          radial-gradient(ellipse 40% 60% at 20% 80%, rgba(139,15,30,0.12) 0%, transparent 60%),
          linear-gradient(160deg, #0D0D0F 0%, #1A1A1E 50%, #0D0D0F 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
          linear-gradient(rgba(192,21,42,0.06) 1px, transparent 1px),
          linear-gradient(90deg, rgba(192,21,42,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--red);
}
.hero-eyebrow span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 8px;
}
.hero-title .accent { color: var(--red-light); }
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--red-dark);
  color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--ash);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1.08;
}
.stat-num span { color: var(--red-light); }
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-image-box {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal-3);
  position: relative;
  border: 1px solid var(--ash);
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  color: var(--smoke);
  font-size: 0.85rem;
  gap: 12px;
}
.hero-img-placeholder svg { opacity: 0.3; }

.hero-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--red);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-red);
  min-width: 140px;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.08;
}
.hero-badge-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-tag-float {
  position: absolute;
  top: 30px; right: -16px;
  background: var(--charcoal-2);
  border: 1px solid var(--ash);
  border-radius: var(--radius);
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.hero-tag-text { font-size: 0.78rem; color: var(--off-white); font-weight: 500; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--ash);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--red);
  border-radius: 10px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about { background: var(--charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal-3);
  border: 1px solid var(--ash);
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--charcoal-2) 0%, var(--ash) 100%);
  color: var(--smoke);
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}
.about-exp-badge {
  position: absolute;
  top: -20px; right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
}
.about-exp-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.08;
}
.about-exp-text {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 0 8px;
}
.about-cert-strip {
  position: absolute;
  bottom: -18px; left: 20px; right: 20px;
  background: var(--charcoal-2);
  border: 1px solid var(--ash);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cert-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(192,21,42,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cert-text { font-size: 0.8rem; color: var(--off-white); font-weight: 500; }
.cert-sub { font-size: 0.7rem; color: var(--muted);}

.about-content { padding-left: 20px; }
.about-feature-list { margin: 32px 0; display: flex; flex-direction: column; gap: 16px;}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: rgba(192,21,42,0.15);
  border: 1px solid var(--red-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red-light);
}
.feature-title { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 3px; padding-bottom: 4px; }
.feature-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* ===========================
   SERVICES SECTION
   =========================== */
.services { background: var(--black); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--charcoal);
  border: 1px solid var(--ash);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { border-color: var(--red-dark); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(145deg, var(--red-dark), var(--charcoal-3));
  border-color: var(--red);
}
.service-card.featured::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  background: rgba(192,21,42,0.15);
  border: 1px solid var(--red-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--red-light);
  font-size: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap,
.service-card.featured .service-icon-wrap {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.service-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  padding-bottom: 4px;
  margin-bottom: 10px;
}
.service-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--off-white);
}
.service-feature::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ===========================
   TRANSFORMATIONS SECTION
   =========================== */
.transformations { background: var(--charcoal); }
.transformations-header { margin-bottom: 60px; }
.transformations-header p {
  margin-left: 0;
  text-align: left;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.transform-card {
  background: var(--charcoal-2);
  border: 1px solid var(--ash);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.transform-card:hover { transform: translateY(-4px); border-color: var(--red-dark); }

.transform-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.transform-img-box {
  aspect-ratio: 3/4;
  background: var(--charcoal-3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.transform-img-box.before { border-right: 2px solid var(--red); }
.transform-label {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.7);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 100px;
}
.transform-img-box.after .transform-label { background: var(--red); color: var(--white); left: auto; right: 10px; }
.transform-img-box .placeholder-icon { opacity: 0.15; }

.transform-info { padding: 20px; }
.transform-name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--white); padding-bottom: 4px; }
.transform-detail { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.transform-result {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.transform-cta { text-align: center; }

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials { background: var(--black); }
.testimonials-header { text-align: center; margin-bottom: 60px; }


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid var(--ash);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: var(--red-dark); }

.quote-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  line-height: 0.8;
  opacity: 0.4;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--off-white);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}
.stars { display: flex; gap: 3px; margin-bottom: 20px; }
.star { color: var(--red-light); font-size: 0.9rem; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ash);
  border: 2px solid var(--red-dark);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red-light);
  flex-shrink: 0;
}
.author-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--white); padding-bottom: 3px; }
.author-tag { font-size: 0.75rem; color: var(--muted); }

/* ===========================
   PRICING SECTION
   =========================== */
.pricing { background: var(--charcoal); }
.pricing-header { text-align: center; margin-bottom: 60px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--charcoal-2);
  border: 1px solid var(--ash);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { border-color: var(--red-dark); transform: translateY(-4px); }
.pricing-card.popular {
  background: var(--charcoal-3);
  border-color: var(--red);
  transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.pricing-plan {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
  padding-bottom: 4px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.price-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.08;
}
.price-period { font-size: 0.85rem; color: var(--muted); }
.pricing-desc { font-size: 0.83rem; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }

.pricing-features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--off-white);
}
.pricing-feature svg { color: var(--red-light); flex-shrink: 0; }
.pricing-feature.disabled { color: var(--smoke); }
.pricing-feature.disabled svg { color: var(--ash); }

.divider { height: 1px; background: var(--ash); margin: 28px 0; }

/* ===========================
   FAQ SECTION
   =========================== */
.faq { background: var(--black); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 120px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--charcoal);
  border: 1px solid var(--ash);
  border-radius: var(--radius);
  overflow: visible;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--red-dark); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-q-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  flex: 1;
  padding-right: 16px;
  padding-bottom: 4px;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ash);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--muted);
}
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-a-text {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact { background: var(--charcoal); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: rgba(192,21,42,0.15);
  border: 1px solid var(--red-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red-light);
}
.contact-label { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-value { font-size: 0.95rem; color: var(--white); font-weight: 500; }

.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: var(--charcoal-3);
  border: 1px solid var(--ash);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: var(--transition);
  font-size: 1rem;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* Contact Form */
.contact-form {
  background: var(--charcoal-2);
  border: 1px solid var(--ash);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  padding-bottom: 4px;
}
.form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--charcoal);
  border: 1px solid var(--ash);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--smoke); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--charcoal-2); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-submit { width: 100%; margin-top: 8px; justify-content: center; padding: 16px; font-size: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 12px; }
.success-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.success-msg { font-size: 0.87rem; color: var(--muted); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--ash);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--red-light); }
.footer-tagline { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--ash);
}
.footer-copy { font-size: 0.8rem; color: var(--smoke); }
.footer-copy span { color: var(--red-light); }
.footer-built { font-size: 0.78rem; color: var(--smoke); }

/* ===========================
   ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero entry animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-eyebrow  { animation: fadeUp 0.7s ease both; animation-delay: 0.2s; }
.hero-title    { animation: fadeUp 0.7s ease both; animation-delay: 0.35s; }
.hero-desc     { animation: fadeUp 0.7s ease both; animation-delay: 0.5s; }
.hero-actions  { animation: fadeUp 0.7s ease both; animation-delay: 0.65s; }
.hero-stats    { animation: fadeUp 0.7s ease both; animation-delay: 0.8s; }
.hero-visual   { animation: fadeIn 1s ease both; animation-delay: 0.4s; }

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .transform-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { gap: 40px; }
  .about-grid { gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .scroll-hint { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 28px; }
  .hero-visual { order: -1; }
  .hero-image-wrap { max-width: 320px; margin: 0 auto; }
  .hero-badge { bottom: -16px; left: 0; }
  .hero-tag-float { right: 0; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-left: 0; }
  .about-exp-badge { top: -10px; right: 0; }

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

  /* Transforms */
  .transform-grid { grid-template-columns: 1fr; }

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

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 3.5rem); }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}