/*
Theme Name: Nacham Theme
Theme URI: http://example.com/nacham/
Author: Antigravity
Author URI: http://example.com/
Description: A custom WordPress theme based on Nacham HTML template.
Version: 1.2.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nacham
*/

/* ============================================================
   NÂCHAM TABERNACLE — Brand Design System
   Scarlet #A60067 | Royal Purple #5B00A4 | Infrastructure Blue #1000C7
   Background: #fcf8ff | Surface: #f7f2fa
   ============================================================ */

:root {
  /* ── Surfaces ── */
  --bg:                #fcf8ff;
  --surface:           #f7f2fa;
  --surface-low:       #f6f2fa;
  --surface-container: #f0ecf4;
  --surface-high:      #eae7ee;
  --surface-highest:   #e4e1e9;
  --white:             #ffffff;

  /* ── Dark Footer (inverse palette from design spec) ── */
  --footer-bg:         #131318;
  --footer-surface:    #1f1f25;
  --footer-card:       #2a292f;
  --footer-border:     rgba(255,255,255,0.07);
  --footer-text:       #e4e1e9;
  --footer-text-soft:  #cfc2d4;
  --footer-text-muted: #7e7383;

  /* ── Brand (Tabernacle palette) ── */
  --scarlet:             #A60067;
  --purple:              #5B00A4;
  --purple-deep:         #480084;
  --purple-light:        #7A00CC;
  --infrastructure-blue: #1000C7;
  --magenta:             #A60067;
  --magenta-light:       #C4007A;
  --black:               #000000;
  --gradient:            linear-gradient(90deg, #A60067 0%, #5B00A4 50%, #1000C7 100%);
  --gradient-soft:       linear-gradient(135deg, rgba(166,0,103,0.08) 0%, rgba(91,0,164,0.08) 50%, rgba(16,0,199,0.06) 100%);

  /* ── Legacy aliases (inline styles) ── */
  --dark-green:          var(--infrastructure-blue);
  --lime:                #FFFFFF;
  --lime-dark:           var(--scarlet);
  --gray:                var(--text-muted);

  /* ── Text ── */
  --text:              #1b1b20;
  --text-soft:         #4c4452;
  --text-muted:        #7e7383;

  /* ── Borders & Outlines ── */
  --border:            rgba(76,68,82,0.18);
  --border-solid:      #cfc2d4;
  --border-strong:     rgba(76,68,82,0.35);

  /* ── Glows & Shadows ── */
  --glow-purple:       0 4px 24px rgba(91,0,164,0.18);
  --glow-magenta:      0 4px 24px rgba(166,0,103,0.16);
  --glow-lg:           0 8px 40px rgba(91,0,164,0.22);
  --shadow:            0 2px 12px rgba(91,0,164,0.08);
  --shadow-md:         0 6px 28px rgba(91,0,164,0.14);

  /* ── Shape ── */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.01em;
  color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { cursor: pointer; border: none; outline: none; font-family: 'Roboto', sans-serif; }

/* ─────────────────────────────────────────────────────────
   TOP BAR
───────────────────────────────────────────────────────── */
.top-bar {
  background: var(--infrastructure-blue);
  color: #fff;
  font-size: 12.5px;
  padding: 9px 0;
}
.top-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; opacity: .92; font-size: 12.5px; }
.top-bar-right .socials-right {
  display: flex; gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.25);
}
.top-bar-right .socials-right a {
  color: #fff;
  font-size: 13px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  opacity: .9;
  transition: opacity .2s;
}
.top-bar-right .socials-right a:hover { opacity: 1; }
.top-bar-left span i { font-size: 12px; line-height: 1; margin-right: 2px; }
.top-bar-right .socials-right a i { font-size: 13px; line-height: 1; }
.phone-link { color: inherit; text-decoration: none; transition: color .2s; }
.phone-link:hover { color: var(--purple); text-decoration: underline; }
.top-bar .phone-link { color: inherit; opacity: 1; }
.top-bar .phone-link:hover { color: #fff; text-decoration: underline; }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  border-bottom: none !important;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  background: var(--surface-container);
  border-bottom: none !important;
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0 16px 8px;
  font-size: 12.5px;
  color: var(--gray);
}
.event-card-actions {
  display: flex;
  gap: 10px;
  padding: 0 16px 16px;
  flex-wrap: wrap;
}
.event-card-actions .btn-outline,
.event-card-actions .btn-primary {
  font-size: 12px;
  padding: 8px 16px;
}
.project-card.event-card,
.grid-2 > .project-card.event-card {
  display: flex !important;
  flex-direction: column !important;
}
.event-card-main {
  display: block !important;
  flex: 1 1 auto;
  text-decoration: none;
  color: inherit;
}
.event-card-main .project-card-img {
  display: block !important;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: auto;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.gallery-item-media {
  overflow: hidden;
  background: var(--surface-container);
  height: 200px;
  flex-shrink: 0;
}
.gallery-item img {
  width: 100%;
  height: 100% !important;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.gallery-item-media .ph-img {
  height: 200px;
  min-height: 200px;
}
.gallery-item-caption,
.gallery-item figcaption {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.4;
  display: block;
  background: var(--surface-low);
  text-align: left;
  flex: 0 0 auto;
}

/* Gallery item detail page */
.gallery-detail-back { margin-bottom: 20px; }
.gallery-detail-back a {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}
.gallery-detail-back a:hover { text-decoration: underline; }
.gallery-detail-category { display: flex; justify-content: center; margin-bottom: 16px; }
.gallery-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--dark-green);
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.25;
}
.gallery-detail-description {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
}
.gallery-detail-content {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
}
.gallery-detail-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
}
.gallery-detail-hero-image img { width: 100%; height: auto; display: block; }
.gallery-detail-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.gallery-collage-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-container);
  border: 1px solid var(--border);
}
.gallery-collage-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
}
.gallery-collage-item a { display: block; line-height: 0; }
.gallery-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
  transition: transform .25s;
}
.gallery-collage-trigger:hover img,
.gallery-collage-item:hover img { transform: scale(1.03); }
.gallery-collage-item--1 { grid-column: span 8; grid-row: span 2; }
.gallery-collage-item--2 { grid-column: span 4; }
.gallery-collage-item--3 { grid-column: span 4; }
.gallery-collage-item--4 { grid-column: span 6; }
.gallery-collage-item--5 { grid-column: span 6; }
.gallery-collage-item--6 { grid-column: span 12; }
.gallery-collage-item--1 img,
.gallery-collage-item--6 img { min-height: 280px; }

