/* ============================================================
   mydigitalresume.in — Design System
   Palette: Navy #0A0F2E | Gold #F5C518 | White #FFFFFF | Slate #E8EDF5
   Type: Playfair Display (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:      #0A0F2E;
  --navy-mid:  #141B45;
  --navy-lite: #1E2A60;
  --gold:      #F5C518;
  --gold-dark: #D4A800;
  --white:     #FFFFFF;
  --slate:     #E8EDF5;
  --slate-mid: #C8D3E8;
  --text-muted:#8A94B2;
  --success:   #22C55E;
  --radius:    12px;
  --radius-lg: 24px;
  --shadow:    0 8px 40px rgba(10,15,46,0.18);
  --shadow-lg: 0 20px 80px rgba(10,15,46,0.28);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.18; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1.05rem; color: #3A4260; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }

.gold { color: var(--gold); }
.white { color: var(--white); }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 700; }

/* ── Containers ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition); text-decoration: none;
  letter-spacing: 0.02em; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.12);
  opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 24px rgba(245,197,24,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(245,197,24,0.55); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-lite); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── Section Labels ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(245,197,24,0.12); padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(245,197,24,0.25); margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; display: inline-block;
}

/* ── Tags ── */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  background: rgba(10,15,46,0.08); color: var(--navy);
}
.tag-gold { background: rgba(245,197,24,0.15); color: var(--gold-dark); }

