/* =====================================================================
   HOLLAH AGENCY — Global Stylesheet
   Premium SaaS / Glassmorphism theme (coral + blush)
   Fonts: Poppins (headings), Inter (body)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --coral: #ee4c5b;
  --coral-dark: #d83a4a;
  --coral-deep: #b92d3d;
  --pink: #ff7a9e;
  --orange: #ff9f43;
  --magenta: #d63384;
  --purple: #7c3aed;
  --blush: #fce9e6;
  --blush-2: #fff4f1;
  --cream: #fff8f6;
  --ink: #2a1a1e;
  --ink-soft: #6b5b60;
  --ink-faint: #94898d;
  --line: #f2dcd7;
  --white: #ffffff;
  --green: #25d366; /* whatsapp */

  --grad-brand: linear-gradient(120deg, var(--magenta) 0%, var(--coral) 45%, var(--orange) 100%);
  --grad-cta: linear-gradient(120deg, var(--coral) 0%, var(--pink) 55%, var(--orange) 100%);
  --grad-soft: linear-gradient(160deg, var(--blush-2) 0%, var(--blush) 100%);

  --shadow-sm: 0 4px 14px rgba(238, 76, 91, 0.08);
  --shadow-md: 0 14px 40px rgba(214, 51, 132, 0.12);
  --shadow-lg: 0 30px 70px rgba(185, 45, 61, 0.18);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --header-h: 76px;

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--coral-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--magenta); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
p { margin: 0 0 1.1em; color: var(--ink-soft); }
ul, ol { color: var(--ink-soft); padding-left: 1.3em; }
li { margin-bottom: .5em; }
strong { color: var(--ink); font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: clamp(48px, 7vw, 92px) 0; }
.section--blush { background: var(--grad-soft); }
.section--white { background: var(--white); }
.section--brand { background: var(--grad-brand); color: #fff; }
.section--brand h2, .section--brand h3 { color: #fff; }
.section--brand p { color: rgba(255,255,255,.92); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(238,76,91,.1);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section--brand .eyebrow { color: #fff; background: rgba(255,255,255,.18); }

.section-head { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-head p { font-size: 1.05rem; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: var(--radius-pill);
  border: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s;
  text-align: center; line-height: 1;
}
.btn--primary { background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.85); color: var(--coral-dark); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--coral); color: var(--coral-dark); }
.btn--white { background: #fff; color: var(--coral-dark); box-shadow: var(--shadow-md); }
.btn--white:hover { transform: translateY(-3px); color: var(--coral-deep); }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }
.btn--wa { background: var(--green); color: #fff; }
.btn--wa:hover { background: #1eb858; color: #fff; transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 248, 246, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(242, 220, 215, 0.7);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,248,246,.92); }
.header-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; }
.brand-tag { display: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  color: var(--ink); padding: 9px 14px; border-radius: var(--radius-pill);
  transition: background .2s, color .2s;
}
.nav a:hover, .nav a.active { background: rgba(238,76,91,.1); color: var(--coral-dark); }
.header-cta { margin-left: 10px; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 9px; border-radius: 12px;
}
.nav-toggle span { display: block; height: 2.5px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255,248,246,.98); backdrop-filter: blur(20px);
    padding: 16px 22px 26px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-md); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 13px 16px; font-size: 1.05rem; }
  .nav .btn { margin-top: 10px; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-soft); padding: clamp(40px,6vw,72px) 0 clamp(50px,7vw,88px); overflow: hidden; text-align: center; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0;
}
.hero::before { width: 420px; height: 420px; background: rgba(255,122,158,.45); top: -120px; right: -80px; }
.hero::after { width: 360px; height: 360px; background: rgba(255,159,67,.4); bottom: -140px; left: -90px; }
.hero .container { position: relative; z-index: 1; }
.hero h1 { max-width: 16ch; margin: 0 auto .4em; }
.hero .lead { max-width: 60ch; margin: 0 auto 2em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 14px; }
.hero-trust { font-size: .92rem; color: var(--ink-faint); margin-top: 16px; }
.hero-figure {
  margin: clamp(30px,5vw,50px) auto 0; max-width: 860px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
}
.hero-figure img { width: 100%; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 18px; background: var(--grad-cta); color: #fff;
  box-shadow: var(--shadow-sm);
}
.card--glass {
  background: rgba(255,255,255,.55); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.7);
}

.numbered { counter-reset: step; }
.step {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 28px 26px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.step-num {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--grad-cta); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px;
}

/* feature list with check */
.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 12px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%; background: rgba(37,211,102,.15);
  color: #1eb858; font-weight: 700; font-size: .8rem; display: grid; place-items: center;
}
.crosslist { list-style: none; padding: 0; }
.crosslist li { position: relative; padding-left: 34px; margin-bottom: 12px; }
.crosslist li::before {
  content: "✕"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%; background: rgba(238,76,91,.14);
  color: var(--coral-dark); font-weight: 700; font-size: .78rem; display: grid; place-items: center;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: 24px 14px; background: rgba(255,255,255,.6); border-radius: var(--radius); border: 1px solid rgba(255,255,255,.7); backdrop-filter: blur(10px); }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem,4vw,2.6rem); background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: .92rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin: 24px 0; background: #fff; }
