/* ====================================================
   AZALOR GARMENTS — Premium Landing Page Styles
   Design: Apple / Stripe / Linear inspired
   ==================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --color-bg: #faf9f6;
  --color-bg-alt: #f3f1ec;
  --color-bg-dark: #0c0a09;
  --color-bg-dark-alt: #1a1816;
  --color-accent: #c9a96e;
  --color-accent-light: #dfc69e;
  --color-accent-dark: #a8893e;
  --color-text: #1c1917;
  --color-text-muted: #78716c;
  --color-text-light: #e8e2d9;
  --color-text-light-muted: #a8a29e;
  --color-white: #ffffff;
  --color-border: #e7e5e4;
  --color-border-dark: #292524;
  --color-card: #ffffff;
  --color-card-dark: #1c1a18;
  --color-positive: #22c55e;
  --color-negative: #ef4444;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

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

.text-accent { color: var(--color-accent); }

.w-75 { width: 75% !important; }
.w-60 { width: 60% !important; }

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger children */
.problems-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.problems-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.problems-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }

.solution-grid .solution-item:nth-child(2) { transition-delay: 0.1s; }
.solution-grid .solution-item:nth-child(3) { transition-delay: 0.2s; }
.solution-grid .solution-item:nth-child(4) { transition-delay: 0.3s; }

.why-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.why-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.why-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }


/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.nav-brand svg { color: var(--color-text); }

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--color-text); }

.nav-cta {
  background: var(--color-text) !important;
  color: var(--color-white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: opacity var(--transition) !important;
}

.nav-cta:hover { opacity: 0.85; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}


/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12), transparent 70%);
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent-light);
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--color-text-light-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-light-muted);
}

.proof-avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-right: -8px;
  border: 2px solid var(--color-bg-dark);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}


/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.section-light .btn-secondary {
  color: var(--color-text);
  border-color: var(--color-border);
}

.section-light .btn-secondary:hover {
  border-color: var(--color-text);
  background: rgba(0,0,0,0.03);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}


/* ========================================
   SECTIONS (Common)
   ======================================== */
.section {
  padding: 120px 0;
}

.section-light {
  background: var(--color-bg);
  color: var(--color-text);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-light .section-subtitle { color: var(--color-text-muted); }
.section-dark .section-subtitle { color: var(--color-text-light-muted); }


/* ========================================
   2. PROBLEMS
   ======================================== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  padding: 36px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.problem-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.problem-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.problem-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}


/* ========================================
   3. SOLUTION
   ======================================== */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.solution-item {
  padding: 36px;
  background: var(--color-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.solution-item:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

.solution-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.solution-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.solution-item p {
  font-size: 15px;
  color: var(--color-text-light-muted);
  line-height: 1.65;
}


/* ========================================
   4. SERVICES (Package Card)
   ======================================== */
.package-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

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

.package-header {
  padding: 48px 48px 32px;
  text-align: center;
}

.package-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 169, 110, 0.1);
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 16px;
}

.package-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.package-desc {
  font-size: 15px;
  color: var(--color-text-muted);
}

.package-features {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
}

.feature-item svg { flex-shrink: 0; margin-top: 2px; }

.feature-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 14px;
  color: var(--color-text-muted);
}

.package-footer {
  padding: 32px 48px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
}

.delivery-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent-dark);
}

.package-footer .btn-primary {
  margin-left: auto;
}


/* ========================================
   5. VISUAL DEMO
   ======================================== */
.demo-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}

/* Desktop Mockup */
.device-desktop { flex: 0 0 auto; }

.device-frame {
  width: 680px;
  background: var(--color-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-dark);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.device-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1e1c1a;
  border-bottom: 1px solid var(--color-border-dark);
}

.toolbar-dots {
  display: flex;
  gap: 6px;
}

.toolbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a3633;
}

