/* =====================================================
   smileyhack.com — Main Stylesheet
   Colors: #0D47A1, #1565C0, #42A5F5, #90CAF9, #E3F2FD
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

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

:root {
  --blue-900: #0D47A1;
  --blue-800: #1565C0;
  --blue-400: #42A5F5;
  --blue-200: #90CAF9;
  --blue-50:  #E3F2FD;
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(13,71,161,.12);
  --shadow-lg: 0 8px 32px rgba(13,71,161,.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-800);
}

a { color: var(--blue-800); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-400); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
}
.btn-primary:hover {
  background: var(--blue-900);
  border-color: var(--blue-900);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--blue-800);
  border-color: var(--blue-800);
}
.btn-outline:hover {
  background: var(--blue-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-800);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-50);
  border-color: var(--blue-50);
  color: var(--blue-900);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ─── Section Spacing ─── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 2.25rem; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--gray-600); max-width: 640px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-800);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ─── Header / Nav ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-200);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-400));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: white; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--blue-50);
  color: var(--blue-800);
}

.nav-cta { margin-left: 16px; }

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--gray-600);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--blue-50); color: var(--blue-800); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,71,161,.82) 0%, rgba(21,101,192,.65) 60%, rgba(66,165,245,.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown .8s ease both;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--blue-400); border-radius: 50%; animation: pulse 2s infinite; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp .9s ease .1s both;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.88);
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeInUp .9s ease .2s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp .9s ease .3s both;
}

.hero-angled {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ─── Stats Counter ─── */
.stats-row {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-800);
  display: block;
}
.stat-item .stat-label {
  font-size: .95rem;
  color: var(--gray-600);
  margin-top: 4px;
}

/* ─── Bento Grid ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento-1 { grid-column: span 8; }
.bento-2 { grid-column: span 4; }
.bento-3 { grid-column: span 4; }
.bento-4 { grid-column: span 8; }
.bento-full { grid-column: span 12; }
.bento-6 { grid-column: span 6; }
.bento-3c { grid-column: span 3; }

/* ─── Plans / Pricing-like cards ─── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.plan-card.featured {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-800));
  color: var(--white);
}
.plan-card.featured h3, .plan-card.featured p, .plan-card.featured li { color: rgba(255,255,255,.9); }
.plan-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.plan-card .plan-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--blue-50);
  font-size: 1.4rem;
}
.plan-card.featured .plan-icon { background: rgba(255,255,255,.15); }
.plan-card ul { margin: 16px 0; }
.plan-card ul li {
  padding: 6px 0;
  font-size: .95rem;
  color: var(--gray-600);
  display: flex; align-items: center; gap: 8px;
}
.plan-card ul li::before { content: '✓'; color: var(--blue-400); font-weight: 700; }
.plan-card.featured ul li::before { color: var(--blue-200); }

/* ─── Team Grid ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-info { padding: 20px 24px; }
.team-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-info .role { font-size: .875rem; color: var(--blue-400); font-weight: 600; }
.team-info p { font-size: .875rem; color: var(--gray-600); margin-top: 8px; }

/* ─── Comparison Table ─── */
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-table th { background: var(--blue-800); color: var(--white); padding: 16px 20px; font-family: 'DM Sans', sans-serif; font-weight: 600; text-align: left; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); font-size: .95rem; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.compare-table .check { color: #22c55e; font-size: 1.1rem; }
.compare-table .cross { color: #ef4444; font-size: 1.1rem; }

/* ─── Blog Cards ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-800);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: .9rem; color: var(--gray-600); }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-top: 16px; font-size: .8rem; color: var(--gray-400); }

/* ─── Feature Icon List ─── */
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--blue-800);
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { font-size: .9rem; color: var(--gray-600); }

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px;
  position: relative;
}
.testimonial-card .quote { font-size: 2.5rem; color: var(--blue-200); font-family: Georgia, serif; line-height: 1; margin-bottom: 8px; }
.testimonial-card p { font-size: .95rem; color: var(--gray-600); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { font-size: .95rem; display: block; }
.testimonial-author span { font-size: .8rem; color: var(--gray-400); }

/* ─── FAQ Accordion ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left;
  padding: 18px 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--gray-800);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--blue-50); }
.faq-question .faq-icon { transition: transform .3s; font-size: 1.2rem; color: var(--blue-400); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: .95rem; color: var(--gray-600); }

/* ─── Timeline / Process ─── */
.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: var(--blue-200); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 32px; height: 32px;
  background: var(--blue-800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: .85rem;
  font-family: 'DM Sans', sans-serif;
}
.timeline-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-item p { font-size: .9rem; color: var(--gray-600); }

/* ─── Newsletter ─── */
.newsletter-wrap {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: white;
}
.newsletter-wrap h2 { color: white; margin-bottom: 12px; }
.newsletter-wrap p { color: rgba(255,255,255,.8); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 220px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.15);
  color: white;
  font-size: .95rem;
  backdrop-filter: blur(6px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form input:focus { outline: none; border-color: var(--blue-200); }

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-400));
  padding: 72px 0;
  text-align: center;
  color: white;
}
.cta-banner h2 { color: white; font-size: 2rem; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; }

