/* =============================================
   ZENVY CV – MAIN STYLESHEET
   Fonts: Syne (headings) + DM Sans (body)
   Brand: Indigo 600 #4F46E5 / Sky 500 #0EA5E9
   ============================================= */

/* CSS VARIABLES */
:root {
  --ink: #0F172A;
  --white: #ffffff;
  --cream: #F8FAFC;
  --accent: #4F46E5;
  --accent-light: #EEF2FF;
  --accent-dark: #3730A3;
  --accent-sky: #0EA5E9;
  --accent-sky-light: #E0F2FE;
  --muted: #64748B;
  --border: #E2E8F0;
  --card: #ffffff;
  --section-alt: #F1F5FF;
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-cta svg { width: 16px; height: 16px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  background: linear-gradient(135deg, #EEF2FF 0%, #ffffff 50%, #F0F4FF 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-badge::before {
  content: '●';
  font-size: 0.6rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  line-height: 1.08;
}

.hero h1 .blue { color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.hero-trust {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.hero-trust svg { color: #f59e0b; }

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

.resume-mockup {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 28px;
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}

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

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.mockup-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.mockup-role { font-size: 0.75rem; color: var(--muted); }

.mockup-section { margin-bottom: 14px; }

.mockup-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}

.mockup-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 4px;
}

.mockup-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-sky));
}

.mockup-line {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  margin-bottom: 5px;
}

.mockup-line.short { width: 65%; }
.mockup-line.med { width: 80%; }

.badge-float {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-float.ats { top: 10px; right: -20px; color: #16a34a; }
.badge-float.speed { bottom: 30px; left: -20px; color: var(--accent); }

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--ink);
  color: var(--white);
  padding: 28px 5%;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #818CF8;
}

.stat-label {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-top: 2px;
}

/* =============================================
   SECTIONS — COMMON
   ============================================= */
section { padding: 90px 5%; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* =============================================
   FEATURES
   ============================================= */
.features { background: var(--white); }

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

.feature-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid transparent;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feature-card:hover {
  background: var(--white);
  border-color: var(--accent-light);
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.08);
  transform: translateY(-3px);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon { font-size: 1.8rem; margin-bottom: 14px; }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   TEMPLATES
   ============================================= */
.templates { background: var(--section-alt); }

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.template-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.25s;
  cursor: pointer;
}

.template-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.12);
  transform: translateY(-4px);
}

.template-preview {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}

