/* ==========================================================
   D-Tailor — Website Styles
   Palette : bordeaux #8E0F14 · or #C9963F · crème #F7F4EF
   ========================================================== */

:root {
  --primary: #8E0F14;
  --primary-dark: #6E0B0F;
  --primary-light: #B11C24;
  --gold: #C9963F;
  --gold-light: #E8B96A;
  --cream: #F7F4EF;
  --cream-dark: #EFEAE0;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #666;
  --text-light: #999;
  --border: #E8E3DA;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow: 0 6px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(142,15,20,.15);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ========= Reset ========= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; }

/* ========= Layout ========= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt { background: var(--surface); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
}

/* ========= Buttons ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-lg  { padding: 16px 32px; font-size: 16px; }
.btn-xl  { padding: 20px 40px; font-size: 17px; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(142,15,20,.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(142,15,20,.4);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(201,150,63,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201,150,63,.5);
}
.btn-ghost {
  color: var(--primary);
  border: 1.5px solid rgba(142,15,20,.2);
  background: rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(142,15,20,.06);
  border-color: var(--primary);
}

/* ========= Navbar ========= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .3s ease;
  background: rgba(247,244,239,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(142,15,20,.25);
  transition: transform .25s;
}
.nav-logo:hover img { transform: translateY(-1px); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--primary); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .25s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all .25s;
}
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========= Hero ========= */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #fdfbf7 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(142,15,20,.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(201,150,63,.1) 0%, transparent 40%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(142,15,20,.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #2E7D32;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.1;
  letter-spacing: -.5px;
  color: var(--text);
  margin-bottom: 20px;
}
.highlight {
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(201,150,63,.3);
  z-index: -1;
  border-radius: 6px;
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: .3px;
}

/* ========= Phone Mockup (Hero) ========= */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(142,15,20,.25) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.phone-mockup {
  position: relative;
  width: 290px;
  height: 580px;
  background: #1A1A1A;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #2a2a2a,
    0 30px 80px rgba(142,15,20,.3),
    0 10px 30px rgba(0,0,0,.3);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #1A1A1A;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: #F8F9FA;
  height: 100%;
  border-radius: 32px;
  padding: 40px 18px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mockup content */
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-logo img { height: 22px; border-radius: 5px; }
.mock-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(142,15,20,.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 12px;
  border: 2px solid rgba(142,15,20,.3);
}
.mock-stat-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(142,15,20,.3);
}
.mock-stat-label { font-size: 12px; opacity: .85; }
.mock-stat-value { font-size: 32px; font-weight: 700; margin: 4px 0 12px; }
.mock-stat-btns {
  display: flex;
  gap: 6px;
}
.mock-stat-btns span {
  background: #fff;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
}
.mock-search {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  color: #9aa0a6;
}
.mock-list-title { font-size: 12px; font-weight: 700; margin-top: 4px; color: #1F2937; }
.mock-client {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 8px 10px;
}
.mock-client-avatar {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(142,15,20,.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.mock-client-name { font-size: 12px; font-weight: 600; color: #1F2937; }
.mock-client-sub  { font-size: 9px; color: #6B7280; }

/* ========= Features ========= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(142,15,20,.08), rgba(201,150,63,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  color: var(--text);
}
.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ========= Preview / Aperçu ========= */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.preview-phone {
  position: relative;
  margin: 0 auto;
  width: 240px;
  transition: transform .35s;
}
.preview-phone:hover { transform: translateY(-8px) scale(1.02); }

.preview-screen {
  position: relative;
  width: 100%;
  height: 480px;
  background: #F8F9FA;
  border-radius: 32px;
  padding: 34px 14px 14px;
  border: 12px solid #1A1A1A;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.phone-notch-sm {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #1A1A1A;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.preview-label {
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
  letter-spacing: .3px;
}

/* Preview : Accueil */
.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.ps-hello { font-size: 11px; color: #6B7280; }
.ps-atelier { font-size: 14px; font-weight: 700; color: #1F2937; }
.ps-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(142,15,20,.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
  border: 2px solid rgba(142,15,20,.3);
}
.ps-hero-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  padding: 14px;
  color: #fff;
  margin-bottom: 10px;
}
.ps-card-label { font-size: 10px; opacity: .8; }
.ps-card-value { font-size: 24px; font-weight: 700; margin: 2px 0 10px; }
.ps-card-chips { display: flex; gap: 4px; }
.ps-card-chips span {
  background: #fff;
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
}
.ps-search {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 10px;
  color: #9aa0a6;
  margin-bottom: 10px;
}
.ps-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 8px;
}
.ps-client {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 6px 8px;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #1F2937;
}
.ps-av {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(142,15,20,.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 10px;
  flex-shrink: 0;
}

/* Preview : Détail */
.pd-header {
  display: flex; gap: 10px;
  align-items: center;
  padding: 8px 0 14px;
  border-bottom: 1px solid #eee;
  margin-bottom: 14px;
}
.pd-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(142,15,20,.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  border: 1px solid rgba(142,15,20,.2);
}
.pd-name  { font-size: 13px; font-weight: 700; color: #1F2937; }
.pd-phone { font-size: 10px; color: #6B7280; }
.pd-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pd-section-title { font-size: 12px; font-weight: 700; color: #1F2937; }
.pd-chip {
  background: rgba(142,15,20,.08);
  color: var(--primary);
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pd-cell {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px 10px;
}
.pd-lbl { font-size: 9px; color: #6B7280; margin-bottom: 3px; }
.pd-val {
  font-size: 15px;
  font-weight: 700;
  color: #1F2937;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.pd-val::after {
  content: 'cm';
  font-size: 8px;
  color: var(--primary);
  font-weight: 600;
}

/* Preview : Ajout */
.preview-add { padding-top: 18px; }
.pa-top {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
  margin-top: 10px;
}
.pa-label {
  font-size: 11px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 8px;
  padding-left: 8px;
  border-left: 3px solid var(--primary);
}
.pa-field, .pa-field-sm {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 10px;
  color: #9aa0a6;
  margin-bottom: 6px;
}
.pa-field-sm { flex: 1; margin-bottom: 0; }
.pa-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
.pa-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  margin-top: 10px;
}

/* ========= Download Section ========= */
.download-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(201,150,63,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(142,15,20,.1) 0%, transparent 50%),
    var(--cream);
}
.download-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(142,15,20,.35);
}
.download-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,150,63,.2) 0%, transparent 60%);
  pointer-events: none;
}
.download-content { position: relative; z-index: 1; }
.download-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  color: #fff;
  margin-bottom: 16px;
}
.download-sub {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.download-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.download-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
}
.download-note {
  background: rgba(0,0,0,.2);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 10px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 1.6;
}
.download-note strong { color: var(--gold-light); }
.download-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.download-visual img {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  border: 2px solid rgba(201,150,63,.4);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
  animation: float 5s ease-in-out infinite;
}
.download-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,150,63,.4) 0%, transparent 70%);
  filter: blur(40px);
}

/* ========= About ========= */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--cream-dark) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  border: 1px solid var(--border);
}
.about-quote {
  position: relative;
  padding-left: 24px;
}
.quote-mark {
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--primary);
  opacity: .15;
  line-height: 1;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.about-content p strong { color: var(--primary); }
.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.about-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
}
.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ========= Contact ========= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent) 20%, transparent);
}
.contact-card > * { position: relative; }
.contact-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all .3s;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-card:hover .contact-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--text);
}
.contact-value {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}
.contact-action {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: transform .25s;
}
.contact-card:hover .contact-action { transform: translateX(4px); }

/* ========= Footer ========= */
.footer {
  background: #1A0708;
  color: #d0c9b8;
  padding: 64px 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 52px;
  width: auto;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.footer-brand p {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: #bbae94;
  margin: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-links h4 {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links a,
.footer-links span {
  display: block;
  color: #d0c9b8;
  font-size: 14px;
  padding: 4px 0;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-muted { color: #6b6355 !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #857c6a;
  flex-wrap: wrap;
  gap: 10px;
}

/* ========= Reveal animation ========= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= Responsive ========= */
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-content .section-title { text-align: center; }
  .download-card { grid-template-columns: 1fr; padding: 48px 32px; text-align: center; }
  .download-cta { align-items: center; }
  .download-meta { justify-content: center; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 72px;
    right: -100%;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 8px;
    box-shadow: -10px 0 40px rgba(0,0,0,.1);
    transition: right .35s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: none !important;
  }
  .nav-burger { display: flex; }

  .hero-title { font-size: 38px; }
  .hero-stats { gap: 24px; justify-content: space-around; width: 100%; }
  .stat-value { font-size: 28px; }
  .section-title { font-size: 28px; }

  .phone-mockup { width: 260px; height: 520px; }

  .about-list { grid-template-columns: 1fr; }
  .about-visual { padding: 32px 24px; }
  .about-quote p { font-size: 18px; }

  .download-card { padding: 40px 24px; }
  .download-title { font-size: 28px; }

  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .btn-xl { padding: 16px 28px; font-size: 15px; }
  .footer-links { grid-template-columns: 1fr; }
}
