/* ══════════════════════════════════════════════════════
   CINYSTORE — Global Stylesheet
   ══════════════════════════════════════════════════════ */

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

:root {
  --bg:       #09090f;
  --bg-2:     #0f0f1a;
  --bg-3:     #13131f;
  --surface:  #181828;
  --border:   rgba(255,255,255,0.07);
  --text:     #e8e8f0;
  --text-muted: #7a7a99;
  --purple:   #7c5cfc;
  --purple-light: #a78bfa;
  --gold:     #f5c842;
  --gold-light:#fde68a;
  --teal:     #2dd4bf;
  --teal-light:#99f6e4;
  --rose:     #fb7185;
  --rose-light:#fda4af;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

/* ── Scroll Progress ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--rose));
  z-index: 9999; transition: width 0.1s linear;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ── Buttons ── */
.ciny-btn{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}
.ciny-btn-primary { background: linear-gradient(135deg, var(--purple), #5b3fe0); color: #fff; box-shadow: 0 0 24px rgba(124,92,252,0.3);}
.ciny-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(124,92,252,0.5);text-decoration: none;color: #FFF;}
.ciny-btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--border); }
.ciny-btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); text-decoration: none;color: #FFF;}
.ciny-btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.ciny-btn-outline-gold:hover {text-decoration: none;color: #FFF; background: rgba(245,200,66,0.1); transform: translateY(-2px); }
.ciny-btn-outline-teal { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.ciny-btn-outline-teal:hover {text-decoration: none;color: #FFF; background: rgba(45,212,191,0.1); transform: translateY(-2px); }
.ciny-btn-outline-rose { background: transparent; color: var(--rose); border: 1.5px solid var(--rose); }
.ciny-btn-outline-rose:hover {text-decoration: none;color: #FFF; background: rgba(251,113,133,0.1); transform: translateY(-2px); }
.ciny-btn-secondary { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid var(--border); }
.ciny-btn-secondary:hover {text-decoration: none;color: #FFF; background: rgba(255,255,255,0.12); }

/* ── Section Shared ── */
section { padding: 100px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 16px;
}
.section-title {     margin-bottom: 20px;
    font-size: 3rem;
    color: #FFF;
    font-weight: 700;
    letter-spacing: 0.3px;}
.section-intro { color: var(--text-muted); max-width: 760px; font-size: 1.1rem; line-height: 1.8; margin-bottom: 60px; }
.section-intro strong { color: var(--text); }

/* ── Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh; padding: 120px 100px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  width: 100%; margin: 0 auto; position: relative;
  background-color: #000;
}
.hero-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18;
  animation: float 10s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--purple); top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: var(--rose); bottom: 0; right: 0; animation-delay: 4s; }
.orb-3 { width: 300px; height: 300px; background: var(--teal); top: 50%; left: 50%; animation-delay: 7s; }

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-30px) scale(1.05); }
}

.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(124,92,252,0.3); background: rgba(124,92,252,0.1);
  color: var(--purple-light); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-content h1 {margin-bottom: 20px;font-size: 4rem;color: #FFF;font-weight: 800;}
.hero-sub { color: var(--text-muted); font-size: 1.15rem; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual — Film Card */
.film-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.film-card-header {
  padding: 12px 16px; display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.03);
}
.film-card-title { margin-left: 8px; font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-display); font-weight: 600; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.dot.white { background: rgba(255,255,255,0.3); }
.film-card-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.metric-row { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: var(--text-muted); }
.metric-row span:first-child { width: 100px; }
.bar { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--purple); border-radius: 3px; transition: width 1.5s ease; }
.bar-fill.accent { background: linear-gradient(90deg, var(--purple), var(--rose)); }
.film-card-footer { padding: 12px 16px; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--text-muted); text-align: center; }

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
#about { background: var(--bg-2); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: var(--transition);
}
.pillar:hover { border-color: rgba(124,92,252,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.pillar-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(124,92,252,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pillar-icon i { font-size: 1.2rem; color: var(--purple-light); }
.pillar h3 { font-size: 1.1rem; margin-bottom: 10px;     color: #FFF;
    font-weight: 600;}
.pillar p { color: var(--text-muted); font-size: 0.92rem; }

/* ══════════════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════════════ */
#products { background: var(--bg); }
#products .section-title { margin-bottom: 70px; }

.product-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 100px;
}
.product-block:last-child { margin-bottom: 0; }
.product-block.reverse { direction: rtl; }
.product-block.reverse > * { direction: ltr; }

.product-tag {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.product-tag.gold { background: rgba(245,200,66,0.12); color: var(--gold); }
.product-tag.teal { background: rgba(45,212,191,0.12); color: var(--teal); }
.product-tag.rose { background: rgba(251,113,133,0.12); color: var(--rose); }

.product-text h3 { margin-bottom: 8px; color: #FFF;
    font-weight: 700;
    font-size: 1.8rem;}
.product-tagline { color: var(--purple-light); font-size: 1.05rem; font-weight: 500; margin-bottom: 16px; font-style: italic; }
.product-text p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.97rem; }
.product-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.product-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.product-features i { font-size: 0.8rem; }
#keepitshort .product-features i { color: var(--gold); }
#daul .product-features i { color: var(--teal); }
#cinystore-platform .product-features i { color: var(--rose); }

/* ── Keepitshort Mock ── */
.product-visual { border-radius: var(--radius); overflow: hidden; }
.mock-screen {
  background: #0d0d18; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.mock-header {
  padding: 12px 16px; display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border); font-size: 0.78rem; color: var(--text-muted);
}
.gold-header { background: rgba(245,200,66,0.05); }
.mock-body { padding: 24px; display: flex; gap: 24px; align-items: center; }

.grade-ring { position: relative; width: 100px; height: 100px; flex-shrink: 0; }
.grade-ring svg { width: 100px; height: 100px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,0.07); stroke-width: 8; }
.ring-fill { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.5s ease; }
.gold-ring { stroke: var(--gold); }
.grade-score {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%);
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold);
}
.grade-label {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.grade-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.grade-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--text-muted); }
.grade-item span { width: 90px; flex-shrink: 0; }
.gbar { flex: 1; height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.gbar-fill { height: 100%; border-radius: 3px; width: 0; transition: width 1.5s ease; }
.gold-fill { background: var(--gold); }
.teal-fill { background: var(--teal); }
.rose-fill { background: var(--rose); }

/* ── Daul Canvas Mock ── */
.daul-canvas {
  background: #0b1520; border: 1px solid rgba(45,212,191,0.15);
  border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.canvas-header {
  padding: 12px 16px; display: flex; align-items: center; gap: 6px;
  background: rgba(45,212,191,0.05); border-bottom: 1px solid rgba(45,212,191,0.1);
  font-size: 0.78rem; color: var(--teal);
}
.canvas-body { padding: 20px; }
.prompt-bar {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: rgba(45,212,191,0.07); border: 1px solid rgba(45,212,191,0.15);
  border-radius: 8px; font-size: 0.8rem; color: var(--teal-light); margin-bottom: 16px;
}
.canvas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.canvas-cell { height: 90px; border-radius: 8px; }
.c1 { background: linear-gradient(135deg, #1a2a3a, #0d1b2a); border: 1px solid rgba(45,212,191,0.1); }
.c2 { background: linear-gradient(135deg, #2a1a2a, #1a0d1a); border: 1px solid rgba(45,212,191,0.1); }
.c3 { background: linear-gradient(135deg, #1a2a1a, #0d1a0d); border: 1px solid rgba(45,212,191,0.1); }
.c4 { background: linear-gradient(135deg, #2a2a1a, #1a1a0d); border: 1px solid rgba(45,212,191,0.1); position: relative; overflow: hidden; }
.c4::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(45,212,191,0.2));
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer { 0%,100%{opacity:0.2} 50%{opacity:0.8} }
.generating-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--teal); padding: 4px 0;
}
.gen-dot {
  width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

/* ── Analytics Mock ── */
.analytics-card {
  background: #120b18; border: 1px solid rgba(251,113,133,0.15);
  border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.analytics-header {
  padding: 12px 16px; display: flex; align-items: center; gap: 6px;
  background: rgba(251,113,133,0.05); border-bottom: 1px solid rgba(251,113,133,0.1);
  font-size: 0.78rem; color: var(--rose);
}
.analytics-body { padding: 20px; }
.analytics-metrics { display: flex; gap: 20px; margin-bottom: 16px; }
.a-metric { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 14px; text-align: center; }
.a-num { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }
.rose-num { color: var(--rose); }
.a-label { font-size: 0.72rem; color: var(--text-muted); }
.world-map-placeholder {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px; text-align: center; position: relative; overflow: hidden; margin-bottom: 14px;
}
.world-map-placeholder i { font-size: 2.5rem; color: rgba(251,113,133,0.2); margin-bottom: 6px; display: block; }
.world-map-placeholder p { font-size: 0.75rem; color: var(--text-muted); }
.map-dots { position: absolute; inset: 0; }
.mdot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); opacity: 0.7;
  animation: mdotPulse 2.5s ease-in-out infinite;
}
.mdot:nth-child(2) { animation-delay: 0.5s; }
.mdot:nth-child(3) { animation-delay: 1s; }
.mdot:nth-child(4) { animation-delay: 1.5s; }
.mdot:nth-child(5) { animation-delay: 2s; }
@keyframes mdotPulse { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.8);opacity:0.3} }
.dist-row { display: flex; gap: 8px; flex-wrap: wrap; }
.dist-badge {
  padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600;
  background: rgba(251,113,133,0.1); border: 1px solid rgba(251,113,133,0.2); color: var(--rose-light);
}

/* ══════════════════════════════════════════════════════
   PAM STRIP
   ══════════════════════════════════════════════════════ */
#pam-strip {
  background: linear-gradient(135deg, rgba(124,92,252,0.08), rgba(251,113,133,0.08));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0;background-color: #000;
}
.pam-content { text-align: center; max-width: 680px; margin: 0 auto; }
.pam-content h2 { margin-bottom: 16px;     color: #FFF;
    font-weight: 700;
    font-size: 4rem;}
.pam-content p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
#contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.contact-info p { color: var(--text-muted); font-size: 1rem; margin-bottom: 28px; line-height: 1.8; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-links a {
  display: flex; align-items: center; gap: 10px; color: var(--text-muted);
  text-decoration: none; font-size: 0.9rem; transition: color var(--transition);
}
.contact-links a:hover { color: var(--purple-light); }
.contact-links i { color: var(--purple-light); width: 18px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-family: var(--font-body); font-size: 0.92rem;
  padding: 14px 16px; width: 100%; transition: border-color var(--transition); outline: none;
}
.contact-form select { appearance: none; cursor: pointer; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--purple); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-success { color: var(--teal); font-size: 0.9rem; padding: 12px 0; }
.hidden { display: none; }


/* ══════════════════════════════════════════════════════
   PLATFORM PAGE STYLES (cinystore-platform.html)
   ══════════════════════════════════════════════════════ */
.platform-hero {
  padding: 140px 24px 80px; text-align: center; position: relative;
}
.platform-hero h1 { margin-bottom: 20px; }
.platform-hero .hero-sub { margin: 0 auto 40px; }
.platform-hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(251,113,133,0.3); background: rgba(251,113,133,0.08);
  color: var(--rose-light); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
}
.pam-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.pam-badge {
  padding: 10px 24px; border-radius: 50px; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  border: 2px solid;
}
.pam-badge.p { color: var(--purple-light); border-color: var(--purple); background: rgba(124,92,252,0.1); }
.pam-badge.a { color: var(--teal); border-color: var(--teal); background: rgba(45,212,191,0.1); }
.pam-badge.m { color: var(--gold); border-color: var(--gold); background: rgba(245,200,66,0.1); }

.story-section { background: var(--bg-2); padding: 80px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text h2 { margin-bottom: 20px; }
.story-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.8; }
.story-visual { display: flex; flex-direction: column; gap: 16px; }
.era-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; transition: var(--transition);
}
.era-card:hover { border-color: rgba(124,92,252,0.3); }
.era-card h4 { font-size: 0.9rem; margin-bottom: 6px; }
.era-card p { font-size: 0.82rem; color: var(--text-muted); }

.problem-section { padding: 80px 0; }
.problem-section h2 { text-align: center; margin-bottom: 14px; }
.problem-section .sub { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 48px; font-size: 0.97rem; }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: var(--transition);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.problem-icon { font-size: 1.6rem; margin-bottom: 14px; }
.problem-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.problem-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

.solution-section { background: var(--bg-2); padding: 80px 0; }
.solution-section h2 { text-align: center; margin-bottom: 14px; }
.solution-section .sub { text-align: center; color: var(--text-muted); max-width: 620px; margin: 0 auto 56px; }
.pam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pam-card {
  border-radius: var(--radius); padding: 32px; border: 1px solid;
}
.pam-card.promote { background: rgba(124,92,252,0.05); border-color: rgba(124,92,252,0.2); }
.pam-card.analyse { background: rgba(45,212,191,0.05); border-color: rgba(45,212,191,0.2); }
.pam-card.monetize { background: rgba(245,200,66,0.05); border-color: rgba(245,200,66,0.2); }
.pam-letter { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; margin-bottom: 8px; }
.promote .pam-letter { color: var(--purple-light); }
.analyse .pam-letter { color: var(--teal); }
.monetize .pam-letter { color: var(--gold); }
.pam-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.pam-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pam-card ul li { font-size: 0.88rem; color: var(--text-muted); display: flex; gap: 8px; align-items: flex-start; }
.pam-card ul li::before { content: '→'; opacity: 0.5; flex-shrink: 0; margin-top: 1px; }
.promote li::before { color: var(--purple-light); }
.analyse li::before { color: var(--teal); }
.monetize li::before { color: var(--gold); }

.features-section { padding: 80px 0; }
.features-section h2 { text-align: center; margin-bottom: 14px; }
.features-section .sub { text-align: center; color: var(--text-muted); max-width: 580px; margin: 0 auto 56px; }
.features-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 22px; border-radius: 50px; font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  border: 1px solid var(--border); background: transparent; color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--surface); color: #fff; border-color: rgba(255,255,255,0.2); }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: var(--transition);
}
.feature-card:hover { border-color: rgba(124,92,252,0.3); transform: translateY(-3px); }
.feature-card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-card-icon.purple { background: rgba(124,92,252,0.15); } .feature-card-icon.purple i { color: var(--purple-light); }
.feature-card-icon.teal { background: rgba(45,212,191,0.12); } .feature-card-icon.teal i { color: var(--teal); }
.feature-card-icon.gold { background: rgba(245,200,66,0.12); } .feature-card-icon.gold i { color: var(--gold); }
.feature-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

.platform-cta {
  background: linear-gradient(135deg, rgba(124,92,252,0.1), rgba(251,113,133,0.1));
  border-top: 1px solid var(--border); padding: 80px 0; text-align: center;
}
.platform-cta h2 { margin-bottom: 14px; }
.platform-cta p { color: var(--text-muted); max-width: 520px; margin: 0 auto 36px; }
.platform-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual {width: 100%;}
  .product-block { grid-template-columns: 1fr; }
  .product-block.reverse { direction: ltr; }
  .pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .pam-grid { grid-template-columns: 1fr; }
  .tab-content.active { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 24px; margin-left: 0; }
}

@media (max-width: 640px) {
  #hero {padding: 80px 10px;}
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(9,9,15,0.97); padding: 20px 24px; gap: 16px; }
  .tab-content.active { grid-template-columns: 1fr; }
  .analytics-metrics { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-content h1, .section-title, .pam-content h2{font-size: 2rem;}
}

