/* Corcus Studio LLP — shared design system
   Same visual language as corcusacademy.in (neo-brutalist black/yellow),
   loaded once and reused across every page instead of duplicated per-page. */

:root {
  --black: #0b0b0c;
  --ink: #15161b;
  --muted: #5c5f6b;
  --yellow: #FFD400;
  --yellow-soft: #FFF8CC;
  --white: #ffffff;
  --cream: #fffdf2;
  --line: #e6e1c9;
  --danger: #e5484d;
  --shadow: 7px 7px 0 var(--black);
  --shadow-sm: 4px 4px 0 var(--black);
  --shadow-lg: 11px 11px 0 var(--black);
  --radius: 24px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light only; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 1px 1px, rgba(11, 11, 12, .10) 1.35px, transparent 0) 0 0 / 26px 26px,
    var(--white);
}
h1, h2, h3, h4 { font-family: "Poppins", "Inter", sans-serif; margin-top: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color-scheme: light only; }
svg { display: block; }
img { max-width: 100%; }
.wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 1; }
.narrow-wrap { width: min(880px, calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 1; }

/* Buttons */
.btn {
  min-height: 56px; border: 2.5px solid var(--black); border-radius: 999px; padding: 0 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--yellow); color: var(--black); font-weight: 900; font-size: 15.5px; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.btn:active { transform: translate(1px, 1px); box-shadow: 3px 3px 0 var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-light { background: var(--white); color: var(--black); }
.btn-line { background: var(--white); color: var(--black); }
.btn-line:hover { background: var(--yellow-soft); }
.btn-sm { min-height: 46px; padding: 0 20px; font-size: 14px; }

/* Header / nav */
.cs-header-embed { position: sticky; top: 0; z-index: 50; padding-top: 14px; }
.cs-header-wrap { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.cs-header {
  background: var(--white); border: 2.5px solid var(--black); border-radius: 999px;
  box-shadow: var(--shadow-sm); padding: 8px 10px 8px 20px;
}
.cs-header .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cs-header .header-logo { display: flex; align-items: center; flex: 0 0 auto; }
.cs-header .header-logo img { height: 46px; width: auto; display: block; }
.cs-header nav { display: flex; align-items: center; gap: 6px; }
.cs-nav-links { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.cs-nav-links a {
  display: inline-flex; align-items: center; padding: 10px 16px; border-radius: 999px;
  font-weight: 800; font-size: 14px; transition: background .15s ease;
}
.cs-nav-links a:hover, .cs-nav-links a.active { background: var(--yellow-soft); }
.cs-nav-links li.has-dropdown { position: relative; }
.cs-nav-links .dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px; background: var(--white); border: 2.5px solid var(--black); border-radius: 18px; box-shadow: var(--shadow); padding: 10px; z-index: 70; }
.cs-nav-links li.has-dropdown:hover .dropdown-menu { display: block; }
.cs-nav-links .dropdown-menu a { display: block; padding: 10px 12px; border-radius: 12px; font-weight: 700; font-size: 13.5px; }
.cs-nav-links .dropdown-menu a:hover { background: var(--yellow-soft); }
.cs-header .nav-cta { margin-left: 6px; }
.cs-mobile-toggle { display: none; }
/* Hidden by default at every width — only the >900px media query below (via
   .open) or the <900px block reveals it. Without this base rule the menu
   rendered as an unstyled bullet list overlapping the header at desktop
   widths, since it had no display rule outside the mobile media query. */
.cs-mobile-menu { display: none; }
@media (max-width: 900px) {
  .cs-header nav.desktop-nav { display: none; }
  .cs-mobile-toggle {
    display: grid; place-items: center; width: 44px; height: 44px; border: 2px solid var(--black);
    border-radius: 50%; background: var(--white); cursor: pointer;
  }
  .cs-mobile-menu {
    position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; background: var(--white);
    border: 2.5px solid var(--black); border-radius: 22px; box-shadow: var(--shadow); padding: 14px; z-index: 60;
  }
  .cs-mobile-menu.open { display: block; }
  .cs-mobile-menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
  .cs-mobile-menu a { display: block; padding: 12px 14px; border-radius: 14px; font-weight: 800; }
  .cs-mobile-menu a:hover { background: var(--yellow-soft); }
}

/* Footer */
.cs-footer { background: var(--black); color: var(--white); padding: 56px 0 0; position: relative; overflow: hidden; }
.cs-footer .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.cs-footer .footer-logo { height: 40px; width: auto; display: block; }
.cs-footer .footer-desc { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.6; margin: 14px 0 20px; max-width: 280px; font-weight: 550; }
.cs-footer .social-row { display: flex; gap: 12px; }
.cs-footer .social-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--yellow); display: grid; place-items: center;
  transition: transform .18s ease, background .18s ease; font-size: 16px; color: var(--yellow);
}
.cs-footer .social-btn:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); }
.cs-footer .footer-col { display: flex; flex-direction: column; gap: 10px; }
.cs-footer .footer-col h4 { color: var(--yellow); font-size: 12.5px; text-transform: uppercase; letter-spacing: .07em; font-weight: 900; margin: 0 0 6px; font-family: "Poppins", sans-serif; }
.cs-footer .footer-col a, .cs-footer .footer-col span { color: rgba(255,255,255,.78); font-size: 13.5px; font-weight: 600; line-height: 1.5; }
.cs-footer .footer-col a:hover { color: var(--yellow); }
.cs-footer .footer-bottom { border-top: 2px solid rgba(255,255,255,.15); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,.55); font-weight: 700; }
.cs-footer .footer-bottom a:hover { color: var(--yellow); }
@media (max-width: 860px) { .cs-footer .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .cs-footer .footer-grid { grid-template-columns: 1fr; } .cs-footer .footer-bottom { flex-direction: column; text-align: center; } }

