/* ============================================================
   Workers of India — Design System
   ============================================================ */
:root {
  --ink: #14181d;
  --ink-soft: #2a3038;
  --paper: #faf6ee;
  --paper-deep: #f3ecdd;
  --white: #ffffff;
  --saffron: #f4861f;
  --saffron-deep: #e06d00;
  --green: #1e8a4c;
  --chakra: #1f4fa8;
  --wa: #25d366;
  --wa-deep: #128c4b;
  --muted: #6b7280;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(20, 24, 29, 0.08);
  --shadow-lift: 0 22px 48px rgba(20, 24, 29, 0.16);
  --font-display: "Archivo Black", sans-serif;
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, 92vw); margin: 0 auto; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }

::selection { background: var(--saffron); color: var(--white); }

/* ============ Intro overlay animation ============ */
#intro {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 22px;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
#intro.intro-done { transform: translateY(-101%); }
#intro.intro-skip { transition: opacity 0.35s ease; opacity: 0; transform: none; }
.intro-logo {
  width: 92px; height: 92px; border-radius: 24px;
  opacity: 0; transform: scale(0.6) rotate(-8deg);
  animation: introLogo 0.7s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes introLogo { to { opacity: 1; transform: scale(1) rotate(0); } }
.intro-word {
  display: flex; gap: 0.32em; overflow: hidden;
  font-family: var(--font-display);
  color: var(--paper); font-size: clamp(1.5rem, 4.5vw, 2.6rem);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.intro-word span {
  display: inline-block; transform: translateY(120%);
  animation: introWord 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes introWord { to { transform: translateY(0); } }
.intro-bar {
  width: min(320px, 60vw); height: 6px; border-radius: 3px; overflow: hidden;
  background: rgba(255, 255, 255, 0.12); position: relative;
}
.intro-bar::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, var(--saffron) 0 33.3%, #fff 33.3% 66.6%, var(--green) 66.6% 100%);
  animation: introBar 1.1s 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes introBar { to { transform: translateX(0); } }
.intro-tag {
  color: rgba(250, 246, 238, 0.65); font-family: var(--font-head); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 0.6s 1.15s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
body.intro-lock { overflow: hidden; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid rgba(20, 24, 29, 0.07);
  transition: box-shadow 0.3s ease;
}
/* blur lives on a pseudo so the header doesn't become the containing
   block for the fixed-position mobile nav */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(20, 24, 29, 0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; }
.brand .brand-sub { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--saffron-deep); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  padding: 9px 13px; border-radius: 999px; transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(20, 24, 29, 0.06); }
.main-nav a.active { background: var(--ink); color: var(--paper); }
.main-nav a.nav-cta {
  background: var(--wa); color: #fff; display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}
.main-nav a.nav-cta:hover { background: var(--wa-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; border-radius: 12px; position: relative; z-index: 901; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; top: 0; z-index: -1;
    background: var(--paper); flex-direction: column; justify-content: center;
    gap: 10px; opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
  }
  .main-nav a { font-size: 1.35rem; padding: 12px 26px; }
  body.nav-open .main-nav { opacity: 1; pointer-events: auto; z-index: 899; }
  body.nav-open { overflow: hidden; }
}

/* ============ Hero ============ */
.hero { position: relative; padding: 84px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--saffron-deep);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--saffron), var(--green)); }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.5rem, 5.6vw, 4.3rem); line-height: 1.04;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--saffron) 10%, var(--saffron-deep) 55%, var(--green) 105%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.13rem; color: var(--ink-soft); margin: 24px 0 32px; max-width: 56ch; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lift); aspect-ratio: 4/4.4; object-fit: cover; width: 100%; }
.hero-media::before {
  content: ""; position: absolute; inset: -18px -18px auto auto; width: 60%; height: 60%;
  border-radius: var(--radius); background: linear-gradient(135deg, var(--saffron), var(--green)); opacity: 0.18; z-index: -1;
}
.hero-badge {
  position: absolute; left: -22px; bottom: 28px; background: var(--white);
  border-radius: 16px; box-shadow: var(--shadow-lift); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700;
}
.hero-badge .num { font-size: 1.5rem; color: var(--saffron-deep); }
.hero-badge small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: 0.78rem; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.35; z-index: -1; pointer-events: none;
}
.blob-a { width: 420px; height: 420px; background: var(--saffron); top: -140px; right: -120px; }
.blob-b { width: 360px; height: 360px; background: var(--green); bottom: -160px; left: -140px; opacity: 0.22; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn:hover { transform: translateY(-3px); }
.btn svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }
.btn-primary { background: var(--ink); color: var(--paper); box-shadow: 0 10px 24px rgba(20, 24, 29, 0.25); }
.btn-primary:hover { background: #000; }
.btn-saffron { background: var(--saffron); color: #fff; box-shadow: 0 10px 24px rgba(244, 134, 31, 0.35); }
.btn-saffron:hover { background: var(--saffron-deep); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4); }
.btn-wa:hover { background: var(--wa-deep); }
.btn-ghost { background: transparent; border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ============ Marquee ============ */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.18em; text-transform: uppercase; display: flex; align-items: center; gap: 48px; white-space: nowrap;
}
.marquee-track .dot { color: var(--saffron); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Sections ============ */
.section { padding: 84px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }
.section-alt { background: var(--paper-deep); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink .section-head p { color: rgba(250, 246, 238, 0.75); }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.card .card-media { overflow: hidden; aspect-ratio: 16/10; }
.card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.25rem; }
.card-body p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.card-link { font-family: var(--font-head); font-weight: 700; color: var(--saffron-deep); display: inline-flex; align-items: center; gap: 8px; }
.card-link::after { content: "→"; transition: transform 0.25s; }
.card:hover .card-link::after { transform: translateX(5px); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 14px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(250, 246, 238, 0.1); }
.stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.7rem); color: var(--saffron); display: block; }
.stat .lbl { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: rgba(250, 246, 238, 0.8); margin-top: 6px; display: block; }