/* Gallery lightbox */
body.gallery-lightbox-open { overflow: hidden; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 20, 0.88);
}
.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 32px));
  height: min(86vh, 900px);
  margin: 7vh auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.gallery-lightbox-stage {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.gallery-lightbox-image {
  max-width: 100%;
  max-height: calc(86vh - 72px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.gallery-lightbox-counter {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.gallery-lightbox-nav,
.gallery-lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.gallery-lightbox-nav {
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}
.gallery-lightbox-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.gallery-lightbox-nav:not(:disabled):hover,
.gallery-lightbox-close:hover {
  background: var(--gradient);
  border-color: transparent;
}
.gallery-lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 1;
}
.product-card-large {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
}
.product-card-large:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: var(--glow-purple), 0 12px 32px rgba(0,0,0,0.08);
}
.product-card-large-img { height: 220px; overflow: hidden; }
.product-card-large-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card-large-body { padding: 24px; }
.mobile-submenu {
  padding-left: 20px;
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-detail-collage { grid-template-columns: repeat(2, 1fr); }
  .gallery-collage-item--1,
  .gallery-collage-item--2,
  .gallery-collage-item--3,
  .gallery-collage-item--4,
  .gallery-collage-item--5,
  .gallery-collage-item--6 { grid-column: span 1; grid-row: span 1; }
  .gallery-collage-item--6 { grid-column: span 2; }
  .gallery-lightbox-dialog {
    width: calc(100vw - 20px);
    margin-top: 10vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    height: auto;
    max-height: 88vh;
  }
  .gallery-lightbox-stage { order: 1; }
  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
  .gallery-lightbox-close { top: -48px; right: 4px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-detail-collage { grid-template-columns: 1fr; }
  .gallery-collage-item--6 { grid-column: span 1; }
}

/* ─────────────────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────────────────── */
.header {
  background: rgba(252,248,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo--horizontal,
.mobile-menu-brand--horizontal {
  gap: 0;
}
.site-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo--horizontal .site-logo-link,
.mobile-menu-brand--horizontal {
  gap: 0;
}
.nacham-brand-logo {
  width: var(--nacham-header-logo-size, 44px);
  height: var(--nacham-header-logo-size, 44px);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nacham-brand-logo-horizontal {
  height: var(--nacham-header-logo-size, 44px);
  width: auto;
  max-width: min(280px, 46vw);
  object-fit: contain;
  display: block;
}
.footer-brand .nacham-brand-logo,
.footer-brand .nacham-footer-logo.nacham-brand-logo {
  width: var(--nacham-footer-logo-size, 44px);
  height: var(--nacham-footer-logo-size, 44px);
}
.footer-brand .nacham-brand-logo-horizontal,
.footer-brand .nacham-footer-logo {
  height: var(--nacham-footer-logo-size, 44px);
  max-width: min(240px, 70vw);
}
.logo-icon {
  width: var(--nacham-header-logo-size, 44px);
  height: var(--nacham-header-logo-size, 44px);
  background: var(--gradient);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: var(--glow-purple);
}
.logo-icon::before, .logo-icon::after {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  position: absolute;
}
.logo-icon::before { background: rgba(255,255,255,0.9); left: 7px; }
.logo-icon::after  { background: rgba(255,255,255,0.4); right: 7px; }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; color: var(--text); }
.logo-text span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links li a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-soft);
  transition: color .2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--purple);
  border-bottom-color: var(--magenta);
}

/* ─── Primary / Ghost / Accent Buttons ─── */
.btn-quote {
  background: var(--gradient);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  transition: all .25s;
  box-shadow: var(--glow-purple);
  letter-spacing: 0.02em;
}
.btn-quote:hover { box-shadow: var(--glow-lg); transform: translateY(-1px); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
  cursor: pointer;
  border: none;
  box-shadow: var(--glow-purple);
  letter-spacing: 0.02em;
}
.btn-primary:hover { box-shadow: var(--glow-lg); transform: translateY(-2px); }

.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
  cursor: pointer;
  border: none;
  box-shadow: var(--glow-magenta);
}
.btn-lime:hover { box-shadow: var(--glow-lg); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--purple);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--purple);
  transition: all .25s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow-purple);
}

/* ─────────────────────────────────────────────────────────
   TICKER
───────────────────────────────────────────────────────── */
.ticker {
  background: var(--gradient);
  color: rgba(255,255,255,0.92);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-item .star { color: rgba(255,255,255,0.6); font-size: 14px; }
.ticker-item .star i { font-size: 10px; vertical-align: middle; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────
   SECTION / PAGE HERO
───────────────────────────────────────────────────────── */
.page-hero {
  background: var(--gradient-soft);
  border-bottom: 1px solid var(--border);
  padding: 48px 64px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(166,0,103,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(91,0,164,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px;
  padding: 0;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--purple); font-weight: 500; }
.breadcrumb span { color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────────────────── */
.section { padding: 88px 64px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-label .dots { display: flex; gap: 4px; }
.section-label .dot1 {
  width: 12px; height: 12px;
  background: var(--magenta);
  border-radius: 50%;
}
.section-label .dot2 {
  width: 12px; height: 12px;
  background: var(--purple);
  border-radius: 50%;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  line-height: 28px;
  color: var(--text-soft);
  max-width: 560px;
}

/* ─────────────────────────────────────────────────────────
   CARDS (base)
───────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ─────────────────────────────────────────────────────────
   GRID
───────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─────────────────────────────────────────────────────────
   TAG / CHIP
───────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(91,0,164,0.1);
  color: var(--purple);
  border: 1px solid rgba(91,0,164,0.2);
}

/* ─────────────────────────────────────────────────────────
   STATS ROW
───────────────────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; align-items: center; gap: 12px; }
.stat-num {
  font-family: 'Roboto Mono', monospace;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-family: 'Roboto Mono', monospace; font-size: 12px; color: var(--text-soft); line-height: 1.4; max-width: 80px; }

/* ─────────────────────────────────────────────────────────
   FORM CONTROLS
───────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.form-label span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-solid);
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91,0,164,0.12);
}
.form-control::placeholder { color: #b0a8b9; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235B00A4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* ─────────────────────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────────────────────── */
.contact-section {
  background: var(--surface-container);
  padding: 88px 64px;
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}
.contact-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.contact-img img { width: 100%; height: 380px; object-fit: cover; display: block; border-radius: 20px; }
.vm-group-photo img,
.about-intro-image img { width: 100%; object-fit: cover; display: block; }
.vm-group-photo img { height: 320px; }
.about-intro-image img { height: 380px; border-radius: var(--radius-lg); }

/* ─────────────────────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--surface-container);
  padding: 72px 64px;
  text-align: center;
}
.newsletter-form {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 5px 5px 5px 20px;
  border: 1px solid var(--border-solid);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow);
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: transparent;
}
.newsletter-form input::placeholder { color: #b0a8b9; }
.newsletter-form button {
  background: var(--gradient);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--glow-purple);
}
.nacham-form-notice {
  max-width: 520px;
  margin: 0 auto 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  text-align: center;
}
.nacham-form-notice.success {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.nacham-form-notice.error {
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* connect-section moved to footer block */

/* ─────────────────────────────────────────────────────────
   CONNECT BAR — dark pre-footer strip
───────────────────────────────────────────────────────── */
.connect-section {
  padding: 40px 64px;
  background: var(--footer-surface);
  border-top: none;
  border-bottom: 1px solid var(--footer-border);
}
.connect-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.connect-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--footer-text);
}
.connect-section .connect-cta {
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

/* ─────────────────────────────────────────────────────────
   FOOTER — deep obsidian
───────────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  padding: 64px 64px 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.6;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 300px 160px 220px 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--footer-border);
}
.footer-brand p {
  font-size: 14px;
  color: var(--footer-text-soft);
  line-height: 1.75;
  margin: 16px 0 22px;
}
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--footer-text-soft);
  font-size: 14px;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.social-icon i { line-height: 1; font-size: 14px; }
.social-icon:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow-purple);
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-text);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li a {
  font-size: 14px;
  color: var(--footer-text-muted);
  transition: color .2s;
}
.footer-links li a:hover { color: var(--footer-text); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list span { font-size: 13.5px; color: var(--footer-text-muted); line-height: 1.5; }
.footer-contact-list a {
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-list a:hover { color: var(--footer-text); }
.footer-newsletter { display: flex; margin-top: 14px; }
.footer-newsletter input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  outline: none;
  color: var(--footer-text);
  background: var(--footer-surface);
  transition: border-color .2s;
}
.footer-newsletter input::placeholder { color: var(--footer-text-muted); }
.footer-newsletter input:focus { border-color: var(--purple); }
.footer-newsletter button {
  background: var(--gradient);
  color: #fff;
  padding: 11px 18px;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: 16px;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-newsletter button i { line-height: 1; }
.pricing-card .btn-primary,
.pricing-card .btn-lime,
.pricing-card .btn-outline {
  white-space: nowrap;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--footer-text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: var(--footer-text-muted);
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--footer-text); }

/* ─────────────────────────────────────────────────────────
   PROGRESS BARS
───────────────────────────────────────────────────────── */
.progress-bar-wrap { margin-bottom: 22px; }
.progress-label { display: flex; justify-content: space-between; font-family: 'Roboto Mono', monospace; font-size: 13px; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.progress-track { height: 6px; background: var(--surface-highest); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient); border-radius: 10px; transition: width 1s ease; }

/* ─────────────────────────────────────────────────────────
   AWARDS
───────────────────────────────────────────────────────── */
.award-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.award-item:last-child { border-bottom: none; }
.award-info h4 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); }
.award-info p { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.award-arrow {
  width: 36px; height: 36px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-solid);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 14px;
  transition: all .2s;
  cursor: pointer;
}
.award-arrow i { font-size: 13px; line-height: 1; }
.award-arrow:hover { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--glow-purple); }

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}
.stars { display: flex; align-items: center; gap: 3px; font-size: 13px; margin-bottom: 12px; }
.stars i { color: var(--purple); line-height: 1; font-size: 13px; }
.testimonial-card p { font-size: 14px; color: var(--text-soft); line-height: 1.75; }
.testimonial-author-info { min-width: 0; }
.testimonial-author {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gradient);
  box-shadow: 0 0 0 1px rgba(91, 0, 164, 0.12);
}
.testimonial-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--surface-high);
  border: 2px solid var(--white);
  overflow: hidden;
  display: block;
}
.testimonial-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }
.rating-box .rating-sub { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 6px; line-height: 1.5; }
.rating-box--compact { padding: 20px 24px; }
.testimonials-home-media {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.testimonials-split-grid { align-items: start; }
.testimonial-carousel-nav { display: flex; gap: 8px; margin-top: 14px; }
.testimonial-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.testimonial-nav-btn--active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--dark-green);
}