/* Hero */
.hero { position: relative; padding: clamp(50px, 7vw, 84px) 0 58px; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 430px; height: 430px; right: -140px; top: -170px; background: var(--yellow-soft); border: 2.5px solid var(--black); border-radius: 50%; z-index: 0; }
.hero::after { content: ""; position: absolute; width: 210px; height: 210px; left: -90px; bottom: -70px; background: var(--yellow); opacity: .35; border-radius: 50%; z-index: 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,460px); gap: clamp(28px,5vw,58px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 999px; background: var(--yellow-soft); border: 2px solid var(--black); color: var(--black); font-weight: 900; font-size: 13.5px; transform: rotate(-1deg); margin-bottom: 22px; }
.hero h1 { margin: 0 0 18px; font-size: clamp(34px,4.8vw,58px); line-height: 1.08; letter-spacing: -0.03em; color: var(--black); font-weight: 900; max-width: 780px; }
.hero .lead { max-width: 640px; margin: 0; color: #30323a; font-size: 17.5px; line-height: 1.72; font-weight: 550; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-image-box { border: 2.5px solid var(--black); border-radius: 30px; box-shadow: var(--shadow-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--yellow-soft); }
.hero-image-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

/* Trust badge strip */
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 2px solid var(--black); border-radius: 999px; background: var(--white); font-weight: 800; font-size: 12.5px; box-shadow: var(--shadow-sm); }