/* WhatsApp banner / chat mockup */
.wa-banner {
  background: linear-gradient(120deg, #0c3d2a 0%, #14532d 55%, #166534 100%);
  border-radius: 28px; padding: 56px; color: #f0fdf4; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.wa-banner::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: var(--wa); opacity: 0.16; filter: blur(80px); top: -120px; right: -80px;
}
.wa-banner h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: #fff; }
.wa-banner p { color: rgba(240, 253, 244, 0.85); margin: 16px 0 28px; }
.wa-pill {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.4); color: #86efac; border-radius: 999px;
  padding: 7px 16px; font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px;
}
.wa-pill .live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wa); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); } 60% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); } }

.phone {
  background: #0b141a; border-radius: 34px; padding: 14px; max-width: 340px; margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45); border: 1px solid rgba(255, 255, 255, 0.08);
}
.phone-screen { background: #111b21 url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10l3 6h-6zM10 40l3 6h-6zM48 28l3 6h-6z' fill='%23182229'/%3E%3C/svg%3E"); border-radius: 24px; overflow: hidden; }
.phone-top { background: #202c33; display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.phone-top img { width: 34px; height: 34px; border-radius: 50%; }
.phone-top .ph-name { color: #e9edef; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.phone-top .ph-status { color: #8696a0; font-size: 0.72rem; }
.chat { padding: 16px 12px 18px; display: flex; flex-direction: column; gap: 9px; min-height: 320px; }
.bubble {
  max-width: 82%; padding: 9px 12px; border-radius: 10px; font-size: 0.84rem; line-height: 1.45;
  opacity: 0; transform: translateY(12px) scale(0.97);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.bubble.shown { opacity: 1; transform: none; }
.bubble.in { background: #202c33; color: #e9edef; align-self: flex-start; border-top-left-radius: 2px; }
.bubble.out { background: #005c4b; color: #e9edef; align-self: flex-end; border-top-right-radius: 2px; }
.bubble .voice { display: flex; align-items: center; gap: 8px; }
.bubble .voice .wave { display: flex; gap: 2.5px; align-items: center; height: 18px; }
.bubble .voice .wave i { width: 2.5px; border-radius: 2px; background: #7fd8b4; display: block; animation: wave 1.1s ease-in-out infinite; }
.bubble .voice .wave i:nth-child(1) { height: 7px; } .bubble .voice .wave i:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.bubble .voice .wave i:nth-child(3) { height: 10px; animation-delay: 0.2s; } .bubble .voice .wave i:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.bubble .voice .wave i:nth-child(5) { height: 8px; animation-delay: 0.4s; } .bubble .voice .wave i:nth-child(6) { height: 13px; animation-delay: 0.5s; }
.bubble .voice .wave i:nth-child(7) { height: 6px; animation-delay: 0.6s; }
@keyframes wave { 0%, 100% { transform: scaleY(0.7); } 50% { transform: scaleY(1.15); } }

/* Feature list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.feature .icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(244, 134, 31, 0.14), rgba(30, 138, 76, 0.14));
}
.feature h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 30px 26px 26px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 2rem; display: block; margin-bottom: 12px;
  background: linear-gradient(120deg, var(--saffron), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* Checklist */
.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.check-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.check-card h3 { font-size: 1.3rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.check-card ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.check-card li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.check-card li::before {
  content: "✓"; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(30, 138, 76, 0.13); color: var(--green); font-weight: 800; font-size: 0.8rem;
  display: grid; place-items: center; margin-top: 3px;
}

/* ESHRAM acrostic */
.acrostic { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.acro {
  background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
  display: flex; gap: 20px; align-items: flex-start; transition: transform 0.3s;
}
.acro:hover { transform: translateY(-5px); }
.acro .letter {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  flex: 0 0 auto; width: 52px; text-align: center;
}
.acro h3 { font-size: 1.1rem; margin-bottom: 6px; }
.acro p { color: var(--ink-soft); font-size: 0.94rem; }

/* Quote */
.quote { text-align: center; max-width: 820px; margin: 0 auto; }
.quote blockquote {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.35;
}
.quote blockquote::before { content: "“"; color: var(--saffron); font-family: var(--font-display); font-size: 3rem; display: block; line-height: 0.5; margin-bottom: 18px; }
.quote cite { display: block; margin-top: 22px; font-style: normal; font-family: var(--font-head); font-weight: 600; color: var(--muted); }

/* Video grid */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.video-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.video-card .frame { aspect-ratio: 16/9; }
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-card p { padding: 16px 20px; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.35s, box-shadow 0.35s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.post-card .card-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.post-card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.post-card:hover .card-media img { transform: scale(1.06); }
.post-card .ph-fallback {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
}
.post-card .ph-fallback img { width: 76px; height: 76px; border-radius: 18px; transform: none !important; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--muted); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.post-meta .tag { background: rgba(244, 134, 31, 0.12); color: var(--saffron-deep); border-radius: 999px; padding: 3px 11px; }
.post-card .card-body h3 { font-size: 1.13rem; line-height: 1.3; }
.post-card .card-body p { font-size: 0.92rem; }

/* Blog post page */
.post-hero { padding: 70px 0 30px; }
.post-hero h1 { font-size: clamp(1.9rem, 4vw, 3.1rem); max-width: 880px; }
.post-hero .post-meta { margin-bottom: 20px; }
.post-author { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.post-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.post-author .a-name { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.post-author .a-role { font-size: 0.8rem; color: var(--muted); }
.post-body { max-width: 760px; margin: 0 auto; font-size: 1.08rem; color: var(--ink-soft); }
.post-body p { margin-bottom: 22px; }
.post-body ul { margin: 0 0 22px 22px; }
.post-body li { margin-bottom: 10px; }
.post-body .post-cover { border-radius: var(--radius); box-shadow: var(--shadow-lift); margin: 10px 0 34px; }
.post-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; }
.post-gallery img { border-radius: 14px; aspect-ratio: 1/1; object-fit: cover; width: 100%; transition: transform 0.4s; cursor: zoom-in; }
.post-gallery img:hover { transform: scale(1.03); }
.post-gallery a { display: block; overflow: hidden; border-radius: 14px; }
.post-nav { display: flex; justify-content: space-between; gap: 18px; margin-top: 64px; padding-top: 34px; border-top: 1px solid rgba(20, 24, 29, 0.1); }
.post-nav a { font-family: var(--font-head); font-weight: 700; max-width: 44%; color: var(--ink); transition: color 0.25s; }
.post-nav a:hover { color: var(--saffron-deep); }
.post-nav .dir { display: block; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.post-nav .next { text-align: right; margin-left: auto; }

/* Page hero (interior) */
.page-hero { padding: 72px 0 56px; position: relative; overflow: hidden; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.05; }
.page-hero p.lead { font-size: 1.1rem; color: var(--ink-soft); margin-top: 20px; max-width: 62ch; }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-lift); width: 100%; object-fit: cover; }
.split h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow);
  text-align: center; transition: transform 0.35s, box-shadow 0.35s;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.contact-card .icon { font-size: 2rem; margin-bottom: 14px; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.contact-card a.link { font-family: var(--font-head); font-weight: 700; color: var(--saffron-deep); }
.contact-form { max-width: 680px; margin: 0 auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 44px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; display: block; margin: 0 0 7px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1.5px solid rgba(20, 24, 29, 0.14); background: var(--paper);
  border-radius: 12px; padding: 13px 15px; font-family: var(--font-body); font-size: 0.98rem;
  margin-bottom: 18px; transition: border-color 0.25s; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--saffron); }

/* Footer */
.site-footer { background: var(--ink); color: rgba(250, 246, 238, 0.8); padding: 70px 0 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(250, 246, 238, 0.12); }
.footer-grid .brand { color: var(--paper); margin-bottom: 16px; }
.footer-grid p { font-size: 0.93rem; max-width: 40ch; }
.footer-grid h4 { font-family: var(--font-head); color: var(--paper); margin-bottom: 16px; font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { transition: color 0.25s; font-size: 0.95rem; }
.footer-grid ul a:hover { color: var(--saffron); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 26px; font-size: 0.85rem; color: rgba(250, 246, 238, 0.5); }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 950;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float .wa-tip {
  position: absolute; right: 72px; white-space: nowrap; background: var(--ink); color: var(--paper);
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; border-radius: 10px;
  padding: 8px 14px; opacity: 0; pointer-events: none; transform: translateX(8px); transition: opacity 0.3s, transform 0.3s;
}
.wa-float:hover .wa-tip { opacity: 1; transform: none; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; } .reveal-d2 { transition-delay: 0.24s; } .reveal-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .split, .wa-banner { grid-template-columns: 1fr; }
  .wa-banner { padding: 38px 26px; }
  .card-grid, .features, .steps, .video-grid, .blog-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .acrostic, .check-cols { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 50px; }
  .hero-badge { left: 10px; }
}
@media (max-width: 600px) {
  .card-grid, .features, .steps, .video-grid, .blog-grid, .contact-grid { grid-template-columns: 1fr; }
  .post-gallery { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 30px 22px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 0; }
}