.template-preview.blue { background: linear-gradient(135deg, #EEF2FF, #C7D2FE); }
.template-preview.dark { background: linear-gradient(135deg, #1e293b, #0f172a); }
.template-preview.green { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.template-preview.warm { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.template-preview.purple { background: linear-gradient(135deg, #faf5ff, #ede9fe); }
.template-preview.red { background: linear-gradient(135deg, #fff1f2, #ffe4e6); }

.mini-resume {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 12px;
  width: 110px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mini-resume.dark-bg { background: rgba(255, 255, 255, 0.08); }

.mini-bar {
  height: 5px;
  border-radius: 2px;
  margin-bottom: 4px;
}

.mini-bar.accent { background: var(--accent); width: 60%; }
.mini-bar.gray { background: #e5e7eb; }
.mini-bar.gray.full { width: 100%; }
.mini-bar.gray.med { width: 75%; }
.mini-bar.gray.short { width: 50%; }
.mini-bar.white { background: rgba(255, 255, 255, 0.3); }
.mini-bar.white.full { width: 100%; }
.mini-bar.white.med { width: 70%; }

.template-info { padding: 16px 18px 18px; }

.template-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.template-info p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.free-tag {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 8px;
}

/* =============================================
   RESUME EXAMPLES
   ============================================= */
.examples { background: var(--white); }

.examples-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.example-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--cream);
  border-radius: 14px;
  padding: 24px 28px;
  border-left: 4px solid transparent;
  transition: all 0.2s;
}

.example-item:hover {
  border-left-color: var(--accent);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.07);
}

.example-icon { font-size: 2rem; padding-top: 2px; }

.example-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.example-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how {
  background: var(--ink);
  color: var(--white);
}

.how .section-title { color: var(--white); }
.how .section-desc { color: #9ca3af; }
.how .section-tag { background: rgba(79, 70, 229, 0.3); color: #818CF8; }

.steps-container {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  padding: 32px 28px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.step:last-child { border-right: none; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(79, 70, 229, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.87rem;
  color: #9ca3af;
  line-height: 1.65;
}

/* =============================================
   WHY ZENVY CV
   ============================================= */
.why { background: var(--section-alt); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(79, 70, 229, 0.08);
}

.why-icon { font-size: 1.6rem; margin-bottom: 14px; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.why-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 26px;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent-light);
  margin-bottom: 12px;
  display: block;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

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

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.author-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

.author-role { font-size: 0.75rem; color: var(--muted); }

.stars {
  color: #f59e0b;
  font-size: 0.75rem;
  margin-bottom: 2px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  text-align: center;
  padding: 100px 5%;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--accent);
  padding: 16px 32px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-top: 14px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--ink);
  color: #9ca3af;
  padding: 40px 5%;
  text-align: center;
  font-size: 0.85rem;
}

footer .footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
}

footer .footer-logo span { color: #818CF8; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   GOOGLE PLAY BUTTON
   ============================================= */
.gplay-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gplay-btn:hover {
  background: #1f2937;
  transform: translateY(-1px);
}

.gplay-btn-text { text-align: left; }

.gplay-btn-text small {
  font-size: 0.68rem;
  color: #9ca3af;
  display: block;
  line-height: 1;
}

.gplay-btn-text strong {
  font-size: 0.95rem;
  font-family: 'Syne', sans-serif;
}

.gplay-icon { font-size: 1.6rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .steps-container { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .step:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
}

@media (max-width: 480px) {
  .steps-container { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: none; }
  nav { padding: 14px 5%; }
  .nav-logo { font-size: 1.1rem; }
}

/* =============================================
   BLOG / RESUME PAGE STYLES
   ============================================= */
.blog-container {
  margin: 0 auto;
  padding: 140px 5% 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-header {
  max-width: 1100px;
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}
.blog-header h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.25;
}
.blog-header .blog-meta {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.blog-content {
  max-width: 800px;
  width: 100%;
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.85;
}
.blog-content h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ink);
  margin: 56px 0 24px;
  letter-spacing: -0.5px;
  position: relative;
}
.blog-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.blog-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 16px;
}
.blog-content p {
  margin-bottom: 24px;
}
.blog-content ul {
  margin: 0 0 28px 24px;
}
.blog-content li {
  margin-bottom: 10px;
  padding-left: 6px;
}
.blog-content li::marker {
  color: var(--accent);
}
.blog-content strong {
  color: var(--ink);
  font-weight: 700;
}
.blog-callout {
  background: var(--cream);
  border-radius: 12px;
  padding: 28px;
  margin: 40px 0;
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.blog-callout p:last-child {
  margin-bottom: 0;
}
.blog-featured-image {
  max-width: 1024px;
  width: 100%;
  margin-bottom: 56px;
}
.blog-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 60px rgba(79, 70, 229, 0.13);
  display: block;
  image-rendering: high-quality;
}

/* =============================================
   PRIVACY POLICY PAGE STYLES
   ============================================= */
.policy-date-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.policy-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 14px;
  background: var(--cream);
  transition: box-shadow 0.2s;
}

.policy-card:hover {
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
}

.policy-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.policy-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.policy-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.policy-card a:hover { text-decoration: underline; }

.policy-contact-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  background: var(--cream);
}

.policy-contact-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.policy-contact-box a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
}

.policy-contact-box a:hover { text-decoration: underline; }

/* =============================================
   BLOGS LISTING PAGE STYLES
   ============================================= */
.blogs-grid {
  max-width: 1024px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.blog-card {
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.12);
  border-color: var(--accent-light);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--accent-light);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
}

.blog-card-body h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.blog-card-read-more {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
  padding-top: 8px;
}


