/* VitalPria Indonesia | v1.0.0 | vitalpria.id */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

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

:root {
  --navy:    #0F2A4A;
  --navy2:   #1A3D6B;
  --orange:  #F97316;
  --orange2: #EA580C;
  --bg:      #F8FAFC;
  --card:    #FFFFFF;
  --text:    #0F172A;
  --muted:   #64748B;
  --light:   #FFF7ED;
  --border:  #FED7AA;
  --blue-light: #EFF6FF;
  --blue-border: #BFDBFE;
  --radius:  14px;
  --shadow:  0 4px 20px rgba(15,42,74,0.09);
  --shadow-lg: 0 16px 48px rgba(15,42,74,0.16);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Disclaimer ── */
.disclaimer-bar {
  background: #FFF7ED;
  border-bottom: 1px solid #FED7AA;
  padding: 9px 24px;
  text-align: center;
  font-size: 0.72rem;
  color: #9A3412;
  font-weight: 600;
  letter-spacing: 0.015em;
}

/* ── Header ── */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1320px; margin: auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo-wrap { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-badge {
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem; font-weight: 800;
  padding: 3px 10px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.logo-name { color: #fff; font-size: 1.45rem; font-weight: 800; letter-spacing: -0.03em; }
.logo-name span { color: var(--orange); }
.logo-tagline { color: #94A3B8; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-top: 1px; }
.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: #CBD5E1; text-decoration: none; font-size: 0.875rem;
  font-weight: 600; padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--orange); }
.btn-cta {
  background: var(--orange);
  color: #fff; padding: 9px 22px; border-radius: 9px;
  font-size: 0.82rem; font-weight: 800; text-decoration: none;
  transition: all 0.2s; margin-left: 12px;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
  letter-spacing: 0.02em;
}
.btn-cta:hover { background: var(--orange2); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(249,115,22,0.45); }

/* ── HERO — Split Layout ── */
.hero-split {
  background: var(--navy);
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-split::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
}
.hero-left {
  padding: 80px 56px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--orange); }
.hero-eyebrow-text {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange);
}
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #fff; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-title .highlight {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}
.hero-desc {
  color: #94A3B8; font-size: 1.05rem;
  max-width: 460px; margin-bottom: 36px; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 14px; }
.btn-hero-primary {
  background: var(--orange); color: #fff;
  padding: 15px 32px; border-radius: 11px;
  font-size: 0.95rem; font-weight: 800; text-decoration: none;
  transition: all 0.25s; box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}
.btn-hero-primary:hover { background: var(--orange2); transform: translateY(-2px); }
.btn-hero-ghost {
  color: #CBD5E1; padding: 15px 32px; border-radius: 11px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25); transition: all 0.25s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: brightness(0.85) saturate(0.9);
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
}
.hero-stats-row {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(15,42,74,0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 20px 64px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Lora', serif;
  font-size: 1.7rem; font-weight: 700; color: var(--orange); line-height: 1;
}
.hero-stat-label { font-size: 0.72rem; color: #94A3B8; margin-top: 4px; font-weight: 600; }

/* ── TOPIC PILLS ── */
.topics-bar {
  background: var(--card);
  border-bottom: 1px solid #E2E8F0;
  padding: 16px 0;
  overflow: hidden;
}
.topics-inner {
  max-width: 1320px; margin: auto; padding: 0 40px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.topic-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1.5px solid #E2E8F0;
  color: var(--muted); padding: 7px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.topic-pill:hover { border-color: var(--orange); color: var(--orange); background: var(--light); }
.topic-pill.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── SECTION ── */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 80px 0; }
.section-head { margin-bottom: 48px; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-kicker::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
.section-h { font-family: 'Lora', serif; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--navy); line-height: 1.2; letter-spacing: -0.02em; }
.section-sub { color: var(--muted); font-size: 0.975rem; max-width: 520px; margin-top: 10px; line-height: 1.75; }

/* ── BLOG 2+4 LAYOUT ── */
.blog-2plus4 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.blog-big { grid-column: 1; }
.blog-small-col { grid-column: 2; display: flex; flex-direction: column; gap: 16px; }
.blog-big-card {
  background: var(--card); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); text-decoration: none;
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid #E2E8F0;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
}
.blog-big-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(15,42,74,0.18); }
.blog-big-img-wrap { overflow: hidden; height: 300px; }
.blog-big-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-big-card:hover .blog-big-img { transform: scale(1.06); }
.blog-big-body { padding: 30px; flex: 1; }
.blog-small-card {
  background: var(--card); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none;
  display: grid; grid-template-columns: 110px 1fr; gap: 0;
  border: 1px solid #E2E8F0; flex: 1;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-small-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-small-img-wrap { overflow: hidden; }
.blog-small-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-small-card:hover .blog-small-img { transform: scale(1.08); }
.blog-small-body { padding: 16px 18px; display: flex; flex-direction: column; justify-content: center; }

.card-cat {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.card-title-big {
  font-family: 'Lora', serif; font-size: 1.3rem; color: var(--text);
  line-height: 1.35; margin-bottom: 12px; font-weight: 700;
}
.card-title-small {
  font-family: 'Lora', serif; font-size: 0.9rem; color: var(--text);
  line-height: 1.4; margin-bottom: 6px; font-weight: 700;
}
.card-excerpt { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.card-excerpt-small { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.card-read { font-size: 0.8rem; font-weight: 800; color: var(--orange); display: flex; align-items: center; gap: 4px; }
.card-date { font-size: 0.73rem; color: var(--muted); }
.card-date-small { font-size: 0.7rem; color: var(--muted); margin-top: 6px; }

/* BELOW 2+4: additional 4 cards in a row */
.blog-row4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 20px; }
.blog-mini-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none;
  border: 1px solid #E2E8F0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-mini-img-wrap { overflow: hidden; }
.blog-mini-img { width: 100%; height: 160px; object-fit: cover; transition: transform 0.35s; }
.blog-mini-card:hover .blog-mini-img { transform: scale(1.07); }
.blog-mini-body { padding: 18px; }
.blog-mini-title { font-family:'Lora',serif; font-size:0.9rem; color:var(--text); font-weight:700; line-height:1.4; margin-bottom:8px; }
.blog-mini-read { font-size:0.75rem; font-weight:800; color:var(--orange); }

/* ── ORANGE FACTS BAND ── */
.facts-band {
  background: linear-gradient(135deg, var(--orange2) 0%, var(--orange) 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.facts-band::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.facts-inner { max-width: 1320px; margin: auto; padding: 0 40px; }
.facts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.fact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px; padding: 28px 24px; text-align: center;
  transition: all 0.25s;
}
.fact-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.fact-emoji { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.fact-title { color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.fact-desc { color: rgba(255,255,255,0.85); font-size: 0.845rem; line-height: 1.65; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--card);
  border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0;
}
.about-strip-inner {
  max-width: 1320px; margin: auto; padding: 56px 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.about-strip-img {
  width: 100%; height: 340px; object-fit: cover;
  border-radius: 18px; box-shadow: var(--shadow-lg);
}
.about-strip-content {}
.about-strip-title { font-family:'Lora',serif; font-size:2rem; color:var(--navy); margin-bottom:16px; letter-spacing:-0.02em; }
.about-strip-text { color: var(--muted); font-size: 0.975rem; line-height: 1.8; margin-bottom: 24px; }
.disclaimer-box {
  background: var(--light); border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 10px; padding: 16px 18px;
  font-size: 0.78rem; color: #9A3412; line-height: 1.6;
}

/* ── NEWSLETTER ── */
.nl-section {
  background: var(--navy);
  padding: 72px 40px; text-align: center; position: relative; overflow: hidden;
}
.nl-section::before {
  content: '';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(249,115,22,0.12) 0%, transparent 70%);
}
.nl-inner { position: relative; z-index: 1; max-width: 540px; margin: auto; }
.nl-title {
  font-family: 'Lora', serif; font-size: 2rem; color: #fff;
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.nl-sub { color: #94A3B8; margin-bottom: 30px; }
.nl-form { display: flex; gap: 10px; }
.nl-input {
  flex: 1; padding: 14px 18px; border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07); color: #fff;
  font-size: 0.9rem; outline: none; font-family: inherit;
  transition: border-color 0.2s;
}
.nl-input::placeholder { color: #64748B; }
.nl-input:focus { border-color: var(--orange); }
.nl-btn {
  background: var(--orange); color: #fff; padding: 14px 24px;
  border-radius: 10px; border: none; font-size: 0.9rem; font-weight: 800;
  cursor: pointer; font-family: inherit; white-space: nowrap; transition: all 0.2s;
}
.nl-btn:hover { background: var(--orange2); transform: translateY(-1px); }

/* ── FOOTER ── */
.site-footer { background: #07192E; color: #64748B; padding: 64px 0 36px; }
.footer-inner { max-width: 1320px; margin: auto; padding: 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid #0F2A4A;
}
.footer-logo { font-size: 1.35rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 0.875rem; line-height: 1.75; max-width: 300px; margin-bottom: 18px; }
.footer-disclaimer-sm {
  background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px; padding: 12px 14px; font-size: 0.7rem; color: #F97316; line-height: 1.6;
}
.foot-h { color: #fff; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 16px; }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 10px; }
.foot-links a { color: #475569; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.foot-links a:hover { color: #FB923C; }
.foot-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.875rem; }
.foot-contact-icon { font-size: 1rem; margin-top: 2px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 10px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #334155; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #FB923C; }

/* ── ARTICLE PAGES ── */
.article-layout {
  max-width: 1320px; margin: 0 auto; padding: 60px 40px;
  display: grid; grid-template-columns: 1fr 320px; gap: 60px;
}
.article-main {}
.article-sidebar {}
.back-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg); border: 1.5px solid #E2E8F0;
  color: var(--muted); padding: 8px 18px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; margin-bottom: 28px;
}
.back-pill:hover { border-color: var(--orange); color: var(--orange); }
.art-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.art-cat {
  background: var(--light); color: var(--orange2);
  padding: 4px 14px; border-radius: 100px;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid var(--border);
}
.art-date { font-size: 0.8rem; color: var(--muted); }
.art-read { font-size: 0.8rem; color: var(--muted); }
.art-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy); line-height: 1.2;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.art-lead {
  font-size: 1.1rem; color: var(--muted); line-height: 1.8;
  border-left: 4px solid var(--orange); padding-left: 20px;
  margin-bottom: 32px; font-style: italic;
}
.art-hero-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 18px; margin-bottom: 40px;
  box-shadow: var(--shadow-lg); display: block;
}
.art-content p { font-size: 1rem; line-height: 1.9; margin-bottom: 20px; color: #334155; }
.art-content h2 {
  font-family: 'Lora', serif; font-size: 1.5rem;
  color: var(--navy); margin: 40px 0 14px; letter-spacing: -0.01em;
}
.art-content h3 { font-family: 'Lora', serif; font-size: 1.2rem; color: var(--navy); margin: 28px 0 10px; }
.art-content ul, .art-content ol { padding-left: 22px; margin-bottom: 20px; }
.art-content li { margin-bottom: 10px; line-height: 1.75; color: #334155; }
.info-box {
  background: var(--blue-light); border: 1px solid var(--blue-border);
  border-left: 4px solid #3B82F6; border-radius: 12px;
  padding: 20px 22px; margin: 28px 0;
}
.info-box .ib-label {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: #1D4ED8; margin-bottom: 8px;
}
.info-box p { font-size: 0.92rem; margin-bottom: 0 !important; line-height: 1.7; color: #1E3A8A; }
.warn-box {
  background: var(--light); border: 1px solid var(--border);
  border-left: 4px solid var(--orange); border-radius: 12px;
  padding: 20px 22px; margin: 28px 0;
}
.warn-box .wb-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange2); margin-bottom: 8px; }
.warn-box p { font-size: 0.92rem; margin-bottom: 0 !important; line-height: 1.7; color: #7C2D12; }

/* Sidebar */
.sidebar-widget {
  background: var(--card); border: 1px solid #E2E8F0;
  border-radius: 16px; padding: 24px; margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.sidebar-widget-title {
  font-family: 'Lora', serif; font-size: 1rem; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--orange);
}
.sidebar-link-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid #F1F5F9;
  text-decoration: none;
  transition: all 0.2s;
}
.sidebar-link-item:last-child { border-bottom: none; }
.sidebar-link-item:hover .sl-title { color: var(--orange); }
.sl-num { font-size: 1.3rem; font-weight: 800; color: #E2E8F0; line-height: 1; flex-shrink: 0; }
.sl-title { font-size: 0.82rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.sl-cat { font-size: 0.68rem; color: var(--orange); font-weight: 700; margin-bottom: 4px; }
.tip-check-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.tip-check-icon { color: var(--orange); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.tip-check-text { font-size: 0.86rem; color: var(--text); line-height: 1.5; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 56px 40px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -60px; bottom: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(249,115,22,0.08);
}
.page-hero-inner { max-width: 1320px; margin: auto; position: relative; z-index: 1; }
.ph-eyebrow { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.ph-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
.ph-title { font-family: 'Lora', serif; font-size: clamp(1.8rem,3vw,3rem); color: #fff; letter-spacing: -0.02em; max-width: 700px; }

/* ── Contact ── */
.contact-2col {
  max-width: 1320px; margin: 0 auto; padding: 72px 40px;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; align-items: start;
}
.cf-wrap { background: var(--card); border: 1px solid #E2E8F0; border-radius: 20px; padding: 44px; box-shadow: var(--shadow-lg); }
.cf-title { font-family: 'Lora', serif; font-size: 1.7rem; color: var(--navy); margin-bottom: 28px; }
.fg { margin-bottom: 20px; }
.fl { font-size: 0.84rem; font-weight: 700; color: var(--text); margin-bottom: 7px; display: block; }
.fc {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 2px solid #E2E8F0; font-size: 0.9rem; outline: none;
  background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit; color: var(--text);
}
.fc:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(249,115,22,0.1); }
textarea.fc { resize: vertical; min-height: 120px; }
.btn-send {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff; padding: 15px 32px; border-radius: 11px;
  border: none; font-size: 0.95rem; font-weight: 800;
  cursor: pointer; width: 100%; font-family: inherit;
  transition: all 0.2s;
}
.btn-send:hover { background: var(--orange); transform: translateY(-1px); }
.ci-wrap { padding-top: 8px; }
.ci-title { font-family: 'Lora', serif; font-size: 1.7rem; color: var(--navy); margin-bottom: 10px; }
.ci-sub { color: var(--muted); margin-bottom: 36px; line-height: 1.75; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.ci-icon { width: 48px; height: 48px; background: var(--light); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ci-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 3px; }
.ci-val { font-size: 0.95rem; color: var(--text); font-weight: 600; line-height: 1.6; }

/* ── Policy ── */
.policy-wrap { max-width: 820px; margin: 0 auto; padding: 64px 40px; }
.policy-title { font-family: 'Lora', serif; font-size: 2.4rem; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.02em; }
.policy-date { color: var(--muted); font-size: 0.85rem; margin-bottom: 44px; }
.policy-wrap h2 { font-family: 'Lora', serif; font-size: 1.3rem; color: var(--navy); margin: 36px 0 12px; }
.policy-wrap p { font-size: 0.95rem; line-height: 1.85; color: #334155; margin-bottom: 14px; }
.policy-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.policy-wrap li { font-size: 0.95rem; line-height: 1.75; color: #334155; margin-bottom: 8px; }

/* ── Responsive ── */
@media (max-width:1100px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-stats-row { position: static; padding: 20px 40px; }
  .blog-2plus4 { grid-template-columns: 1fr; }
  .blog-big { grid-column: 1; }
  .blog-small-col { grid-column: 1; flex-direction: row; flex-wrap: wrap; }
  .blog-small-card { flex: 1 1 48%; }
  .blog-row4 { grid-template-columns: repeat(2,1fr); }
  .facts-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}
@media (max-width:768px) {
  .header-inner { padding: 0 16px; }
  .site-nav { display: none; }
  .hero-left { padding: 56px 20px; }
  .blog-small-card { grid-template-columns: 1fr; }
  .blog-small-img-wrap { height: 160px; }
  .blog-row4 { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip-img { height: 250px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-2col { grid-template-columns: 1fr; padding: 40px 16px; }
  .nl-form { flex-direction: column; }
  .nl-section { padding: 56px 20px; }
  .wrap { padding: 0 16px; }
  .section-pad { padding: 56px 0; }
  .article-layout { padding: 40px 16px; }
  .page-hero { padding: 44px 16px; }
}