/* Founder / co-founder spotlight card */
.founder-card { background: var(--black); color: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); padding: clamp(24px,3vw,36px); display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; box-shadow: var(--shadow); }
.founder-card .founder-photo { width: 130px; height: 130px; border-radius: 50%; border: 3px solid var(--yellow); overflow: hidden; flex: 0 0 auto; }
.founder-card .founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-card h3 { color: var(--white); font-size: 22px; margin: 0 0 2px; }
.founder-card .founder-role { color: var(--yellow); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.founder-card p { color: rgba(255,255,255,.8); line-height: 1.65; margin: 0 0 18px; font-weight: 550; font-size: 14.5px; }
.founder-stats { display: flex; flex-wrap: wrap; gap: 22px; }
.founder-stats div strong { display: block; color: var(--yellow); font-size: 22px; font-weight: 900; font-family: "Poppins", sans-serif; }
.founder-stats div span { font-size: 11px; color: rgba(255,255,255,.7); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 700px) { .founder-card { grid-template-columns: 1fr; text-align: center; } .founder-card .founder-photo { margin: 0 auto; } .founder-stats { justify-content: center; } }

/* Service card sub-bullet points */
.service-card ul.service-points { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 6px; }
.service-card ul.service-points li { font-size: 12.5px; font-weight: 650; color: var(--muted); display: flex; align-items: flex-start; gap: 6px; }
.service-card.dark ul.service-points li { color: rgba(255,255,255,.72); }
.service-card ul.service-points li::before { content: "\2713"; color: var(--black); font-weight: 900; flex: 0 0 auto; }
.service-card.dark ul.service-points li::before { color: var(--yellow); }

/* Tilted ticker banner */
.tilt-marquee-wrap { height: 90px; position: relative; overflow: hidden; }
.tilt-marquee { height: 54px; background: var(--black); display: flex; align-items: center; white-space: nowrap; overflow: hidden; position: absolute; top: 18px; left: -20px; right: -20px; transform: rotate(-2deg); border-top: 2.5px solid var(--yellow); border-bottom: 2.5px solid var(--yellow); }
.tilt-marquee-track { display: flex; gap: 36px; width: max-content; animation: marquee-left 22s linear infinite; padding: 0 18px; }
.tilt-marquee-track span { font-size: 16px; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: .04em; display: flex; align-items: center; gap: 36px; }
.tilt-marquee-track span::after { content: "\2726"; color: var(--yellow); margin-left: 36px; }

/* Sections / headings */
section { padding: clamp(48px, 6vw, 76px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.kicker { width: fit-content; display: inline-flex; align-items: center; gap: 7px; background: var(--yellow-soft); color: var(--black); border: 2px solid var(--black); border-radius: 999px; padding: 6px 14px; font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.section-head.center .kicker { margin-left: auto; margin-right: auto; }
.section-title { margin: 0; font-size: clamp(28px,3.8vw,44px); line-height: 1.12; letter-spacing: -0.025em; color: var(--black); font-weight: 900; }
.section-title.stroke { -webkit-text-stroke: 2px var(--black); color: transparent; }
.section-sub { margin: 14px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; font-weight: 550; }

/* Services grid */
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.service-card { background: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start; transition: transform .18s ease, box-shadow .18s ease; min-width: 0; }
.service-card:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow); }
.service-card.dark { background: var(--black); color: var(--white); }
.service-card .service-icon { width: 56px; height: 56px; border-radius: 16px; border: 2px solid var(--black); background: var(--yellow); display: grid; place-items: center; font-size: 24px; flex: 0 0 auto; }
.service-card.dark .service-icon { background: var(--yellow); }
.service-card h3 { font-size: 19px; margin: 0 0 8px; font-weight: 900; }
.service-card h3 a:hover { text-decoration: underline; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; font-weight: 550; }
.service-card.dark p { color: rgba(255,255,255,.75); }
.service-card.spotlight { position: relative; border-color: var(--black); box-shadow: 6px 6px 0 var(--black); }
.service-card.spotlight-tag,
.spotlight-tag { position: absolute; top: -12px; right: 18px; background: var(--yellow); border: 2px solid var(--black); border-radius: 999px; padding: 3px 12px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .03em; }
@media (max-width: 760px) { .service-grid { grid-template-columns: 1fr; } .service-card { flex-direction: column; } }

/* Case study preview cards (dark band on homepage) */
.case-band { background: var(--black); border: 2.5px solid var(--black); border-radius: var(--radius); padding: clamp(20px,3vw,30px); box-shadow: var(--shadow); }
.case-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.case-preview-card { background: var(--black); color: var(--white); border-radius: 18px; padding: 8px; }
.case-preview-card h4 { color: var(--white); font-size: 19px; margin: 0 0 12px; font-weight: 900; }
.case-preview-card p { color: rgba(255,255,255,.78); font-size: 13.5px; line-height: 1.6; margin: 0 0 16px; font-weight: 550; }
.case-preview-card a { color: var(--yellow); font-weight: 900; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 860px) { .case-preview-grid { grid-template-columns: 1fr; } }

/* Case study cards (listing page) */
.case-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.case-card { background: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.case-card:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow); }
.case-card .case-thumb { aspect-ratio: 16/10; background: var(--yellow-soft); border-bottom: 2.5px solid var(--black); overflow: hidden; }
.case-card .case-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-card .case-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-card .case-client { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.case-card h3 { font-size: 19px; margin: 0; font-weight: 900; }
.case-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 0; flex: 1; }
.case-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 900; font-size: 13.5px; border: 2px solid var(--black); border-radius: 999px; padding: 9px 15px; background: var(--yellow-soft); box-shadow: var(--shadow-sm); margin-top: 6px; }
.service-card.dark .case-link { background: var(--yellow); }
@media (max-width: 900px) { .case-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .case-grid { grid-template-columns: 1fr; } }

