/* ==========================================================================
   Dhakker Landing Page Styles
   ========================================================================== */

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

:root {
  --green: #1a472a;
  --green-light: #2d6a4f;
  --green-dark: #0d2818;
  --gold: #c9a84c;
  --gold-light: #e0c97a;
  --cream: #f4f2ed;
  --cream-dark: #e8e4db;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #8a8a8a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,71,42,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.3);
}

.btn-white {
  background: var(--white);
  color: var(--green);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

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

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

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

/* ---------- Hero ---------- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--cream) 0%, #e8e8dd 50%, #dde5d9 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,71,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(26,71,42,0.08);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-dark);
  aspect-ratio: 16 / 10;
}

.hero-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.3);
}
.hero-mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.hero-mockup-dot:nth-child(1) { background: #ff5f57; }
.hero-mockup-dot:nth-child(2) { background: #ffbd2e; }
.hero-mockup-dot:nth-child(3) { background: #28ca41; }

.hero-mockup-screen {
  padding: 20px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  min-height: 280px;
}

/* Simulated sidebar */
.mock-sidebar {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-clock {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 4px;
}

.mock-date {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 8px;
}

.mock-prayer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}

.mock-prayer.active {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
}

.mock-prayer-name { font-weight: 600; }

/* Simulated main area */
.mock-main {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mock-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mock-arabic {
  font-family: 'Amiri', serif;
  font-size: 1.5rem;
  color: var(--white);
  direction: rtl;
  margin-bottom: 8px;
  position: relative;
}

.mock-german {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  position: relative;
}

/* Floating accent card */
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

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

.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26,71,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-float-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.hero-float-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* ---------- Logos / Trust Bar ---------- */
.trust-bar {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.trust-logos span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ---------- Features Grid ---------- */
.features {
  padding: 100px 0;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-icon.green { background: rgba(26,71,42,0.08); }
.feature-icon.gold  { background: rgba(201,168,76,0.12); }
.feature-icon.blue  { background: rgba(59,130,246,0.08); }
.feature-icon.purple { background: rgba(139,92,246,0.08); }

.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Display Showcase ---------- */
.showcase {
  padding: 100px 0;
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.showcase .section-label { color: var(--gold); }
.showcase .section-title { color: var(--white); }
.showcase .section-subtitle { color: rgba(255,255,255,0.6); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
  position: relative;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.showcase-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.showcase-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.showcase-feature h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.showcase-feature p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Showcase display mock */
.showcase-display {
  background: #111;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}

.showcase-display-screen {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 340px;
}

.showcase-sidebar {
  background: rgba(255,255,255,0.04);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.showcase-sidebar-clock {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 4px;
}

.showcase-sidebar-date {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 12px;
}

.showcase-prayer-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}

.showcase-prayer-row.highlight {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
}

.showcase-main-area {
  background: linear-gradient(135deg, #2d6a4f 0%, #1a472a 50%, #0d2818 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  position: relative;
}

.showcase-main-area .mock-arabic {
  font-size: 2rem;
  margin-bottom: 12px;
}

.showcase-main-area .mock-german {
  font-size: 0.95rem;
}

/* ---------- Prayer Times Section ---------- */
.prayer-section {
  padding: 100px 0;
}

.prayer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.prayer-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prayer-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.prayer-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.prayer-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(26,71,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 2px;
}

.prayer-feature h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.prayer-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Prayer mock card */
.prayer-card-mock {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.prayer-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.prayer-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.prayer-card-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.prayer-times-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.prayer-time-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--cream);
}

.prayer-time-item.next {
  background: rgba(26,71,42,0.08);
  border: 1px solid rgba(26,71,42,0.15);
}

.prayer-time-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
}

.prayer-time-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'DM Sans', monospace;
}

.prayer-time-item.next .prayer-time-value {
  color: var(--gold);
}

.prayer-countdown {
  margin-top: 16px;
  text-align: center;
  padding: 14px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 10px;
  color: var(--white);
}

.prayer-countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.prayer-countdown-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'DM Sans', monospace;
  color: var(--gold-light);
}

/* ---------- How It Works ---------- */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--cream-dark);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 auto 20px;
  border: 2px solid rgba(26,71,42,0.1);
}

.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Admin Panel Section ---------- */
.admin-section {
  padding: 100px 0;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.admin-mock {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.admin-mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #1a1a2e;
  color: var(--white);
}

.admin-mock-logo {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-mock-tabs {
  display: flex;
  gap: 16px;
}

.admin-mock-tab {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 8px;
  border-radius: 4px;
}
.admin-mock-tab.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.admin-mock-body {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.admin-mock-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.admin-mock-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.admin-mock-card-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.admin-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.admin-feat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(26,71,42,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.admin-feat h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.admin-feat p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Pricing / Hardware ---------- */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

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

.pricing-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: var(--white);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.pricing-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.pricing-price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ---------- Testimonials / Social Proof ---------- */
.social-proof {
  padding: 100px 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green);
  font-size: 0.85rem;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .section-title {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 16px;
  position: relative;
}

.cta-section .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-size: 1.1rem;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}

/* ---------- Footer ---------- */
.footer {
  padding: 60px 0 30px;
  background: var(--green-dark);
  color: rgba(255,255,255,0.5);
}

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

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
}

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

  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-visual { order: -1; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .hero-float-card { display: none; }

  .section-title { font-size: 1.8rem; }

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

  .showcase-grid { grid-template-columns: 1fr; }
  .prayer-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cta-section .section-title { font-size: 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.8rem; }
  .prayer-times-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Animations on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