/* ─────────────────────────────────────────────────────────
   TEAM CARDS
───────────────────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  cursor: pointer;
  display: flex !important;
  flex-direction: column !important;
}
.team-card-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.grid-3 > .team-card,
.grid-3 > .blog-card,
.grid-3 > .project-card,
.grid-3 > .service-card,
.grid-2 > .project-card.event-card {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none;
  color: inherit;
}
.team-card-img {
  position: relative !important;
  overflow: hidden;
  height: 240px;
  display: block !important;
  flex-shrink: 0;
}
.team-card-body {
  display: block !important;
  flex: 1 1 auto;
  padding: 18px;
  background: var(--white);
  transition: background .2s, color .2s;
}
.team-card:hover {
  transform: translateY(-4px);
  border: 1px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient) border-box;
  box-shadow: var(--glow-purple);
}
.team-card:hover .team-card-body {
  background: var(--purple);
}
.team-card:hover .team-card-body h3 { color: #fff; }
.team-card:hover .team-card-body p { color: rgba(255,255,255,0.65); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-social-overlay {
  position: absolute !important;
  top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transition: opacity .2s;
  z-index: 2;
  pointer-events: none;
}
.team-card:hover .team-social-overlay { opacity: 1; pointer-events: auto; }
.team-social-icon {
  width: 30px; height: 30px;
  background: var(--gradient);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
}
.team-social-icon i { font-size: 12px; line-height: 1; }
.team-card-body h3, .team-card-body p { transition: color .2s; }
.team-card-body h3 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); }
.team-card-body p { font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.team-card-body.dark { background: var(--purple); }
.team-card-body.dark h3 { color: #fff; }
.team-card-body.dark p { color: rgba(255,255,255,0.65); }
.team-detail-media {
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
}
.team-detail-media img,
.team-detail-media .ph-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.team-detail-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.team-detail-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--infrastructure-blue);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.team-detail-role {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.team-detail-bio {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.team-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.team-detail-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-soft);
}
.team-detail-meta-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 14px;
  flex-shrink: 0;
}
.team-detail-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-detail-phone-line small {
  color: var(--text-muted);
  margin-left: 4px;
}
.team-detail-follow-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-detail-skills-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--infrastructure-blue);
  margin-bottom: 16px;
}
.team-detail-skills-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ─────────────────────────────────────────────────────────
   BLOG CARDS
───────────────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  border: 1px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient) border-box;
  box-shadow: var(--glow-purple);
}
.blog-card-img { height: 200px; overflow: hidden; position: relative; }
.blog-card:hover .read-more {
  background: var(--gradient);
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--glow-purple);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-meta { display: flex; gap: 8px; align-items: center; padding: 16px 20px 0; flex-wrap: wrap; }
.blog-card-body { padding: 12px 20px 20px; }
.blog-card-body h3 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.45; }
.blog-card-body p { font-size: 13.5px; color: var(--text-soft); line-height: 1.65; }
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 13.5px; font-weight: 600;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  cursor: pointer;
  transition: background .2s, color .2s, padding .2s, box-shadow .2s, -webkit-text-fill-color .2s;
}

/* ─────────────────────────────────────────────────────────
   PROJECT CARDS
───────────────────────────────────────────────────────── */
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-4px);
  border: 1px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient) border-box;
  box-shadow: var(--glow-purple);
}
.project-card-img { height: 220px; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.project-card:hover .project-card-img img { transform: scale(1.04); }
.project-card-footer {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.project-card-footer h3 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); }
.project-arrow {
  width: 36px; height: 36px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: none;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.project-arrow i { font-size: 14px; line-height: 1; font-weight: 400; }
.project-arrow .card-arrow-icon { display: block; width: 14px; height: 14px; flex-shrink: 0; }
.award-arrow .card-arrow-icon { display: block; width: 14px; height: 14px; flex-shrink: 0; }
.project-card:hover .project-arrow {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-lg);
}