/* ======================================================
   HEADER / NAV
   ====================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(10,15,46,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(10,15,46,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: var(--transition); transform-origin: center;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: var(--transition); border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy); padding: 100px 32px 40px;
  flex-direction: column; gap: 0;
  transform: translateX(100%); transition: var(--transition);
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav a {
  display: block; color: var(--white); font-size: 1.5rem;
  font-family: 'Playfair Display', serif; font-weight: 700;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:hover { color: var(--gold); }

/* ======================================================
   HERO
   ====================================================== */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; position: relative;
  overflow: hidden; padding: 120px 0 80px;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,197,24,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,42,96,0.8) 0%, transparent 60%),
    linear-gradient(135deg, #0A0F2E 0%, #141B45 50%, #0D1235 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-text { animation: fadeInUp 0.9s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,0.15); border: 1px solid rgba(245,197,24,0.3);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-badge span { color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold); display: block; }
.hero-sub {
  color: rgba(255,255,255,0.7); font-size: 1.15rem;
  margin-bottom: 36px; max-width: 520px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex; gap: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* Resume mockup */
.hero-visual { animation: fadeInRight 1s ease both 0.2s; display: flex; justify-content: center; align-items: center; }
.resume-mockup-wrap {
  position: relative; width: 360px; height: 480px;
  animation: float 5s ease-in-out infinite;
}
.resume-mockup {
  width: 100%; height: 100%;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden; position: relative;
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
}
.resume-mockup:hover { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }
.mockup-header { background: var(--navy); padding: 24px; color: white; }
.mockup-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900;
  color: var(--navy); margin-bottom: 12px;
}
.mockup-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.mockup-role { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
.mockup-body { padding: 20px; }
.mockup-section { margin-bottom: 16px; }
.mockup-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.mockup-bar { height: 6px; background: var(--slate); border-radius: 3px; margin-bottom: 6px; overflow: hidden; }
.mockup-bar-fill { height: 100%; background: var(--navy); border-radius: 3px; animation: barGrow 2s ease 1s both; }
.mockup-line { height: 8px; background: var(--slate); border-radius: 4px; margin-bottom: 6px; }
.mockup-line:last-child { width: 60%; }
.mockup-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.mockup-badge {
  background: rgba(10,15,46,0.08); padding: 3px 9px;
  border-radius: 50px; font-size: 0.6rem; font-weight: 600; color: var(--navy);
}
/* Floating accent elements */
.hero-float-1,.hero-float-2,.hero-float-3 {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.hero-float-1 { width: 300px; height: 300px; background: rgba(245,197,24,0.12); top: -80px; right: -60px; animation: floatBlob 8s ease-in-out infinite; }
.hero-float-2 { width: 200px; height: 200px; background: rgba(30,42,96,0.6); bottom: 0; left: -40px; animation: floatBlob 10s ease-in-out infinite 2s; }
.hero-float-3 { width: 150px; height: 150px; background: rgba(245,197,24,0.08); top: 50%; right: -20px; animation: floatBlob 7s ease-in-out infinite 1s; }

/* ======================================================
   TRUST BAR
   ====================================================== */
.trust-bar {
  background: var(--gold); padding: 18px 0;
  overflow: hidden;
}
.trust-bar-track {
  display: flex; gap: 60px; align-items: center;
  animation: marquee 25s linear infinite; white-space: nowrap; width: max-content;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 700; color: var(--navy);
  letter-spacing: 0.06em; text-transform: uppercase; flex-shrink: 0;
}
.trust-bar-item::before { content: '✦'; font-size: 0.6rem; }

/* ======================================================
   SERVICES
   ====================================================== */
.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.service-card {
  background: var(--white); border: 1px solid var(--slate-mid);
  border-radius: var(--radius-lg); padding: 40px 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold); transform: scaleX(0); transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(10,15,46,0.06); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.92rem; color: #5A6480; line-height: 1.7; margin-bottom: 20px; }
.service-price {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.service-price span { font-size: 0.85rem; font-weight: 400; font-family: 'Inter', sans-serif; color: var(--text-muted); }
.service-features { list-style: none; margin: 16px 0 24px; }
.service-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: #4A5470; padding: 5px 0;
}
.service-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.service-card.featured {
  background: var(--navy); border-color: transparent;
}
.service-card.featured h3, .service-card.featured p, .service-card.featured .service-price { color: var(--white); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.75); }
.service-card.featured .service-features li::before { color: var(--gold); }
.service-card.featured .service-icon { background: rgba(245,197,24,0.15); }
.service-card.featured .tag { background: rgba(245,197,24,0.2); color: var(--gold); }
.service-card.featured::before { transform: scaleX(1); }

/* ======================================================
   HOW IT WORKS
   ====================================================== */
.how-it-works { padding: 100px 0; background: var(--slate); }
.how-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 24px; padding: 28px 0; position: relative;
}
.how-step:not(:last-child)::after {
  content: ''; position: absolute; left: 20px; top: 68px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), transparent);
}
.step-num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy);
  color: var(--gold); font-weight: 800; font-size: 0.9rem; font-family: 'Inter', sans-serif;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 3px solid var(--gold); transition: var(--transition);
}
.how-step:hover .step-num { background: var(--gold); color: var(--navy); }
.step-content h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step-content p { font-size: 0.9rem; color: #5A6480; line-height: 1.6; }
.how-visual {
  background: var(--navy); border-radius: var(--radius-lg); padding: 48px;
  position: relative; overflow: hidden;
}
.how-visual::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(245,197,24,0.08); top: -80px; right: -80px; filter: blur(40px);
}
.sample-profile-card { position: relative; z-index: 2; }
.spc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.spc-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.2rem; color: var(--navy); flex-shrink: 0; }
.spc-name { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.spc-role { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-top: 2px; }
.spc-url { display: flex; align-items: center; gap: 8px; background: rgba(245,197,24,0.12); border: 1px solid rgba(245,197,24,0.25); border-radius: 8px; padding: 10px 14px; margin-bottom: 20px; }
.spc-url span { color: var(--gold); font-size: 0.8rem; font-family: 'Inter', monospace; }
.spc-skills { display: flex; flex-direction: column; gap: 10px; }
.spc-skill-label { display: flex; justify-content: space-between; }
.spc-skill-label span { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.spc-skill-bar { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.spc-skill-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width 1.5s ease; }

/* ======================================================
   SAMPLES / PORTFOLIO
   ====================================================== */
.samples { padding: 100px 0; background: var(--white); }
.samples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.sample-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--slate-mid); transition: var(--transition);
  background: var(--white);
}
.sample-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.sample-thumb {
  height: 220px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sample-thumb-inner {
  width: 80%; height: 85%; background: var(--white);
  border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  padding: 16px; transform: translateY(6px); transition: var(--transition);
}
.sample-card:hover .sample-thumb-inner { transform: translateY(0); }
.sth-header { background: var(--navy); height: 28px; border-radius: 6px 6px 0 0; margin: -16px -16px 12px; display: flex; align-items: center; padding: 0 10px; gap: 5px; }
.sth-dot { width: 8px; height: 8px; border-radius: 50%; }
.sth-dot:nth-child(1) { background: #FF5F56; }
.sth-dot:nth-child(2) { background: #FFBD2E; }
.sth-dot:nth-child(3) { background: #27C93F; }
.sth-body { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.sth-name-bar { height: 10px; background: var(--navy); border-radius: 5px; width: 60%; }
.sth-sub-bar { height: 6px; background: var(--slate-mid); border-radius: 3px; width: 40%; }
.sth-line { height: 5px; background: var(--slate); border-radius: 3px; }
.sth-line.short { width: 50%; }
.sth-skills { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px; }
.sth-skill { height: 14px; border-radius: 7px; background: rgba(10,15,46,0.1); }
.sample-info { padding: 20px 24px; }
.sample-info h4 { margin-bottom: 4px; font-size: 1rem; }
.sample-info p { font-size: 0.85rem; color: var(--text-muted); }
.sample-info .sample-url { font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; margin-top: 8px; display: block; }
.overlay-link {
  position: absolute; inset: 0; background: rgba(10,15,46,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.sample-card:hover .overlay-link { opacity: 1; }

/* ======================================================
   WHY CHOOSE US
   ====================================================== */
.why-us { padding: 100px 0; background: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.why-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; transition: var(--transition);
}
.why-card:hover { background: rgba(245,197,24,0.08); border-color: rgba(245,197,24,0.25); transform: translateY(-4px); }
.why-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.why-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; margin-top: 60px; }
.stat-box { background: var(--navy); padding: 36px 24px; text-align: center; }
.stat-box-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-box-label { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-top: 8px; letter-spacing: 0.06em; }

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials { padding: 100px 0; background: var(--slate); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: 0 4px 24px rgba(10,15,46,0.06);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 0.95rem; color: #3A4260; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.92rem; }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ======================================================
   PRICING
   ====================================================== */
.pricing { padding: 100px 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; align-items: start; }
.price-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--slate-mid); transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.price-card.best {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(245,197,24,0.15);
  transform: scale(1.03);
}
.price-card.best:hover { transform: scale(1.03) translateY(-4px); }
.price-header { padding: 32px 36px 24px; background: var(--navy); }
.price-card.best .price-header { background: var(--gold); }
.price-card.best .price-header * { color: var(--navy) !important; }
.price-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.price-card.best .price-label { color: var(--navy); }
.price-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.price-card.best .price-currency { color: var(--navy); }
.price-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; }
.price-card.best .price-num { color: var(--navy); }
.price-period { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.price-card.best .price-period { color: rgba(10,15,46,0.55); }
.price-body { padding: 28px 36px 36px; }
.price-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #3A4260; }
.price-features li .check { color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-features li .cross { color: var(--slate-mid); flex-shrink: 0; margin-top: 1px; }

/* ======================================================
   FAQ
   ====================================================== */
.faq { padding: 100px 0; background: var(--slate); }
.faq-list { max-width: 760px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--slate-mid); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; cursor: pointer; background: none; border: none;
  font-family: 'Inter', sans-serif; font-size: 0.98rem; font-weight: 600;
  color: var(--navy); text-align: left; gap: 16px; transition: var(--transition);
}
.faq-q:hover { background: rgba(245,197,24,0.04); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--slate);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem; font-weight: 700; transition: var(--transition); color: var(--navy);
}
.faq-item.open .faq-icon { background: var(--gold); transform: rotate(45deg); color: var(--navy); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 28px 22px; font-size: 0.92rem; color: #5A6480; line-height: 1.7; }

/* ======================================================
   CTA SECTION
   ====================================================== */
.cta-section {
  padding: 100px 0; background: var(--navy); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(245,197,24,0.06); top: -200px; left: -100px; filter: blur(80px);
}
.cta-section::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(30,42,96,0.8); bottom: -100px; right: -50px; filter: blur(60px);
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 20px; }
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ======================================================
   CONTACT FORM
   ====================================================== */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-text span { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.lead-form { background: var(--slate); border-radius: var(--radius-lg); padding: 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--slate-mid);
  border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  background: var(--white); color: var(--navy); transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius); padding: 16px; text-align: center;
  color: var(--success); font-weight: 600; margin-top: 12px;
}

/* ======================================================
   BLOG
   ====================================================== */
.blog-preview { padding: 100px 0; background: var(--slate); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); border: 1px solid transparent;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--slate-mid); }
.blog-thumb {
  height: 180px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.blog-thumb-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.blog-thumb-icon { font-size: 3rem; opacity: 0.25; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-read { font-size: 0.78rem; color: var(--text-muted); }
.blog-card h4 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h4 a:hover { color: var(--gold-dark); }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.blog-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-top: 16px; }
.blog-link:hover { color: var(--gold-dark); gap: 10px; }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer { background: var(--navy); color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ======================================================
   FLOATING WHATSAPP
   ====================================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  animation: float 3s ease-in-out infinite;
  text-decoration: none; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

/* ======================================================
   ADMIN (minimal)
   ====================================================== */
.admin-body { background: #F0F2F7; min-height: 100vh; font-family: 'Inter', sans-serif; }
.admin-sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: 260px; background: var(--navy); overflow-y: auto; z-index: 100; }
.admin-logo { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-logo span { color: var(--gold); }
.admin-nav { padding: 20px 12px; }
.admin-nav a {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  border-radius: 10px; color: rgba(255,255,255,0.6); font-size: 0.9rem;
  font-weight: 500; margin-bottom: 4px; transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(245,197,24,0.12); color: var(--gold); }
.admin-nav a .nav-icon { font-size: 1.1rem; width: 22px; text-align: center; }
.admin-main { margin-left: 260px; padding: 32px; min-height: 100vh; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.admin-header h1 { font-size: 1.6rem; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: 0 2px 12px rgba(10,15,46,0.06); }
.stat-card-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-card-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.stat-card-icon { font-size: 1.4rem; float: right; margin-top: -4px; }
.admin-table { background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(10,15,46,0.06); overflow: hidden; }
.admin-table-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--slate); }
.admin-table-header h3 { font-size: 1rem; }
table { width: 100%; border-collapse: collapse; }
thead tr { background: var(--slate); }
thead th { padding: 12px 20px; font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; text-align: left; }
tbody tr { border-bottom: 1px solid var(--slate); transition: var(--transition); }
tbody tr:hover { background: rgba(245,197,24,0.04); }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: 14px 20px; font-size: 0.88rem; color: #3A4260; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.badge-new { background: rgba(34,197,94,0.12); color: var(--success); }
.badge-read { background: rgba(138,148,178,0.15); color: var(--text-muted); }
.badge-draft { background: rgba(245,197,24,0.15); color: var(--gold-dark); }
.badge-pub { background: rgba(34,197,94,0.12); color: var(--success); }
.form-control { width: 100%; padding: 10px 14px; border: 1.5px solid var(--slate-mid); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--navy); background: var(--white); outline: none; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,197,24,0.12); }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: #4A5470; margin-bottom: 6px; letter-spacing: 0.05em; text-transform: uppercase; }
.admin-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: 0 2px 12px rgba(10,15,46,0.06); margin-bottom: 24px; }
.admin-card h3 { font-size: 1rem; margin-bottom: 20px; }
.action-btn { padding: 6px 14px; border-radius: 6px; font-size: 0.78rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.btn-edit { background: rgba(10,15,46,0.08); color: var(--navy); }
.btn-edit:hover { background: var(--navy); color: var(--white); }
.btn-del { background: rgba(239,68,68,0.1); color: #EF4444; }
.btn-del:hover { background: #EF4444; color: var(--white); }

/* ======================================================
   ANIMATIONS
   ====================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes floatBlob {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,15px) scale(1.05); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes barGrow {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .how-inner { grid-template-columns: 1fr; }
  .how-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .samples-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.best { transform: none; }
  .price-card.best:hover { transform: translateY(-4px); }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-main { margin-left: 0; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .samples-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-cards { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
