/* Digikalawn — shared design system (service pages) */
:root {
  --bg: #07080f;
  --bg-2: #0a0c16;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --indigo: #5b6cff;
  --indigo-bright: #8a97ff;
  --indigo-deep: #3a44c9;
  --text: #eef0fa;
  --muted: #969ab4;
  --muted-2: #6a6e86;
  --wa: #25d366;
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--indigo); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--indigo-bright); font-family: var(--body);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, transparent, var(--indigo)); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 14px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: all .25s cubic-bezier(.2,.7,.3,1); white-space: nowrap;
}
.btn-wa { background: var(--wa); color: #04210f; box-shadow: 0 8px 30px -8px rgba(37,211,102,.55); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(37,211,102,.7); }
.btn-primary { background: var(--indigo); color: #fff; box-shadow: 0 8px 30px -8px rgba(91,108,255,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px -10px rgba(91,108,255,.8); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--text); }

/* Nav */
header.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
header.nav.scrolled { background: rgba(7,8,15,.72); backdrop-filter: blur(18px) saturate(1.4); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.logo-mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(145deg, var(--indigo-bright), var(--indigo-deep)); display: grid; place-items: center; font-size: 17px; color: #fff; box-shadow: 0 6px 22px -6px rgba(91,108,255,.7), inset 0 1px 0 rgba(255,255,255,.4); }
.logo-mark span { transform: translateY(-1px); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; background: none; border: 0; color: var(--text); cursor: pointer; }

.mobile-menu { position: fixed; inset: 0; z-index: 200; background: rgba(7,8,15,.96); backdrop-filter: blur(14px); display: none; flex-direction: column; padding: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.mobile-menu nav a { font-family: var(--display); font-size: 26px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .btn-wa { margin-top: 30px; justify-content: center; }

/* Service hero */
.shero { position: relative; padding: 150px 0 80px; overflow: hidden; }
.shero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.shero-glow { position: absolute; top: -20%; left: 18%; width: 760px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(91,108,255,.3), rgba(91,108,255,0) 62%); filter: blur(20px); }
.shero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 60% at 30% 0%, #000 30%, transparent 72%); }
.shero-inner { position: relative; z-index: 1; max-width: 760px; }
.crumb { font-size: 13.5px; color: var(--muted-2); margin-bottom: 26px; display: flex; gap: 8px; align-items: center; }
.crumb a:hover { color: var(--text); }
.crumb .sep { opacity: .5; }
.crumb .cur { color: var(--indigo-bright); }
h1.shero-title { font-size: clamp(38px, 5.6vw, 66px); font-weight: 600; margin-top: 20px; }
h1.shero-title .grad { background: linear-gradient(110deg, var(--indigo-bright) 10%, #c9d0ff 55%, var(--indigo-bright)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.shero p.sub { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 600px; margin: 24px 0 0; }
.shero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.shero-stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.shero-stats .num { font-family: var(--display); font-size: 34px; font-weight: 600; letter-spacing: -.03em; }
.shero-stats .num .u { color: var(--indigo-bright); }
.shero-stats small { color: var(--muted); font-size: 14px; }

/* Section */
section.block { padding: 100px 0; }
.alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 46px); margin-top: 18px; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 18px; }

/* Feature / included grid (reuses svc look) */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat { position: relative; padding: 28px; border-radius: 18px; background: var(--surface); border: 1px solid var(--border); transition: transform .3s, border-color .3s, background .3s; overflow: hidden; }
.feat:hover { transform: translateY(-5px); border-color: var(--border-strong); background: var(--surface-2); }
.feat-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(138,151,255,.22), rgba(58,68,201,.12)); border: 1px solid var(--border); color: var(--indigo-bright); margin-bottom: 20px; }
.feat h3 { font-size: 20px; font-weight: 600; }
.feat p { color: var(--muted); font-size: 15px; margin-top: 9px; line-height: 1.55; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.step { display: flex; gap: 18px; padding: 22px; border-radius: 16px; transition: background .25s; }
.step:hover { background: var(--surface); }
.step-n { font-family: var(--display); font-size: 15px; color: var(--indigo-bright); font-weight: 600; border: 1px solid var(--border); width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--surface); }
.step h3 { font-size: 18px; font-weight: 600; }
.step p { color: var(--muted); font-size: 15px; margin-top: 6px; }

/* Local angle */
.local { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.local-card { border-radius: 22px; border: 1px solid var(--border); padding: 34px; background: linear-gradient(165deg, var(--surface-2), transparent); position: relative; overflow: hidden; }
.local-card .ring { position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(91,108,255,.22), transparent 65%); }
.local-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px; }
.local-list li { list-style: none; display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.local-list .ck { width: 24px; height: 24px; flex: none; border-radius: 7px; display: grid; place-items: center; background: rgba(37,211,102,.14); color: var(--wa); margin-top: 1px; }

/* Packages */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.pkg { display: flex; flex-direction: column; padding: 30px 26px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); position: relative; transition: transform .3s, border-color .3s; }
.pkg:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.pkg.featured { background: linear-gradient(170deg, rgba(91,108,255,.14), var(--surface)); border-color: rgba(138,151,255,.4); }
.pkg-badge { position: absolute; top: -11px; left: 26px; background: var(--indigo); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.pkg-name { font-family: var(--display); font-size: 19px; font-weight: 600; }
.pkg-tag { color: var(--muted); font-size: 14px; margin-top: 5px; min-height: 38px; }
.pkg-price { font-family: var(--display); font-size: 38px; font-weight: 600; letter-spacing: -.03em; margin-top: 14px; }
.pkg-price .per { font-family: var(--body); font-size: 14px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.pkg-price .from { display: block; font-family: var(--body); font-size: 12px; color: var(--muted-2); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px; }
.pkg ul { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.pkg ul li { display: flex; gap: 11px; font-size: 14.5px; color: var(--muted); align-items: flex-start; }
.pkg ul li b { color: var(--text); font-weight: 600; }
.pkg ul .ck { width: 19px; height: 19px; flex: none; color: var(--indigo-bright); margin-top: 2px; }
.pkg .btn { width: 100%; justify-content: center; margin-top: auto; }
.pkg.custom { background: linear-gradient(170deg, rgba(37,211,102,.1), var(--surface)); border-style: dashed; border-color: rgba(37,211,102,.32); }
.pkg.custom .pkg-price { font-size: 28px; }
.pkg-note { text-align: center; color: var(--muted-2); font-size: 14px; margin-top: 24px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); font-family: var(--display); font-size: 19px; font-weight: 500; padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-strong); display: grid; place-items: center; transition: transform .3s, background .3s; color: var(--indigo-bright); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--indigo); color: #fff; border-color: var(--indigo); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--muted); font-size: 16px; padding: 0 0 24px; max-width: 92%; }

/* CTA */
.cta-band { padding: 100px 0; }
.cta-card { position: relative; border-radius: 28px; padding: 64px 50px; text-align: center; background: linear-gradient(160deg, #11142b, #0a0c18); border: 1px solid var(--border-strong); overflow: hidden; }
.cta-card .glow { position: absolute; inset: 0; background: radial-gradient(600px circle at 50% 120%, rgba(91,108,255,.35), transparent 60%); }
.cta-card h2 { position: relative; font-size: clamp(28px, 4vw, 48px); }
.cta-card p { position: relative; color: var(--muted); max-width: 520px; margin: 18px auto 0; font-size: 18px; }
.cta-actions { position: relative; display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* More services */
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.more-card { padding: 22px 24px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 14px; transition: transform .25s, border-color .25s, background .25s; }
.more-card:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--surface-2); }
.more-card span { font-family: var(--display); font-size: 17px; font-weight: 600; }
.more-card .ar { color: var(--muted-2); transition: color .2s, transform .2s; }
.more-card:hover .ar { color: var(--indigo-bright); transform: translateX(4px); }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 60px 0 34px; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-grid h4 { font-family: var(--body); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.foot-grid a, .foot-grid p { color: var(--muted); font-size: 15px; display: block; margin-bottom: 11px; transition: color .2s; }
.foot-grid a:hover { color: var(--text); }
.foot-brand p { color: var(--muted); font-size: 15px; max-width: 280px; margin-top: 18px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 14px; flex-wrap: wrap; gap: 12px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: all .2s; }
.socials a:hover { color: var(--text); border-color: var(--text); background: var(--surface); }

/* Floating WhatsApp */
.fab { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; color: #04210f; box-shadow: 0 10px 34px -8px rgba(37,211,102,.65); transition: transform .25s; }
.fab:hover { transform: scale(1.08); }
.fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.7);opacity:0} }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Responsive */
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .menu-btn { display: block; }
  .feat-grid, .more-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .local { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .feat-grid, .more-grid, .pkg-grid, .steps { grid-template-columns: 1fr; }
  section.block, .cta-band { padding: 70px 0; }
  .cta-card { padding: 46px 24px; }
  .shero { padding: 130px 0 64px; }
  .shero-stats { gap: 28px; }
}


/* ============ BLOG / CASE STUDY / CONTACT ============ */

/* Hero centered variant */
.page-hero { position: relative; padding: 150px 0 70px; overflow: hidden; text-align: center; }
.page-hero .shero-inner { max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(38px, 5.4vw, 64px); font-weight: 600; margin-top: 18px; }
.page-hero h1 .grad { background: linear-gradient(110deg, var(--indigo-bright) 10%, #c9d0ff 55%, var(--indigo-bright)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p.sub { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 600px; margin: 22px auto 0; }

/* Category chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 34px; }
.chip { font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--muted); padding: 9px 17px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); cursor: pointer; transition: all .2s; }
.chip:hover { color: var(--text); border-color: var(--border-strong); }
.chip.active { background: var(--indigo); color: #fff; border-color: var(--indigo); }

/* Avatar */
.avatar { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--display); font-size: 14px; font-weight: 600; color: #fff; background: linear-gradient(145deg, var(--indigo-bright), var(--indigo-deep)); border: 1px solid rgba(255,255,255,.18); }
.avatar.lg { width: 64px; height: 64px; font-size: 22px; }

/* Post meta */
.post-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted-2); }
.post-meta .cat { color: var(--indigo-bright); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.post-meta .sep { opacity: .5; }

/* Featured post */
a.featured { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; background: var(--surface); transition: border-color .3s, transform .3s; }
a.featured:hover { border-color: var(--border-strong); transform: translateY(-4px); }
a.featured image-slot { width: 100%; height: 100%; min-height: 320px; display: block; }
.featured-body { padding: 44px; display: flex; flex-direction: column; }
.featured-tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--indigo-bright); }
.featured-body h2 { font-size: clamp(26px, 3vw, 36px); margin: 16px 0 14px; font-weight: 600; }
.featured-body p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.featured-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 28px; }
.featured-foot .nm { font-size: 14px; font-weight: 600; }
.featured-foot .ro { font-size: 13px; color: var(--muted-2); }