/* ─────────────────────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────────────────────── */
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-4px);
  border: 1px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient) border-box;
  box-shadow: var(--glow-purple);
}
.service-card-img { height: 160px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 20px; background: transparent; }
.service-card-body h3 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.service-card-body p { font-size: 13px; color: var(--text-soft); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: var(--white);
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient) border-box;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured {
  border: 2px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient) border-box;
  box-shadow: var(--glow-purple);
}
.pricing-card.featured::before { opacity: 0; }
.pricing-card.featured:hover::before { opacity: 1; }
.pricing-tier {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-what {
  display: inline-block;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(91,0,164,0.08);
  border: 1px solid rgba(91,0,164,0.18);
  font-family: 'Roboto', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 20px 0 18px;
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.pricing-features li { font-size: 13.5px; color: var(--text-soft); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  color: var(--purple);
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1.4;
}

/* Pricing card button overrides (matches HTML template) */
.pricing-card .pricing-cta {
  width: 100%;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  background: transparent;
  box-shadow: none;
  transition: all .25s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.pricing-card .pricing-cta:hover,
.pricing-card:hover .pricing-cta {
  background: var(--gradient);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  border-color: transparent;
  box-shadow: var(--glow-purple);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.faq-panels { min-width: 0; }
.faq-panel { display: none; }
.faq-panel.active { display: block; }
.faq-sidebar { display: flex; flex-direction: column; gap: 6px; }
.faq-tab {
  padding: 13px 18px;
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid var(--border);
  background: var(--white);
  text-align: left;
  color: var(--text-soft);
}
.faq-tab.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--glow-purple); }
.faq-tab:hover:not(.active) { border-color: var(--purple); color: var(--purple); }
.faq-support-card {
  margin-top: 16px;
  background: var(--gradient);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: #fff;
  box-shadow: var(--glow-purple);
}
.faq-support-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
}
.faq-support-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  opacity: 1;
  margin: 8px 0 16px;
  line-height: 1.55;
}
.faq-support-card .faq-support-icon {
  font-size: 28px;
  line-height: 1;
  color: #fff;
}
.faq-support-card .faq-support-icon i,
.faq-support-card .faq-support-icon svg {
  color: #fff;
  fill: #fff;
}
.faq-support-card .btn-lime,
.faq-support-card .faq-support-btn {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  font-size: 12.5px;
  padding: 9px 20px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
}
.faq-support-card .btn-lime:hover,
.faq-support-card .faq-support-btn:hover {
  background: var(--lime);
  color: var(--dark-green);
  box-shadow: var(--glow-lg);
}
.faq-247 {
  margin-top: 10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}
.faq-247 .icon {
  font-size: 18px;
  line-height: 1;
  color: var(--purple);
  flex-shrink: 0;
}
.faq-247 .icon i,
.faq-247 .icon svg {
  line-height: 1;
  color: var(--purple);
  fill: var(--purple);
}
.faq-247 small { font-size: 11px; color: var(--text-muted); display: block; }
.faq-247 strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.faq-247 .phone-links {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-247 .phone-link {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  line-height: 1.45;
  text-decoration: none;
}
.faq-247 .phone-link:hover {
  color: var(--purple);
  text-decoration: underline;
}
.faq-247 .phone-links small {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: background .2s, color .2s;
}
.faq-item.open .faq-question { background: var(--gradient); color: #fff; }
.faq-question .icon { font-size: 20px; font-weight: 300; flex-shrink: 0; }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
  background: var(--surface-low);
}
.faq-item.open .faq-answer { max-height: 200px; padding: 16px 20px; }

/* ─────────────────────────────────────────────────────────
   STEPS
───────────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.step-card {
  background: var(--gradient);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-purple);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent);
}
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  position: absolute;
  bottom: 14px; right: 20px;
  line-height: 1;
}
.step-label {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-card h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 13px; opacity: .72; line-height: 1.65; }

/* ─────────────────────────────────────────────────────────
   WHY US
───────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.why-feat:hover {
  transform: translateY(-3px);
  border: 1px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient) border-box;
  box-shadow: var(--glow-purple);
}
.why-feat:hover .icon {
  background: rgba(91,0,164,0.12);
  border-color: rgba(91,0,164,0.3);
  box-shadow: 0 0 16px rgba(168,85,247,0.15);
}
.why-feat .icon {
  width: 56px; height: 56px;
  background: rgba(91,0,164,0.06);
  border: 1px solid rgba(91,0,164,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  padding: 6px;
  transition: background .2s, border-color .2s;
}
.why-feat .icon svg { width: 100%; height: 100%; }
.why-feat h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-feat p { font-size: 12.5px; color: var(--text-soft); line-height: 1.65; }
.why-image { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.why-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--glow-lg);
}
.why-badge .num { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; color: #fff; }
.why-badge .txt { font-size: 11.5px; color: rgba(255,255,255,0.85); font-weight: 600; line-height: 1.4; }

/* ─────────────────────────────────────────────────────────
   HERO (HOME)
───────────────────────────────────────────────────────── */
.hero {
  padding: 96px 64px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(166,0,103,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,0,164,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content .section-title {
  font-size: 52px;
  letter-spacing: -0.03em;
}
.hero-buttons { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-visual-wrap,
.hero-img-wrap { position: relative; width: 100%; }
.hero-visual-wrap--slider {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 0;
}
.hero-visual-wrap--slider .hero-slider {
  flex: 0 1 auto;
}
.hero-visual-wrap--image img,
.hero-img-wrap img { border-radius: var(--radius-lg); width: 100%; }
.hero-dot-grid {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, rgba(91,0,164,0.3) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: .6;
  z-index: 2;
  pointer-events: none;
}

/* Hero slider — cinematic carousel */
.hero-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--glow-lg), 0 0 0 1px rgba(91,0,164,0.12);
  background: var(--surface-container);
  width: 100%;
  --hero-slider-max-h: 520px;
  --hero-slider-ui-h: 54px;
}
.hero-slider--compact {
  aspect-ratio: 4 / 5;
  max-height: var(--hero-slider-max-h);
  /* Keep 4:5 when max-height caps — avoids wide box that crops image top/bottom */
  width: min(100%, calc(var(--hero-slider-max-h) * 4 / 5));
  max-width: 100%;
  margin-inline: auto;
}
.hero-slider--full {
  border-radius: 0;
  aspect-ratio: 21 / 9;
  max-height: 560px;
  min-height: 320px;
  width: 100%;
  --hero-slider-max-h: 560px;
}
.hero-slider-section--full {
  padding: 0;
}
.hero-slider-section-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
  opacity: 0.45;
}
.hero-slider-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.1s;
  z-index: 0;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--hero-slide-position, center center);
  display: block;
  filter: grayscale(35%) contrast(1.05);
  transform: scale(1.04);
  transform-origin: center center;
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1.2s ease;
}
.hero-slider[data-image-focus="top"] .hero-slide-img { --hero-slide-position: center 28%; }
.hero-slider[data-image-focus="bottom"] .hero-slide-img { --hero-slide-position: center 72%; }
.hero-slide.active .hero-slide-img {
  transform: scale(1);
  filter: grayscale(0%) contrast(1.08);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(19, 19, 24, 0.05) 0%, rgba(19, 19, 24, 0.15) 45%, rgba(19, 19, 24, 0.72) 100%);
  pointer-events: none;
}
.hero-slide-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: calc(var(--hero-slider-ui-h) + 10px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, opacity 0.8s ease 0.15s;
  max-height: calc(100% - var(--hero-slider-ui-h) - 20px);
  overflow: hidden;
  box-sizing: border-box;
}
.hero-slide.active .hero-slide-caption { transform: translateY(0); opacity: 1; }
.hero-slide-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero-slide-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero-slide-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  align-self: flex-start;
  max-width: 100%;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  background: var(--gradient);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(91, 0, 164, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: normal;
  text-align: center;
}
.hero-slide-action:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 22px rgba(91, 0, 164, 0.5);
  color: #fff;
}
.hero-slider-ui {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(19, 19, 24, 0.55) 100%);
}
.hero-slider-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-slider-counter {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
}
.hero-slider-counter .sep { margin: 0 4px; opacity: 0.45; }
.hero-slider-progress {
  flex: 1;
  height: 3px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  max-width: 120px;
}
.hero-slider-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--gradient);
  transition: width 0.1s linear;
}
.hero-slider-dots { display: flex; gap: 6px; align-items: center; }
.hero-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none; padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}
.hero-slider-dot:hover { background: rgba(255, 255, 255, 0.65); }
.hero-slider-dot.active { width: 22px; border-radius: var(--radius-pill); background: #fff; }
.hero-slider-nav { display: flex; gap: 8px; }
.hero-slider-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-slider-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide-img, .hero-slide-caption, .hero-slider-progress-fill { transition: none !important; }
  .hero-slide-img { transform: none !important; }
}