/* Service landing page — includes checklist grid */
.includes-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.includes-item { display: flex; align-items: flex-start; gap: 12px; background: var(--white); border: 2px solid var(--black); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-sm); font-weight: 700; font-size: 14.5px; }
.includes-item i { color: var(--black); background: var(--yellow); border-radius: 50%; width: 26px; height: 26px; display: grid; place-items: center; font-size: 13px; flex: 0 0 auto; }
@media (max-width: 700px) { .includes-grid { grid-template-columns: 1fr; } }

/* Service landing page — 4-step process */
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.process-step { background: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.process-step .step-num { font-family: "Poppins", sans-serif; font-weight: 900; font-size: 13px; color: var(--black); background: var(--yellow); border: 2px solid var(--black); border-radius: 999px; width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 14px; }
.process-step h4 { margin: 0 0 6px; font-size: 16px; font-weight: 900; }
.process-step p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; font-weight: 550; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* Service landing page — who-it's-for checklist (reuses includes-item look, single column) */
.who-for-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
@media (max-width: 700px) { .who-for-grid { grid-template-columns: 1fr; } }

/* Service landing page — In-house vs Freelancer vs Corcus comparison table */
.compare-table-wrap { overflow-x: auto; border: 2.5px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--white); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; font-size: 13.5px; font-weight: 600; border-bottom: 2px solid var(--line); }
.compare-table thead th { background: var(--black); color: var(--white); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.compare-table thead th.hl-col { background: var(--yellow); color: var(--black); }
.compare-table tbody td.hl-col { background: var(--yellow-soft); font-weight: 800; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 900; color: var(--black); white-space: nowrap; }

/* Course-card style service card (Academy-style) */
.svc-grid-v2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.svc-card-v2 { background: var(--white); border: 2.5px solid var(--black); border-radius: 26px; padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; transition: transform .18s ease, box-shadow .18s ease; }
.svc-card-v2:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow-lg); }
.svc-card-v2 .badges { display: flex; gap: 8px; flex-wrap: wrap; }
.svc-card-v2 .badge-pill { background: var(--yellow-soft); border: 2px solid var(--black); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 900; }
.svc-card-v2 .badge-pill.alt { background: var(--white); }
.svc-card-v2 h3 { font-size: 23px; font-weight: 900; margin: 0; line-height: 1.15; }
.svc-card-v2 h3 a:hover { text-decoration: underline; }
.svc-card-v2 .tagline { font-style: italic; font-weight: 800; font-size: 15px; color: var(--ink); margin: 0; }
.svc-card-v2 .desc { color: var(--muted); font-size: 14px; line-height: 1.6; font-weight: 550; margin: 0; }
.svc-card-v2 .divider { border-top: 2px dashed var(--line); margin: 2px 0; }
.svc-card-v2 .card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.svc-card-v2 .meta-text { font-size: 12px; font-weight: 900; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.svc-card-v2 .explore-btn { background: var(--yellow-soft); border: 2.5px solid var(--black); border-radius: 999px; padding: 12px 22px; font-weight: 900; font-size: 14px; box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 8px; transition: transform .15s ease, box-shadow .15s ease; white-space: nowrap; }
.svc-card-v2 .explore-btn:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
@media (max-width: 760px) { .svc-grid-v2 { grid-template-columns: 1fr; } }

/* Service page info chip row (Academy course-page style: duration/batch/fee ...) */
.meta-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.meta-chip { background: var(--white); border: 2px solid var(--black); border-radius: 16px; padding: 12px 18px; box-shadow: var(--shadow-sm); min-width: 140px; }
.meta-chip .m-label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 3px; }
.meta-chip .m-value { display: block; font-size: 14.5px; font-weight: 900; color: var(--black); }

