/* ══════════════════════════════════════════
   DUKRI — Landing Page Styles
   ══════════════════════════════════════════ */

:root {
  --primary: #0033A0;
  --primary-dark: #001A6E;
  --primary-light: #0052CC;
  --gold: #FFB400;
  --gold-light: #FFE566;
  --gold-dark: #CC8F00;
  --pink: #FF3D7F;
  --bg-dark: #FFFFFF;
  --bg-card: #F5F7FA;
  --bg-card-hover: #EDF0F5;
  --text-primary: #1A1A2E;
  --text-secondary: rgba(26, 26, 46, 0.65);
  --text-muted: rgba(26, 26, 46, 0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3 {
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { color: var(--text-secondary); }

.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark, #CC8F00));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.nav-logo span {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 3px;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo span {
  color: #1A1A2E;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

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

.navbar.scrolled .nav-links a {
  color: rgba(26, 26, 46, 0.65);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.navbar.scrolled .nav-cta {
  color: #1A1A2E !important;
}

.navbar.scrolled .mobile-toggle span {
  background: #1A1A2E;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), #FF9D00);
  color: #1A1A2E !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 180, 0, 0.35);
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: url('../images/presentation-dukri.jpg') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 18, 96, 0.82) 0%, rgba(0, 51, 160, 0.7) 50%, rgba(0, 85, 221, 0.65) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero, .hero h1, .hero p, .hero .hero-badge {
  color: #FFFFFF;
}

.hero p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hero .nav-logo span {
  color: #FFFFFF;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid rgba(255, 180, 0, 0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '✨';
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1A1A2E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 28px;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition);
}

.store-btn:hover {
  background: #2A2A4E;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-btn .store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn .store-text small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.store-btn .store-text strong {
  font-size: 1rem;
  font-weight: 700;
}

/* ── Hero Visual / Phone Mockup ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #fff;
  border-radius: 32px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.phone-logo {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--primary);
}

.phone-notif {
  background: #FF3D7F;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-profile {
  text-align: center;
  padding: 10px 0;
}

.phone-avatar {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold), #FF9D00);
  margin: 0 auto 14px;
  position: relative;
  overflow: hidden;
}

.phone-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  border-radius: 50% 50% 0 0;
}

.phone-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 2px;
}

.phone-location {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 12px;
}

.phone-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.phone-tags span {
  background: #f0f4ff;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.phone-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.phone-btn-pass,
.phone-btn-like {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.phone-btn-pass {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #999;
}

.phone-btn-like {
  background: linear-gradient(135deg, #FF3D7F, #FF6B9D);
  border: none;
  color: #fff;
}

/* ── Stats ── */
.stats {
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.95rem;
  font-weight: 600;
}

.stat-detail {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.1rem;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-icon.blue { background: rgba(0, 51, 160, 0.2); }
.feature-icon.gold { background: rgba(255, 180, 0, 0.15); }
.feature-icon.pink { background: rgba(255, 61, 127, 0.15); }
.feature-icon.green { background: rgba(27, 143, 90, 0.2); }
.feature-icon.purple { background: rgba(138, 43, 226, 0.15); }
.feature-icon.orange { background: rgba(255, 140, 0, 0.15); }

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
}

/* ── Why DUKRI ── */
.why {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 51, 160, 0.04), transparent);
}

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

.why-visual {
  display: flex;
  justify-content: center;
}

.why-logo {
  width: 300px;
  height: 300px;
  filter: drop-shadow(0 20px 60px rgba(0, 51, 160, 0.3));
  animation: float 6s ease-in-out infinite;
}

/* ── Why Phone Mockup ── */
.why-phone-mockup {
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 25px 50px rgba(0, 51, 160, 0.25));
}
.why-phone-frame {
  width: 280px;
  height: 560px;
  background: #1A1A2E;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  border: 3px solid #2a2a4a;
}
.why-phone-notch {
  width: 120px;
  height: 28px;
  background: #1A1A2E;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.why-phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.wp-logo {
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 2px;
}
.wp-header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wp-notif-badge {
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-icon { font-size: 0.9rem; }
.wp-card {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.wp-card-img {
  flex: 1;
  background: linear-gradient(135deg, var(--gold), #FF9D00, var(--pink));
  border-radius: 16px;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  overflow: hidden;
}
.wp-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  border-radius: 16px;
}
.wp-verified {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00C853;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
}
.wp-card-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wp-card-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}
.wp-card-loc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}
.wp-card-tags {
  display: flex;
  gap: 6px;
  padding: 8px 0 4px;
  flex-wrap: wrap;
}
.wp-card-tags span {
  background: #f0f4ff;
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
}
.wp-card-bio {
  font-size: 0.7rem;
  color: #666;
  padding: 2px 0 6px;
  line-height: 1.4;
}
.wp-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
}
.wp-btn-pass, .wp-btn-super, .wp-btn-like {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.wp-btn-pass {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #999;
}
.wp-btn-super {
  background: #fff;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 40px;
  height: 40px;
  font-size: 1rem;
  align-self: center;
}
.wp-btn-like {
  background: linear-gradient(135deg, var(--pink), #FF6B9D);
  border: none;
  color: #fff;
}
.wp-navbar {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
  font-size: 1.1rem;
}
.wp-navbar span { opacity: 0.4; }
.wp-nav-active { opacity: 1 !important; }

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

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 180, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-item h3 {
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
}

/* ── CTA Section ── */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  background-image: url('../images/cta-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

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

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 51, 160, 0.04), transparent);
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.12);
}

.faq-item[open] {
  border-color: rgba(255, 180, 0, 0.2);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Témoignages ── */
.testimonials {
  padding: 100px 0;
  background: #f8f9ff;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,51,160,0.1);
}

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

.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #1A1A2E;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #888;
}

/* ── Blog ── */
.blog {
  padding: 100px 0;
}

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

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
  height: 180px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
  position: relative;
}

.blog-tag {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-content time {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card-content h3 {
  margin: 8px 0 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.blog-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .phone-mockup { width: 220px; }
}

/* ── Footer ── */
.footer {
  background: #1A1A2E;
  color: #FFFFFF;
  padding: 60px 0 30px;
}

.footer, .footer h4, .footer .nav-logo span {
  color: #FFFFFF;
}

.footer p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-col a:hover {
  color: var(--gold) !important;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.4) !important;
}

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

.footer-brand {
  max-width: 320px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4) !important;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4) !important;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold) !important;
}

/* ── Responsive ── */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content { max-width: 100%; }
  .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-phone { width: 240px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; text-align: center; }
  .why-logo { width: 220px; height: 220px; }
  .why-phone-frame { width: 240px; height: 480px; }
  .why-phone-mockup { margin-bottom: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  .mobile-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cta-box { padding: 50px 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 260px; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