/* ─────────────────────────────────────────────────────────
   CONTACT INFO CARDS
───────────────────────────────────────────────────────── */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  box-sizing: border-box;
  background: var(--contact-icon-bg, rgba(91,0,164,0.1));
  border: 1px solid var(--contact-icon-border, rgba(91,0,164,0.2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  line-height: 1;
  color: var(--purple);
  flex-shrink: 0;
}
.contact-info-icon i {
  line-height: 1;
  font-size: inherit;
  color: inherit;
}
.contact-info-icon svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}
.contact-info-icon svg path {
  fill: currentColor;
}
.contact-info-icon img {
  width: 1em;
  height: 1em;
  object-fit: contain;
  display: block;
}
.contact-info-card h3 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.contact-info-card p { font-size: 13.5px; color: var(--text-soft); }
@media (max-width: 900px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   MAP
───────────────────────────────────────────────────────── */
.map-container {
  height: 360px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--text-muted); }
.map-pin { font-size: 40px; }

/* ─────────────────────────────────────────────────────────
   COMING SOON
───────────────────────────────────────────────────────── */
.coming-soon-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.coming-soon-left { background: var(--surface); position: relative; overflow: hidden; }
.coming-soon-left img { width: 100%; height: 100%; object-fit: cover; }
.coming-soon-testimonial {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(91,0,164,0.85));
  padding: 40px 32px 32px;
  color: #fff;
}
.coming-soon-testimonial p { font-size: 14px; line-height: 1.65; margin-bottom: 14px; font-style: italic; opacity: .9; }
.coming-soon-testimonial strong { font-size: 15px; font-weight: 700; }
.coming-soon-testimonial span { font-size: 13px; opacity: .7; }
.cs-progress { height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-top: 20px; overflow: hidden; }
.cs-progress-fill { height: 100%; width: 30%; background: var(--magenta); border-radius: 2px; }
.coming-soon-right { padding: 64px; display: flex; flex-direction: column; justify-content: center; background: var(--bg); }
.coming-soon-brand { margin-bottom: 32px; }
.coming-soon-logo {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.countdown-grid { display: flex; gap: 24px; margin: 32px 0; flex-wrap: wrap; }
.countdown-item { text-align: center; position: relative; }
.countdown-item:not(:last-child)::after { content: '|'; position: absolute; right: -13px; top: 0; color: var(--border-solid); font-size: 28px; line-height: 1; }
.countdown-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.countdown-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.cs-email-form { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.cs-email-form input {
  flex: 1; min-width: 200px;
  padding: 13px 18px;
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  outline: none; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.cs-email-form input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,0,164,0.12); }
.cs-socials { display: flex; gap: 10px; margin-top: 28px; }
.cs-social {
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-solid);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
  cursor: pointer;
}
.cs-social:hover { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--glow-purple); }

/* ─────────────────────────────────────────────────────────
   404
───────────────────────────────────────────────────────── */
.not-found { text-align: center; padding: 100px 24px; }
.not-found-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 140px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.sparkle-404 { font-size: 32px; vertical-align: super; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.not-found h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700; margin: 16px 0 10px; }
.not-found p { font-size: 15px; color: var(--text-soft); margin-bottom: 28px; }

/* ─────────────────────────────────────────────────────────
   PERKS
───────────────────────────────────────────────────────── */
.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.perk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform .2s, box-shadow .2s;
}
.perk-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.perk-icon { font-size: 28px; margin-bottom: 14px; }
.perk-card h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.perk-card p { font-size: 12.5px; color: var(--text-soft); line-height: 1.55; }

/* ─────────────────────────────────────────────────────────
   JOB CARDS
───────────────────────────────────────────────────────── */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}
.job-header { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.job-header h3 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); }
.job-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 5px; }
.job-meta span { font-size: 12px; color: var(--text-muted); }
.job-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-details {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--purple);
  background: transparent;
  color: var(--purple);
  font-family: 'Roboto', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.btn-details:hover { background: var(--gradient); color: #fff; border-color: transparent; }
.btn-apply {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--gradient);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: var(--glow-purple);
  transition: all .2s;
}
.btn-apply:hover { box-shadow: var(--glow-lg); }
.job-details-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.75;
  border-top: 0 solid var(--border);
  background: var(--surface-low);
}
.job-card.open .job-details-body { max-height: 500px; padding: 20px 24px; border-top-width: 1px; }

/* ─────────────────────────────────────────────────────────
   LIFE AT COMPANY
───────────────────────────────────────────────────────── */
.life-grid { display: grid; grid-template-columns: 200px 1fr 200px; gap: 16px; align-items: center; }
.life-main-img { border-radius: var(--radius-lg); overflow: hidden; height: 300px; }
.life-main-img img { width: 100%; height: 100%; object-fit: cover; }
.life-side { display: flex; flex-direction: column; gap: 12px; }
.life-side-img { border-radius: var(--radius); overflow: hidden; height: 140px; }
.life-side-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────────────────────────────────────
   RATING BOX