/* Lead capture popup modal */
.lead-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(11,11,12,.6); z-index: 200; align-items: center; justify-content: center; padding: 20px; }
.lead-modal-overlay.open { display: flex; }
.lead-modal { background: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(22px,4vw,34px); width: min(560px, 100%); max-height: 90vh; overflow-y: auto; position: relative; }
.lead-modal .lead-modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--black); background: var(--white); display: grid; place-items: center; cursor: pointer; font-size: 16px; }
.lead-modal .lead-modal-close:hover { background: var(--yellow-soft); }
.lead-modal h3 { font-size: 22px; margin: 0 0 6px; padding-right: 30px; }
.lead-modal p.lead-modal-sub { color: var(--muted); font-size: 13.5px; margin: 0 0 18px; font-weight: 550; }
@media (max-width: 620px) { .svc-grid-v2 { grid-template-columns: 1fr; } }

/* Academy-style service hero (badges, chips, visual card) */
.svc-hero { padding: clamp(40px,6vw,64px) 0; background: var(--white); border-bottom: 2.5px solid var(--black); overflow: hidden; }
.svc-hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(300px,420px); gap: clamp(28px,5vw,50px); align-items: center; }
.svc-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.svc-brand-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 2px solid var(--black); border-radius: 999px; padding: 7px 16px 7px 7px; font-weight: 900; font-size: 13px; }
.svc-brand-pill .brand-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--black); color: var(--yellow); display: grid; place-items: center; font-size: 12px; font-weight: 900; }
.svc-status-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow-soft); border: 2px solid var(--black); border-radius: 999px; padding: 7px 16px; font-weight: 800; font-size: 13px; }
.svc-status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--black); }
.svc-hero h1 { font-size: clamp(32px,4.6vw,52px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 900; margin: 0 0 18px; max-width: 720px; }
.svc-hero-desc { font-size: 16px; line-height: 1.7; color: var(--muted); font-weight: 550; max-width: 620px; margin: 0 0 26px; }
.svc-fact-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.svc-fact-chip { border: 2px solid var(--black); border-radius: 999px; padding: 9px 16px; font-weight: 800; font-size: 12.5px; background: var(--white); }
.svc-visual-card { background: var(--white); border: 2.5px solid var(--black); border-radius: 30px; box-shadow: var(--shadow-lg); padding: 20px; position: relative; }
.svc-visual-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.svc-live-pill { background: var(--black); color: var(--yellow); border-radius: 999px; padding: 7px 14px; font-weight: 900; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 6px; }
.svc-live-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.svc-icon-badge { width: 56px; height: 56px; border-radius: 50%; background: var(--yellow); border: 2.5px solid var(--black); display: grid; place-items: center; font-size: 22px; flex: 0 0 auto; }
.svc-visual-box { border: 2.5px dashed var(--black); border-radius: 20px; background: repeating-linear-gradient(135deg, var(--yellow-soft) 0 12px, #fff9df 12px 24px); padding: 40px 24px; text-align: center; min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.svc-visual-box h4 { font-size: 20px; font-weight: 900; margin: 0; }
.svc-visual-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 16px; }
.svc-visual-grid .m-cell { border: 2px solid var(--black); border-radius: 14px; padding: 12px 14px; }
.svc-visual-grid .m-cell .m-label { display: block; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 3px; }
.svc-visual-grid .m-cell .m-value { display: block; font-size: 14px; font-weight: 900; }
@media (max-width: 900px) { .svc-hero-grid { grid-template-columns: 1fr; } }

/* Why-this-service alternating card grid (Academy style) */
.svc-why-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.svc-why-card { border: 2.5px solid var(--black); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); background: var(--white); transition: transform .18s ease, box-shadow .18s ease; }
.svc-why-card:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow); }
.svc-why-card.alt-yellow { background: var(--yellow); }
.svc-why-card.alt-black { background: var(--black); color: var(--white); }
.svc-why-card.alt-black p { color: rgba(255,255,255,.75); }
.svc-why-card .why-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--yellow); border: 2px solid var(--black); display: grid; place-items: center; font-size: 17px; margin-bottom: 16px; }
.svc-why-card.alt-yellow .why-icon, .svc-why-card.alt-black .why-icon { background: var(--white); }
.svc-why-card h4 { font-size: 17px; font-weight: 900; margin: 0 0 8px; }
.svc-why-card p { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; font-weight: 550; }
@media (max-width: 900px) { .svc-why-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .svc-why-grid { grid-template-columns: 1fr; } }