.toolbar-dots span:first-child { background: #ff5f57; }
.toolbar-dots span:nth-child(2) { background: #febc2e; }
.toolbar-dots span:last-child { background: #28c840; }

.toolbar-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-light-muted);
  background: rgba(255,255,255,0.05);
  padding: 6px 12px;
  border-radius: 6px;
}

.device-screen {
  padding: 0;
  height: 380px;
  overflow: hidden;
}

.mock-hero {
  padding: 24px;
  background: linear-gradient(160deg, #0e0d0b, #1a1816);
  height: 100%;
}

.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mock-logo {
  width: 60px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 3px;
  opacity: 0.7;
}

.mock-links {
  display: flex;
  gap: 12px;
}

.mock-links span {
  width: 36px;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.mock-content {
  margin-bottom: 32px;
}

.mock-badge-line {
  width: 100px;
  height: 10px;
  background: rgba(201, 169, 110, 0.2);
  border-radius: 100px;
  margin-bottom: 16px;
}

.mock-h1 {
  width: 90%;
  height: 18px;
  background: rgba(255,255,255,0.8);
  border-radius: 3px;
  margin-bottom: 10px;
}

.mock-text {
  width: 65%;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-top: 14px;
}

.mock-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mock-btn-primary {
  width: 100px;
  height: 28px;
  background: var(--color-accent);
  border-radius: 5px;
  opacity: 0.8;
}

.mock-btn-secondary {
  width: 80px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
}

.mock-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mock-product {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px;
}

.mock-img {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border-radius: 5px;
  margin-bottom: 8px;
}

.mock-label {
  width: 60%;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

/* Mobile Mockup */
.device-mobile { flex: 0 0 auto; }

.device-frame-mobile {
  width: 200px;
  height: 400px;
  background: var(--color-card-dark);
  border-radius: 28px;
  border: 1px solid var(--color-border-dark);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;
}

.device-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--color-card-dark);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.device-screen-mobile {
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.mock-hero-mobile {
  padding: 40px 16px 16px;
  background: linear-gradient(160deg, #0e0d0b, #1a1816);
  height: 100%;
}

.mock-nav-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mock-logo-sm {
  width: 40px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 3px;
  opacity: 0.7;
}

.mock-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-hamburger span {
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: 1px;
}

.mock-content-mobile { margin-bottom: 24px; }

.mock-h1-sm {
  width: 85%;
  height: 12px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  margin-bottom: 8px;
}

.mock-text-sm {
  width: 70%;
  height: 7px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-top: 12px;
}

.mock-btn-sm {
  width: 100%;
  height: 28px;
  background: var(--color-accent);
  border-radius: 6px;
  opacity: 0.8;
  margin-top: 18px;
}

.mock-product-grid-mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mock-product-sm {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px;
}

.mock-img-sm {
  width: 100%;
  height: 55px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border-radius: 5px;
}


/* Before / After */
.before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.ba-card {
  flex: 1;
  max-width: 400px;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-dark);
  background: var(--color-card-dark);
}

.ba-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light-muted);
  margin-bottom: 24px;
}

.ba-label-accent { color: var(--color-accent); }

.ba-content { display: flex; flex-direction: column; gap: 16px; }

.ba-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.ba-negative { color: rgba(255,255,255,0.65); }
.ba-positive { color: var(--color-text-light); }

.ba-arrow {
  flex: 0 0 auto;
}


/* ========================================
   6. WHY US
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 40px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.why-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}


/* ========================================
   7. CASE STUDY
   ======================================== */
.case-study {
  max-width: 800px;
  margin: 0 auto;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.stat-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--color-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  display: inline;
  letter-spacing: -0.04em;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  display: inline;
  margin-left: 2px;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-light-muted);
  margin-top: 8px;
  font-weight: 500;
}

.case-quote {
  padding: 40px;
  background: var(--color-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-accent);
}

.case-quote blockquote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-bg-dark);
}

.case-author strong {
  display: block;
  font-size: 15px;
  color: var(--color-text-light);
}

.case-author span {
  font-size: 13px;
  color: var(--color-text-light-muted);
}


/* ========================================
   8. CTA SECTION
   ======================================== */
.section-cta {
  background: linear-gradient(160deg, #0c0a09, #1a1510);
  color: var(--color-text-light);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--color-text-light-muted);
  margin-bottom: 40px;
}

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


/* ========================================
   9. FOOTER
   ======================================== */
.footer {
  background: #080705;
  color: var(--color-text-light-muted);
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-brand .nav-brand {
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 64px;
  justify-content: flex-end;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--color-accent); }

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--color-border-dark);
  font-size: 13px;
}


/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
  animation: wa-pulse 3s ease infinite;
}

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

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}


/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .device-frame { width: 520px; }
  .device-screen { height: 300px; }

  .footer-inner { gap: 32px; }
}

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

  /* Navbar */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 998;
  }

  .nav-links.active { display: flex; }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
  }

  .nav-cta {
    font-size: 16px !important;
    padding: 14px 28px !important;
  }

  .nav-toggle { display: flex; z-index: 999; }

  .nav-toggle.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero */
  .hero-content { padding: 130px 0 80px; }
  .hero-title br { display: none; }

  /* Grids */
  .problems-grid,
  .solution-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .case-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card { padding: 24px 20px; }
  .stat-number { font-size: 40px; }

  /* Demo */
  .demo-showcase {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .device-frame { width: 100%; max-width: 480px; }
  .device-screen { height: 280px; }

  .device-frame-mobile {
    width: 180px;
    height: 360px;
  }

  /* Before / After */
  .before-after {
    flex-direction: column;
    gap: 16px;
  }

  .ba-card { max-width: 100%; }
  .ba-arrow { transform: rotate(90deg); }

  /* Package */
  .package-header { padding: 32px 24px 24px; }
  .package-features { padding: 0 24px; }
  .package-footer {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }
  .package-footer .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; gap: 48px; }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 120px 0 60px; }

  .section { padding: 64px 0; }
  .section-cta { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }

  .problem-card,
  .solution-item,
  .why-card { padding: 28px; }

  .case-quote { padding: 28px; }
  .case-quote blockquote { font-size: 16px; }

  .footer-links { flex-direction: column; gap: 32px; }
}


/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg-dark); }
::-webkit-scrollbar-thumb { background: var(--color-border-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/* ===== SELECTION ===== */
::selection {
  background: rgba(201, 169, 110, 0.25);
  color: inherit;
}