/* Post grid */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.post-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: var(--surface); transition: transform .3s, border-color .3s; }
.post-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.post-card image-slot { width: 100%; height: 190px; display: block; }
.post-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 20px; font-weight: 600; margin: 12px 0 10px; line-height: 1.2; }
.post-card p { color: var(--muted); font-size: 15px; line-height: 1.55; flex: 1; }
.post-card .author-row { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.post-card .author-row .nm { font-size: 13.5px; font-weight: 600; }
.post-card .author-row .rd { margin-left: auto; font-size: 13px; color: var(--indigo-bright); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.post-card:hover .author-row .rd { gap: 9px; }

/* ---- Single post ---- */
.article-head { max-width: 800px; margin: 0 auto; text-align: center; }
.article-head h1 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 600; margin: 20px 0 26px; letter-spacing: -.02em; }
.article-byline { display: inline-flex; align-items: center; gap: 12px; }
.article-byline .nm { font-size: 15px; font-weight: 600; text-align: left; }
.article-byline .ro { font-size: 13px; color: var(--muted-2); text-align: left; }
.article-hero-img { max-width: 1000px; margin: 48px auto 0; }
.article-hero-img image-slot { width: 100%; height: 440px; display: block; border-radius: 20px; border: 1px solid var(--border); }
.article { max-width: 740px; margin: 0 auto; }
.article .lead { font-size: 21px; line-height: 1.6; color: var(--text); margin-bottom: 30px; font-weight: 500; }
.article p { color: var(--muted); font-size: 17.5px; line-height: 1.75; margin-bottom: 22px; }
.article h2 { font-size: 30px; font-weight: 600; margin: 46px 0 18px; letter-spacing: -.02em; }
.article h3 { font-size: 22px; font-weight: 600; margin: 34px 0 14px; }
.article ul, .article ol { color: var(--muted); font-size: 17.5px; line-height: 1.7; margin: 0 0 24px; padding-left: 4px; list-style: none; }
.article ul li { display: flex; gap: 13px; margin-bottom: 13px; align-items: flex-start; }
.article ul li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); margin-top: 11px; flex: none; }
.article ol { counter-reset: li; padding-left: 0; }
.article ol li { display: flex; gap: 14px; margin-bottom: 14px; counter-increment: li; }
.article ol li::before { content: counter(li); font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--indigo-bright); border: 1px solid var(--border); width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex: none; background: var(--surface); }
.article blockquote { border-left: 3px solid var(--indigo); padding: 6px 0 6px 24px; margin: 30px 0; font-family: var(--display); font-size: 23px; line-height: 1.4; color: var(--text); font-weight: 500; }
.article a { color: var(--indigo-bright); text-decoration: underline; text-underline-offset: 3px; }
.article strong { color: var(--text); font-weight: 600; }
.article .callout { border: 1px solid var(--border); background: var(--surface); border-radius: 16px; padding: 24px 26px; margin: 30px 0; }
.article .callout p { margin: 0; font-size: 16.5px; }
.article .callout p strong { color: var(--indigo-bright); }

