:root {
  /* Ultra-Premium Palette */
  --olive: #556B2F;
  --olive-dark: #2d3818;
  --olive-light: #7a9446;
  --olive-glow: rgba(85, 107, 47, 0.15);
  --brown: #8B4513;
  --brown-dark: #5c2d0c;
  --brown-light: #a65d2a;
  --beige: #FAF9F6;
  --white: #ffffff;
  --ink: #121210;
  --muted: #626156;
  --line: rgba(85, 107, 47, 0.1);

  --shadow-premium: 0 20px 50px rgba(18, 18, 16, 0.05);
  --shadow-hover: 0 40px 80px rgba(85, 107, 47, 0.12);
  --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  --radius-xl: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--beige);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Blobs */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: var(--olive-glow);
  filter: blur(100px);
  border-radius: 50%;
  animation: blobFloat 20s infinite alternate;
}

.blob-1 {
  top: -10%;
  left: -10%;
  background: rgba(85, 107, 47, 0.08);
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  background: rgba(139, 69, 19, 0.05);
  animation-delay: -5s;
}

@keyframes blobFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(10%, 10%) scale(1.1);
  }
}

/* Typography Enhancements */
h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.gradient-text {
  color: var(--ink) !important;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  width: calc(100% - 40px);
  max-width: 1200px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 50px rgba(85, 107, 47, 0.1);
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}

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

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

.nav-link {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  transition: var(--transition-smooth);
  opacity: 0.7;
}