───────────────────────────────────────────────────────── */
.rating-box {
  background: var(--gradient);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff;
  box-shadow: var(--glow-lg);
}
.rating-big { font-family: 'Montserrat', sans-serif; font-size: 52px; font-weight: 800; color: #fff; }
.rating-stars { display: flex; align-items: center; gap: 3px; font-size: 13px; margin: 6px 0; }
.rating-stars i { color: rgba(255,255,255,0.9); line-height: 1; font-size: 13px; }
.rating-box p { font-size: 12.5px; color: rgba(255,255,255,0.88); opacity: 1; }

/* ─────────────────────────────────────────────────────────
   PAGINATION
───────────────────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.page-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.page-btn.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--glow-purple); }
.page-btn:hover:not(.active) { border-color: var(--purple); color: var(--purple); }

/* ─────────────────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent);
}
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 700; color: var(--text); max-width: 420px; line-height: 1.3; letter-spacing: -0.01em; }
.cta-banner .section-label { color: var(--purple); }
.cta-banner .section-label .dot1 { background: var(--scarlet); }
.cta-banner .section-label .dot2 { background: var(--purple); }

/* ─────────────────────────────────────────────────────────
   LOAD MORE
───────────────────────────────────────────────────────── */
.load-more-wrap { text-align: center; margin-top: 36px; }

/* ─────────────────────────────────────────────────────────
   DETAIL SIDEBAR
───────────────────────────────────────────────────────── */
.detail-sidebar {
  background: var(--gradient);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff;
  box-shadow: var(--glow-purple);
}
.detail-sidebar p { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.detail-sidebar strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 20px; }

/* ─────────────────────────────────────────────────────────
   BLOG SIDEBAR
───────────────────────────────────────────────────────── */
.blog-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.blog-sidebar { position: sticky; top: 80px; }
.blogs-archive-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
}
.blog-empty-state {
  background: var(--surface-container);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
}
.blog-empty-state h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; margin-bottom: 12px; color: var(--text); }
.blog-empty-state p { color: var(--text-soft); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.blog-empty-state .search-box { max-width: 420px; margin: 0 auto; }
@media (max-width: 1024px) {
  .blogs-archive-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
.blog-sidebar-box { background: var(--surface-low); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; margin-bottom: 16px; }
.blog-sidebar-box h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.blog-toc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }
.blog-toc-list a { font-size: 13px; color: var(--text-soft); text-decoration: none; line-height: 1.45; display: block; }
.blog-toc-list a:hover { color: var(--purple); }
.blog-toc-list .is-active a { color: var(--dark-green); font-weight: 600; }
.blog-sidebar-cta {
  background: var(--gradient);
  border-radius: var(--radius-md);
  padding: 24px;
  color: #fff;
  text-align: center;
  box-shadow: var(--glow-purple);
}
.blog-sidebar-cta-label { font-size: 12px; opacity: .75; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-sidebar-cta h4 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 16px; color: #fff; }
.blog-sidebar-cta-btn { font-size: 12.5px; padding: 10px 20px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none; }

/* Blog post layout (single-nacham-blog.php) */
.blog-post-hero { margin-bottom: 32px; }
.blog-post-featured-image {
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  margin-bottom: 32px;
  background: var(--surface-container);
}
.blog-post-featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-post-featured-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}
.blog-post-category { display: flex; justify-content: center; margin-bottom: 24px; }
.blog-post-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 800;
  color: var(--dark-green);
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.25;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gray);
}
.blog-post-avatar { border-radius: 50%; width: 32px; height: 32px; }
.blog-post-byline strong { color: var(--dark-green); font-weight: 600; }
.blog-share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.blog-share-label { font-size: 13px; font-weight: 600; color: var(--dark-green); }
.blog-share-icons { display: flex; gap: 10px; }
.blog-share-icon {
  width: 30px;
  height: 30px;
  background: var(--surface-container);
  border: 1px solid var(--border);
  color: var(--purple);
  border-radius: var(--radius);
}
.blog-share-icon:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-purple);
}
.nacham-blog-post-content h2,
.nacham-blog-post-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  margin: 24px 0 12px;
  scroll-margin-top: 96px;
}
.nacham-blog-post-content p,
.nacham-blog-post-content li {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.8;
}
.nacham-blog-post-content p { margin-bottom: 20px; }
.nacham-blog-post-content img { border-radius: var(--radius); }
.nacham-blog-post-content .wp-block-image { margin: 20px 0; }