.post-foot { max-width: 740px; margin: 50px auto 0; }
.post-cta-box { position: relative; overflow: hidden; border-radius: 22px; border: 1px solid var(--border-strong); background: linear-gradient(160deg, #11142b, #0a0c18); padding: 40px; text-align: center; margin: 56px auto 0; max-width: 820px; }
.post-cta-box .glow { position: absolute; inset: 0; background: radial-gradient(500px circle at 50% 130%, rgba(91,108,255,.32), transparent 60%); }
.post-cta-box h3 { position: relative; font-size: 26px; font-weight: 600; }
.post-cta-box p { position: relative; color: var(--muted); margin: 12px auto 24px; max-width: 460px; font-size: 16px; }
.post-cta-box .btn { position: relative; }
.author-card { display: flex; gap: 20px; align-items: flex-start; border: 1px solid var(--border); border-radius: 20px; padding: 28px; background: var(--surface); max-width: 820px; margin: 30px auto 0; }
.author-card .nm { font-family: var(--display); font-size: 19px; font-weight: 600; }
.author-card .ro { color: var(--indigo-bright); font-size: 13.5px; font-weight: 600; margin-top: 2px; }
.author-card p { color: var(--muted); font-size: 15px; margin-top: 12px; line-height: 1.6; }
.post-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; max-width: 820px; margin: 36px auto 0; flex-wrap: wrap; }

/* ---- Case studies ---- */
.cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cs-card { border: 1px solid var(--border); border-radius: 22px; overflow: hidden; background: var(--surface); transition: transform .3s, border-color .3s; display: flex; flex-direction: column; }
.cs-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.cs-card image-slot { width: 100%; height: 240px; display: block; }
.cs-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.cs-tag { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--indigo-bright); }
.cs-body h3 { font-size: 24px; font-weight: 600; margin: 12px 0 12px; line-height: 1.18; }
.cs-body .challenge { color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.cs-metrics { display: flex; gap: 26px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.cs-metrics .num { font-family: var(--display); font-size: 30px; font-weight: 600; letter-spacing: -.03em; }
.cs-metrics .num .u { color: var(--wa); }
.cs-metrics small { display: block; color: var(--muted); font-size: 12.5px; margin-top: 3px; }
.cs-result { margin-top: 22px; font-size: 14.5px; color: var(--muted); display: flex; gap: 11px; align-items: flex-start; }
.cs-result .ck { width: 22px; height: 22px; flex: none; border-radius: 7px; display: grid; place-items: center; background: rgba(37,211,102,.14); color: var(--wa); margin-top: 1px; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.method { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); transition: border-color .25s, transform .25s; }
.method:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.method-ico { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: linear-gradient(145deg, rgba(138,151,255,.22), rgba(58,68,201,.12)); border: 1px solid var(--border); color: var(--indigo-bright); }
.method.wa .method-ico { background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.3); color: var(--wa); }
.method h3 { font-size: 13px; font-family: var(--body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.method .val { font-family: var(--display); font-size: 18px; font-weight: 500; margin-top: 4px; }
.method .sub { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.hours { border: 1px solid var(--border); border-radius: 16px; background: var(--surface); padding: 22px; }
.hours h3 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; font-family: var(--body); margin-bottom: 14px; }
.hours .row { display: flex; justify-content: space-between; font-size: 15px; padding: 7px 0; color: var(--muted); }
.hours .row b { color: var(--text); font-weight: 600; }

.form-card { border: 1px solid var(--border); border-radius: 22px; background: linear-gradient(165deg, var(--surface-2), transparent); padding: 38px; }
.form-card h2 { font-size: 26px; font-weight: 600; }
.form-card .fc-sub { color: var(--muted); font-size: 15px; margin-top: 8px; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; background: var(--bg); border: 1px solid var(--border-strong); border-radius: 12px; padding: 13px 15px; color: var(--text); font-family: var(--body); font-size: 15px; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(91,108,255,.18); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236a6e86' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form-card .btn-wa { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 14px; text-align: center; }
.map-slot { margin-top: 30px; }
.map-slot image-slot { width: 100%; height: 280px; display: block; border-radius: 20px; border: 1px solid var(--border); }

@media (max-width: 940px) {
  a.featured { grid-template-columns: 1fr; }
  a.featured image-slot { min-height: 220px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .article-hero-img image-slot { height: 300px; }
}
@media (max-width: 560px) {
  .post-grid { grid-template-columns: 1fr; }
  .featured-body { padding: 28px; }
  .field.row2 { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .article .lead { font-size: 19px; }
  .article p, .article ul, .article ol { font-size: 16.5px; }
  .author-card { flex-direction: column; gap: 14px; }
}


/* ===== Process timeline (richer) ===== */
.proc { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.proc::before { content: ""; position: absolute; top: 25px; left: 9%; right: 9%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong) 18%, var(--border-strong) 82%, transparent); }
.proc-step { position: relative; }
.proc-num { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--indigo-bright); background: var(--bg-2); border: 1px solid var(--border-strong); margin: 0 auto 22px; position: relative; z-index: 1; transition: border-color .3s, color .3s, box-shadow .3s; }
.proc-step:hover .proc-num { border-color: var(--indigo); color: var(--text); box-shadow: 0 8px 26px -8px rgba(91,108,255,.6); }
.proc-step h3 { font-size: 18px; font-weight: 600; text-align: center; }
.proc-step p { color: var(--muted); font-size: 14.5px; margin-top: 9px; text-align: center; line-height: 1.55; padding: 0 4px; }

/* ===== Why Digikalawn ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-card { position: relative; padding: 30px; border-radius: 18px; border: 1px solid var(--border); background: var(--surface); overflow: hidden; display: flex; gap: 20px; align-items: flex-start; transition: border-color .3s, transform .3s, background .3s; }
.why-card:hover { border-color: var(--border-strong); transform: translateY(-4px); background: var(--surface-2); }
.why-ico { width: 48px; height: 48px; border-radius: 13px; flex: none; display: grid; place-items: center; background: linear-gradient(145deg, rgba(138,151,255,.22), rgba(58,68,201,.12)); border: 1px solid var(--border); color: var(--indigo-bright); }
.why-card h3 { font-size: 18px; font-weight: 600; }
.why-card p { color: var(--muted); font-size: 15px; margin-top: 8px; line-height: 1.55; }
.why-card .why-no { position: absolute; right: 22px; top: 14px; font-family: var(--display); font-size: 54px; font-weight: 700; line-height: 1; color: var(--text); opacity: .05; letter-spacing: -.04em; }

/* ===== Testimonials ===== */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tst { padding: 30px 28px; border-radius: 18px; border: 1px solid var(--border); background: var(--surface); display: flex; flex-direction: column; transition: border-color .3s, transform .3s; }
.tst:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.tst .qstars { color: #ffc555; letter-spacing: 2px; font-size: 14px; }
.tst .quote { font-size: 16px; line-height: 1.62; color: var(--text); margin: 16px 0 0; flex: 1; }
.tst .who { display: flex; gap: 13px; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.tst .who .nm { font-size: 14.5px; font-weight: 600; }
.tst .who .ro { font-size: 13px; color: var(--muted-2); margin-top: 1px; }

/* ===== Industries ===== */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ind { padding: 26px 22px; border-radius: 16px; border: 1px solid var(--border); background: var(--surface); display: flex; flex-direction: column; gap: 14px; transition: border-color .3s, transform .3s, background .3s; }
.ind:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--surface-2); }
.ind-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(138,151,255,.22), rgba(58,68,201,.12)); border: 1px solid var(--border); color: var(--indigo-bright); }
.ind h3 { font-size: 16px; font-weight: 600; }
.ind p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }

@media (max-width: 940px) {
  .proc { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .proc::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .proc { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
}


/* Stats strip (shared) */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 44px 26px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--display); font-size: clamp(30px, 3.4vw, 46px); font-weight: 600; letter-spacing: -.03em; }
.stat .num .u { color: var(--indigo-bright); }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 8px; }
@media (max-width: 940px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
}


