@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg: #f7f8fa;
  --clr-surface: #ffffff;
  --clr-border: #e2e6ea;
  --clr-primary: #1a56db;
  --clr-primary-dark: #1241a8;
  --clr-accent: #f59e0b;
  --clr-text: #1c1c2e;
  --clr-muted: #6b7280;
  --clr-light: #f0f4ff;
  --font-sans: 'Inter', sans-serif;
  --font-head: 'Manrope', sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --max-w: 1180px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--clr-bg); color: var(--clr-text); line-height: 1.65; }

/* ===================== LAYOUT ===================== */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 112px 0; }

/* ===================== TYPOGRAPHY ===================== */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.22; color: var(--clr-text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-dark); }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .38rem; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 14px; }
.section-desc { font-size: 1.07rem; color: var(--clr-muted); max-width: 640px; margin-bottom: 40px; }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.18rem; color: var(--clr-muted); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .97rem;
  padding: 13px 28px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
.btn-primary:hover { background: var(--clr-primary-dark); border-color: var(--clr-primary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--clr-primary); border-color: var(--clr-primary); }
.btn-outline:hover { background: var(--clr-primary); color: #fff; }
.btn-accent { background: var(--clr-accent); color: var(--clr-text); border-color: var(--clr-accent); }
.btn-accent:hover { background: #d97706; border-color: #d97706; color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .87rem; }
.btn-ghost { background: transparent; color: var(--clr-text); border-color: var(--clr-border); }
.btn-ghost:hover { background: var(--clr-light); border-color: var(--clr-primary); color: var(--clr-primary); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.97);
  border-bottom: 1.5px solid var(--clr-border);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  color: var(--clr-primary); text-decoration: none;
}
.logo span { color: var(--clr-accent); }
.logo-icon {
  width: 38px; height: 38px; background: var(--clr-primary);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { fill: #fff; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-menu a {
  display: block; padding: 8px 14px; border-radius: 7px;
  font-size: .93rem; font-weight: 500; color: var(--clr-text);
  transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--clr-primary); background: var(--clr-light); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; opacity: .7; }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--clr-surface); border: 1.5px solid var(--clr-border);
  border-radius: var(--radius); padding: 8px;
  min-width: 210px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); list-style: none; z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 9px 14px; border-radius: 6px;
  font-size: .9rem; color: var(--clr-text);
}
.dropdown-menu a:hover { background: var(--clr-light); color: var(--clr-primary); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--clr-text); border-radius: 3px; transition: all var(--transition); }

/* ===================== HERO ===================== */
.hero {
  background: var(--clr-surface);
  padding: 0;
  overflow: hidden;
  border-bottom: 1.5px solid var(--clr-border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.hero-content {
  padding: 72px 48px 72px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content .hero-sub { font-size: 1.1rem; color: var(--clr-muted); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.55rem; font-weight: 800; color: var(--clr-text); }
.hero-stat span { font-size: .83rem; color: var(--clr-muted); }

.hero-visual {
  position: relative; overflow: hidden;
  background: var(--clr-light);
  border-left: 1.5px solid var(--clr-border);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: 28px; right: 28px;
  background: var(--clr-surface); border: 1.5px solid var(--clr-border);
  border-radius: 12px; padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 3px;
}
.hero-badge strong { font-size: 1.15rem; font-weight: 800; color: var(--clr-primary); }
.hero-badge span { font-size: .78rem; color: var(--clr-muted); }

/* ===================== GRID CARDS ===================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); border-color: #c5d3f0; transform: translateY(-3px); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-bottom: 1.5px solid var(--clr-border); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-meta { font-size: .8rem; color: var(--clr-muted); margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap; }
.card-title { font-size: 1.08rem; font-weight: 700; font-family: var(--font-head); margin-bottom: 10px; color: var(--clr-text); }
.card-desc { font-size: .9rem; color: var(--clr-muted); flex: 1; margin-bottom: 18px; }
.card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }

.tag {
  display: inline-block; font-size: .74rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; background: var(--clr-light);
  color: var(--clr-primary); border: 1px solid #d0e0ff;
}
.tag-orange { background: #fff7ed; color: #c05621; border-color: #fbd38d; }
.tag-green { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }

/* ===================== FEATURE BLOCKS ===================== */
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-block__img { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--clr-border); }
.feature-block__img img { width: 100%; display: block; }
.feature-block__content {}
.feature-block__list { list-style: none; padding: 0; margin: 20px 0 28px; }
.feature-block__list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--clr-border);
}
.feature-block__list li:last-child { border-bottom: none; }
.feature-block__list .ico {
  width: 24px; height: 24px; background: var(--clr-light);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: .8rem;
  color: var(--clr-primary); font-weight: 700;
}

/* ===================== STATS BAND ===================== */
.stats-band {
  background: var(--clr-primary);
  padding: 56px 0;
  border-top: 1.5px solid #1241a8;
  border-bottom: 1.5px solid #1241a8;
}
.stats-band .grid-4 { gap: 0; }
.stat-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: #fff; }
.stat-item span { font-size: .9rem; color: rgba(255,255,255,.75); }