/* Blog comments */
.nacham-blog-comments-section { background: var(--surface-low); padding-top: 0; }
.nacham-comments-area { max-width: 760px; margin: 0 auto; }
.nacham-comment-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.nacham-comment-form .comment-form-comment label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.nacham-comment-form textarea {
  width: 100%;
  min-height: 160px;
  padding: 14px 16px;
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-md);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  resize: vertical;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.nacham-comment-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.12);
}
.nacham-comment-form .form-submit { margin-top: 16px; }
.nacham-comment-submit { border: none; cursor: pointer; font-size: 13px; padding: 12px 24px; }
.nacham-comments-area .comment-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nacham-comments-area .comment-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.nacham-comments-area .comment-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 6px;
}
.nacham-comments-area .comment-meta { font-size: 12px; color: var(--text-soft); margin-bottom: 10px; }
.nacham-comments-area .comment-content { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.nacham-comments-area .comments-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.search-box { display: flex; }
.search-box input {
  flex: 1; padding: 10px 14px;
  border: 1px solid var(--border-solid);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 13px; font-family: 'Roboto', sans-serif;
  outline: none; color: var(--text);
}
.search-box button {
  padding: 10px 14px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: 14px;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: var(--text-soft);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.tag-chip:hover { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--glow-purple); }
.recent-post { display: flex; gap: 12px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border-bottom: none; }
.recent-post img { width: 56px; height: 48px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.recent-post p { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.4; }
.recent-post small { font-size: 11px; color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────────────────── */
.mb-8{margin-bottom:8px} .mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px} .mb-32{margin-bottom:32px}
.mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-32{margin-top:32px} .mt-48{margin-top:48px}
.text-center{text-align:center}
.nacham-img-grayscale { filter: grayscale(100%); }
.flex{display:flex} .flex-center{display:flex;align-items:center;justify-content:center}
.flex-between{display:flex;align-items:center;justify-content:space-between}
.flex-wrap{flex-wrap:wrap} .gap-8{gap:8px} .gap-12{gap:12px} .gap-16{gap:16px}

/* ─────────────────────────────────────────────────────────
   PAGE TRANSITIONS (HTML prototype SPA only)
   NOTE: Do NOT use bare `.page` — WordPress adds `page` to <body>.
───────────────────────────────────────────────────────── */
.site-main > .nacham-page-wrap { display: none; animation: fadeIn .3s ease; }
.site-main > .nacham-page-wrap.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────────────────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--purple); border-radius: 2px; transition: all .3s; }
body.mobile-menu-open { overflow: hidden; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2000;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-list > li { width: 100%; }
.mobile-menu-list > li > a {
  display: block;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background .2s, color .2s;
}
.mobile-menu-list > li > a:hover,
.mobile-menu-list > li > a.active,
.mobile-menu-list > li > a:focus-visible {
  background: var(--surface-container);
  color: var(--purple);
}
.mobile-menu .nav-dropdown > a::after {
  content: none;
}
.mobile-menu .nav-dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  min-width: 0;
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 0 0 4px 8px;
  margin: 0 0 4px;
}
.mobile-menu .nav-dropdown-menu li a {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  color: var(--text-soft);
  border-radius: var(--radius);
}
.mobile-menu .nav-dropdown-menu li a:hover,
.mobile-menu .nav-dropdown-menu li a.active {
  background: var(--surface-container);
  color: var(--purple);
}
.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg);
}
.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: border-color .2s, box-shadow .2s;
}
.mobile-close:hover {
  border-color: var(--purple);
  box-shadow: var(--glow-purple);
}
.mobile-close i { line-height: 1; }
.btn-quote-mobile {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: var(--gradient);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--glow-purple);
  border: none;
  cursor: pointer;
  transition: box-shadow .25s, transform .25s;
}
.btn-quote-mobile:hover {
  box-shadow: var(--glow-lg);
  transform: translateY(-1px);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .section { padding: 72px 32px; }
  .top-bar-inner { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .contact-section { padding: 72px 32px; }
  .newsletter-section { padding: 64px 32px; }
  .connect-section { padding: 32px 32px; }
  .footer { padding: 56px 32px 28px; }
  .page-hero { padding: 40px 32px 32px; }
}
@media (max-width: 900px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr 1fr; }
  .hero {
    padding: 56px 32px 48px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content .section-title {
    font-size: clamp(30px, 6.5vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.025em;
  }
  .hero-content .section-sub {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-visual-wrap--image { display: none; }
  .hero-slider {
    --hero-slider-ui-h: 50px;
  }
  .hero-slider--compact {
    --hero-slider-max-h: 440px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    max-height: var(--hero-slider-max-h);
    min-height: 360px;
    margin-top: 8px;
  }
  .hero-slide-caption {
    left: 12px;
    right: 12px;
    bottom: calc(var(--hero-slider-ui-h) + 8px);
    padding: 10px 12px;
    gap: 5px;
    max-height: calc(100% - var(--hero-slider-ui-h) - 16px);
  }
  .hero-slide-label {
    font-size: 13px;
    line-height: 1.4;
  }
  .hero-slide-action {
    align-self: stretch;
    width: 100%;
    font-size: 11px;
    padding: 7px 10px;
    margin-top: 4px;
  }
  .hero-slider-ui {
    padding: 10px 12px 12px;
  }
  .hero-slider-meta {
    gap: 8px;
  }
  .hero-slider-progress {
    max-width: 72px;
  }
  .hero-slider-btn {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .blog-detail-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .btn-quote { display: none; }
  .hamburger { display: flex; }
  .nacham-brand-logo-horizontal {
    height: var(--nacham-header-logo-size, 44px);
    max-width: min(220px, 52vw);
  }
  .coming-soon-layout { grid-template-columns: 1fr; }
  .coming-soon-left { display: none; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .why-features { grid-template-columns: 1fr; }
  .blog-post-featured-image { height: 220px; margin-bottom: 24px; }
  .blog-post-meta { gap: 8px; }
  .testimonials-home-media {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .testimonials-home-media .testimonial-card {
    max-width: none;
    width: 100%;
  }
  .connect-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }
  .connect-inner h2 {
    font-size: 24px;
    line-height: 1.25;
  }
  .connect-section .connect-cta {
    white-space: normal;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .hero {
    padding: 48px 20px 40px;
  }
  .hero-inner {
    gap: 28px;
  }
  .hero-content .section-title {
    font-size: clamp(26px, 8.2vw, 32px);
    line-height: 1.18;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
  }
  .hero-content .section-sub {
    font-size: 14px;
    line-height: 1.65;
  }
  .hero-buttons {
    margin-top: 20px;
    gap: 10px;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }
  .stats-row {
    gap: 16px;
    margin-top: 28px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar-left { display: none; }
  .perks-grid { grid-template-columns: 1fr; }
  .hero-slider {
    --hero-slider-ui-h: 56px;
  }
  .hero-slider--compact {
    --hero-slider-max-h: 460px;
    min-height: 380px;
  }
  .hero-slide-caption {
    left: 10px;
    right: 10px;
    padding: 9px 10px;
  }
  .hero-slide-tag {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .hero-slide-label {
    font-size: 12px;
  }
  .hero-slide-action {
    font-size: 10.5px;
    padding: 7px 8px;
  }
  .hero-slider-meta {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
  }
  .hero-slider-counter {
    font-size: 11px;
    flex: 0 0 auto;
  }
  .hero-slider-progress {
    display: none;
  }
  .hero-slider-dots {
    flex: 1 1 auto;
    justify-content: center;
    order: 2;
  }
  .hero-slider-nav {
    flex: 0 0 auto;
    margin-left: auto;
    order: 3;
  }
  .hero-slider--full {
    min-height: 280px;
    max-height: 420px;
    aspect-ratio: 16 / 10;
  }
  .steps-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .contact-section { padding: 56px 20px; }
  .newsletter-section { padding: 56px 20px; }
  .connect-section { padding: 24px 20px; }
  .footer { padding: 48px 20px 24px; }
  .page-hero { padding: 32px 20px 28px; }
}

/* ─────────────────────────────────────────────────────────
   PLACEHOLDER IMAGES
───────────────────────────────────────────────────────── */
.ph-img {
  background: linear-gradient(135deg, var(--surface-high) 0%, var(--surface-highest) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  width: 100%; height: 100%;
}

/* ─────────────────────────────────────────────────────────
   TEXT COLOR BALANCE — site-wide refinements
───────────────────────────────────────────────────────── */

/* Page-hero breadcrumb links */
.breadcrumb a { color: var(--purple); font-weight: 600; }

/* Section labels always purple */
.section-label { color: var(--purple); }

/* Body copy tightened */
p, li { color: var(--text-soft); }
.rating-box p { color: rgba(255,255,255,0.88); }
h1,h2,h3,h4,h5 { color: var(--text); }
.faq-support-card h4 { color: #fff; }
.faq-support-card p { color: rgba(255,255,255,0.92); }

/* Blog/project card date metas */
.blog-card-meta time,
.blog-card-meta small { color: var(--text-muted); font-size: 11.5px; }

/* Gradient headings for key display lines */
.hero-content .section-title,
.page-hero h1 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Ensure stat numbers pop */
.stat-num {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card body subtext */
.service-card-body p,
.blog-card-body p,
.perk-card p,
.why-feat p,
.step-card p { font-size: 13.5px; line-height: 1.7; }

/* Testimonial card text */
.testimonial-card > p { color: var(--text-soft); font-size: 14px; line-height: 1.8; }

/* FAQ question text */
.faq-question { color: var(--text); }
.faq-item.open .faq-question { color: #fff; }
.faq-answer { color: var(--text-soft); }

/* Pricing card text balance */
.pricing-card .pricing-tier { color: var(--text-muted); }
.pricing-card:not(.featured) .pricing-features li { color: var(--text-soft); }

/* Detail sidebar text */
.detail-sidebar p { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.detail-sidebar strong { color: #fff; }

/* Job card meta */
.job-meta span { color: var(--text-muted); font-size: 12px; }
.job-header h3 { color: var(--text); }

/* Team card role label */
.team-card-body p { color: var(--text-muted); font-size: 13px; }

/* Contact info card */
.contact-info-card h3 { color: var(--text); }
.contact-info-card p { color: var(--text-soft); }

/* Award item */
.award-info h4 { color: var(--text); }
.award-info p { color: var(--text-muted); }

/* Progress bar label */
.progress-label span { color: var(--text); font-size: 13px; }

/* Newsletter heading */
.newsletter-section .section-title { color: var(--text); }

/* CTA Banner — light surface with brand accents */
.cta-banner h2 { color: var(--text) !important; -webkit-text-fill-color: var(--text) !important; background: none; }
.cta-banner .section-label { color: var(--purple); }

/* Step card text (already white on gradient bg) */
.step-card h3,
.step-card .step-label,
.step-card p { -webkit-text-fill-color: unset; color: inherit; }
.step-card h3 { color: #fff; }
.step-card p { color: rgba(255,255,255,0.72); }

/* Footer — all text overrides for dark bg */
.footer h4,
.footer .footer-col h4 { color: var(--footer-text) !important; }
.footer .footer-links li a { color: var(--footer-text-muted); }
.footer .footer-links li a:hover { color: var(--footer-text); }
.footer .footer-contact-list span { color: var(--footer-text-muted); }
.footer .footer-brand p { color: var(--footer-text-soft); }
.footer .footer-bottom { color: var(--footer-text-muted); }
.footer .footer-bottom a { color: var(--footer-text-muted); }
.footer .footer-bottom a:hover { color: var(--footer-text); }

/* Connect bar on dark */
.connect-section .connect-inner h2 { color: var(--footer-text); }

/* Logo text always correct on dark */
.footer .logo-text { color: var(--footer-text) !important; }

/* Map placeholder */
.map-placeholder p { color: var(--text-muted); }
.map-placeholder .map-pin { font-size: 40px; }

/* Breadcrumb separators */
.breadcrumb span:not(a) { color: var(--text-muted); }

/* Life-at-company section on gradient bg */
.section[style*="var(--gradient)"] h2,
.section[style*="background:var(--dark"] h2 { color: #fff; }

/* 'Hire Me' sidebar box text */
.blog-sidebar [style*="background:var(--gradient)"] h4,
.blog-sidebar [style*="var(--dark"] h4 { color: #fff; }
.blog-sidebar [style*="var(--dark"] p { color: rgba(255,255,255,0.7); }

/* Pricing card featured button */
.pricing-card.featured .btn-lime { background: rgba(255,255,255,0.18); box-shadow: none; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.pricing-card.featured .btn-lime:hover { background: rgba(255,255,255,0.28); color: #fff; -webkit-text-fill-color: #fff; }

/* Read more gradient text */
.read-more { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }

/* Coming soon page text */
.coming-soon-right .section-label { color: var(--purple); }
.coming-soon-right h1 { color: var(--text); -webkit-text-fill-color: var(--text); background: none; }
.coming-soon-right p { color: var(--text-soft); }

/* 404 sub text */
.not-found p { color: var(--text-soft); }
.not-found h2 { color: var(--text); }

/* Why-feat icon background subtle glow */
/* Section alternate bg rhythm */
section.alt-bg { background: var(--surface-low); }


/* ─── Custom Icon Styles ─────────────────────────────── */
.svc-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  padding: 4px;
  background: rgba(91,0,164,0.06);
  border: 1px solid rgba(91,0,164,0.14);
  border-radius: var(--radius);
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.service-card:hover .svc-icon {
  background: rgba(91,0,164,0.12);
  border-color: rgba(91,0,164,0.28);
  box-shadow: 0 0 14px rgba(168,85,247,0.18);
}
.svc-icon svg { width: 100%; height: 100%; }

.perk-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  padding: 6px;
  background: rgba(91,0,164,0.07);
  border: 1px solid rgba(91,0,164,0.15);
  border-radius: var(--radius-md);
  transition: background .2s, box-shadow .2s;
}
.perk-card:hover .perk-icon {
  background: rgba(91,0,164,0.14);
  box-shadow: 0 0 16px rgba(168,85,247,0.16);
}
.perk-icon svg { width: 100%; height: 100%; }

.step-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  padding: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
}
.step-icon svg { width: 100%; height: 100%; }
/* On gradient bg steps: force icon stroke to white tint */
.step-card .step-icon svg g { filter: none !important; }
.step-card .step-icon svg [stroke="url(#iconGrad)"] { stroke: rgba(255,255,255,0.85) !important; }
.step-card .step-icon svg [fill="url(#iconGrad)"] { fill: rgba(255,255,255,0.85) !important; }



/* ─────────────────────────────────────────────────────────
   PARTNERS TICKER — scrolling partner icons on home page
───────────────────────────────────────────────────────── */
.partners-label-row {
  text-align: center;
  padding: 28px 0 0;
  background: var(--bg);
}
.partners-label-row span {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* Keep the ticker gradient but increase height for icon+name */
.ticker-track--partners { align-items: center; }
.ticker-partner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
}
.tp-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
}
.tp-icon svg { width: 100%; height: 100%; }
.tp-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.tp-name {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.tp-sep {
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  padding: 0 18px;
  align-self: center;
}
/* Taller ticker to fit icon+name */
.partners-label-row + .ticker { padding: 18px 0; }


/* ─────────────────────────────────────────────────────────
   PARTNERS / TRUSTED BY — scrolling icon ticker
───────────────────────────────────────────────────────── */
.partners-wrap {
  padding: 0;
}
.trusted-by-label {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 28px 0 0;
  background: var(--bg);
}
.partners-ticker {
  background: var(--gradient) !important;
  padding: 16px 0 !important;
  margin-top: 16px;
}
.ticker-partner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.ticker-partner:last-child { border-right: none; }
.tp-icon {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-icon svg { width: 100%; height: 100%; }
.tp-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.tp-name {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS — Tabernacle
   Respects prefers-reduced-motion
═══════════════════════════════════════════════════════════ */

/* Elementor pages must always render */
body.elementor-page,
body.elementor-editor-active,
body.elementor-editor-preview {
  display: block !important;
}

.nacham-elementor-page .elementor {
  visibility: visible;
}

/* Elementor HTML widgets — preserve source layout from Nacham-website.html */
.elementor-widget-html .elementor-widget-container {
  padding: 0;
  margin: 0;
}

.elementor-widget-html .elementor-widget-container > .nacham-html-page {
  width: 100%;
}

.nacham-html-page {
  display: block;
  width: 100%;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Translate up */
.reveal            { transform: translateY(28px); }
/* Slide from left */
.reveal-left       { transform: translateX(-32px); }
/* Slide from right */
.reveal-right      { transform: translateX(32px); }
/* Scale up subtly */
.reveal-scale      { transform: translateY(16px) scale(0.97); }
/* Pure fade */
.reveal-fade       { transform: none; }

/* Visible state — all variants settle here */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.delay-1  { transition-delay: 0.05s; }
.delay-2  { transition-delay: 0.12s; }
.delay-3  { transition-delay: 0.19s; }
.delay-4  { transition-delay: 0.26s; }
.delay-5  { transition-delay: 0.33s; }
.delay-6  { transition-delay: 0.40s; }
.delay-7  { transition-delay: 0.47s; }
.delay-8  { transition-delay: 0.54s; }

/* Progress bar animation */
.progress-fill {
  width: 0 !important;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.progress-fill.animated {
  width: var(--target-width) !important;
}

/* Stat counter - pop in */
.stat-num {
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-num.counting {
  opacity: 1;
  transform: none;
}

/* Hero cascade — runs on page load */
.hero-content .section-label { animation: heroFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.hero-content .section-title  { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.22s both; }
.hero-content .section-sub    { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.34s both; }
.hero-content .hero-buttons   { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.46s both; }
.hero-content .stats-row      { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.58s both; }
.hero-visual-wrap,
.hero-img-wrap                { animation: heroFadeLeft 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.hero-slider                  { animation: heroFadeLeft 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: none; }
}

/* Award item slide */
.award-item {
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}

/* Ticker items — already animating via keyframes, never touch them */
.ticker .reveal,
.ticker .reveal-left,
.ticker .reveal-right,
.ticker .reveal-scale,
.ticker .reveal-fade {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}
/* Ensure ticker-track keyframe animation is never blocked */
.ticker-track {
  animation-play-state: running !important;
}

/* Prefers reduced motion — disable everything */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade,
  .hero-content .section-label, .hero-content .section-title,
  .hero-content .section-sub, .hero-content .hero-buttons,
  .hero-content .stats-row, .hero-visual-wrap, .hero-img-wrap, .hero-slider {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .progress-fill {
    width: var(--target-width) !important;
    transition: none !important;
  }
}

/* Font Awesome — keep icon glyphs when body uses Montserrat/Roboto */
i[class*="fa-"],
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  line-height: 1;
}
.social-icon i,
.team-social-icon i,
.top-bar-right .socials-right a i,
.footer-newsletter button i,
.cs-social i,
.testimonial-nav-btn i,
.mobile-close i,
.faq-question .icon i {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.fa-solid,
.fas,
i.fa-solid {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.fa-regular,
.far,
i.fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}
.fa-brands,
.fab,
i.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
.fa-solid::before,
.fa-regular::before,
.fa-brands::before,
.fas::before,
.far::before,
.fab::before {
  font-family: inherit;
  font-weight: inherit;
}