/* ===== Single-post sidebar layout ===== */
.post-layout { display: grid; grid-template-columns: minmax(0,1fr) 326px; gap: 52px; align-items: start; max-width: 1160px; margin: 0 auto; }
.post-main { min-width: 0; }
.post-main .article, .post-main .post-cta-box, .post-main .author-card, .post-main .post-nav { max-width: none; margin-left: 0; margin-right: 0; }
.post-main .post-cta-box { margin-top: 48px; }
.post-main .author-card { margin-top: 26px; }
.post-main .post-nav { margin-top: 30px; }

.sidebar { position: sticky; top: 98px; display: flex; flex-direction: column; gap: 20px; align-self: start; }
.widget { border: 1px solid var(--border); border-radius: 18px; background: var(--surface); padding: 24px; }
.widget-title { font-family: var(--body); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 9px; }
.widget-title::before { content: ""; width: 16px; height: 2px; background: var(--indigo); border-radius: 2px; }

/* TOC */
.toc { display: flex; flex-direction: column; gap: 2px; }
.toc a { font-size: 14.5px; color: var(--muted); padding: 8px 12px; border-radius: 9px; line-height: 1.4; border-left: 2px solid transparent; transition: color .2s, background .2s, border-color .2s; }
.toc a:hover { color: var(--text); background: var(--surface-2); }
.toc a.active { color: var(--indigo-bright); background: rgba(91,108,255,.1); border-left-color: var(--indigo); font-weight: 600; }