/* ===================== TESTIMONIALS ===================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--clr-surface); border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card blockquote { font-size: .97rem; color: var(--clr-text); line-height: 1.7; font-style: italic; quotes: none; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--clr-border); }
.testimonial-author strong { display: block; font-size: .94rem; font-weight: 700; }
.testimonial-author span { font-size: .8rem; color: var(--clr-muted); }
.stars { color: var(--clr-accent); font-size: .9rem; }

/* ===================== FAQ ===================== */
.faq-list { list-style: none; padding: 0; max-width: 800px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--clr-border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: var(--clr-surface); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--clr-text);
  text-align: left; transition: background var(--transition);
}
.faq-question:hover { background: var(--clr-light); }
.faq-question.open { background: var(--clr-light); color: var(--clr-primary); }
.faq-icon { font-size: 1.2rem; font-weight: 400; color: var(--clr-muted); transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--clr-primary); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; }
.faq-answer.open { padding: 4px 24px 20px; max-height: 400px; }
.faq-answer p { color: var(--clr-muted); font-size: .97rem; line-height: 1.7; }

/* ===================== FORMS ===================== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 7px; color: var(--clr-text); }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--clr-border);
  border-radius: var(--radius); font-size: .97rem; font-family: var(--font-sans);
  background: var(--clr-surface); color: var(--clr-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { width: 17px; height: 17px; margin-top: 2px; cursor: pointer; accent-color: var(--clr-primary); flex-shrink: 0; }
.form-check label { font-size: .9rem; color: var(--clr-muted); cursor: pointer; }
.form-success {
  display: none; background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: var(--radius); padding: 20px 24px;
  font-size: 1rem; color: #15803d; font-weight: 500; text-align: center;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: var(--clr-primary);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.82); max-width: 520px; }
.cta-banner .btn-accent { flex-shrink: 0; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--clr-muted); padding: 18px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--clr-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--clr-primary); }
.breadcrumb span { color: var(--clr-text); font-weight: 500; }
.breadcrumb i { font-size: .7rem; color: var(--clr-border); }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f7f8fa 60%);
  border-bottom: 1.5px solid var(--clr-border);
  padding: 64px 0 56px;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { max-width: 620px; }

/* ===================== SIDEBAR LAYOUT ===================== */
.content-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sidebar-widget {
  background: var(--clr-surface); border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}
.sidebar-widget h4 { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1.5px solid var(--clr-border); }
.sidebar-list { list-style: none; padding: 0; }
.sidebar-list li { padding: 9px 0; border-bottom: 1px solid var(--clr-border); font-size: .9rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--clr-text); transition: color var(--transition); }
.sidebar-list a:hover { color: var(--clr-primary); }

/* ===================== BLOG ===================== */
.blog-post-content { font-size: 1.05rem; line-height: 1.8; }
.blog-post-content h2 { margin: 36px 0 16px; }
.blog-post-content h3 { margin: 28px 0 12px; }
.blog-post-content ul, .blog-post-content ol { margin: 16px 0 16px 1.6rem; }
.blog-post-content li { margin-bottom: .5rem; }
.blog-post-content blockquote {
  border-left: 4px solid var(--clr-primary); background: var(--clr-light);
  padding: 18px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0; font-style: italic; color: var(--clr-muted);
}
.post-img { width: 100%; border-radius: var(--radius-lg); margin: 28px 0; border: 1.5px solid var(--clr-border); }

/* ===================== PROGRESS / CURRICULUM ===================== */
.curriculum-section { border: 1.5px solid var(--clr-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--clr-surface); margin-bottom: 16px; }
.curriculum-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; transition: background var(--transition);
  font-weight: 600; gap: 12px;
}
.curriculum-header:hover { background: var(--clr-light); }
.curriculum-header span { font-size: .85rem; color: var(--clr-muted); font-weight: 400; }
.curriculum-body { padding: 0 24px 16px; border-top: 1.5px solid var(--clr-border); display: none; }
.curriculum-body.open { display: block; }
.curriculum-lesson {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--clr-border);
  font-size: .92rem; color: var(--clr-muted);
}
.curriculum-lesson:last-child { border-bottom: none; }
.curriculum-lesson .ico-lesson { width: 28px; height: 28px; border-radius: 7px; background: var(--clr-light); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--clr-primary); flex-shrink: 0; font-weight: 700; }

