/* FARAH site — saffron gold + deep night, Levantine warmth */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Inter:wght@400;500;600;700&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg: #0D0A06;
  --bg-warm: #14100A;
  --surface: #1A130C;
  --surface-alt: #241A11;
  --surface-warm: #2E2014;
  --border: #3A2A1B;
  --text: #F8EFD9;
  --text-dim: #B8A584;
  --text-faint: #6B5740;
  --accent: #E5A33D;       /* saffron */
  --accent-soft: #F0BC5E;
  --accent-dim: #B8801F;
  --accent-glow: rgba(229, 163, 61, 0.18);
  --sumac: #B23A2A;        /* sumac red */
  --sumac-glow: rgba(178, 58, 42, 0.15);
  --olive: #7A8848;
  --cream: #F8EFD9;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --arabic: 'Amiri', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, sans-serif;
  --max: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 80% 0%, rgba(229, 163, 61, 0.10), transparent 50%),
    radial-gradient(ellipse at 0% 90%, rgba(178, 58, 42, 0.06), transparent 50%);
  background-attachment: fixed;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover { opacity: 0.7; }

/* ========== Navigation ========== */
nav {
  padding: 28px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  max-width: var(--max);
  margin: 0 auto;
}

/* The signature wordmark: فرح / FARAH */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 2px;
}
.wordmark .arabic {
  font-family: var(--arabic);
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}
.wordmark .divider {
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.wordmark .latin {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--text);
}

.wordmark.large .arabic { font-size: 56px; }
.wordmark.large .divider { width: 64px; height: 2px; margin: 8px 0; }
.wordmark.large .latin { font-size: 18px; letter-spacing: 9px; }

.wordmark.huge .arabic { font-size: 110px; line-height: 0.9; }
.wordmark.huge .divider { width: 100px; height: 2px; margin: 16px 0; }
.wordmark.huge .latin { font-size: 26px; letter-spacing: 14px; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--accent); opacity: 1; }

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

/* ========== Hero ========== */
.hero {
  padding: 60px var(--gutter) 120px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px var(--gutter) 80px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(229, 163, 61, 0.3);
  border-radius: 999px;
  animation: fadeUp 0.8s ease-out backwards;
}

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

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

h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
}

h1 .arabic-flourish {
  display: block;
  font-family: var(--arabic);
  font-size: 0.55em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0;
}

.lede {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 40px;
  animation: fadeUp 1s ease-out 0.2s backwards;
}

h1 > span:nth-child(1) { animation: fadeUp 0.9s ease-out 0.05s backwards; }
h1 > span:nth-child(2) { animation: fadeUp 0.9s ease-out 0.15s backwards; }
h1 > span:nth-child(3) { animation: fadeUp 0.9s ease-out 0.25s backwards; }

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

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.35s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 8px 32px rgba(229, 163, 61, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(229, 163, 61, 0.55);
  opacity: 1;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--surface-alt); opacity: 1; }

/* Hero phone mockup */
.hero-mock {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1.2s ease-out 0.4s backwards;
}

@media (max-width: 900px) {
  .hero-mock { height: 480px; }
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(155deg, #2A2014 0%, #14100A 100%);
  border-radius: 40px;
  padding: 14px;
  border: 1px solid var(--border);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(229, 163, 61, 0.15),
    inset 0 0 0 1px rgba(229, 163, 61, 0.1);
  position: relative;
  transform: rotate(-4deg);
  transition: transform 0.5s ease;
}
.phone-frame:hover { transform: rotate(-2deg) translateY(-8px); }

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 28px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.phone-screen .notch {
  width: 80px;
  height: 6px;
  background: var(--bg-warm);
  border-radius: 3px;
  margin: 0 auto 24px;
}

.phone-screen .label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}

.phone-screen .title-1 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}
.phone-screen .title-2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 24px;
}

.phone-screen .cta-pill {
  background: var(--accent);
  color: var(--bg);
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  margin-top: auto;
  margin-bottom: 8px;
  box-shadow: 0 8px 24px rgba(229, 163, 61, 0.4);
}
.phone-screen .cta-sub {
  font-size: 9px;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 12px;
}

.phone-screen .recipe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
}
.phone-screen .recipe-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  color: var(--accent);
  margin-bottom: 4px;
}
.phone-screen .recipe-card .name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
}
.phone-screen .recipe-card .meta {
  font-size: 9px;
  color: var(--text-faint);
}

.phone-screen .badge-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.phone-screen .badge {
  font-size: 8px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--accent-glow);
  color: var(--accent);
}

/* Floating spice ornaments around phone */
.spice {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}
.spice-1 {
  top: 10%;
  right: 5%;
  width: 60px;
  animation: float 6s ease-in-out infinite;
}
.spice-2 {
  bottom: 15%;
  left: 5%;
  width: 50px;
  animation: float 7s ease-in-out infinite reverse;
}
.spice-3 {
  top: 50%;
  right: 0%;
  width: 40px;
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}

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

/* ========== Sections ========== */
section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--serif);
  font-style: italic;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 800px;
}

h2 .italic { font-style: italic; color: var(--accent); }

/* ========== How it works ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0.9;
}

.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step p { color: var(--text-dim); font-size: 15px; }

/* ========== Cuisines ========== */
.cuisines-section {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.cuisines-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--accent-glow), transparent 40%),
    radial-gradient(circle at 80% 70%, var(--sumac-glow), transparent 40%);
  pointer-events: none;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.cuisine-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: default;
}

.cuisine-tag:hover {
  border-color: var(--accent);
  background: var(--surface-alt);
  transform: translateY(-2px);
}

.cuisine-tag .small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ========== Languages strip ========== */
.languages-strip {
  background: var(--surface);
  padding: 60px var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.languages-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.languages-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.languages-list {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.lang-chip {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.lang-chip:hover { color: var(--accent); }
.lang-chip.arabic { font-family: var(--arabic); }

/* ========== Pricing ========== */
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin-top: 48px;
}

.pricing-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1100px;
  gap: 20px;
}

@media (max-width: 900px) {
  .pricing-row-3 { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 700px) {
  .pricing-row { grid-template-columns: 1fr; }
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
}

.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--surface-alt), var(--surface));
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(229, 163, 61, 0.2);
}

.price-card .badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 7px 14px;
  border-radius: 8px;
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-card .price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1;
}

.price-card .price-sub {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 28px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-dim);
}

.price-card li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ========== Footer ========== */
footer {
  background: var(--bg-warm);
  padding: 80px var(--gutter) 40px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: var(--text-dim); font-size: 14px; }
.footer-col a:hover { color: var(--accent); opacity: 1; }

.footer-tagline {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ========== Article (privacy / terms / support / about) ========== */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px var(--gutter) 100px;
  position: relative;
  z-index: 2;
}

.article .eyebrow { margin-bottom: 20px; }

.article h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 16px;
}

.article .meta {
  color: var(--text-faint);
  font-size: 14px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article h2 {
  font-size: 28px;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.article h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text);
}

.article p, .article li {
  color: var(--text-dim);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.article ul, .article ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.article strong { color: var(--text); font-weight: 600; }

.article .callout {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: 12px;
  margin: 32px 0;
}

.article .callout p { margin: 0; color: var(--text); }

.article .pullquote {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  padding: 32px 0;
  margin: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.article .pullquote .arabic-quote {
  display: block;
  font-family: var(--arabic);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
  font-style: normal;
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 48px 0;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.support-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.support-card .icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.support-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 8px;
}

.support-card p { color: var(--text-dim); font-size: 14px; margin-bottom: 16px; }

.support-card a {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item summary {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 24px;
  transition: transform 0.2s;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; color: var(--text-dim); }

/* About page specific */
.about-hero {
  text-align: center;
  margin-bottom: 64px;
}
.about-hero .ornament {
  font-family: var(--arabic);
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.partner-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sumac);
  border-radius: 20px;
  padding: 40px;
  margin: 48px 0;
}
.partner-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 8px;
}
.partner-card .partner-meta {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.partner-card a.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 600;
}

/* ========== Footer signature (Arabic) ========== */
.footer-signature {
  font-family: var(--arabic);
  font-size: 16px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0;
}

/* ========== Pricing variants ========== */
.pricing-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1100px;
  gap: 20px;
}
.pricing-row-2 {
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
}
@media (max-width: 900px) {
  .pricing-row-3, .pricing-row-2 { grid-template-columns: 1fr; max-width: 600px; }
}

/* ========== Get the app section ========== */
.download-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-glow), transparent 65%);
  pointer-events: none;
}
.download-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}
.download-wrap .section-label {
  display: block;
  margin-bottom: 16px;
}
.download-wrap h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}
.download-row {
  text-align: left;
  margin-top: 56px !important;
}

/* The download cards inherit .price-card styling, but need link styling reset
   and an icon area on top instead of a "$4.99" price */
.download-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.download-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(229,163,61,0.15), 0 0 60px rgba(229,163,61,0.1);
  opacity: 1;
}

.download-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.download-card:hover .download-card-icon {
  border-color: var(--accent);
  transform: scale(1.05);
}

.download-card-cta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.3px;
  transition: transform 0.3s;
}
.download-card:hover .download-card-cta {
  transform: translateX(4px);
}