/* ─── Hero Page Banner (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, var(--blue-400) 100%);
  padding: 120px 0 64px;
  color: white;
}
.page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.1rem; }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; font-size: .875rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: white; }

/* ─── Sidebar Layout ─── */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 24px;
}
.sidebar-widget h4 { font-size: 1.05rem; margin-bottom: 16px; border-bottom: 2px solid var(--blue-50); padding-bottom: 10px; }

/* ─── Contact Form ─── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .9rem; color: var(--gray-800); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(66,165,245,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { color: #ef4444; font-size: .82rem; display: none; }
.form-group.error .form-error { display: block; }
.form-group.error input, .form-group.error textarea { border-color: #ef4444; }
.form-success { background: #d1fae5; color: #065f46; border-radius: var(--radius-sm); padding: 16px 20px; text-align: center; display: none; }
.form-success.show { display: block; }

/* ─── Map Wrapper ─── */
.map-wrapper { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrapper iframe { display: block; width: 100%; height: 400px; border: none; }

/* ─── Partner Logos ─── */
.partners-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  padding: 32px 0;
}
.partner-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: .9rem; color: var(--gray-400);
  transition: color var(--transition);
}
.partner-logo:hover { color: var(--blue-800); }
.partner-logo-icon {
  width: 40px; height: 40px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.partner-logo:hover .partner-logo-icon { background: var(--blue-50); }

/* ─── Social Proof Badges ─── */
.badges-grid {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.badge-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  padding: 14px 22px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .9rem;
}
.badge-item .badge-icon { font-size: 1.3rem; }

/* ─── Achievement Badges ─── */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.achievement-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.achievement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.achievement-card .ach-icon { font-size: 2.5rem; margin-bottom: 12px; }
.achievement-card h4 { font-size: 1rem; margin-bottom: 6px; }
.achievement-card p { font-size: .85rem; color: var(--gray-600); }

/* ─── Download Resources ─── */
.downloads-list { display: flex; flex-direction: column; gap: 14px; }
.download-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  padding: 16px 20px;
  transition: all var(--transition);
}
.download-item:hover { border-color: var(--blue-200); box-shadow: var(--shadow-md); }
.download-info { display: flex; align-items: center; gap: 14px; }
.download-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--blue-800);
}
.download-info h5 { font-size: .95rem; margin-bottom: 2px; }
.download-info span { font-size: .8rem; color: var(--gray-400); }

/* ─── Article Layout ─── */
.article-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  margin-top: 68px;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,71,161,.8) 0%, rgba(13,71,161,.3) 60%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 40px;
}
.article-hero-content { color: white; max-width: 760px; }
.article-hero-content h1 { color: white; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 10px; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: .875rem; color: rgba(255,255,255,.8); }

.article-body { font-size: 1.05rem; line-height: 1.85; color: var(--gray-800); }
.article-body h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 16px 0 20px 24px; display: flex; flex-direction: column; gap: 8px; }
.article-body li { font-size: 1rem; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body blockquote {
  border-left: 4px solid var(--blue-400);
  padding: 16px 24px;
  background: var(--blue-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
}

/* Author Bio */
.author-bio {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  padding: 28px;
}
.author-bio img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio h4 { font-size: 1.1rem; margin-bottom: 4px; }
.author-bio .author-role { font-size: .875rem; color: var(--blue-400); font-weight: 600; margin-bottom: 10px; }
.author-bio p { font-size: .9rem; color: var(--gray-600); }

/* ─── Live Chat Widget ─── */
.chat-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
}
.chat-btn {
  width: 56px; height: 56px;
  background: var(--blue-800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  border: none;
  font-size: 1.4rem;
  color: white;
  transition: all var(--transition);
}
.chat-btn:hover { background: var(--blue-900); transform: scale(1.08); }
.chat-popup {
  position: absolute;
  bottom: 68px; right: 0;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: none;
}
.chat-popup.open { display: block; animation: fadeInUp .3s ease; }
.chat-popup h5 { margin-bottom: 8px; font-size: 1rem; }
.chat-popup p { font-size: .875rem; color: var(--gray-600); margin-bottom: 14px; }

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--gray-800);
  color: var(--white);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .9rem; flex: 1; min-width: 240px; color: rgba(255,255,255,.9); }
.cookie-banner a { color: var(--blue-200); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── Footer ─── */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; color: white; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--blue-200); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .875rem; margin-bottom: 10px; }
.footer-contact-item .icon { flex-shrink: 0; color: var(--blue-200); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem;
}
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: var(--blue-200); }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .bento-1 { grid-column: span 12; }
  .bento-2 { grid-column: span 6; }
  .bento-3 { grid-column: span 6; }
  .bento-4 { grid-column: span 12; }
  .bento-6 { grid-column: span 12; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sidebar-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .plans-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-3c { grid-column: span 1; }
  nav .nav-menu, nav .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section-header h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-wrap { padding: 36px 24px; }
  .card { padding: 24px; }
  .compare-table { font-size: .85rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-white { color: white; }
.text-blue { color: var(--blue-800); }
.bg-light { background: var(--gray-50); }
.bg-blue-50 { background: var(--blue-50); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media(max-width:768px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }
