/*
Theme Name: IT Company Astra Child
Theme URI: https://localhost/wordpresswork/
Author: Senior WordPress Developer
Author URI: https://localhost/
Description: Child theme based on Astra for a modern IT company website with one-page hybrid layout and Elementor-ready page templates.
Template: astra
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: it-company-astra
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --primary:        #0a6cff;
  --primary-dark:   #0451c4;
  --primary-light:  #e8f0ff;
  --accent:         #00d2ff;
  --gradient:       linear-gradient(135deg, #0a6cff 0%, #00d2ff 100%);
  --gradient-dark:  linear-gradient(135deg, #0451c4 0%, #0a6cff 100%);
  --neutral:        #0d1720;
  --surface:        #ffffff;
  --surface-2:      #f7f9fc;
  --surface-3:      #eef2f8;
  --text:           #1f2937;
  --text-light:     #4b5563;
  --muted:          #64748b;
  --border:         rgba(15, 23, 42, 0.08);
  --shadow-sm:      0 4px 16px rgba(10, 108, 255, 0.08);
  --shadow-md:      0 12px 40px rgba(10, 108, 255, 0.12);
  --shadow-lg:      0 24px 64px rgba(10, 108, 255, 0.16);
  --radius-sm:      0.5rem;
  --radius:         1rem;
  --radius-lg:      1.5rem;
  --max-width:      1200px;
  --header-h:       72px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  color: var(--neutral);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 1rem;
}

p { margin: 0 0 1rem; }

section { padding: 5rem 1.5rem; }

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
   
@media (max-width: 768px) {
    .mobile-menu,
    .menu-overlay,
    .offcanvas-menu {
        background: #000 !important;
    }

    .mobile-menu a {
        color: #ffffff !important;
        font-size: 18px;
        display: block;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        width: 100% !important;
        height: 100vh;
        overflow-y: auto;
    }
}
@media (max-width: 768px) {
    .mobile-menu ul {
        margin: 0;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu .btn,
    .mobile-menu .get-started {
        position: relative;
        width: 90%;
        margin: 20px auto;
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-close {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column !important;
    }

    .navbar-nav li {
        width: 100%;
    }
}   
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-heading .eyebrow { margin-bottom: 1rem; }

.section-heading h2 {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   GRID SYSTEM
   ============================================================ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.button-primary, .btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10, 108, 255, 0.35);
}

.button-primary:hover, .btn-primary:hover {
  background: var(--gradient-dark);
  box-shadow: 0 8px 30px rgba(10, 108, 255, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.button-secondary, .btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.button-secondary:hover, .btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.button-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.button-white:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   CARDS (base)
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 108, 255, 0.15);
}

/* ============================================================
   FIXED RIGHT SOCIAL SIDEBAR
   ============================================================ */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ssb-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
  padding: .65rem .7rem .65rem 1rem;
  background: #0d1720;
  color: #fff;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  max-width: 42px;
  transition: max-width .3s ease, background .25s;
  white-space: nowrap;
}
.ssb-link svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.ssb-label {
  font-size: .75rem;
  font-weight: 600;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity .25s .05s, max-width .3s;
  letter-spacing: .02em;
}
.ssb-link:hover {
  max-width: 140px;
  color: #fff;
}
.ssb-link:hover .ssb-label {
  opacity: 1;
  max-width: 100px;
}
.ssb-whatsapp:hover  { background: #25D366; }
.ssb-linkedin:hover  { background: #0A66C2; }
.ssb-instagram:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.ssb-facebook:hover  { background: #1877F2; }
.ssb-youtube:hover   { background: #FF0000; }

@media (max-width: 768px) {
  .social-sidebar { display: none; }
}

/* ============================================================
   FOOTER SOCIAL — brand colour hovers
   ============================================================ */
.footer-social a { transition: background .2s, color .2s, transform .2s; }
.footer-social a:hover { transform: translateY(-2px); }
.footer-social .fs-whatsapp:hover  { background: #25D366 !important; color: #fff !important; }
.footer-social .fs-linkedin:hover  { background: #0A66C2 !important; color: #fff !important; }
.footer-social .fs-instagram:hover { background: #E1306C !important; color: #fff !important; }
.footer-social .fs-facebook:hover  { background: #1877F2 !important; color: #fff !important; }
.footer-social .fs-youtube:hover   { background: #FF0000 !important; color: #fff !important; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.main-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.main-header-bar .site-branding,
.main-header-bar .primary-menu a {
  color: rgba(255, 255, 255, 0.9);
}

.main-header-bar .primary-menu a:hover,
.main-header-bar .primary-menu .current-menu-item > a {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.main-header-bar .nav-toggle span {
  background: #fff;
}

.main-header-bar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.main-header-bar.scrolled .site-branding,
.main-header-bar.scrolled .primary-menu a {
  color: rgba(255, 255, 255, 0.9);
}

.main-header-bar.scrolled .primary-menu a:hover,
.main-header-bar.scrolled .primary-menu .current-menu-item > a {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.main-header-bar.scrolled .nav-toggle span {
  background: #fff;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-branding {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--neutral);
  white-space: nowrap;
}

.site-branding:hover { color: var(--primary); }

/* Custom logo image in header */
.site-branding.logo-image { gap: 0; }
.site-branding.logo-image a,
.site-branding.logo-image .custom-logo-link { display: flex; align-items: center; }
.site-branding.logo-image img,
.site-branding.logo-image .custom-logo { height: 44px; width: auto; max-width: 160px; object-fit: contain; display: block; }

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Primary menu */
.primary-navigation { display: flex; align-items: center; gap: 2rem; }

.primary-menu {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.primary-menu li { margin: 0; }

.primary-menu a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
  color: var(--primary);
  background: var(--primary-light);
}

.header-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: 999px !important;
  font-size: 0.88rem !important;
}

.header-cta:hover {
  background: var(--gradient-dark) !important;
  box-shadow: 0 4px 16px rgba(10, 108, 255, 0.35);
  transform: translateY(-1px);
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-toggle:hover { background: var(--primary-light); }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Offset for fixed header */
body { padding-top: var(--header-h); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  padding: 5rem 1.5rem;
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + 5rem);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  animation: heroFade 18s infinite ease-in-out;
}
.hero-slide--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0a0a14;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes heroFade {
  0%,8%,100% { opacity:0; transform:scale(1.06); }
  12%,38%   { opacity:1; transform:scale(1); }
  42%,98%   { opacity:0; transform:scale(1.04); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7,60,141,0.88) 0%,
    rgba(13,23,32,0.72) 60%,
    rgba(0,210,255,0.18) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content .eyebrow {
  background: rgba(255,255,255,0.15);
  color: var(--accent);
  border: 1px solid rgba(0,210,255,0.35);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span {
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content > p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero .button-group { justify-content: center; }

.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.hero-stat {
  padding: 1.5rem 1rem;
  text-align: center;
  background: rgba(255,255,255,0.06);
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot::after {
  content: '';
  width: 6px;
  height: 10px;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(8px); opacity: 0.4; }
}

/* ============================================================
   DIGITAL MARKETING PAGE
   ============================================================ */

/* Hero */
.dm-hero {
  position: relative; background: #000;
  padding: 8rem 1.5rem 5rem; text-align: center; color: #fff; overflow: hidden;
}
.dm-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(34,197,94,.25) 0%, transparent 65%),
              radial-gradient(ellipse 50% 40% at 90% 90%, rgba(10,108,255,.15) 0%, transparent 60%);
  pointer-events: none;
}
.dm-hero__inner { position: relative; z-index: 1; }
.dm-eyebrow { background: rgba(34,197,94,.15); color: #22c55e; border: 1px solid rgba(34,197,94,.35); }
.dm-hero__title { font-size: clamp(2.4rem,5vw,4rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; color: #fff; }
.dm-hero__accent { color: #22c55e; }
.dm-hero__sub { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.75; }
.dm-hero__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.dm-btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem; border-radius: 999px;
  border: 2px solid rgba(255,255,255,.3); color: #fff;
  font-weight: 700; font-size: 0.95rem; transition: all 0.3s; text-decoration: none;
}
.dm-btn-outline:hover { border-color: #22c55e; color: #22c55e; }
.dm-hero__stats {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.dm-hero__stat strong { display: block; font-size: 2rem; font-weight: 800; color: #22c55e; line-height: 1; margin-bottom: 0.3rem; }
.dm-hero__stat span { font-size: 0.78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* Common section */
.dm-section { padding: 5rem 1.5rem; background: #fff; }
.dm-bg-dark { background: #0d1720; }
.dm-bg-dark .section-heading h2 { color: #fff; }
.dm-bg-dark .section-heading p  { color: rgba(255,255,255,.65); }
.dm-section .section-heading h2 { color: #0d1720; }
.dm-section .section-heading p  { color: #4b5563; }
.dm-eyebrow--white { background: rgba(34,197,94,.15); color: #22c55e; border: 1px solid rgba(34,197,94,.3); }
.dm-heading-white { color: #fff !important; }
.dm-text-muted { color: rgba(255,255,255,.65) !important; }

/* Pillars */
.dm-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.dm-pillar {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 2rem; text-align: center; transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.dm-pillar:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); border-color: #22c55e; }
.dm-pillar__icon {
  width: 64px; height: 64px; border-radius: 16px; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.dm-pillar__icon svg { width: 28px; height: 28px; color: #fff; }
.dm-pillar__icon--blue { background: linear-gradient(135deg,#0a6cff,#00d2ff); }
.dm-pillar__icon--green { background: linear-gradient(135deg,#22c55e,#16a34a); }
.dm-pillar__icon--orange { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.dm-pillar h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.dm-pillar p { color: #6b7280; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.dm-pillar__link { color: #22c55e; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: color 0.3s; }
.dm-pillar__link:hover { color: #16a34a; }

/* Split layout */
.dm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.dm-split__text h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 1rem; }
.dm-split__text p  { line-height: 1.8; margin-bottom: 1.25rem; }
.dm-check-list { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.65rem; }
.dm-check-list li { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,.85); font-size: 0.95rem; }
.dm-check-list li svg { width: 18px; height: 18px; color: #22c55e; flex-shrink: 0; }
.dm-split__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dm-service-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 1.5rem; transition: all 0.3s;
}
.dm-service-card:hover { background: rgba(255,255,255,.08); border-color: rgba(34,197,94,.4); transform: translateY(-3px); }
.dm-service-card__icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 0.875rem;
}
.dm-service-card__icon svg { width: 20px; height: 20px; color: #fff; }
.dm-service-card h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.5rem; }
.dm-service-card p  { color: rgba(255,255,255,.55); font-size: 0.82rem; line-height: 1.65; margin: 0; }

/* Platform cards */
.dm-platforms { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.dm-platform {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 1.75rem; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.dm-platform:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: #22c55e; }
.dm-platform__logo {
  width: 52px; height: 52px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 1rem;
}
.dm-platform h4 { font-size: 1rem; margin-bottom: 0.6rem; color: #0d1720; }
.dm-platform > p { font-size: 0.85rem; color: #6b7280; line-height: 1.65; margin-bottom: 1rem; }
.dm-platform__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid #f3f4f6; padding-top: 0.875rem; display: flex; flex-direction: column; gap: 0.4rem; }
.dm-platform__list li { font-size: 0.8rem; color: #4b5563; padding-left: 1rem; position: relative; }
.dm-platform__list li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 700; }

/* What's included */
.dm-included { margin-top: 4rem; background: #f8fafc; border-radius: 20px; padding: 3rem; }
.dm-included__title { text-align: center; font-size: 1.4rem; margin-bottom: 2rem; }
.dm-included__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.dm-included__item { display: flex; gap: 1rem; align-items: flex-start; }
.dm-included__item svg { width: 28px; height: 28px; flex-shrink: 0; margin-top: 0.2rem; }
.dm-included__item h5 { font-size: 0.95rem; margin-bottom: 0.35rem; color: #0d1720; }
.dm-included__item p  { font-size: 0.83rem; color: #6b7280; line-height: 1.65; margin: 0; }

/* SEO grid */
.dm-seo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.dm-seo-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 2rem; position: relative; transition: all 0.3s;
}
.dm-seo-card:hover { background: rgba(255,255,255,.07); border-color: #22c55e; transform: translateY(-4px); }
.dm-seo-card__num {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,.05); line-height: 1;
}
.dm-seo-card__icon { width: 48px; height: 48px; background: rgba(34,197,94,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.dm-seo-card__icon svg { width: 22px; height: 22px; color: #22c55e; }
.dm-seo-card h4 { color: #fff; font-size: 1rem; margin-bottom: 0.6rem; }
.dm-seo-card p  { color: rgba(255,255,255,.55); font-size: 0.85rem; line-height: 1.7; margin: 0; }

/* SEO cards on light (white) background — override for services page mobile section */
.dm-section:not(.dm-bg-dark) .dm-seo-card {
  background: #f8fafc; border-color: #e2e8f0;
}
.dm-section:not(.dm-bg-dark) .dm-seo-card:hover {
  background: #fff; border-color: #22c55e; box-shadow: 0 4px 20px rgba(34,197,94,.12);
}
.dm-section:not(.dm-bg-dark) .dm-seo-card__num { color: rgba(0,0,0,.06); }
.dm-section:not(.dm-bg-dark) .dm-seo-card h4 { color: #0d1720; }
.dm-section:not(.dm-bg-dark) .dm-seo-card p  { color: #4b5563; }

/* Process steps */
.dm-process { background: #f8fafc; }
.dm-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5rem; margin-top: 3rem; }
.dm-step { text-align: center; position: relative; }
.dm-step__num {
  width: 56px; height: 56px; background: #000; color: #fff;
  border-radius: 50%; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.dm-step:not(:last-child) .dm-step__line {
  position: absolute; top: 28px; left: 50%; width: 100%;
  height: 2px; background: #e5e7eb; z-index: 0;
}
.dm-step h4 { font-size: 0.95rem; margin-bottom: 0.5rem; color: #0d1720; }
.dm-step p  { font-size: 0.82rem; color: #6b7280; line-height: 1.65; }

/* Results section */
.dm-results { background: #000; }
.dm-results__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3rem; }
.dm-result-item { text-align: center; padding: 2rem 1rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; }
.dm-result-num { font-size: 3rem; font-weight: 900; color: #22c55e; display: inline; }
.dm-result-sym { font-size: 2rem; font-weight: 900; color: #22c55e; }
.dm-result-item p { color: rgba(255,255,255,.55); font-size: 0.85rem; line-height: 1.6; margin: 0.75rem 0 0; }

/* Why cards */
.dm-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.dm-why-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
  padding: 1.75rem; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.dm-why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: #22c55e; }
.dm-why-card__icon {
  width: 50px; height: 50px; background: #f0fdf4; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.dm-why-card__icon svg { width: 22px; height: 22px; color: #22c55e; }
.dm-why-card h4 { font-size: 1rem; margin-bottom: 0.5rem; color: #0d1720; }
.dm-why-card p  { font-size: 0.85rem; color: #6b7280; line-height: 1.7; margin: 0; }

/* CTA Banner */
.dm-cta-banner { background: #22c55e; padding: 4rem 1.5rem; }
.dm-cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.dm-cta-banner__text h2 { color: #fff; font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 0.5rem; }
.dm-cta-banner__text p  { color: rgba(255,255,255,.85); font-size: 0.95rem; max-width: 540px; margin: 0; }
.dm-cta-banner__btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.dm-cta-banner .button-primary { background: #000 !important; color: #fff !important; }
.dm-cta-banner .button-primary:hover { background: #0d1720 !important; }
.dm-btn-outline--dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem; border-radius: 999px;
  border: 2px solid rgba(0,0,0,.3); color: #000;
  font-weight: 700; font-size: 0.95rem; transition: all 0.3s; text-decoration: none;
}
.dm-btn-outline--dark:hover { background: rgba(0,0,0,.1); }

/* Responsive */
@media (max-width: 1024px) {
  .dm-pillars { grid-template-columns: repeat(2,1fr); }
  .dm-platforms { grid-template-columns: repeat(2,1fr); }
  .dm-seo-grid { grid-template-columns: repeat(2,1fr); }
  .dm-why-grid { grid-template-columns: repeat(2,1fr); }
  .dm-steps { grid-template-columns: repeat(3,1fr); }
  .dm-results__grid { grid-template-columns: repeat(2,1fr); }
  .dm-split { grid-template-columns: 1fr; }
  .dm-included__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .dm-pillars, .dm-platforms, .dm-seo-grid, .dm-why-grid,
  .dm-steps, .dm-results__grid, .dm-split__cards { grid-template-columns: 1fr; }
  .dm-included__grid { grid-template-columns: 1fr; }
  .dm-hero__stats { gap: 1.5rem; }
  .dm-cta-banner__inner { flex-direction: column; text-align: center; }
  .dm-step__line { display: none !important; }
}

/* ============================================================
   TECH BANNER — services + scrolling tech stack
   ============================================================ */
.tb-section {
  background: #05050a;
  padding: 4rem 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Heading */
.tb-head {
  text-align: center;
  padding: 0 1.5rem 2.5rem;
}
.tb-label {
  display: inline-block;
  background: rgba(34,197,94,.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 99px;
  padding: .3rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.tb-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.tb-accent { color: #22c55e; }

/* Services icon grid */
.tb-services-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: .75rem;
  padding: 0 1.5rem 3rem;
}
.tb-svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.4rem .75rem 1.1rem;
  text-decoration: none;
  transition: background .25s, border-color .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.tb-svc-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(34,197,94,.4);
  transform: translateY(-3px);
}
.tb-svc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tb-svc-icon svg { width: 22px; height: 22px; }
.tb-svc-icon--blue   { background: rgba(96,165,250,.15); } .tb-svc-icon--blue svg   { stroke: #60a5fa; }
.tb-svc-icon--purple { background: rgba(168,85,247,.15); } .tb-svc-icon--purple svg { stroke: #a855f7; }
.tb-svc-icon--pink   { background: rgba(236,72,153,.15); } .tb-svc-icon--pink svg   { stroke: #ec4899; }
.tb-svc-icon--green  { background: rgba(34,197,94,.15);  } .tb-svc-icon--green svg  { stroke: #22c55e; }
.tb-svc-icon--orange { background: rgba(249,115,22,.15); } .tb-svc-icon--orange svg { stroke: #f97316; }
.tb-svc-icon--cyan   { background: rgba(6,182,212,.15);  } .tb-svc-icon--cyan svg   { stroke: #06b6d4; }
.tb-svc-icon--red    { background: rgba(239,68,68,.15);  } .tb-svc-icon--red svg    { stroke: #ef4444; }
.tb-svc-icon--teal   { background: rgba(20,184,166,.15); } .tb-svc-icon--teal svg   { stroke: #14b8a6; }

.tb-svc-name {
  font-size: .78rem;
  font-weight: 600;
  color: #cbd5e1;
  text-align: center;
  line-height: 1.3;
}
.tb-svc-arrow {
  font-size: .7rem;
  color: #22c55e;
  opacity: 0;
  transition: opacity .2s;
}
.tb-svc-card:hover .tb-svc-arrow { opacity: 1; }

/* Marquee rows */
.tb-marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: .6rem 0;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.05);
}
.tb-marquee-wrap:last-child { border-bottom: none; }

.tb-marquee {
  display: flex;
  gap: .75rem;
  width: max-content;
  will-change: transform;
}
.tb-marquee--left  { animation: tb-scroll-left  38s linear infinite; }
.tb-marquee--right { animation: tb-scroll-right 42s linear infinite; }
@keyframes tb-scroll-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tb-scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tb-marquee-wrap:hover .tb-marquee { animation-play-state: paused; }

.tb-tech-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px;
  padding: .4rem 1rem .4rem .7rem;
  white-space: nowrap;
  color: #94a3b8;
  font-size: .82rem;
  font-weight: 500;
  transition: background .2s, border-color .2s, color .2s;
}
.tb-tech-chip:hover {
  background: rgba(34,197,94,.1);
  border-color: rgba(34,197,94,.35);
  color: #e2e8f0;
}
.tb-tech-chip svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1200px) {
  .tb-services-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .tb-services-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .tb-svc-card { padding: 1.1rem .6rem .9rem; }
  .tb-title { font-size: 1.4rem; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--surface-2); }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .eyebrow { display: inline-block; }

.about-text h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.about-text p { color: var(--text-light); }

.about-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.badge svg { width: 16px; height: 16px; color: var(--primary); }

.about-features { display: grid; gap: 1rem; }

.icon-box {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 108, 255, 0.2);
}

.icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.icon-box h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.icon-box p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 108, 255, 0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon svg { color: #fff; }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

/* Tech Stack */
.tech-stack { margin-top: 1rem; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.tech-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
  box-shadow: var(--shadow-sm);
}

.tech-badge span {
  transition: color 0.5s ease;
}

.tech-badge:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.tech-badge:hover span {
  color: #fff;
}

.tech-badge:hover .tech-icon img {
  filter: brightness(0) invert(1);
}

.tech-badge .tech-icon { font-size: 2rem; margin-bottom: 0.5rem; line-height: 1; display:flex; align-items:center; justify-content:center; }
.tech-badge .tech-icon img { display:block; transition: filter 0.5s ease; }


.tech-badge span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--surface-2); }

.portfolio-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img-wrap img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 108, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay { opacity: 1; }

.project-overlay a {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
}

.project-body { padding: 1.5rem; flex: 1; }

.project-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.project-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.project-body p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   FACTS / STATS
   ============================================================ */
.facts {
  background: var(--gradient);
  color: #fff;
  padding: 4rem 1.5rem;
}

.facts .section-heading h2 { color: #fff; }
.facts .section-heading p  { color: rgba(255,255,255,0.8); }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.fact-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: rgba(255,255,255,0.06);
  transition: var(--transition);
}

.fact-item:hover { background: rgba(255,255,255,0.12); }

.fact-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.fact-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.fact-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--surface-2); }

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-light);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-light);
  margin: 0 0 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--neutral);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--surface); }

.member-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.member-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.member-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-photo-wrap img { transform: scale(1.06); }

.member-social {
  position: absolute;
  inset: 0;
  background: rgba(10, 108, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}

.member-card:hover .member-social { opacity: 1; }

.member-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.member-social a:hover {
  background: rgba(255,255,255,0.35);
}

.member-social svg { width: 18px; height: 18px; fill: currentColor; }

.member-info { padding: 1.5rem; }

.member-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.member-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-bio {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--surface-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 108, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--surface); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.pricing-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--neutral);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-price sub { font-size: 1rem; color: var(--muted); }
.pricing-period { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }

.pricing-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}

.pricing-features li.disabled { color: var(--muted); opacity: 0.55; }
.pricing-features li.disabled svg { color: var(--muted); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { background: var(--surface-2); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.post-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-thumb img { transform: scale(1.06); }

.post-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.post-category {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-light);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}

.post-body h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.post-body h3 a { color: var(--neutral); }
.post-body h3 a:hover { color: var(--primary); }

.post-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.read-more::after {
  content: '→';
  transition: transform 0.2s ease;
}

.read-more:hover::after { transform: translateX(4px); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--neutral);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.newsletter h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.newsletter p  { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--surface-2); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 108, 255, 0.2);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contact-info-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.92rem;
  color: var(--text);
  margin: 0;
}

.contact-map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.contact-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 768px) {
  .contact-map-wrap {
    padding-bottom: 65%;
  }
}

@media (max-width: 480px) {
  .contact-map-wrap {
    padding-bottom: 75%;
  }
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.4rem;
}

.contact-form-card > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Contact Form 7 styling */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--surface);
  transition: var(--transition);
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-field textarea,
.wpcf7 textarea { min-height: 140px; resize: vertical; }

.wpcf7-submit,
.contact-form-card input[type="submit"] {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10,108,255,0.35);
}

.wpcf7-submit:hover { box-shadow: 0 8px 30px rgba(10,108,255,0.5); transform: translateY(-2px); }

/* ---- CAPTCHA field ---- */
.captcha-field {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.captcha-label-text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.captcha-label-text svg { color: var(--primary); flex-shrink: 0; }
.captcha-label-text strong { color: var(--primary); font-size: 1rem; }

.captcha-field input[type="number"] {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral);
  background: var(--surface);
  width: 100%;
  max-width: 180px;
  transition: var(--transition);
  -moz-appearance: textfield;
}

.captcha-field input[type="number"]::-webkit-inner-spin-button,
.captcha-field input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }

.captcha-field input[type="number"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.captcha-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--neutral);
  color: rgba(255,255,255,0.8);
  padding: 5rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-top: 1rem;
}

.footer-brand .site-branding {
  color: #fff;
  font-size: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 0.25rem;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-bottom a { color: var(--accent); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .facts-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .primary-navigation {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
  }

  .primary-navigation.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .primary-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .primary-menu a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .header-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .grid-2, .grid-3, .grid-4,
  .portfolio-grid, .blog-grid,
  .gallery-grid, .pricing-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-track { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 3.5rem 1rem; }
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.5rem; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { width: 100%; }
}

/* ============================================================
   ASTRA OVERRIDES (reset conflicting Astra defaults)
   ============================================================ */
/* Hide duplicate section headings on pages that have their own page-header banner */
.page-template-page-portfolio #portfolio .section-heading,
.page-template-page-about    #about    .section-heading,
.page-template-page-services #services .section-heading { display: none; }

.ast-container { max-width: var(--max-width) !important; }
#masthead { display: none !important; }
.ast-above-header-bar { display: none !important; }
#footer-widgets { display: none !important; }
.footer-widget-area { display: none !important; }
.site-footer.ast-site-footer { display: none !important; }

/* ============================================================
   WORDPRESS ALIGNMENT HELPERS
   ============================================================ */
.aligncenter { margin: 0 auto; display: block; }
.wp-caption { max-width: 100%; }
.wp-block-image { margin: 1.5rem 0; }

/* ============================================================
   BLOG PAGE  (.bl-*)
   ============================================================ */

/* Hero — identical pattern to .sv-hero / .dm-hero */
.bl-hero {
  position: relative;
  background: #0a0a0a;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
  text-align: center;
}
.bl-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(34,197,94,.18) 0%, transparent 68%);
  pointer-events: none;
}
.bl-hero__inner { position: relative; z-index: 1; }

.bl-eyebrow {
  display: inline-block;
  background: rgba(34,197,94,.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,.35);
  border-radius: 50px;
  padding: .35rem 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.bl-hero__title {
  font-size: clamp(2rem,4.5vw,3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.bl-hero__accent { color: #22c55e; }
.bl-hero__sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* Hero Search */
.bl-search-form { margin-bottom: 3rem; }
.bl-search-wrap {
  display: flex;
  align-items: center;
  max-width: 540px;
  margin: 0 auto;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .45rem .45rem .45rem 1.25rem;
  gap: .75rem;
  transition: border-color .3s;
}
.bl-search-wrap:focus-within { border-color: #22c55e; }
.bl-search-wrap svg { width: 18px; height: 18px; color: rgba(255,255,255,.45); flex-shrink: 0; }
.bl-search-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: .95rem;
}
.bl-search-wrap input::placeholder { color: rgba(255,255,255,.4); }
.bl-search-wrap button {
  background: #22c55e;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: .55rem 1.35rem;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: background .25s;
  white-space: nowrap;
}
.bl-search-wrap button:hover { background: #16a34a; color: #fff; }

/* Hero Stats */
.bl-hero__stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2.5rem;
}
.bl-stat { text-align: center; }
.bl-stat strong { display: block; font-size: 2rem; font-weight: 800; color: #22c55e; line-height: 1; }
.bl-stat span   { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: .3rem; display: block; }

/* Filter section */
.bl-filter-section { background: #fff; padding: 2rem 1.5rem 0; border-bottom: 1px solid #e2e8f0; }
.bl-cats { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.bl-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  text-decoration: none;
  background: #f8fafc;
  color: #475569;
  border: 1.5px solid #e2e8f0;
  transition: all .25s;
}
.bl-cat-pill:hover,
.bl-cat-pill.active { background: #22c55e; color: #000; border-color: #22c55e; }
.bl-cat-count {
  background: rgba(0,0,0,.08);
  border-radius: 20px;
  padding: .1rem .5rem;
  font-size: .72rem;
}
.bl-cat-pill.active .bl-cat-count,
.bl-cat-pill:hover .bl-cat-count { background: rgba(0,0,0,.15); }

.bl-results-bar {
  padding: .75rem 0 1.25rem;
  font-size: .9rem;
  color: #64748b;
}
.bl-results-bar a { color: #22c55e; font-weight: 600; text-decoration: none; margin-left: .35rem; }

/* Main content */
.bl-main { background: #f8fafc; padding: 3.5rem 1.5rem 5rem; }

/* Posts grid — 3 columns matching services card grid */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Featured first card — full width */
.bl-card--featured { grid-column: span 3; display: grid; grid-template-columns: 1.2fr 1fr; }
.bl-card--featured .bl-card__thumb { aspect-ratio: 16/8; border-radius: 16px 0 0 16px; }
.bl-card--featured .bl-card__thumb img { border-radius: 16px 0 0 16px; }
.bl-card--featured .bl-card__body { padding: 2.5rem 2rem; }
.bl-card--featured .bl-card__title a { font-size: 1.4rem; }

/* Card */
.bl-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.bl-card:hover { border-color: #22c55e; box-shadow: 0 12px 36px rgba(34,197,94,.1); transform: translateY(-4px); }

/* Thumbnail */
.bl-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f1f5f9;
  display: block;
  text-decoration: none;
}
.bl-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.bl-card:hover .bl-card__thumb img { transform: scale(1.04); }

.bl-card__cat-only { padding: .75rem 1.25rem 0; }
.bl-card__cat--inline { position: static; }

.bl-card__cat {
  position: absolute;
  top: .75rem; left: .75rem;
  background: #22c55e;
  color: #000;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Card body */
.bl-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .7rem; }

.bl-card__meta {
  display: flex; flex-wrap: wrap; gap: .6rem;
  font-size: .78rem; color: #94a3b8;
}
.bl-card__meta span { display: inline-flex; align-items: center; gap: .3rem; }
.bl-card__meta svg  { width: 12px; height: 12px; flex-shrink: 0; }

.bl-card__title { margin: 0; font-size: 1rem; font-weight: 700; line-height: 1.45; }
.bl-card__title a { color: #0f172a; text-decoration: none; transition: color .25s; }
.bl-card__title a:hover { color: #22c55e; }

.bl-card__excerpt { color: #64748b; font-size: .875rem; line-height: 1.7; margin: 0; flex: 1; }

.bl-card__more {
  display: inline-flex; align-items: center; gap: .45rem;
  color: #22c55e; font-weight: 700; font-size: .875rem;
  text-decoration: none; margin-top: auto;
  transition: gap .25s;
}
.bl-card__more:hover { gap: .75rem; }
.bl-card__more svg { width: 14px; height: 14px; }

/* Empty state */
.bl-empty {
  grid-column: span 3;
  text-align: center; padding: 5rem 2rem;
  background: #fff; border-radius: 16px; border: 1px solid #e2e8f0;
}
.bl-empty svg { width: 56px; height: 56px; color: #cbd5e1; margin-bottom: 1.25rem; }
.bl-empty h3  { font-size: 1.3rem; font-weight: 700; color: #0f172a; margin-bottom: .5rem; }
.bl-empty p   { color: #64748b; margin-bottom: 1.5rem; }

/* Pagination */
.bl-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-top: 3rem; flex-wrap: wrap;
}
.bl-pagination .page-numbers {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem 1.2rem; border-radius: 8px;
  font-weight: 600; font-size: .88rem; text-decoration: none;
  background: #fff; color: #475569; border: 1.5px solid #e2e8f0;
  transition: all .25s;
}
.bl-pagination .page-numbers:hover,
.bl-pagination .page-numbers.current { background: #22c55e; color: #000; border-color: #22c55e; }
.bl-pagination svg { width: 14px; height: 14px; }

/* CTA Banner — identical to sv-cta-banner */
.bl-cta-banner { background: #22c55e; padding: 4.5rem 1.5rem; }
.bl-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.bl-cta-text h2 { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; color: #000; margin-bottom: .5rem; }
.bl-cta-text p  { color: rgba(0,0,0,.7); margin: 0; font-size: 1rem; }
.bl-cta-btns { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.bl-cta-banner .button-primary { background: #000; color: #fff; border-color: #000; }
.bl-cta-banner .button-primary:hover { background: #1a1a1a; }
.bl-cta-call {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #000; font-weight: 700; text-decoration: none;
  font-size: .95rem; opacity: .85; transition: opacity .25s;
}
.bl-cta-call:hover { opacity: 1; }
.bl-cta-call svg { width: 18px; height: 18px; }

/* Responsive */
@media (max-width: 1024px) {
  .bl-grid { grid-template-columns: repeat(2,1fr); }
  .bl-card--featured { grid-column: span 2; grid-template-columns: 1fr; }
  .bl-card--featured .bl-card__thumb { border-radius: 16px 16px 0 0; aspect-ratio: 16/7; }
  .bl-card--featured .bl-card__thumb img { border-radius: 16px 16px 0 0; }
  .bl-card--featured .bl-card__placeholder { border-radius: 16px 16px 0 0; }
  .bl-empty { grid-column: span 2; }
}
@media (max-width: 768px) {
  .bl-hero { padding: 5rem 1.25rem 3.5rem; }
  .bl-hero__stats { gap: 1.5rem; }
  .bl-stat strong { font-size: 1.5rem; }
  .bl-grid { grid-template-columns: 1fr; }
  .bl-card--featured { grid-column: span 1; }
  .bl-empty { grid-column: span 1; }
  .bl-cta-inner { flex-direction: column; text-align: center; }
  .bl-cta-btns { justify-content: center; }
}

/* ============================================================
   ABOUT PAGE  (.ab-*)
   ============================================================ */

/* Hero */
.ab-hero {
  position: relative;
  background: #0a0a0a;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
  text-align: center;
}
.ab-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(34,197,94,.18) 0%, transparent 68%);
  pointer-events: none;
}
.ab-hero__inner { position: relative; z-index: 1; }
.ab-eyebrow {
  display: inline-block;
  background: rgba(34,197,94,.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,.35);
  border-radius: 50px;
  padding: .35rem 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.ab-hero__title {
  font-size: clamp(2rem,4.5vw,3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.ab-hero__accent { color: #22c55e; }
.ab-hero__sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}
.ab-hero__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.ab-btn-outline {
  display: inline-block;
  padding: .75rem 1.75rem;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .3s, background .3s;
}
.ab-btn-outline:hover { border-color: #22c55e; background: rgba(34,197,94,.1); }
.ab-hero__stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2.5rem;
}
.ab-stat { text-align: center; }
.ab-stat strong { display: block; font-size: 2rem; font-weight: 800; color: #22c55e; line-height: 1; }
.ab-stat span   { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .3rem; display: block; }

/* Generic section */
.ab-section { padding: 5.5rem 1.5rem; }
.ab-light   { background: #fff; }

/* Labels */
.ab-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #22c55e;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.ab-eyebrow--white {
  display: inline-block;
  background: rgba(34,197,94,.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 50px;
  padding: .35rem 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.ab-h2-white { color: #fff !important; }
.ab-p-muted  { color: rgba(255,255,255,.6) !important; }

/* Our Story split layout */
.ab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.ab-split__text h2 { font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 800; color: #0f172a; margin: .5rem 0 1rem; }
.ab-split__text p  { color: #475569; line-height: 1.8; margin-bottom: 1rem; }

.ab-mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.ab-mv-card {
  border-radius: 14px;
  padding: 1.4rem;
}
.ab-mv-card--blue  { background: #eff6ff; }
.ab-mv-card--green { background: #f0fdf4; }
.ab-mv-icon { margin-bottom: .7rem; }
.ab-mv-icon svg { width: 22px; height: 22px; }
.ab-mv-card--blue  .ab-mv-icon { color: #0a6cff; }
.ab-mv-card--green .ab-mv-icon { color: #22c55e; }
.ab-mv-card h4 { font-size: .95rem; font-weight: 700; color: #0f172a; margin-bottom: .4rem; }
.ab-mv-card p  { font-size: .85rem; color: #475569; line-height: 1.65; margin: 0; }

/* Story cards grid */
.ab-story-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ab-story-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.ab-story-card:hover { border-color: #22c55e; box-shadow: 0 8px 24px rgba(34,197,94,.1); transform: translateY(-3px); }
.ab-story-card__icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.ab-story-card__icon svg { width: 22px; height: 22px; }
.ab-story-card h4 { font-size: .95rem; font-weight: 700; color: #0f172a; margin-bottom: .4rem; }
.ab-story-card p  { font-size: .85rem; color: #64748b; line-height: 1.6; margin: 0; }

/* Stats section */
.ab-stats-section { background: #0a0a0a; padding: 5.5rem 1.5rem; }
.ab-stats-section .section-heading { margin-bottom: 3rem; }
.ab-facts-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
.ab-fact {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color .3s, background .3s;
}
.ab-fact:hover { background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.25); }
.ab-fact__icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.ab-fact__num  { font-size: 3rem; font-weight: 900; color: #22c55e; line-height: 1; }
.ab-fact__sym  { font-size: 1.75rem; font-weight: 800; color: #22c55e; vertical-align: top; margin-top: .3rem; display: inline-block; }
.ab-fact p     { color: rgba(255,255,255,.6); font-size: .9rem; margin: .6rem 0 0; }

/* Core Values */
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ab-value-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  background: #fff;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.ab-value-card:hover { border-color: #22c55e; box-shadow: 0 8px 28px rgba(34,197,94,.1); transform: translateY(-4px); }
.ab-value-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.ab-value-icon svg { width: 24px; height: 24px; }
.ab-value-card h4 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: .5rem; }
.ab-value-card p  { font-size: .88rem; color: #64748b; line-height: 1.7; margin: 0; }

/* Services grid */
.ab-services-section { background: #0d0d0d; padding: 5.5rem 1.5rem; }
.ab-services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.ab-srv {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  transition: border-color .3s, background .3s, transform .3s;
}
.ab-srv:hover { background: rgba(255,255,255,.07); border-color: rgba(34,197,94,.3); transform: translateY(-3px); }
.ab-srv__icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.ab-srv__icon svg { width: 22px; height: 22px; }
.ab-srv h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.ab-srv p  { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.65; margin: 0; }
.ab-services-cta { text-align: center; margin-top: 2.5rem; }

/* CTA Banner */
.ab-cta-banner { background: #22c55e; padding: 4.5rem 1.5rem; }
.ab-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ab-cta-text h2 { font-size: clamp(1.5rem,2.5vw,2.1rem); font-weight: 800; color: #000; margin-bottom: .5rem; }
.ab-cta-text p  { color: rgba(0,0,0,.7); margin: 0; font-size: 1rem; }
.ab-cta-btns { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.ab-cta-banner .button-primary { background: #000; color: #fff; border-color: #000; }
.ab-cta-banner .button-primary:hover { background: #1a1a1a; }
.ab-cta-call {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #000; font-weight: 700; text-decoration: none;
  font-size: .95rem; opacity: .85; transition: opacity .25s;
}
.ab-cta-call:hover { opacity: 1; }
.ab-cta-call svg { width: 18px; height: 18px; }

/* Responsive */
@media (max-width: 1100px) {
  .ab-services-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  .ab-split { grid-template-columns: 1fr; gap: 3rem; }
  .ab-facts-grid { grid-template-columns: repeat(2,1fr); }
  .ab-values-grid { grid-template-columns: repeat(2,1fr); }
  .ab-services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .ab-hero { padding: 5rem 1.25rem 3.5rem; }
  .ab-hero__stats { gap: 1.25rem; }
  .ab-stat strong { font-size: 1.5rem; }
  .ab-story-cards { grid-template-columns: 1fr 1fr; }
  .ab-mission-vision { grid-template-columns: 1fr; }
  .ab-cta-inner { flex-direction: column; text-align: center; }
  .ab-cta-btns { justify-content: center; }
}
@media (max-width: 540px) {
  .ab-facts-grid { grid-template-columns: repeat(2,1fr); }
  .ab-values-grid,
  .ab-services-grid,
  .ab-story-cards { grid-template-columns: 1fr; }
}