/* Horizontal divided stat-strip bar (Academy style) */
.stat-strip-bar { display: flex; border: 2.5px solid var(--black); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.stat-strip-bar .ss-cell { flex: 1 1 0; padding: 18px 20px; border-right: 2.5px solid var(--black); }
.stat-strip-bar .ss-cell:last-child { border-right: none; background: var(--black); }
.stat-strip-bar .ss-cell:last-child .ss-label { color: rgba(255,255,255,.65); }
.stat-strip-bar .ss-cell:last-child .ss-value { color: var(--yellow); }
.stat-strip-bar .ss-label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 4px; }
.stat-strip-bar .ss-value { display: block; font-size: 17px; font-weight: 900; }
@media (max-width: 700px) { .stat-strip-bar { flex-direction: column; } .stat-strip-bar .ss-cell { border-right: none; border-bottom: 2.5px solid var(--black); } .stat-strip-bar .ss-cell:last-child { border-bottom: none; } }

/* Case study / blog detail article */
.article-head { background: var(--yellow-soft); border-bottom: 2.5px solid var(--black); padding: clamp(40px,6vw,64px) 0; }
.article-head .kicker { margin-bottom: 16px; }
.article-head h1 { font-size: clamp(28px,4vw,44px); margin: 0 0 12px; }
.article-head .meta { color: var(--muted); font-weight: 700; font-size: 13.5px; }
.article-body { padding: clamp(36px,5vw,56px) 0; }
.article-body .narrow-wrap h2 { font-size: 24px; margin: 34px 0 10px; }
.article-body .narrow-wrap h2:first-child { margin-top: 0; }
.article-body .narrow-wrap p { line-height: 1.75; margin: 0 0 16px; font-weight: 550; color: var(--ink); }
.article-body .narrow-wrap ul { line-height: 1.75; margin: 0 0 16px; padding-left: 22px; font-weight: 550; }
.article-body .narrow-wrap li { margin-bottom: 8px; }
.article-cover { border: 2.5px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 8px; }
.article-cover img { width: 100%; display: block; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.team-card { background: var(--white); border: 2.5px solid var(--black); border-radius: 24px; padding: 18px; box-shadow: var(--shadow-sm); min-width: 0; text-align: center; }
.team-photo { aspect-ratio: 1/1; border: 2.5px solid var(--black); border-radius: 20px; background: var(--yellow-soft); overflow: hidden; margin-bottom: 15px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h4 { margin: 0 0 5px; font-size: 16px; font-weight: 900; }
.team-card .role { display: inline-flex; background: var(--yellow-soft); border: 1.5px solid var(--black); border-radius: 999px; padding: 4px 9px; font-size: 11px; font-weight: 900; }
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* Why-us numbered list */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.why-list { display: grid; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .why-num { font-family: "Poppins", sans-serif; font-weight: 900; font-size: 26px; -webkit-text-stroke: 2px var(--black); color: transparent; min-width: 34px; }
.why-item h4 { margin: 0 0 4px; font-size: 16.5px; font-weight: 900; }
.why-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; font-weight: 550; }
.why-image { border: 2.5px solid var(--black); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.why-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* Value cards (about page) */
.value-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.value-card { background: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); text-align: center; transition: transform .18s ease, box-shadow .18s ease; }
.value-card:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow); background: var(--black); color: var(--white); }
.value-card:hover p { color: rgba(255,255,255,.78); }
.value-card .v-icon { width: 52px; height: 52px; border-radius: 15px; border: 2px solid var(--black); background: var(--yellow); display: grid; place-items: center; font-size: 22px; margin: 0 auto 14px; }
.value-card h3 { font-size: 17px; margin: 0 0 8px; font-weight: 900; }
.value-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; font-weight: 550; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* Value cards placed on a black section background need a yellow shadow
   instead of black, otherwise the shadow disappears into the section bg */