/* ===================== INFO BOX ===================== */
.info-box {
  background: var(--clr-light); border: 1.5px solid #c5d3f0;
  border-radius: var(--radius); padding: 20px 24px; margin: 20px 0;
  font-size: .95rem; color: var(--clr-text);
}
.info-box--warning { background: #fffbeb; border-color: #fcd34d; }
.info-box--success { background: #f0fdf4; border-color: #86efac; color: #15803d; }

/* ===================== TABLE ===================== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1.5px solid var(--clr-border); }
table { width: 100%; border-collapse: collapse; background: var(--clr-surface); }
th { background: var(--clr-light); font-family: var(--font-head); font-size: .87rem; text-align: left; padding: 14px 18px; border-bottom: 1.5px solid var(--clr-border); color: var(--clr-primary); }
td { padding: 13px 18px; border-bottom: 1px solid var(--clr-border); font-size: .93rem; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--clr-light); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
  border-top: 1.5px solid #1e293b;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: .92rem; line-height: 1.7; margin-top: 14px; }
.footer-logo { font-family: var(--font-head); font-size: 1.55rem; font-weight: 800; color: #fff; }
.footer-logo span { color: var(--clr-accent); }
.footer-col h5 { color: #fff; font-size: .95rem; font-family: var(--font-head); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; margin-bottom: 12px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; opacity: .7; }
.footer-bottom {
  border-top: 1px solid #1e293b; margin-top: 56px; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .83rem; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #fff; }

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0f172a; color: rgba(255,255,255,.9);
  padding: 18px 0; border-top: 1.5px solid #1e293b;
  display: none;
}
#cookie-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
#cookie-banner p { font-size: .9rem; color: rgba(255,255,255,.75); margin: 0; }
#cookie-banner a { color: var(--clr-accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ===================== TABS ===================== */
.tabs { border-bottom: 1.5px solid var(--clr-border); display: flex; gap: 4px; overflow-x: auto; }
.tab-btn {
  padding: 12px 20px; background: none; border: none; cursor: pointer;
  font-size: .93rem; font-weight: 600; color: var(--clr-muted);
  border-bottom: 2.5px solid transparent; white-space: nowrap;
  transition: all var(--transition); font-family: var(--font-head);
}
.tab-btn:hover { color: var(--clr-primary); }
.tab-btn.active { color: var(--clr-primary); border-bottom-color: var(--clr-primary); }
.tab-panel { display: none; padding-top: 32px; }
.tab-panel.active { display: block; }

/* ===================== UTILS ===================== */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; }
.bg-light { background: var(--clr-light); }
.bg-surface { background: var(--clr-surface); }
.bg-primary { background: var(--clr-primary); }
.border-top { border-top: 1.5px solid var(--clr-border); }
.border-bottom { border-bottom: 1.5px solid var(--clr-border); }
.divider { height: 1.5px; background: var(--clr-border); margin: 48px 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-sm { gap: 12px; }
.gap-md { gap: 20px; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }
.w-full { width: 100%; }

/* ===================== HIGHLIGHT BOX ===================== */
.highlight-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1.5px solid var(--clr-border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--clr-surface);
}
.highlight-cell {
  padding: 28px 24px; border-right: 1.5px solid var(--clr-border);
  text-align: center;
}
.highlight-cell:last-child { border-right: none; }
.highlight-cell .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--clr-primary); display: block; }
.highlight-cell p { font-size: .88rem; color: var(--clr-muted); margin: 0; }

/* ===================== POLICY PAGES ===================== */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 { margin: 40px 0 14px; font-size: 1.35rem; }
.policy-content h3 { margin: 28px 0 10px; font-size: 1.1rem; }
.policy-content p, .policy-content li { font-size: .98rem; color: var(--clr-muted); line-height: 1.78; }
.policy-content ul, .policy-content ol { margin: 12px 0 20px 1.4rem; }
.policy-content li { margin-bottom: .5rem; }
.policy-meta { font-size: .85rem; color: var(--clr-muted); padding: 14px 0 28px; border-bottom: 1.5px solid var(--clr-border); margin-bottom: 36px; }

/* ===================== STEP LIST ===================== */
.steps { list-style: none; padding: 0; counter-reset: steps; }
.steps li {
  counter-increment: steps; display: flex; gap: 18px;
  padding: 20px 0; border-bottom: 1.5px solid var(--clr-border);
  align-items: flex-start;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(steps, decimal-leading-zero);
  width: 40px; height: 40px; background: var(--clr-primary); color: #fff;
  font-family: var(--font-head); font-size: .88rem; font-weight: 800;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.steps li h4 { margin-bottom: 6px; }
.steps li p { font-size: .93rem; color: var(--clr-muted); margin: 0; }

/* ===================== MOBILE MENU ===================== */
.nav-mobile {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98); z-index: 998; overflow-y: auto;
  padding: 24px;
  transform: translateX(100%); transition: transform .28s ease;
}
.nav-mobile.open { transform: translateX(0); display: block; }
.nav-mobile ul { list-style: none; padding: 0; }
.nav-mobile ul li { border-bottom: 1px solid var(--clr-border); }
.nav-mobile ul a { display: block; padding: 16px 8px; font-size: 1.05rem; font-weight: 600; color: var(--clr-text); }
.nav-mobile ul a:hover { color: var(--clr-primary); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block.reverse { direction: ltr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 32px; flex-direction: column; }
  .highlight-row { grid-template-columns: 1fr; }
  .highlight-cell { border-right: none; border-bottom: 1.5px solid var(--clr-border); }
  .highlight-cell:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 56px 0 32px; }
  .hero-visual { min-height: 240px; border-left: none; border-top: 1.5px solid var(--clr-border); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .nav-menu, .header-cta .btn-outline { display: none; }
  .stats-band .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: 1px solid rgba(255,255,255,.18); }
  .stat-item:nth-child(2), .stat-item:last-child { border-right: none; }
}