.nav-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.lang-toggle {
  font-weight: 800;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-toggle:hover {
  color: var(--olive);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.nav-toggle .line {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.brand {
  text-decoration: none !important;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 50px;
  transition: var(--transition-smooth);
}

.scrolled .brand-logo {
  height: 40px;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  overflow: hidden;
  z-index: 1;
  text-decoration: none !important;
  /* Remove underline */
}

.btn-primary {
  background: var(--olive);
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(85, 107, 47, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive-dark) 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(85, 107, 47, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-white {
  background: #ffffff !important;
  color: #121210 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: #f0f0f0 !important;
}

/* ===== Hero Section Enhanced ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--white);
  will-change: transform;
}

.hero-bg-image {
  position: absolute;
  inset: -10px; /* Subtle safety buffer */
  background-image: url('assets/Hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.95);
  z-index: 0;
  transform: scale(1.05); /* Very slight scale to hide parallax edges */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.85) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.02);
  /* Static texture placeholder */
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-icons {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.f-icon {
  position: absolute;
  font-size: 40px;
  opacity: 0.2;
  filter: blur(1px);
}

.f-icon-1 {
  top: 20%;
  left: 10%;
  transform: rotate(-15deg);
}

.f-icon-2 {
  top: 60%;
  right: 5%;
  transform: rotate(10deg);
}

.f-icon-3 {
  top: 15%;
  right: 15%;
  transform: rotate(5deg);
}

.pill {
  background: var(--white);
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--olive);
  border: 1px solid var(--line);
  margin-bottom: 30px;
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 10;
}

.hero-logo {
  max-width: min(380px, 75vw);
  margin-bottom: 30px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 10;
  will-change: transform;
}

.hero-title {
  font-size: clamp(52px, 10vw, 88px) !important;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 1100px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--olive-dark) !important;
  background: linear-gradient(135deg, #636428 0%, #ffffff 50%, #636428 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3)) drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 10;
  will-change: transform;
}

.hero-sub {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  color: #ffffff;
  max-width: 850px;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(85, 107, 47, 0.3);
  opacity: 1;
}

.cta-main {
  box-shadow: 0 20px 40px rgba(85, 107, 47, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  position: relative;
  z-index: 10;
}

.cta-main:hover {
  box-shadow: 0 25px 50px rgba(85, 107, 47, 0.3), 0 0 0 4px rgba(85, 107, 47, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
}

.scroll-indicator p {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouse-scroll 2s infinite;
}

@keyframes mouse-scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

/* Countdown */
.countdown-wrap {
  margin-bottom: 60px;
}

.countdown {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  padding: 30px 50px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--white);
  box-shadow: var(--shadow-premium);
}

.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.cd-box span {
  font-size: 48px;
  font-weight: 900;
  color: var(--olive);
}

.cd-box small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.cd-sep {
  font-size: 40px;
  font-weight: 900;
  color: var(--brown);
  opacity: 0.3;
}

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: #f7f7f4;
}

/* ===== About Section Ultra-Premium ===== */
.about {
  padding: 140px 0;
  background: linear-gradient(180deg, #fdfdfb 0%, #f7f7f2 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(85, 107, 47, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 30%;
  height: 30%;
  background: radial-gradient(circle, rgba(139, 69, 19, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

/* About Badge */
.about-badge {
  display: inline-block;
  background: var(--olive-glow);
  color: var(--olive);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(85, 107, 47, 0.12);
  letter-spacing: 0.03em;
}

/* ===== Founder Story Card ===== */
.about-story {
  max-width: 900px;
  margin: 0 auto 50px;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(85, 107, 47, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.about-story:hover {
  box-shadow: 0 30px 80px rgba(85, 107, 47, 0.1);
  transform: translateY(-4px);
}

.about-story-accent {
  width: 6px;
  min-height: 100%;
  background: linear-gradient(180deg, var(--olive) 0%, var(--olive-light) 50%, var(--brown-light) 100%);
  flex-shrink: 0;
}

.about-story-content {
  padding: 40px 45px;
  text-align: right;
}

.about-story-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.about-story-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(85, 107, 47, 0.2);
}

.about-story-icon svg {
  width: 28px;
  height: 28px;
}

.about-story-header h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.about-story-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--olive);
  opacity: 0.8;
}

.about-story-content p {
  font-size: 17px;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 16px;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

.about-story-content strong {
  color: var(--ink);
  font-weight: 800;
}

/* ===== Mission Quote Block ===== */
.about-mission {
  max-width: 900px;
  margin: 0 auto 70px;
}

.about-mission-inner {
  background: linear-gradient(135deg, var(--olive-dark) 0%, #3a4d1a 100%);
  border-radius: 28px;
  padding: 50px 55px;
  position: relative;
  overflow: hidden;
  text-align: right;
}

.about-mission-quote {
  position: absolute;
  top: 20px;
  left: 25px;
  width: 80px;
  height: 80px;
  color: #ffffff;
  opacity: 0.08;
  transform: scaleX(-1);
}

.about-mission-inner p {
  font-size: 20px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.about-mission-author {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

/* ===== Journey / Process Steps ===== */
.about-journey {
  margin-bottom: 80px;
}

.about-journey-title {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 50px;
  letter-spacing: -0.02em;
}

.about-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.journey-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.journey-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--olive);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(85, 107, 47, 0.1);
  transition: var(--transition-smooth);
}

.journey-step:hover .journey-step-num {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 15px 40px rgba(85, 107, 47, 0.25);
}

.journey-step-line {
  display: none;
}

/* Connecting line between steps */
.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--olive) 0%, rgba(85, 107, 47, 0.2) 100%);
  z-index: 1;
  transform: translateX(-50%);
}

.journey-step:first-child::after {
  display: none;
}

/* RTL fix: reverse the connecting line direction */
[dir="rtl"] .journey-step:not(:last-child)::after {
  left: auto;
  right: -50%;
  transform: translateX(50%);
  background: linear-gradient(270deg, var(--olive) 0%, rgba(85, 107, 47, 0.2) 100%);
}

[dir="rtl"] .journey-step:first-child::after {
  display: none;
}

.journey-step h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.journey-step p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 200px;
  margin: 0 auto;
}

/* ===== Value Feature Cards ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  background: var(--white);
  padding: 55px 35px;
  border-radius: 32px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(85, 107, 47, 0.08);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.about-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 35px 80px rgba(85, 107, 47, 0.1);
  border-color: rgba(85, 107, 47, 0.15);
}

.about-card.is-featured {
  background: var(--white);
  box-shadow: 0 25px 70px rgba(85, 107, 47, 0.07);
  border-color: rgba(85, 107, 47, 0.12);
  transform: translateY(-6px);
}

.about-card.is-featured .ac-icon-wrap {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(85, 107, 47, 0.25);
}

.ac-icon-wrap {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f2 100%);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--olive);
  transition: all 0.5s ease;
  position: relative;
  box-shadow: 0 10px 25px rgba(85, 107, 47, 0.04);
  border: 1px solid rgba(85, 107, 47, 0.06);
}

.about-card:hover .ac-icon-wrap {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(85, 107, 47, 0.28);
}

.ac-icon-svg {
  width: 38px;
  height: 38px;
}

.about-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-card p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  opacity: 0.9;
}

/* ===== About Section Responsive ===== */
@media (max-width: 992px) {
  .about-journey-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .journey-step:not(:last-child)::after,
  [dir="rtl"] .journey-step:not(:last-child)::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 24px;
  }

  .about-story-content {
    padding: 30px 28px;
  }

  .about-mission-inner {
    padding: 35px 30px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 100px 0;
  }

  .about-story {
    border-radius: 24px;
  }

  .about-story-header h3 {
    font-size: 22px;
  }

  .about-story-content p {
    font-size: 15px;
    line-height: 1.85;
  }

  .about-mission-inner p {
    font-size: 17px;
  }

  .about-journey-title {
    font-size: 24px;
    margin-bottom: 35px;
  }
}

@media (max-width: 580px) {
  .about-journey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 10px;
  }

  .journey-step-num {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .journey-step h4 {
    font-size: 16px;
  }

  .journey-step p {
    font-size: 13px;
  }

  .about-story-header {
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }

  .about-story-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .about-story-icon svg {
    width: 22px;
    height: 22px;
  }

  .about-card {
    padding: 40px 25px;
    border-radius: 24px;
  }

  .about-card h3 {
    font-size: 20px;
  }

  .about-card p {
    font-size: 15px;
  }

  .ac-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin-bottom: 22px;
  }

  .ac-icon-svg {
    width: 30px;
    height: 30px;
  }
}

/* Trust Row */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
}

.trust-item span {
  width: 28px;
  height: 28px;
  background: var(--olive);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.gradient-text-light {
  color: #ffffff !important;
}

.cta-band {
  background: #121210;
  padding: 120px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  border-radius: 60px 60px 0 0;
  /* Removed negative margin to prevent overlap */
  z-index: 10;
}

/* Removed blobs */
.cta-band-inner {
  position: relative;
  z-index: 5;
  opacity: 1;
  /* Fallback */
}

.cta-band h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer Enhanced ===== */
.site-footer {
  padding: 120px 0 0;
  background: #fdfdfb;
  text-align: right;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 80px;
}

.footer-brand .footer-logo {
  height: 60px;
  margin-bottom: 24px;
}

.footer-grid h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--ink);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none !important;
  transition: var(--transition-smooth);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--olive);
  padding-right: 8px;
}

.footer-tagline {
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  transition: var(--transition-smooth);
  text-decoration: none !important;
}

.social-links a:hover {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
  transform: translateY(-5px);
}

.footer-newsletter h4 {
  margin-bottom: 20px;
}

.footer-newsletter p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 999px;
  max-width: 360px;
  direction: ltr;
  /* To keep button at the end of the input flow easily */
}

.newsletter-form input {
  border: none;
  background: transparent;
  padding: 0 16px;
  flex: 1;
  font-family: inherit;
  font-size: 14px;
  text-align: right;
}

.newsletter-form button {
  width: 40px;
  height: 40px;
  background: var(--olive);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.newsletter-form button:hover {
  background: var(--ink);
}

.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.payment-methods {
  display: flex;
  gap: 15px;
}

.pay-icon {
  font-size: 10px;
  font-weight: 900;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 4px;
  opacity: 0.6;
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .nav-actions {
    border: none;
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links,
  .fb-inner {
    justify-content: center;
  }

  .newsletter-form {
    margin: 0 auto;
  }
}

/* Purchase Page Specifics */
.bundles-hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
}

.bh-desc {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin: 20px auto 0;
  opacity: 0.8;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0 100px;
}

.bundle-card {
  background: var(--white);
  border-radius: 40px;
  padding: 0 40px 45px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.bundle-card:hover {
  transform: translateY(-20px);
  box-shadow: var(--shadow-hover);
  border-color: var(--olive-light);
}

.bundle-card.featured {
  border-color: var(--olive);
  box-shadow: 0 30px 60px rgba(85, 107, 47, 0.1);
  transform: translateY(-10px);
}

.bundle-card.featured:hover {
  transform: translateY(-20px);
}

.bundle-media {
  margin: 0 -40px 30px;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.bundle-emoji {
  font-size: 80px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.bundle-card:hover .bundle-media img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  color: white;
  z-index: 2;
}

.badge-blue { background: #3b82f6; }
.badge-gold { background: linear-gradient(135deg, #d4af37, #b8860b); }
.badge-green { background: var(--olive); }

.badge-corner {
  position: absolute;
  top: 20px;
  left: -35px;
  background: #ff4757;
  color: white;
  padding: 5px 40px;
  font-size: 10px;
  font-weight: 900;
  transform: rotate(-45deg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bundle-title {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--olive-dark);
}

.bundle-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 25px;
  font-weight: 600;
}

.bundle-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bundle-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.bundle-features .check {
  color: var(--olive);
  font-weight: 900;
}

.btn-block {
  width: 100%;
}

.btn-outline {
  border: 2px solid var(--line);
  background: transparent;
  color: var(--olive);
}

.btn-outline:hover {
  background: var(--olive-glow);
  border-color: var(--olive);
}

/* Modal Refined */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 16, 0.4);
  backdrop-filter: blur(10px);
}

.modal-card {
  background: var(--white);
  border-radius: 50px;
  padding: 50px;
  width: calc(100% - 40px);
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-card::-webkit-scrollbar {
  display: none;
}

.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f0;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 100;
}

.modal-close:hover {
  background: var(--olive);
  color: white;
  transform: rotate(90deg);
}

/* Steps Progress */
.steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  position: relative;
}

.step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.step.is-active { color: var(--olive); }
.step.is-active span {
  background: var(--white);
  border-color: var(--olive);
}

.step.is-done span {
  background: var(--olive);
  color: white;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #f5f5f0;
  margin: 0 15px;
  margin-top: -20px;
}

/* Modal Content */
.modal-sub {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
}

.modal-sub strong {
  color: var(--olive);
}

.step-pane {
  display: none;
}

.step-pane.is-active {
  display: block;
  animation: slideUp 0.5s ease;
}

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

.step-pane h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--olive-dark);
}

.step-hint {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 15px;
}

/* Size & Payment Options */
.size-grid, .pay-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.size-option input, .pay-option input {
  display: none;
}

.size-card, .pay-card {
  padding: 20px 25px;
  border-radius: 24px;
  border: 2px solid #f5f5f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-smooth);
}

.size-option input:checked + .size-card,
.pay-option input:checked + .pay-card {
  border-color: var(--olive);
  background: var(--olive-glow);
}

.size-emoji, .pay-icon {
  font-size: 32px;
}

.size-info, .pay-info {
  flex: 1;
}

.size-name, .pay-name {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
}

.size-weight, .pay-desc {
  font-size: 14px;
  color: var(--muted);
}

.size-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--olive);
}

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input, .form textarea {
  width: 100%;
  padding: 18px 24px;
  border-radius: 18px;
  border: 2px solid #f5f5f0;
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition-smooth);
  background: #fafaf8;
}