.dark-section .value-card { box-shadow: 4px 4px 0 var(--yellow); }
.dark-section .value-card:hover { box-shadow: 7px 7px 0 var(--yellow); }
.dark-section .kicker { background: var(--yellow); }

/* Stat band */
.stat-band { background: var(--black); color: var(--white); border-radius: var(--radius); padding: clamp(28px,4vw,40px); display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; box-shadow: var(--shadow); }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: "Poppins", sans-serif; font-size: clamp(28px,3.5vw,40px); font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 6px; }
.stat-item span { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.75); }
@media (max-width: 700px) { .stat-band { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* "Numbers that don't lie" boxed stat band */
.big-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.big-stat-box { background: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); padding: 26px 18px; text-align: center; box-shadow: var(--shadow-sm); }
.big-stat-box strong { display: block; font-family: "Poppins", sans-serif; font-size: clamp(30px,4vw,44px); font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 8px; }
.big-stat-box span { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.big-stat-box.highlight { background: var(--yellow); box-shadow: var(--shadow); transform: translateY(-6px); }
.big-stat-box.highlight span { color: var(--ink); }
@media (max-width: 700px) { .big-stats { grid-template-columns: repeat(2, minmax(0,1fr)); } .big-stat-box.highlight { transform: none; } }

/* Client logo marquee */
.client-band { background: var(--white); }
.marquee-wrap { display: grid; gap: 18px; mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); }
.marquee-row { overflow: hidden; }
.marquee-track { display: flex; gap: 18px; width: max-content; align-items: center; animation: marquee-left 42s linear infinite; }
.marquee-row.reverse .marquee-track { animation-name: marquee-right; animation-duration: 48s; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.client-logo-chip { background: var(--white); border: 2px solid var(--black); border-radius: 18px; padding: 14px 18px; display: grid; place-items: center; box-shadow: var(--shadow-sm); flex: 0 0 auto; height: 76px; width: 140px; }
.client-logo-chip img { max-height: 44px; max-width: 100px; object-fit: contain; }

/* Powered-by strip */
.powered-strip { background: var(--black); padding: 34px 0; text-align: center; }
.powered-strip h4 { color: var(--white); margin: 0 0 18px; font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
.powered-track { display: flex; gap: 40px; width: max-content; animation: marquee-left 26s linear infinite; align-items: center; }
.powered-strip:hover .powered-track { animation-play-state: paused; }
.powered-track img { max-height: 40px; filter: brightness(0) invert(1); opacity: .85; }

/* Testimonials */
.t-scroll { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.t-card { background: var(--white); border: 2px solid var(--black); border-radius: 24px; padding: 24px; box-shadow: var(--shadow-sm); width: 320px; flex: 0 0 auto; scroll-snap-align: start; display: flex; flex-direction: column; }
.t-card .stars { color: #ffb100; font-size: 14px; margin-bottom: 12px; }
.quote { color: #32343b; font-style: italic; line-height: 1.65; margin: 0 0 18px; font-weight: 550; font-size: 14px; flex: 1; }
.who { font-weight: 900; color: var(--black); font-size: 14.5px; }
.t-card .role { color: var(--muted); font-size: 12px; margin-top: 3px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-bottom: 34px; }
.contact-info-card { background: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); text-align: center; }
.contact-info-card .c-icon { width: 52px; height: 52px; border-radius: 15px; border: 2px solid var(--black); background: var(--yellow); display: grid; place-items: center; font-size: 22px; margin: 0 auto 14px; }
.contact-info-card h3 { font-size: 16px; margin: 0 0 6px; font-weight: 900; }
.contact-info-card p, .contact-info-card a { margin: 0; color: var(--muted); font-size: 13.5px; font-weight: 600; }
.contact-wrap-card { background: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(20px,3vw,32px); display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-wrap-card .map-box { border: 2px solid var(--black); border-radius: 18px; overflow: hidden; min-height: 420px; }
.contact-wrap-card .map-box iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.cs-form { display: grid; gap: 14px; }
.cs-form label { font-weight: 800; font-size: 13px; margin-bottom: -8px; }
.cs-form input, .cs-form textarea, .cs-form select { border: 2px solid var(--black); border-radius: 14px; padding: 13px 15px; font-size: 14.5px; width: 100%; background: var(--white); font-family: inherit; }
.cs-form textarea { min-height: 120px; resize: vertical; }
.cs-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b0b0c'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.cs-form input:focus, .cs-form textarea:focus, .cs-form select:focus { outline: none; box-shadow: 0 0 0 3px var(--yellow-soft); }

/* Two-column field-grid form (Matebiz-style layout) */
.cs-form.cs-form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cs-form.cs-form-grid .field { display: grid; gap: 6px; }
.cs-form.cs-form-grid .field label { font-weight: 800; font-size: 13px; }
.cs-form.cs-form-grid .full-row { grid-column: 1 / -1; }
.cs-form.cs-form-grid button[type="submit"] { min-height: 58px; font-size: 16px; justify-content: center; }
@media (max-width: 620px) { .cs-form.cs-form-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-wrap-card { grid-template-columns: 1fr; } }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.blog-card { background: var(--white); border: 2.5px solid var(--black); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.blog-card:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow); }
.blog-card .blog-thumb { aspect-ratio: 16/10; background: var(--yellow-soft); border-bottom: 2.5px solid var(--black); overflow: hidden; }
.blog-card .blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card .blog-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card .blog-date { color: var(--muted); font-size: 11.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.blog-card h3 { font-size: 17px; margin: 0; font-weight: 900; line-height: 1.3; }
.blog-card p { color: var(--muted); font-size: 13px; line-height: 1.55; margin: 0; flex: 1; }
.blog-card .blog-link { font-weight: 900; font-size: 13px; color: var(--black); margin-top: 4px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }
.empty-state { text-align: center; padding: 40px 20px; color: var(--muted); font-weight: 600; }

/* FAQ / generic list */
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 2px solid var(--black); border-radius: 20px; padding: 20px; box-shadow: var(--shadow-sm); }
.faq-item h4 { margin: 0 0 8px; font-size: 17px; font-weight: 900; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.6; font-weight: 550; }

/* Final CTA */
.final-cta { position: relative; padding: clamp(54px,7vw,78px) 0; background: var(--yellow-soft); border-top: 2.5px solid var(--black); overflow: hidden; }
.final-card { background: var(--white); border: 2.5px solid var(--black); border-radius: 34px; box-shadow: var(--shadow-lg); padding: clamp(28px,5vw,54px); text-align: center; }
.final-card h2 { margin: 0 0 12px; font-size: clamp(28px,4.5vw,50px); line-height: 1.1; font-weight: 900; letter-spacing: -.03em; }
.final-card p { margin: 0 auto 28px; max-width: 620px; color: var(--muted); line-height: 1.65; font-weight: 600; }
.final-card .hero-actions { justify-content: center; }

/* Policy pages */
.policy-nav { position: sticky; top: 12px; z-index: 5; display: flex; gap: 8px; flex-wrap: wrap; background: var(--white); border: 2px solid var(--black); border-radius: 999px; padding: 8px; box-shadow: var(--shadow-sm); margin: 22px 0 10px; width: fit-content; }
.policy-nav a { padding: 9px 16px; border-radius: 999px; font-weight: 900; font-size: 13px; }
.policy-nav a:hover { background: var(--yellow-soft); }
.policy-section { padding: 40px 0; border-top: 2px dashed var(--line); scroll-margin-top: 90px; }
.policy-section:first-of-type { border-top: none; }
.policy-section h2 { font-size: 24px; margin-bottom: 6px; }
.policy-updated { color: var(--muted); font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px; }
.policy-section h3 { font-size: 17px; margin: 26px 0 8px; }
.policy-section p { line-height: 1.75; margin: 0 0 14px; font-weight: 500; }
.policy-section ul { line-height: 1.75; margin: 0 0 14px; padding-left: 22px; font-weight: 500; }
.policy-section li { margin-bottom: 6px; }
.policy-section strong { font-weight: 800; }

@media (max-width: 620px) {
  .wrap, .narrow-wrap { width: min(100% - 28px, 1140px); }
  .hero-actions, .final-card .hero-actions { flex-direction: column; }
  .hero-actions .btn, .final-card .btn { width: 100%; }
}