/* Services banner */
.sb-banner { position: relative; overflow: hidden; border-radius: 18px; border: 1px solid var(--border-strong); background: linear-gradient(165deg, #14173a, #0a0c18); padding: 26px; }
.sb-banner .glow { position: absolute; inset: 0; background: radial-gradient(280px circle at 82% -10%, rgba(91,108,255,.42), transparent 60%); }
.sb-banner > *:not(.glow) { position: relative; }
.sb-banner .badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--wa); background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.28); padding: 5px 11px; border-radius: 999px; }
.sb-banner h3 { font-size: 20px; font-weight: 600; margin: 14px 0 8px; line-height: 1.22; }
.sb-banner p { color: var(--muted); font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
.sb-banner .btn { width: 100%; justify-content: center; font-size: 14px; padding: 12px 18px; }
.sb-banner .svc-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.sb-banner .svc-links a { font-size: 12.5px; color: var(--muted); border: 1px solid var(--border); padding: 5px 10px; border-radius: 999px; transition: color .2s, border-color .2s; }
.sb-banner .svc-links a:hover { color: var(--text); border-color: var(--border-strong); }

/* Recent posts */
.recent { display: flex; flex-direction: column; }
.recent a { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.recent a:first-child { padding-top: 0; }
.recent a:last-child { border-bottom: 0; padding-bottom: 0; }
.recent .rn { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--indigo-bright); flex: none; }
.recent .rt { font-size: 14px; font-weight: 600; line-height: 1.35; color: var(--text); transition: color .2s; }
.recent a:hover .rt { color: var(--indigo-bright); }
.recent .rm { font-size: 12px; color: var(--muted-2); margin-top: 4px; }

@media (max-width: 980px) {
  .post-layout { grid-template-columns: 1fr; gap: 44px; }
  .sidebar { position: static; }
}


/* ===== Homepage-style hero (service pages) ===== */
.hero { position: relative; padding: 168px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 900px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(91,108,255,.32), rgba(91,108,255,0) 62%); filter: blur(20px); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 35%, transparent 75%); }
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 920px; margin: 0 auto; }
.rating-pill { display: inline-flex; align-items: center; gap: 10px; padding: 7px 7px 7px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: 13.5px; color: var(--muted); margin-bottom: 30px; white-space: nowrap; max-width: 100%; }
.rating-pill .rtxt { display: none; }
@media (min-width: 480px) { .rating-pill .rtxt { display: inline; } }
.rating-pill b { color: var(--text); font-weight: 700; }
.stars { color: #ffc555; letter-spacing: 1px; font-size: 13px; }
.rating-tag { background: var(--surface-2); border: 1px solid var(--border); padding: 4px 11px; border-radius: 999px; font-size: 12px; color: var(--indigo-bright); font-weight: 600; }
h1.hero-title { font-size: clamp(40px, 6.4vw, 78px); font-weight: 600; }
h1.hero-title .grad { background: linear-gradient(110deg, var(--indigo-bright) 10%, #c9d0ff 55%, var(--indigo-bright)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.sub { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 620px; margin: 26px auto 0; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.hero-meta { margin-top: 26px; font-size: 14px; color: var(--muted-2); display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 10px var(--wa); }
@media (max-width: 560px) { .hero { padding: 130px 0 64px; } }


/* ===== Services dropdown (header) ===== */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > .nav-top { display: inline-flex; align-items: center; gap: 5px; font-size: 15px; color: var(--muted); font-weight: 500; transition: color .2s; cursor: pointer; }
.nav-item:hover > .nav-top { color: var(--text); }
.nav-item .caret { transition: transform .25s ease; }
.nav-item:hover .caret { transform: rotate(180deg); }
/* invisible hover bridge so the menu doesn't close in the gap */
.nav-item.has-dd::after { content: ""; position: absolute; left: -24px; right: -24px; top: 100%; height: 26px; }
.dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(8px);
  display: flex; gap: 30px; padding: 20px 22px;
  background: rgba(10, 12, 22, 0.97); backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border-strong); border-radius: 18px;
  box-shadow: 0 36px 70px -24px rgba(0, 0, 0, 0.7);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, transform .22s ease; z-index: 200;
}
.nav-item.has-dd:hover .dropdown,
.nav-item.has-dd:focus-within .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dd-col { display: flex; flex-direction: column; min-width: 212px; }
.dd-col-title { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; padding: 4px 12px 10px; }
.dropdown a { display: flex; align-items: center; gap: 11px; padding: 9px 12px; border-radius: 10px; font-size: 14.5px; color: var(--muted); font-weight: 500; transition: background .18s, color .18s; white-space: nowrap; }
.dropdown a:hover { background: var(--surface-2); color: var(--text); }
.dd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo-bright); flex: none; opacity: .65; transition: opacity .18s, transform .18s; }
.dropdown a:hover .dd-dot { opacity: 1; transform: scale(1.35); }

/* Mobile menu service groups */
.mobile-menu .mm-label { display: block; font-family: var(--display); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin: 18px 0 4px; }
.mobile-menu nav a.mm-sub { font-family: var(--body); font-size: 18px; padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.mobile-menu nav a.mm-sub:hover { color: var(--text); }

@media (max-width: 940px) {
  .nav-item, .dropdown { display: none; }
}
