:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F6F8;
  --ink: #0E1015;
  --ink-2: #171A22;
  --gold: #F4B728;
  --gold-dark: #C7930F;
  --text: #12151A;
  --muted: rgba(18,21,26,0.6);
  --faint: rgba(18,21,26,0.38);
  --line: rgba(18,21,26,0.1);
  --line-dark: rgba(244,241,234,0.14);
  --white: #FFFFFF;
  --display: "Archivo", -apple-system, sans-serif;
  --sans: "Archivo", -apple-system, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
  --max: 1180px;
  --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.45; -webkit-font-smoothing: antialiased; letter-spacing: -0.01em; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

h1, h2, h3 { font-family: var(--display); margin: 0; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(38px, 5.4vw, 62px); line-height: 1.05; font-weight: 800; }
h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.08; font-weight: 800; }
h3 { font-size: 19px; line-height: 1.25; font-weight: 700; }
p { margin: 0; }
.muted { color: var(--muted); }
.accent { color: var(--gold); }

.section-eyebrow-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); background: var(--bg-alt); border: 1px solid var(--line); padding: 8px 16px; border-radius: 30px; margin-bottom: 18px; }
.section-eyebrow-pill.on-dark { background: rgba(244,241,234,0.08); color: #F4F1EA; border-color: var(--line-dark); }
.section-eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.section-head-center { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head-center .rule { width: 46px; height: 4px; background: var(--gold); border-radius: 2px; margin: 16px auto 0; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 34px; flex-wrap: wrap; gap: 14px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 26px; border-radius: 30px; font-weight: 700; font-size: 14.5px; font-family: var(--display); border: none; cursor: pointer; transition: transform .18s, background .18s, border-color .18s; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: #F4F1EA; border: 1.5px solid rgba(244,241,234,0.3); }
.btn-outline-dark:hover { border-color: rgba(244,241,234,0.7); }
.btn-dark { background: var(--ink); color: #F4F1EA; }
.btn-dark:hover { background: #000; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ===== Top bar ===== */
.topbar { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; gap: 20px; }
.logo { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.logo .dot { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--gold-dark); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-phone { display: flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.topbar-phone .ic { color: var(--gold-dark); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); font-size: 18px; cursor: pointer; align-items: center; justify-content: center; }
.mobile-nav { position: fixed; top: 66px; right: 16px; left: 16px; background: var(--ink); border-radius: 16px; padding: 14px; z-index: 199; display: flex; flex-direction: column; gap: 6px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s, transform .2s; }
.mobile-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav a { color: #F4F1EA; background: rgba(244,241,234,0.06); border-radius: 10px; padding: 12px 14px; font-size: 14.5px; font-weight: 600; }
@media (max-width: 860px) { .nav-links, .topbar-phone { display: none; } .nav-toggle { display: flex; } }
@media (max-width: 500px) { .topbar-right .btn { display: none; } }

/* ===== Hero ===== */
.hero-dark { background: var(--ink); padding: 64px 0 90px; overflow: hidden; }
.hero-dark-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.hero-copy h1 { color: #F4F1EA; }
.hero-copy p.lede { color: rgba(244,241,234,0.62); font-size: 15.5px; line-height: 1.65; max-width: 500px; margin: 22px 0 30px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo-wrap { position: relative; }
.hero-photo-frame { border: 4px solid var(--gold); border-radius: 22px; padding: 10px; }
.hero-photo-frame .img { border-radius: 16px; overflow: hidden; aspect-ratio: 0.86; background: var(--ink-2) center/cover no-repeat; }
.hero-floating-card { position: absolute; left: -18px; bottom: -18px; background: #F4F1EA; border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 14px 34px rgba(0,0,0,0.28); max-width: 220px; }
.hero-floating-card .ic-circle { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.hero-floating-card .txt { font-size: 12.5px; font-weight: 700; line-height: 1.25; color: var(--ink); }
.hero-floating-card .txt span { display: block; font-size: 10.5px; font-weight: 600; color: var(--muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.03em; }
@media (max-width: 900px) { .hero-dark-inner { grid-template-columns: 1fr; } .hero-photo-wrap { max-width: 320px; margin: 0 auto; order: -1; } }

/* ===== Results strip ===== */
.results-strip-section { background: var(--ink-2); border-top: 1px solid var(--line-dark); }
.results-strip { display: flex; flex-wrap: wrap; gap: 28px 44px; padding: 30px 0; }
.result-stat { display: flex; flex-direction: column; gap: 4px; }
.result-stat .num { font-family: var(--mono); font-weight: 700; font-size: clamp(22px, 2.8vw, 32px); color: var(--gold); letter-spacing: -0.02em; line-height: 1; }
.result-stat .label { font-size: 11.5px; color: rgba(244,241,234,0.55); text-transform: uppercase; letter-spacing: 0.03em; }

/* ===== Logo strip ===== */
.logo-strip-section { padding: 66px 0; background: var(--bg); }
.logo-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.logo-card { border: 1px solid var(--line); border-radius: 14px; padding: 22px 16px; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--bg); min-height: 78px; }
.logo-card span { font-family: var(--display); font-weight: 800; font-size: 14px; color: var(--faint); text-transform: uppercase; letter-spacing: -0.01em; }
@media (max-width: 800px) { .logo-strip-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Services ===== */
section.services-section { padding: 90px 0; background: var(--bg-alt); }
.service-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card-2 { background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 28px; transition: border-color .2s, transform .2s; }
.service-card-2:hover, .service-card-2.featured { border-color: var(--gold); transform: translateY(-3px); }
.service-icon-badge { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon-badge svg { width: 22px; height: 22px; stroke: var(--gold); }
.service-card-2 h3 { margin-bottom: 8px; }
.service-card-2 p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .service-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .service-cards-grid { grid-template-columns: 1fr; } }

/* ===== Proof / case studies ===== */
section.proof-section { padding: 90px 0; background: var(--bg); }
.proof-group { margin-bottom: 56px; }
.proof-group:last-child { margin-bottom: 0; }
.proof-group-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.proof-group-head .ic-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proof-group-head .ic-circle svg { width: 18px; height: 18px; stroke: var(--ink); }
.proof-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proof-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.proof-card { display: block; }
.proof-frame { border: 3px solid var(--gold); border-radius: 16px; padding: 6px; background: var(--bg-alt); }
.proof-frame .thumb { border-radius: 10px; overflow: hidden; background: var(--bg-alt); aspect-ratio: 1.4; display: flex; align-items: center; justify-content: center; }
.proof-frame .thumb img { width: 100%; height: 100%; object-fit: contain; cursor: pointer; }
.proof-card .kw { font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--gold-dark); margin: 14px 0 4px; }
.proof-card p.sub { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .proof-cards, .proof-cards.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .proof-cards, .proof-cards.cols-2 { grid-template-columns: 1fr; } }

.proof-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: center; }
.proof-split-copy ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.proof-split-copy li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.proof-split-copy li .chk { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-alt); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.proof-split-copy li .chk svg { width: 11px; height: 11px; stroke: var(--gold-dark); }
@media (max-width: 850px) { .proof-split { grid-template-columns: 1fr; } }

.carousel-wrap { position: relative; display: flex; align-items: center; gap: 10px; }
.carousel-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 10px; -webkit-overflow-scrolling: touch; }
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.carousel-slide { flex: 0 0 auto; width: 300px; scroll-snap-align: start; }
.carousel-slide .proof-frame .thumb { aspect-ratio: 1.4; }
.carousel-slide .proof-frame .thumb img { object-position: top; }
.carousel-slide p.sub { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.carousel-btn { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); }
.carousel-btn:hover { background: var(--bg-alt); }
@media (max-width: 600px) { .carousel-slide { width: 240px; } }

/* ===== Skills & Tools ===== */
section.tools-section { padding: 70px 0; background: var(--bg-alt); }
.pill-row-label { text-align: center; font-family: var(--mono); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); margin: 0 0 14px; }
.tools-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.tools-row:last-child { margin-bottom: 0; }
.tool-pill { font-size: 13px; border: 1px solid var(--line); color: var(--text); padding: 7px 15px; border-radius: 20px; background: var(--bg); }
.tool-pill.skill { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }

/* ===== Timeline ===== */
section.timeline-section { padding: 90px 0; background: var(--bg); }
.timeline { border-left: 2px solid var(--gold); padding-left: 26px; margin-left: 4px; max-width: 680px; }
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -31px; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--gold); }
.tl-date { font-family: var(--mono); font-size: 11.5px; font-weight: 700; color: var(--gold-dark); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.03em; }
.tl-role { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.tl-desc { font-size: 13px; color: var(--muted); max-width: 560px; }

/* ===== Testimonials ===== */
section.testimonials-section { padding: 90px 0; background: var(--bg-alt); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testimonial-card { background: var(--bg); border: 1px solid var(--line); padding: 26px; border-radius: var(--radius); display: flex; flex-direction: column; justify-content: space-between; min-height: 160px; }
.testimonial-card .quote-mark { font-family: var(--display); font-size: 34px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.testimonial-card .quote { font-size: 14px; line-height: 1.55; color: var(--text); }
.testimonial-person { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.testimonial-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700; flex-shrink: 0; }
.testimonial-name { font-size: 13px; font-weight: 700; }
.testimonial-role { font-size: 11.5px; color: var(--muted); }
@media (max-width: 700px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ===== About ===== */
section.about-section { padding: 90px 0; background: var(--bg); }
.about-copy { max-width: 640px; }
.about-copy p.bio { font-size: 16.5px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.about-meta { font-size: 13px; color: var(--faint); }

/* ===== Blog ===== */
section.blog-section { padding: 90px 0; background: var(--bg-alt); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 12px; background: var(--bg); min-height: 220px; }
.blog-cat-row { display: flex; align-items: center; justify-content: space-between; }
.blog-cat-pill { font-family: var(--mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; padding: 5px 11px; border-radius: 20px; }
.blog-cat-pill.blue { background: #E7EEFB; color: #2454C7; }
.blog-cat-pill.green { background: #E5F3E9; color: #1C7A3E; }
.blog-cat-pill.gold { background: #FDF0D6; color: #9A6B0A; }
.blog-read-time { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--faint); font-family: var(--mono); }
.blog-card h3 { font-size: 18px; }
.blog-card p.excerpt { font-size: 13px; color: var(--muted); line-height: 1.55; }
.blog-card .read-more { font-size: 13px; font-weight: 700; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--gold-dark); }
@media (max-width: 800px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== Closing CTA ===== */
.closing-cta { background: var(--ink); padding: 80px 0; text-align: center; }
.closing-cta h2 { color: #F4F1EA; max-width: 560px; margin: 0 auto 16px; }
.closing-cta p { color: rgba(244,241,234,0.6); font-size: 15px; max-width: 480px; margin: 0 auto 30px; }
.closing-cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
footer.site-footer { background: #08090C; color: #F4F1EA; padding: 60px 0 0; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; padding: 0 0 40px; }
.footer-col p.head { font-size: 12px; font-weight: 700; color: rgba(244,241,234,0.5); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(244,241,234,0.8); margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 22px 0; font-size: 12px; color: rgba(244,241,234,0.4); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; border-top: 1px solid rgba(244,241,234,0.08); }
@media (max-width: 700px) { .footer-cols { grid-template-columns: 1fr 1fr; } }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s ease; cursor: zoom-out; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 32px; cursor: pointer; background: none; border: none; line-height: 1; }

/* floating whatsapp button */
.fab-cta { position: fixed; bottom: 24px; right: 24px; z-index: 190; background: var(--gold); color: var(--ink); padding: 14px 22px; border-radius: 30px; font-weight: 700; font-size: 13.5px; font-family: var(--display); display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 26px rgba(0,0,0,0.28); transition: transform .2s, background .2s; }
.fab-cta:hover { transform: translateY(-2px); background: var(--gold-dark); }
@media (max-width: 600px) { .fab-cta { padding: 12px 16px; font-size: 12.5px; bottom: 16px; right: 16px; } .fab-cta .fab-label { display: none; } }