table.data { width: 100%; border-collapse: collapse; min-width: 540px; font-size: .98rem; }
table.data caption { caption-side: top; text-align: left; padding: 16px 20px 4px; font-family: var(--font-head); font-weight: 600; color: var(--ink); }
table.data th, table.data td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th { background: var(--grad-cta); color: #fff; font-family: var(--font-head); font-weight: 600; white-space: nowrap; }
table.data tbody tr:nth-child(even) { background: var(--blush-2); }
table.data tbody tr:hover { background: rgba(238,76,91,.06); }
table.data td:first-child { font-weight: 600; color: var(--ink); }
.table-note { font-size: .9rem; color: var(--ink-faint); margin-top: -6px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--blush-2); border-bottom: 1px solid var(--line); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 0; margin: 0; font-size: .88rem; }
.breadcrumb li { color: var(--ink-faint); margin: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--ink-faint); }
.breadcrumb a { color: var(--ink-soft); font-weight: 500; }
.breadcrumb [aria-current="page"] { color: var(--coral-dark); font-weight: 600; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--grad-brand); color: #fff; padding: clamp(46px,6vw,80px) 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; width:480px;height:480px;border-radius:50%; background:rgba(255,255,255,.12); top:-180px; right:-120px; filter: blur(10px);}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 20ch; margin: 0 auto .4em; }
.page-hero p { color: rgba(255,255,255,.94); max-width: 62ch; margin: 0 auto; font-size: 1.12rem; }
.page-hero .btn { margin-top: 26px; }

/* prose blocks */
.prose { max-width: 820px; }
.prose h2 { margin-top: 1.6em; scroll-margin-top: 96px; }
.prose h3 { margin-top: 1.3em; color: var(--coral-deep); }
.prose ul, .prose ol { margin-bottom: 1.2em; }
.prose .card { margin: 26px 0; }

/* ---------- TOC ---------- */
.toc { background: var(--blush-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin: 0 0 30px; }
.toc h2 { font-size: 1.1rem; margin: 0 0 12px; }
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 30px; }
@media (max-width: 600px){ .toc ol { columns: 1; } }
.toc a { font-weight: 500; }

/* ---------- FAQ (accordion) ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  padding: 20px 56px 20px 22px; position: relative; display: block;
}
.faq-q::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--coral); transition: transform .3s; font-weight: 400; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 20px; }
.faq-a p { margin: 0 0 .6em; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 760px){ .blog-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; }
.post-card .tag { font-size: .78rem; font-weight: 600; color: var(--coral); text-transform: uppercase; letter-spacing: .08em; }
.post-card h3 { margin: 10px 0 8px; }
.post-card .read { margin-top: auto; font-family: var(--font-head); font-weight: 600; color: var(--coral-dark); }
article.blog-post { scroll-margin-top: 90px; }
article.blog-post + article.blog-post { margin-top: 40px; padding-top: 40px; border-top: 2px dashed var(--line); }
.post-meta { font-size: .88rem; color: var(--ink-faint); margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 8px; }
.cta-card {
  background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(36px,5vw,60px); text-align: center; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-card::after{content:"";position:absolute;width:360px;height:360px;border-radius:50%;background:rgba(255,255,255,.12);bottom:-160px;left:-80px;}
.cta-card h2 { color: #fff; position: relative; z-index: 1; }
.cta-card p { color: rgba(255,255,255,.94); max-width: 56ch; margin: 0 auto 1.6em; position: relative; z-index: 1; }
.cta-card .btn { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer { background: #2a1118; color: #f3dde0; padding: 64px 0 26px; }
.site-footer a { color: #f0cdd3; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { color: #d6b6bc; font-size: .94rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #e7c5cb; font-size: .95rem; }
.footer-wa { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: #fff !important; background: var(--green); padding: 10px 18px; border-radius: var(--radius-pill); margin-top: 6px; }
.footer-wa:hover { background: #1eb858; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; font-size: .82rem; color: #c2a0a7; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 22px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .85rem; color: #c2a0a7; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 600;
  padding: 13px 20px 13px 16px; border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); color: #fff; box-shadow: 0 16px 38px rgba(37,211,102,.55); }
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float .wa-label { font-size: .95rem; }
.wa-float::before { content:""; position:absolute; inset:0; border-radius:inherit; box-shadow:0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s infinite; }
@keyframes waPulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@media (max-width: 560px){ .wa-float .wa-label { display: none; } .wa-float { padding: 14px; } }

/* ---------- Support cards (contact) ---------- */
.support-card { text-align: left; }
.support-card .card-icon { background: var(--grad-brand); }
.support-card .btn { margin-top: 18px; }

/* ---------- Two-col feature row ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media img, .split-media .media-card { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.media-card { background: var(--grad-soft); border: 1px solid var(--line); padding: 30px; }

/* pill badge */
.pill { display:inline-block; background: rgba(238,76,91,.1); color: var(--coral-dark); font-family: var(--font-head); font-weight:600; font-size:.82rem; padding:6px 14px; border-radius: var(--radius-pill); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-faint); }
.divider { height: 1px; background: var(--line); border: 0; margin: 40px 0; }
.note-box { background: var(--blush-2); border-left: 4px solid var(--coral); border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 24px 0; }
.note-box p:last-child { margin-bottom: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; padding: 10px 16px; z-index: 300; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