.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--olive);
  background: white;
  box-shadow: 0 10px 30px rgba(85, 107, 47, 0.05);
}

.summary-box {
  background: #f5f5f0;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-box div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.step-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 30px;
  box-shadow: 0 20px 40px rgba(85, 107, 47, 0.2);
}

.form-success h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* Mobile Adjustments Enhanced */
@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .bundles-grid { gap: 20px; }
  .bundle-card { padding: 0 30px 35px; }
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 100px 30px;
    z-index: 1000;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
    opacity: 0;
  }

  .site-header.is-menu-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    font-size: 24px;
    opacity: 1;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-menu-open .nav-toggle .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle .line:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-toggle .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-actions {
    display: none;
  }

  .bundles-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
  }

  .bundles-hero { padding: 140px 0 40px; }
  .bh-desc { font-size: 18px; }

  .countdown {
    padding: 20px;
    gap: 10px;
  }

  .cd-box {
    min-width: 60px;
  }

  .cd-box span {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .modal-card {
    padding: 40px 25px;
    border-radius: 35px;
  }

  .step-pane h3 { font-size: 24px; }
  .size-card, .pay-card { padding: 15px; border-radius: 18px; }
  .size-name, .pay-name { font-size: 16px; }
  .size-price { font-size: 20px; }
  
  .steps { margin-bottom: 30px; }
  .step span { width: 30px; height: 30px; font-size: 12px; }
}

@media (max-width: 480px) {
  .modal-card {
    padding: 35px 20px;
  }

  .modal-close { top: 15px; left: 15px; }

  .size-card, .pay-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: right;
    padding: 20px;
  }

  .size-emoji, .pay-icon { font-size: 28px; }
  .size-price { width: 100%; text-align: left; }
  
  .step-actions {
    flex-direction: column;
  }

  .step-actions .btn {
    width: 100%;
  }

  .summary-box { padding: 15px; font-size: 13px; }
  
  .bundle-card { padding: 0 20px 30px; }
  .bundle-media { height: 180px; }
  .bundle-title { font-size: 22px; }
  .bundle-features li { font-size: 14px; }
}

/* Floating Elements */
/* New Sections Styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--olive-dark);
  margin-bottom: 20px;
}

.section-desc {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fafaf8;
}

.faq-trigger {
  width: 100%;
  padding: 20px 30px;
  background: transparent;
  border: none;
  text-align: right;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-trigger span {
  font-size: 24px;
  color: var(--olive);
  transition: transform 0.3s ease;
}

.faq-item.is-active .faq-trigger {
  color: var(--olive);
  background: white;
}

.faq-item.is-active .faq-trigger span {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: white;
}

.faq-item.is-active .faq-content {
  max-height: 300px;
  padding: 20px 30px 30px;
}

.contact {
  padding: 100px 0 140px;
  background: #fdfdfb;
  position: relative;
  z-index: 5;
}

.wa-float {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-10px);
}