@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/*
 * Theme Name: Snomusement
 * Theme URI: https://snomusement.com
 * Description: India's Premier Entertainment Design & Consultancy — Custom WordPress theme with Elementor compatibility
 * Version: 1.0.0
 * Author: Snomusement Design Team
 * Author URI: https://snomusement.com
 * Text Domain: snomusement
 * Requires at least: 6.0
 * Tested up to: 6.7
 * Requires PHP: 7.4
 * License: Proprietary
 */


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  TABLE OF CONTENTS                                                      ║
   ╠══════════════════════════════════════════════════════════════════════════╣
   ║  1.  CSS CUSTOM PROPERTIES (Design Tokens)                              ║
   ║  2.  CSS RESET & BASE                                                   ║
   ║  3.  WORDPRESS CORE & ELEMENTOR COMPATIBILITY                           ║
   ║  4.  TYPOGRAPHY                                                         ║
   ║  5.  MESH BACKGROUND                                                    ║
   ║  6.  NAVIGATION                                                         ║
   ║  7.  MEGA MENU                                                          ║
   ║  8.  HAMBURGER & MOBILE DRAWER                                          ║
   ║  9.  HERO SECTIONS                                                      ║
   ║  10. PAGE HERO                                                          ║
   ║  11. DETAIL HERO                                                        ║
   ║  12. SUB-SERVICE HERO                                                   ║
   ║  13. BUTTONS                                                            ║
   ║  14. SHARED / UTILITY CLASSES                                           ║
   ║  15. ANIMATIONS & REVEALS                                               ║
   ║  16. MARQUEE / BRAND STRIP                                              ║
   ║  17. ABOUT SECTION                                                      ║
   ║  18. STATS COMPONENTS                                                   ║
   ║  19. SERVICES BENTO GRID                                                ║
   ║  20. BENTO CARD VARIANTS                                                ║
   ║  21. INDUSTRIES SECTION                                                 ║
   ║  22. TESTIMONIALS                                                       ║
   ║  23. RECOGNITION / AWARDS                                               ║
   ║  24. DASHBOARD / CHART COMPONENTS                                       ║
   ║  25. VERTICAL NAV STRIP                                                 ║
   ║  26. SERVICE VERTICALS & CARDS                                          ║
   ║  27. BADGE VARIANTS                                                     ║
   ║  28. PROCESS SECTION                                                    ║
   ║  29. OVERVIEW SECTION                                                   ║
   ║  30. SUB-SERVICE CONTENT SECTIONS                                       ║
   ║  31. FEATURE GRID                                                       ║
   ║  32. TIMELINE / APPROACH                                                ║
   ║  33. DELIVERABLES                                                       ║
   ║  34. FAQ / ACCORDION                                                    ║
   ║  35. SIBLING NAV STRIP                                                  ║
   ║  36. RELATED SERVICES                                                   ║
   ║  37. BREADCRUMBS                                                        ║
   ║  38. CTA SECTION                                                        ║
   ║  39. FOOTER                                                             ║
   ║  40. FOOTER ACCORDION (MOBILE)                                          ║
   ║  41. FOOTER FORM                                                        ║
   ║  42. BLOG & CONTENT                                                     ║
   ║  42b.WORDPRESS COMMENTS                                                  ║
   ║  42c.WORDPRESS SIDEBAR                                                   ║
   ║  42d.WORDPRESS WIDGETS (Individual)                                      ║
   ║  43. RESPONSIVE — 1100px                                                ║
   ║  44. RESPONSIVE — 900px (Tablet)                                        ║
   ║  45. RESPONSIVE — 600px (Mobile)                                        ║
   ║  46. RESPONSIVE — 380px (Small Mobile)                                  ║
   ║  47. ACCESSIBILITY ENHANCEMENTS                                         ║
   ║  48. PRINT STYLES                                                       ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */


/* ═══════════════════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --bg: #F8FAFC;
  --bg2: #FFFFFF;

  /* Surfaces (glass-morphism) */
  --surf: rgba(255, 255, 255, 0.85);
  --surf2: rgba(255, 255, 255, 0.95);

  /* Borders */
  --bdr: rgba(99, 102, 241, 0.1);
  --bdr2: rgba(0, 0, 0, 0.07);

  /* Text colors */
  --t1: #0A0A0F;
  --t2: #334155;
  --t3: #64748B;

  /* Brand colors */
  --blue: #6366F1;
  --indigo: #312E81;
  --cyan: #22D3EE;
  --green: #10B981;
  --warm: #FF7E5F;

  /* Dark surfaces */
  --dark: #0F0E17;

  /* Radii */
  --r: 20px;
  --rl: 28px;

  /* Focus ring (accessibility) */
  --focus-ring: 0 0 0 3px rgba(99, 102, 241, 0.4);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ═══════════════════════════════════════════════════════════════════════════
   2. CSS RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--t1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration-skip-ink: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* Remove tap highlight on mobile webkit */
a, button, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
}

/* Ensure proper touch target sizing */
a, button {
  touch-action: manipulation;
}


/* ═══════════════════════════════════════════════════════════════════════════
   3. WORDPRESS CORE & ELEMENTOR COMPATIBILITY
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 3a. WordPress Admin Bar Offset ── */
/* WP admin bar is 32px tall on desktop, 46px on mobile */
body.admin-bar #nav {
  top: 46px; /* 14px original + 32px admin bar */
}

body.admin-bar .drawer {
  padding-top: 112px; /* 80px original + 32px admin bar */
}

body.admin-bar .mega-overlay {
  top: 32px;
}

body.admin-bar .sticky-vert {
  top: 104px; /* 72px original + 32px admin bar */
}

body.admin-bar .ov-nav {
  top: 132px; /* 100px original + 32px admin bar */
}

@media screen and (max-width: 782px) {
  body.admin-bar #nav {
    top: 56px; /* 10px original + 46px admin bar on mobile */
  }
  body.admin-bar .drawer {
    padding-top: 126px; /* 80px + 46px */
  }
  body.admin-bar .sticky-vert {
    top: 118px; /* 72px + 46px */
  }
}

@media screen and (max-width: 600px) {
  /* WP hides admin bar position:fixed below 600px on front-end */
  body.admin-bar #nav {
    top: 10px;
  }
  body.admin-bar .drawer {
    padding-top: 80px;
  }
}


/* ── 3b. WordPress Body Classes ── */
body.home,
body.blog,
body.single,
body.page,
body.archive,
body.search,
body.error404,
body.logged-in,
body.page-template,
body.single-post,
body.category,
body.tag {
  /* Base: inherit all body styles, no overrides needed —
     this block ensures WP body classes don't conflict */
  overflow-x: hidden;
}

/* Customizer preview iframe */
body.wp-customizer-unloading {
  opacity: 0;
  transition: opacity .25s;
}


/* ── 3c. WP Classic Alignment Classes ── */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
a img.alignright { float: right; margin: 5px 0 20px 20px; }
a img.alignnone { margin: 5px 20px 20px 0; }
a img.alignleft { float: left; margin: 5px 20px 20px 0; }
a img.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Gutenberg / Block Editor Alignment */
.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.alignfull {
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

.has-text-align-center { text-align: center; }
.has-text-align-left { text-align: left; }
.has-text-align-right { text-align: right; }


/* ── 3d. WP Caption / Figure Styles ── */
.wp-caption {
  background: var(--surf);
  border: 1px solid var(--bdr2);
  border-radius: var(--r);
  max-width: 100%;
  padding: 8px;
  text-align: center;
}

.wp-caption.alignnone { margin: 5px 20px 20px 0; }
.wp-caption.alignleft { margin: 5px 20px 20px 0; }
.wp-caption.alignright { margin: 5px 0 20px 20px; }
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 12px;
  color: var(--t3);
  line-height: 1.4;
  margin: 0;
  padding: 6px 4px;
}

/* HTML5 figure/figcaption (Gutenberg blocks, classic editor) */
figure {
  margin: 0 0 1.5em;
  max-width: 100%;
}

figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--r);
}

figcaption,
.wp-element-caption {
  font-size: 12.5px;
  color: var(--t3);
  line-height: 1.4;
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}

/* WordPress block image */
.wp-block-image {
  margin-bottom: 1.5em;
}

.wp-block-image img {
  border-radius: var(--r);
  height: auto;
}

.wp-block-image figcaption {
  margin-top: 8px;
}

.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
  width: 100%;
}

/* WordPress block gallery */
.wp-block-gallery {
  margin-bottom: 1.5em;
}

.wp-block-gallery .wp-block-image {
  margin-bottom: 0;
}


/* ── 3e. WordPress Gallery (Classic) ── */
.gallery { margin: 0 auto 18px; }
.gallery .gallery-item { display: inline-block; text-align: center; width: 33.33%; padding: 4px; vertical-align: top; }
.gallery .gallery-caption { color: var(--t3); font-size: 12px; }
.gallery-columns-2 .gallery-item { max-width: 50%; }
.gallery-columns-4 .gallery-item { max-width: 25%; }


/* ── 3f. Screen Reader Text (WordPress) ── */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--t1);
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}


/* ── 3g. WordPress Misc Classes ── */
.sticky { display: block; }
.bypostauthor { display: block; }
.page-links { clear: both; margin: 24px 0; }

/* WordPress embeds */
.wp-block-embed { margin-bottom: 1.5em; }
.wp-block-embed__wrapper { position: relative; }
.wp-block-embed__wrapper iframe { max-width: 100%; }

/* WordPress separator / spacer */
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--bdr2);
  margin: 2em auto;
  max-width: 100px;
}

.wp-block-separator.is-style-wide {
  max-width: 100%;
}

.wp-block-spacer {
  clear: both;
}


/* ══════════════════════════════════════════════════════════════════════════
   3h. ELEMENTOR — Layout Overrides
   ══════════════════════════════════════════════════════════════════════════ */

/* Container width matching */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

.elementor-section.elementor-section-full_width .elementor-container {
  max-width: 100%;
}

/* Widget spacing harmonization */
.elementor-widget:not(:last-child) {
  margin-bottom: 20px;
}

/* Column gap matching */
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 12px;
}

/* Prevent Elementor from overriding font-family */
.elementor-widget-text-editor,
.elementor-widget-heading .elementor-heading-title,
.elementor-widget-text-editor p,
.elementor-widget-text-editor li {
  font-family: inherit;
}

/* Elementor image widget — match theme radii */
.elementor-widget-image img {
  border-radius: var(--r);
}

/* Elementor button widget — inherit theme button styles */
.elementor-widget-button .elementor-button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 12px;
  font-weight: 500;
  transition: all .25s;
}

/* Elementor divider widget */
.elementor-widget-divider .elementor-divider-separator {
  border-color: var(--bdr2);
}

/* Elementor spacer — ensure clean collapse */
.elementor-widget-spacer {
  clear: both;
}

/* Elementor icon-box alignment */
.elementor-widget-icon-box .elementor-icon {
  font-family: inherit;
}


/* ══════════════════════════════════════════════════════════════════════════
   3i. ELEMENTOR — Z-Index Conflict Resolution
   ══════════════════════════════════════════════════════════════════════════ */

/*
  Z-Index Stack (highest → lowest):
    100000  — screen-reader-text:focus, skip-link
    10000   — WordPress admin bar (#wpadminbar)
    1001    — .mega (mega menu dropdown)
    1000    — #nav (floating navigation)
    999     — .mega-overlay
    998     — .drawer (mobile drawer)
    100     — .sticky-vert (vertical nav strip)
    1       — page sections (.hero, .about, etc.)
    0       — .mesh (background gradient)
*/

/* Elementor editor — lower nav so editor toolbar is usable */
body.elementor-editor-active #nav {
  z-index: 99;
}

body.elementor-editor-active .mega,
body.elementor-editor-active .mega-overlay,
body.elementor-editor-active .drawer {
  z-index: 98;
}

/* Elementor popup — must sit above our nav */
.elementor-popup-modal {
  z-index: 1100 !important;
}

/* Elementor editor panel sits at z-index 10000+ */
body.elementor-editor-active .sticky-vert {
  z-index: 1;
}

/* Fix Elementor section overlapping the fixed nav on scroll */
.elementor-section {
  position: relative;
  z-index: 1;
}

/* Ensure no Elementor section can eclipse the floating nav */
.elementor-section[data-settings] {
  z-index: 1;
}


/* ══════════════════════════════════════════════════════════════════════════
   3j. ELEMENTOR — Form Widget Reset for Footer Forms
   ══════════════════════════════════════════════════════════════════════════ */

/* When Elementor's Form widget is used inside footer,
   reset its styles to match the dark footer form aesthetic */

footer .elementor-form .elementor-field-group {
  margin-bottom: 10px;
  padding: 0;
}

footer .elementor-form .elementor-field-textual {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 44px;
  transition: border-color .2s;
}

footer .elementor-form .elementor-field-textual:focus {
  border-color: rgba(99, 102, 241, .5);
  outline: none;
}

footer .elementor-form .elementor-field-textual::placeholder {
  color: rgba(255, 255, 255, .35);
}

footer .elementor-form textarea.elementor-field-textual {
  resize: vertical;
  min-height: 70px;
  max-height: 140px;
  line-height: 1.5;
}

footer .elementor-form .elementor-button {
  background: var(--blue);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: 100%;
  min-height: 44px;
}

footer .elementor-form .elementor-button:hover {
  background: var(--indigo);
  transform: translateY(-1px);
}

footer .elementor-form .elementor-field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 6px;
}

footer .elementor-form .elementor-message {
  font-size: 12px;
  margin-top: 8px;
}

/* Also reset for contact page Elementor forms */
.cf-form-card .elementor-form .elementor-field-textual {
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--bdr2);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--t1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 44px;
  transition: all .2s;
}

.cf-form-card .elementor-form .elementor-field-textual:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .08);
}

.cf-form-card .elementor-form .elementor-button {
  background: var(--t1);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 48px;
  transition: all .25s;
}

.cf-form-card .elementor-form .elementor-button:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, .3);
}


/* ══════════════════════════════════════════════════════════════════════════
   3k. MESH DIV — Elementor Canvas & Template Handling
   ══════════════════════════════════════════════════════════════════════════ */

/*
  The .mesh div is a fixed background gradient layer at z-index:0.
  It must NOT appear above Elementor's canvas templates, popups, or
  the editor interface. These rules handle all edge cases.
*/

/* Elementor Canvas template — no header/footer, mesh stays behind */
body.elementor-template-canvas .mesh {
  display: none;
}

/* Elementor Full Width template — mesh stays but behind everything */
body.elementor-template-full_width .mesh {
  z-index: -1;
}

/* Elementor popup — mesh must not bleed through popup backdrop */
.elementor-popup-modal ~ .mesh {
  z-index: -1;
}

/* Ensure mesh never captures pointer events or interferes with editing */
body.elementor-editor-active .mesh {
  z-index: -1;
  pointer-events: none;
}

/* Elementor preview mode — keep mesh but well behind */
body.elementor-editor-preview .mesh {
  z-index: 0;
  pointer-events: none;
}


/* ══════════════════════════════════════════════════════════════════════════
   3l. BODY OVERFLOW-X — Preventing Horizontal Scroll
   ══════════════════════════════════════════════════════════════════════════ */

/*
  overflow-x:hidden is set on html and body in the reset (section 2).
  These additional rules prevent Elementor-injected full-width
  sections from causing horizontal scrollbar.
*/

/* Elementor full-width sections that may exceed viewport */
.elementor-section-stretched {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Prevent Elementor negative-margin containers from scrollbar */
.elementor-section.elementor-section-full_width {
  overflow-x: hidden;
}

/* CTA and other full-bleed sections */
.cta-wrap,
.marquee-section,
.recog {
  overflow-x: hidden;
}


/* ═══════════════════════════════════════════════════════════════════════════
   4. TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */

/* Headings default */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--t1);
}

h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -2px; line-height: 1.05; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
h3 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; letter-spacing: -1px; }
h4 { font-size: clamp(18px, 2vw, 24px); font-weight: 700; letter-spacing: -0.5px; }
h5 { font-size: 18px; font-weight: 700; }
h6 { font-size: 16px; font-weight: 700; }

p { line-height: 1.7; color: var(--t2); }

/* Gradient text utility */
.grad {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ═══════════════════════════════════════════════════════════════════════════
   5. MESH BACKGROUND
   ═══════════════════════════════════════════════════════════════════════════ */
.mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 10%, rgba(99, 102, 241, .08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(49, 46, 129, .07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 80%, rgba(34, 211, 238, .06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 90%, rgba(16, 185, 129, .05) 0%, transparent 50%),
    var(--bg2);
}


/* ═══════════════════════════════════════════════════════════════════════════
   6. NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1280px;
  background: rgba(250, 250, 252, .82);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .07), 0 1px 3px rgba(0, 0, 0, .04);
  transition: all .3s ease;
}

#nav.scrolled {
  background: rgba(250, 250, 252, .96);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.5px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  height: 58px;
}

.nav-links > li {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 10px;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a:focus-visible,
.mega-parent.mega-open > a,
#nav.mega-open .mega-trigger,
.nav-links > li > a.active-link {
  background: rgba(99, 102, 241, .07);
  color: var(--blue);
}

/* Chevron for mega menu */
.chev {
  font-size: 9px;
  opacity: .5;
  transition: transform .25s;
  display: inline-block;
}

.mega-parent.mega-open .chev,
#nav.mega-open .chev {
  transform: rotate(180deg);
  opacity: 1;
}

/* Nav CTA button */
.nav-cta {
  background: var(--t1) !important;
  color: #fff !important;
  border-radius: 10px;
  padding: 7px 18px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(99, 102, 241, .3) !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   7. MEGA MENU
   ═══════════════════════════════════════════════════════════════════════════ */
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 6px;
  transform: translateY(8px);
  background: rgba(252, 252, 254, .97);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 18px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .12), 0 4px 16px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s var(--ease-out);
  z-index: 1001;
  overflow: hidden;
}

.mega::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

#nav.mega-open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.mega-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: transparent;
  display: none;
}

.mega-overlay.active { display: block; }

.mega-inner {
  display: flex;
  min-height: 360px;
  max-height: 70vh;
}

/* Mega menu tabs */
.mega-tabs {
  width: 215px;
  flex-shrink: 0;
  background: rgba(245, 245, 247, .8);
  border-right: 1px solid rgba(0, 0, 0, .06);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .18s;
}

.mega-tab:hover { background: rgba(99, 102, 241, .06); }
.mega-tab.active { background: #fff; box-shadow: 0 2px 10px rgba(0, 0, 0, .07); }

.mega-tab-ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  background: rgba(99, 102, 241, .07);
  transition: all .18s;
}

.mega-tab.active .mega-tab-ic { background: var(--blue); }

.mega-tab-lbl {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--t2);
  line-height: 1.25;
}

.mega-tab.active .mega-tab-lbl { color: var(--blue); }

.mega-tab-cnt {
  font-size: 10px;
  color: var(--t3);
  font-weight: 400;
  margin-top: 1px;
}

/* Mega menu panels */
.mega-panels {
  flex: 1;
  padding: 24px 28px;
  overflow-y: auto;
}

.mega-panel { display: none; }
.mega-panel.active { display: block; animation: fadePanel .2s ease; }

@keyframes fadePanel {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.mega-ph {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.mega-ph-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -.3px;
}

.mega-ph-link {
  font-size: 12px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}

.mega-ph-link:hover { gap: 8px; }

/* Mega menu cards */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.mega-card {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .18s;
  border: 1px solid transparent;
}

.mega-card:hover {
  background: rgba(99, 102, 241, .04);
  border-color: rgba(99, 102, 241, .1);
}

.mc-title { font-size: 13px; font-weight: 600; color: var(--t1); margin-bottom: 3px; }
.mc-subs { font-size: 11.5px; color: var(--t3); line-height: 1.5; }

/* Mega menu footer */
.mega-foot {
  background: rgba(245, 245, 247, .6);
  border-top: 1px solid rgba(0, 0, 0, .05);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mega-foot-txt { font-size: 12px; color: var(--t3); }

.mega-foot-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  background: rgba(99, 102, 241, .07);
  padding: 7px 14px;
  border-radius: 8px;
  transition: all .18s;
  white-space: nowrap;
}

.mega-foot-cta:hover {
  background: var(--blue);
  color: #fff;
}


/* ═══════════════════════════════════════════════════════════════════════════
   8. HAMBURGER & MOBILE DRAWER
   ═══════════════════════════════════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  border-radius: 8px;
  transition: background .2s;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.hamburger:hover { background: rgba(0, 0, 0, .05); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t2);
  border-radius: 2px;
  transition: all .3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 250, 252, .98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 998;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer.open { transform: translateX(0); }

.dr-section {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t3);
  padding: 16px 4px 6px;
  border-bottom: 1px solid var(--bdr2);
  margin-bottom: 4px;
}

.dr-link {
  display: flex;
  align-items: center;
  padding: 12px 12px;
  border-radius: 12px;
  min-height: 44px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  transition: all .18s;
}

.dr-link:hover,
.dr-link:focus-visible {
  background: rgba(99, 102, 241, .07);
  color: var(--blue);
}

.dr-cta {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .2s;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dr-cta:hover { background: var(--indigo); transform: translateY(-1px); }


/* ═══════════════════════════════════════════════════════════════════════════
   9. HERO SECTIONS (Landing Page)
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, .08);
  border: 1px solid rgba(99, 102, 241, .15);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--t1);
  animation: fadeUp .8s .1s ease both;
}

.hero-sub {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--t2);
  max-width: 480px;
  font-weight: 300;
  animation: fadeUp .8s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  animation: fadeUp .8s .3s ease both;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  animation: fadeUp .8s .4s ease both;
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -1px;
}

.stat-lbl { font-size: 12.5px; color: var(--t3); margin-top: 2px; }


/* ═══════════════════════════════════════════════════════════════════════════
   10. PAGE HERO (About, Blog, Contact, 404, Projects, etc.)
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 140px 24px 80px;
  text-align: center;
}

.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero .sec-tag { justify-content: center; }

.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--t1);
  animation: fadeUp .8s .1s ease both;
}

.page-hero .hero-sub {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--t2);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  animation: fadeUp .8s .2s ease both;
}

.hero-stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}

.hsb-item { text-align: center; }

.hsb-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hsb-lbl { font-size: 12.5px; color: var(--t3); margin-top: 4px; font-weight: 500; }


/* ═══════════════════════════════════════════════════════════════════════════
   11. DETAIL HERO (Service Detail Pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.detail-hero { position: relative; z-index: 1; padding: 130px 24px 0; overflow: hidden; }
.detail-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.detail-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.dh-left { position: relative; z-index: 1; }

.dh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, .08);
  border: 1px solid rgba(16, 185, 129, .15);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #008060;
  margin-bottom: 24px;
  animation: fadeUp .7s .05s ease both;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.dh-badge-dot { width: 6px; height: 6px; background: #008060; border-radius: 50%; animation: pulse 2s infinite; }

.detail-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--t1);
  animation: fadeUp .7s .1s ease both;
}

.dh-sub {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--t2);
  max-width: 520px;
  font-weight: 300;
  animation: fadeUp .7s .15s ease both;
}

.dh-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  animation: fadeUp .7s .2s ease both;
  flex-wrap: wrap;
}

/* Responsive line break */
.dh-br { display: block; }

/* Hero visual card */
.dh-right { animation: fadeUp .7s .2s ease both; }

.hero-visual {
  background: linear-gradient(135deg, #E8F4FF 0%, #F0F8FF 60%, #E0EEFF 100%);
  border: 1px solid rgba(99, 102, 241, .1);
  border-radius: var(--rl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(99, 102, 241, .1), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .1), transparent);
  pointer-events: none;
}

.hv-emoji { font-size: 80px; display: block; margin-bottom: 24px; filter: drop-shadow(0 8px 24px rgba(99, 102, 241, .15)); }
.hv-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.hv-stat {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(99, 102, 241, .08);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(8px);
}

.hv-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--t1);
  line-height: 1;
}

.hv-stat-lbl { font-size: 11.5px; color: var(--t3); margin-top: 5px; font-weight: 500; }

.hv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.hv-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(99, 102, 241, .06);
  border: 1px solid rgba(99, 102, 241, .1);
  padding: 5px 14px;
  border-radius: 8px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   12. SUB-SERVICE HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.ss-hero { position: relative; z-index: 1; padding: 130px 24px 0; }
.ss-hero-inner { max-width: 1200px; margin: 0 auto; }
.ss-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }

.ss-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--t3);
  text-decoration: none;
  margin-bottom: 20px;
  transition: all .2s;
  animation: fadeUp .7s ease both;
}

.ss-back:hover { color: var(--blue); gap: 10px; }
.ss-back-arrow { font-size: 16px; transition: transform .2s; }
.ss-back:hover .ss-back-arrow { transform: translateX(-3px); }

.ss-parent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, .08);
  border: 1px solid rgba(16, 185, 129, .15);
  border-radius: 100px;
  padding: 5px 14px 5px 9px;
  font-size: 11.5px;
  font-weight: 600;
  color: #008060;
  margin-bottom: 20px;
  animation: fadeUp .7s .05s ease both;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.ss-parent-badge span { width: 5px; height: 5px; background: #008060; border-radius: 50%; }

.ss-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--t1);
  animation: fadeUp .7s .1s ease both;
}

.ss-hero-sub {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--t2);
  max-width: 540px;
  font-weight: 300;
  animation: fadeUp .7s .15s ease both;
}

.ss-hero-actions { display: flex; gap: 14px; margin-top: 32px; animation: fadeUp .7s .2s ease both; flex-wrap: wrap; }

/* Sub-service metrics card */
.ss-hero-card { animation: fadeUp .7s .2s ease both; }

.ss-metrics {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .07), inset 0 1px 0 rgba(255, 255, 255, .9);
  position: relative;
  overflow: hidden;
}

.ss-metrics::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .08), transparent);
  pointer-events: none;
}

.ssm-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--t3);
  margin-bottom: 20px;
}

.ssm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ssm-item {
  background: rgba(99, 102, 241, .04);
  border: 1px solid rgba(99, 102, 241, .08);
  border-radius: 14px;
  padding: 18px;
  transition: all .25s;
}

.ssm-item:hover { background: rgba(99, 102, 241, .07); transform: translateY(-2px); }

.ssm-num {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--t1);
  line-height: 1;
}

.ssm-lbl { font-size: 12px; color: var(--t3); margin-top: 5px; font-weight: 500; line-height: 1.3; }

.ssm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--bdr2);
}

.ssm-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(99, 102, 241, .06);
  border: 1px solid rgba(99, 102, 241, .08);
  padding: 4px 12px;
  border-radius: 8px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   13. BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.btn-p {
  background: var(--t1);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 48px;
}

.btn-p:hover,
.btn-p:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, .3);
}

.btn-s {
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--bdr2);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 48px;
}

.btn-s:hover,
.btn-s:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(99, 102, 241, .04);
}


/* ═══════════════════════════════════════════════════════════════════════════
   14. SHARED / UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.sec-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--blue); }

.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--t1);
}

.sec-sub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.6;
  font-weight: 300;
  max-width: 560px;
  margin-top: 14px;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bdr2), transparent);
  max-width: 1200px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════════════════
   15. ANIMATIONS & REVEALS
   ═══════════════════════════════════════════════════════════════════════════ */
/* Reveal — hidden only when JS has loaded (js-ready class on <html>).
   Without JS: all elements fully visible. */
.reveal {
  transition: opacity .7s ease, transform .7s ease;
}
.js-ready .reveal:not(.on) {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.on { opacity: 1; transform: none; }

/* Staggered reveal group */
.rg > * {
  transition: opacity .6s ease, transform .6s ease;
}
.js-ready .rg:not(.on) > * {
  opacity: 0;
  transform: translateY(20px);
}
.rg.on > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0s; }
.rg.on > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: .06s; }
.rg.on > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: .12s; }
.rg.on > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: .18s; }
.rg.on > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: .24s; }
.rg.on > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: .30s; }
.rg.on > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: .36s; }
.rg.on > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: .42s; }
.rg.on > *:nth-child(9)  { opacity: 1; transform: none; transition-delay: .48s; }
.rg.on > *:nth-child(10) { opacity: 1; transform: none; transition-delay: .54s; }
.rg.on > *:nth-child(11) { opacity: 1; transform: none; transition-delay: .60s; }
.rg.on > *:nth-child(n+12) { opacity: 1; transform: none; transition-delay: .66s; }

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

@keyframes growBar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* Prefers reduced motion — disable animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .js-ready .reveal:not(.on) { opacity: 1 !important; transform: none !important; }
  .rg > *, .js-ready .rg:not(.on) > * { opacity: 1 !important; transform: none !important; }
  .hero h1, .hero-badge, .hero-sub, .hero-actions, .hero-stats,
  .detail-hero h1, .dh-badge, .dh-sub, .dh-actions, .dh-right,
  .ss-back, .ss-parent-badge, .ss-hero h1, .ss-hero-sub, .ss-hero-actions, .ss-hero-card,
  .page-hero h1, .page-hero .hero-sub, .hero-stats-bar {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .marquee-track { animation: none !important; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   16. MARQUEE / BRAND STRIP
   ═══════════════════════════════════════════════════════════════════════════ */
.marquee-section {
  position: relative;
  z-index: 1;
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid var(--bdr2);
  border-bottom: 1px solid var(--bdr2);
  background: rgba(255, 255, 255, .5);
}

.marquee-lbl {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 28px;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px;
  border-right: 1px solid var(--bdr2);
  white-space: nowrap;
}

.brand-ic {
  width: 34px;
  height: 34px;
  background: var(--bdr2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.brand-nm {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: -.3px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   17. ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.about { position: relative; z-index: 1; padding: 80px 24px; background: rgba(255, 255, 255, .4); }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-para { font-size: 16px; color: var(--t2); line-height: 1.75; margin-top: 16px; font-weight: 300; }

.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }

.feat {
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(16px);
}

.feat-ic { font-size: 20px; margin-bottom: 8px; }
.feat-lbl { font-size: 13px; font-weight: 600; color: var(--t1); }
.feat-sub { font-size: 12px; color: var(--t3); margin-top: 3px; }


/* ═══════════════════════════════════════════════════════════════════════════
   18. STATS COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.stat-card {
  background: var(--surf2);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(24px);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: all .3s ease;
}

.stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0, 0, 0, .08); }

.sc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.sc-lbl { font-size: 13px; color: var(--t2); margin-top: 8px; font-weight: 500; line-height: 1.4; }

/* Stats band (detail pages) */
.stats-band {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  margin-top: 64px;
  border-top: 1px solid var(--bdr2);
  border-bottom: 1px solid var(--bdr2);
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(12px);
}

.stats-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sb-item { text-align: center; padding: 8px 0; }

.sb-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.sb-lbl { font-size: 13px; color: var(--t3); margin-top: 6px; font-weight: 500; line-height: 1.3; }


/* ═══════════════════════════════════════════════════════════════════════════
   19. SERVICES BENTO GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.services { position: relative; z-index: 1; padding: 100px 24px; }

.svc-hdr {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.bento {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1.8fr 1.8fr 1.5fr;
  grid-template-rows: minmax(280px, auto) minmax(160px, auto) minmax(200px, auto) minmax(120px, auto);
  grid-template-areas:
    "b1 b2 b3 b4"
    "b1 b5 b6 b4"
    "b7 b7 b8 b8"
    "b9 b10 b11 b11";
  gap: 14px;
}

.b1 { grid-area: b1; } .b2 { grid-area: b2; } .b3 { grid-area: b3; } .b4 { grid-area: b4; }
.b5 { grid-area: b5; } .b6 { grid-area: b6; } .b7 { grid-area: b7; } .b8 { grid-area: b8; }
.b9 { grid-area: b9; } .b10 { grid-area: b10; } .b11 { grid-area: b11; }


/* ═══════════════════════════════════════════════════════════════════════════
   20. BENTO CARD VARIANTS
   ═══════════════════════════════════════════════════════════════════════════ */
.bc {
  background: var(--surf);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .3s var(--ease-bounce);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  min-height: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04), inset 0 1px 0 rgba(255, 255, 255, .8);
  text-decoration: none;
  color: inherit;
}

.bc:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .9);
  border-color: rgba(99, 102, 241, .2);
}

.bc::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 60%);
  pointer-events: none;
}

/* Dark variant */
.bc-dark {
  background: var(--dark);
  border-color: rgba(255, 255, 255, .06);
  color: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.bc-dark::after { background: linear-gradient(135deg, rgba(255, 255, 255, .04) 0%, transparent 60%); }

.bc-dark:hover {
  border-color: rgba(99, 102, 241, .4);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .4), 0 0 0 1px rgba(99, 102, 241, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
}

/* Accent variant */
.bc-accent {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  border-color: transparent;
  color: #fff;
}

.bc-accent:hover { box-shadow: 0 20px 48px rgba(99, 102, 241, .4); }

/* Snow variant */
.bc-snow {
  background: linear-gradient(135deg, #E8F4FF 0%, #F0F8FF 100%);
  border-color: rgba(99, 102, 241, .1);
}

/* Glow effect */
.bc-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .15), transparent);
  top: -30px;
  right: -30px;
  pointer-events: none;
}

/* Card content elements */
.ctag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(99, 102, 241, .08);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.bc-dark .ctag { background: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .75); }
.bc-accent .ctag { background: rgba(255, 255, 255, .15); color: #fff; }

.ctitle {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--t1);
  line-height: 1.2;
}

.ctitle-sm {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.3px;
  color: var(--t1);
}

.bc-dark .ctitle, .bc-dark .ctitle-sm { color: #fff; }

.csub { font-size: 13px; color: var(--t3); line-height: 1.5; margin-top: 8px; font-weight: 400; }
.bc-dark .csub { color: rgba(255, 255, 255, .65); }
.bc-accent .csub { color: rgba(255, 255, 255, .7); }

.citems { display: flex; flex-direction: column; gap: 5px; margin-top: 12px; }

.citem { font-size: 12px; color: var(--t3); display: flex; align-items: center; gap: 7px; }
.citem::before { content: ''; width: 4px; height: 4px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
.bc-dark .citem { color: rgba(255, 255, 255, .65); }
.bc-dark .citem::before { background: rgba(99, 102, 241, .8); }
.bc-accent .citem { color: rgba(255, 255, 255, .7); }
.bc-accent .citem::before { background: rgba(255, 255, 255, .6); }

.cmetric {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cmrow { display: flex; gap: 20px; margin-top: 12px; }
.cmval { font-family: 'Outfit',monospace, monospace; font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, .9); }
.cmlbl { font-size: 10px; color: rgba(255, 255, 255, .55); text-transform: uppercase; letter-spacing: .5px; margin-top: 1px; }

.carrow {
  width: 32px;
  height: 32px;
  background: rgba(99, 102, 241, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
  align-self: flex-end;
  transition: all .2s;
}

.bc:hover .carrow { background: var(--blue); color: #fff; transform: translate(2px, -2px); }
.bc-dark .carrow { background: rgba(255, 255, 255, .06); color: rgba(255, 255, 255, .6); }
.bc-dark:hover .carrow { background: var(--blue); color: #fff; }

.cicon { font-size: 28px; margin-bottom: 16px; display: block; }

/* Horizontal card variant */
.bc-horiz { flex-direction: row; align-items: center; gap: 24px; }
.bc-horiz .ch-content { flex: 1; }
.bc-horiz .ch-visual { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }

.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; }

.mb {
  width: 18px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--blue), rgba(99, 102, 241, .3));
  animation: growBar 1.5s ease both;
}

.mb.mb2 { background: linear-gradient(180deg, var(--indigo), rgba(49, 46, 129, .3)); }
.mb.mb3 { background: linear-gradient(180deg, var(--cyan), rgba(34, 211, 238, .3)); }


/* ═══════════════════════════════════════════════════════════════════════════
   21. INDUSTRIES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.industries {
  position: relative;
  z-index: 1;
  padding: 80px 24px 100px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .6), transparent);
}

.ind-grid {
  max-width: 1200px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ind-card {
  background: var(--surf);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px;
  cursor: pointer;
  transition: all .3s var(--ease-bounce);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  text-decoration: none;
  color: inherit;
}

.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .1);
  border-color: rgba(99, 102, 241, .2);
}

.ind-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

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

.ind-em {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
  transition: transform .3s;
}

.ind-card:hover .ind-em { transform: scale(1.1) rotate(-3deg); }

.ind-name {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -.4px;
}

.ind-desc { font-size: 13px; color: var(--t3); margin-top: 6px; line-height: 1.5; }

.ind-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(99, 102, 241, .07);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 14px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   22. TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonials { position: relative; z-index: 1; padding: 80px 24px 100px; }

.test-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.test-card {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: all .3s ease;
}

.test-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0, 0, 0, .1); }

.qmark {
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  line-height: .6;
  color: var(--blue);
  opacity: .15;
  margin-bottom: 20px;
  display: block;
}

.test-txt { font-size: 15px; line-height: 1.7; color: var(--t2); font-style: italic; font-weight: 300; }

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--bdr2);
}

.av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.av-name { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--t1); letter-spacing: -.3px; }
.av-role { font-size: 12px; color: var(--t3); margin-top: 2px; }
.stars { display: flex; gap: 3px; margin-top: 8px; }
.star { color: #FFB800; font-size: 13px; }


/* ═══════════════════════════════════════════════════════════════════════════
   23. RECOGNITION / AWARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.recog {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  background: rgba(255, 255, 255, .5);
  border-top: 1px solid var(--bdr2);
  border-bottom: 1px solid var(--bdr2);
}

.recog-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.recog-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t3);
  flex-shrink: 0;
}

.recog-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.rbadge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 12px 18px;
  transition: all .2s;
  cursor: default;
}

.rbadge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, .08); }

.rb-ic { font-size: 22px; }
.rb-name { font-size: 13px; font-weight: 700; color: var(--t1); font-family: 'Outfit', sans-serif; }
.rb-sub { font-size: 11px; color: var(--t3); }


/* ═══════════════════════════════════════════════════════════════════════════
   24. DASHBOARD / CHART COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */
.dash-card {
  background: var(--surf2);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  padding: 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .04), inset 0 1px 0 rgba(255, 255, 255, .9);
  position: relative;
  overflow: hidden;
  animation: fadeUp .8s .2s ease both;
}

.dash-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
}

.dash-hdr { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.dash-title { font-size: 13px; color: var(--t3); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

.dash-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -1.5px;
  margin-top: 4px;
}

.dash-up {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #008060;
  background: rgba(16, 185, 129, .12);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 6px;
}

.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; margin: 20px 0; }
.bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }

.bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue), rgba(99, 102, 241, .4));
  animation: growBar 1.2s ease both;
  transform-origin: bottom;
}

.bar.b2 { background: linear-gradient(180deg, var(--indigo), rgba(49, 46, 129, .4)); }
.bar.b3 { background: linear-gradient(180deg, var(--cyan), rgba(34, 211, 238, .4)); animation-delay: .1s; }
.bar-lbl { font-size: 10px; color: var(--t3); font-family: 'Outfit',monospace, monospace; }

.dash-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.dash-tag {
  background: rgba(99, 102, 241, .07);
  border: 1px solid rgba(99, 102, 241, .12);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: var(--blue);
  font-weight: 500;
}

.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }

.mini-card {
  background: rgba(250, 250, 252, .8);
  border: 1px solid var(--bdr2);
  border-radius: 14px;
  padding: 14px 16px;
}

.mc-icon { font-size: 22px; margin-bottom: 8px; }
.mc-lbl { font-size: 11px; color: var(--t3); font-weight: 500; text-transform: uppercase; letter-spacing: .4px; }

.mc-val {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -.5px;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   25. VERTICAL NAV STRIP
   ═══════════════════════════════════════════════════════════════════════════ */
.vert-nav {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--bdr2);
  border-bottom: 1px solid var(--bdr2);
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
}

.vert-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vert-nav-inner::-webkit-scrollbar { display: none; }

.vn-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
  transition: all .2s;
  border-bottom: 2.5px solid transparent;
  position: relative;
  min-height: 44px;
}

.vn-btn:hover { background: rgba(99, 102, 241, .04); }
.vn-btn.active { border-bottom-color: var(--blue); background: rgba(99, 102, 241, .04); }

.vn-ic { font-size: 18px; }
.vn-lbl { font-size: 13.5px; font-weight: 600; color: var(--t2); }
.vn-btn.active .vn-lbl { color: var(--blue); }

.vn-count {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(99, 102, 241, .08);
  padding: 2px 8px;
  border-radius: 100px;
}

.sticky-vert { position: sticky; top: 72px; z-index: 100; }


/* ═══════════════════════════════════════════════════════════════════════════
   26. SERVICE VERTICALS & CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.vertical-section { position: relative; z-index: 1; padding: 80px 24px 60px; }
.vertical-section:nth-child(even) { background: rgba(255, 255, 255, .4); }

.vert-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.vert-header .sec-sub { max-width: 480px; }

/* Service cards */
.svc-grid { max-width: 1200px; margin: 0 auto; display: grid; gap: 20px; }
.svc-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.svc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.svc-card {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: all .35s var(--ease-bounce);
  text-decoration: none;
  color: inherit;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .9);
  border-color: rgba(99, 102, 241, .2);
}

.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

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

/* Featured service card */
.svc-card-featured {
  background: var(--dark);
  border-color: rgba(255, 255, 255, .06);
  color: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .06);
  grid-column: span 2;
}

.svc-card-featured-full { grid-column: 1 / -1; }

.svc-card-featured:hover {
  border-color: rgba(99, 102, 241, .4);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .35), 0 0 0 1px rgba(99, 102, 241, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.svc-card-featured::before { background: linear-gradient(90deg, var(--cyan), var(--indigo)); }
.svc-card-featured .svc-card-title { color: #fff; }
.svc-card-featured .svc-card-desc { color: rgba(255, 255, 255, .65); }
.svc-card-featured .sub-tag { background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .75); }
.svc-card-featured .svc-arrow { background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .6); }
.svc-card-featured:hover .svc-arrow { background: var(--blue); color: #fff; }
.svc-card-featured .sub-tag::before { background: rgba(255, 255, 255, .5); }

.svc-card-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .12), transparent);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.svc-card-icon { font-size: 36px; margin-bottom: 18px; display: block; transition: transform .3s; }
.svc-card:hover .svc-card-icon { transform: scale(1.1) rotate(-3deg); }

.svc-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--t1);
  line-height: 1.2;
  margin-bottom: 8px;
}

.svc-card-desc { font-size: 14px; color: var(--t3); line-height: 1.6; font-weight: 300; margin-bottom: 20px; flex: 1; }

.sub-services { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(99, 102, 241, .06);
  border: 1px solid rgba(99, 102, 241, .1);
  padding: 5px 12px;
  border-radius: 8px;
  transition: all .2s;
}

.sub-tag:hover { background: rgba(99, 102, 241, .12); }
.sub-tag::before { content: ''; width: 4px; height: 4px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

.svc-arrow {
  width: 36px;
  height: 36px;
  background: rgba(99, 102, 241, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
  align-self: flex-end;
  transition: all .25s;
  flex-shrink: 0;
}

.svc-card:hover .svc-arrow { background: var(--blue); color: #fff; transform: translate(2px, -2px); }

/* Featured card layout */
.svc-card-featured .svc-feat-layout { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.svc-card-featured .svc-feat-side { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

.svc-card-featured .svc-feat-metric {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ═══════════════════════════════════════════════════════════════════════════
   27. BADGE VARIANTS
   ═══════════════════════════════════════════════════════════════════════════ */
.vert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vert-badge.planning { background: rgba(99, 102, 241, .08); color: var(--blue); border: 1px solid rgba(99, 102, 241, .15); }
.vert-badge.parks { background: rgba(16, 185, 129, .08); color: #008060; border: 1px solid rgba(16, 185, 129, .15); }
.vert-badge.experience { background: rgba(49, 46, 129, .08); color: var(--indigo); border: 1px solid rgba(49, 46, 129, .15); }
.vert-badge.technical { background: rgba(255, 107, 53, .08); color: var(--warm); border: 1px solid rgba(255, 107, 53, .15); }
.vert-badge.infra { background: rgba(34, 211, 238, .08); color: #0090c0; border: 1px solid rgba(34, 211, 238, .15); }


/* ═══════════════════════════════════════════════════════════════════════════
   28. PROCESS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.process-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px 100px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .5), transparent);
}

.process-grid {
  max-width: 1200px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: all .3s ease;
  position: relative;
}

.process-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0, 0, 0, .08); }

.process-num {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.process-name { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--t1); letter-spacing: -.3px; margin-top: 14px; }
.process-desc { font-size: 13px; color: var(--t3); line-height: 1.5; margin-top: 8px; }

.process-line {
  position: absolute;
  top: 50%;
  right: -10px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  pointer-events: none;
}

.process-card:last-child .process-line { display: none; }


/* ═══════════════════════════════════════════════════════════════════════════
   29. OVERVIEW SECTION (Detail Pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.overview { position: relative; z-index: 1; padding: 80px 24px; }

.overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.ov-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: 20px;
}

.ov-para { font-size: 16px; color: var(--t2); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }

.ov-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }

.ov-hl {
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(16px);
  transition: all .25s;
}

.ov-hl:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, .06); }

.ov-hl-ic { font-size: 22px; margin-bottom: 8px; }
.ov-hl-lbl { font-size: 13px; font-weight: 600; color: var(--t1); }
.ov-hl-sub { font-size: 12px; color: var(--t3); margin-top: 3px; line-height: 1.4; }

/* On-page navigation (sticky sidebar) */
.ov-nav { position: sticky; top: 100px; }

.ov-nav-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.ov-nav-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.ov-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--t2);
  font-size: 13.5px;
  font-weight: 500;
  transition: all .2s;
  border: 1px solid transparent;
  min-height: 44px;
}

.ov-nav-link:hover { background: rgba(99, 102, 241, .04); border-color: rgba(99, 102, 241, .08); color: var(--blue); }
.ov-nav-link.active { background: rgba(99, 102, 241, .07); border-color: rgba(99, 102, 241, .15); color: var(--blue); font-weight: 600; }

.onl-num {
  font-family: 'Outfit',monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(99, 102, 241, .08);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ov-nav-link.active .onl-num { background: var(--blue); color: #fff; }

.ov-nav-cta {
  margin-top: 24px;
  background: var(--t1);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: block;
  transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ov-nav-cta:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99, 102, 241, .3); }


/* ═══════════════════════════════════════════════════════════════════════════
   30. SUB-SERVICE CONTENT SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.sub-section { position: relative; z-index: 1; padding: 80px 24px; border-top: 1px solid var(--bdr2); }
.sub-section:nth-child(even) { background: rgba(255, 255, 255, .4); }
.sub-inner { max-width: 1200px; margin: 0 auto; }

.sub-header { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; margin-bottom: 40px; }

.sub-num {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .25;
}

.sub-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--t1);
}

.sub-desc { font-size: 16px; color: var(--t2); line-height: 1.7; font-weight: 300; margin-top: 8px; max-width: 600px; }

/* Two-column content */
.content-section { position: relative; z-index: 1; padding: 80px 24px; }
.content-section:nth-child(even of .content-section) { background: rgba(255, 255, 255, .4); }
.content-inner { max-width: 1200px; margin: 0 auto; }

.content-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.c2-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: 18px;
}

.c2-para { font-size: 16px; color: var(--t2); line-height: 1.75; font-weight: 300; margin-bottom: 14px; }

.c2-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.c2-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--t2); line-height: 1.6; }
.c2-list li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }

/* Visual card (dark) */
.c2-visual {
  background: var(--dark);
  border-radius: var(--rl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.c2-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .15), transparent);
  pointer-events: none;
}

.c2v-emoji { font-size: 56px; display: block; margin-bottom: 20px; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3)); }
.c2v-title { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.5px; margin-bottom: 10px; }
.c2v-desc { font-size: 14px; color: rgba(255, 255, 255, .6); line-height: 1.6; margin-bottom: 24px; }
.c2v-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.c2v-stat {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.c2v-stat-num { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.5px; line-height: 1; }
.c2v-stat-lbl { font-size: 10.5px; color: rgba(255, 255, 255, .5); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }


/* ═══════════════════════════════════════════════════════════════════════════
   31. FEATURE GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.feat-card {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04), inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.feat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0, 0, 0, .08); border-color: rgba(99, 102, 241, .15); }

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.feat-card:hover::after { transform: scaleX(1); }

.fc-ic { font-size: 28px; margin-bottom: 14px; display: block; }
.fc-title { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--t1); letter-spacing: -.3px; margin-bottom: 6px; }
.fc-desc { font-size: 13px; color: var(--t3); line-height: 1.55; }

/* Full-width dark feature */
.feat-wide {
  grid-column: 1 / -1;
  background: var(--dark);
  border-color: rgba(255, 255, 255, .06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px;
}

.feat-wide:hover {
  border-color: rgba(99, 102, 241, .3);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.feat-wide .fc-title { color: #fff; font-size: 18px; }
.feat-wide .fc-desc { color: rgba(255, 255, 255, .6); }

.fw-metrics { display: flex; gap: 28px; }
.fw-metric { text-align: center; }
.fw-m-num { font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; color: #fff; }
.fw-m-lbl { font-size: 11px; color: rgba(255, 255, 255, .5); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }


/* ═══════════════════════════════════════════════════════════════════════════
   32. TIMELINE / APPROACH
   ═══════════════════════════════════════════════════════════════════════════ */
.approach {
  position: relative;
  z-index: 1;
  padding: 80px 24px 100px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .5), transparent);
}

.timeline { max-width: 800px; margin: 48px auto 0; position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--indigo), var(--cyan));
}

.tl-item { display: flex; gap: 24px; margin-bottom: 32px; position: relative; }
.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--bg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 4px;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, .15);
}

.tl-num {
  position: absolute;
  left: 0;
  width: 56px;
  text-align: center;
  font-family: 'Outfit',monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(99, 102, 241, .06);
  border-radius: 6px;
  padding: 3px 0;
  margin-top: -2px;
}

.tl-content {
  flex: 1;
  background: var(--surf2);
  backdrop-filter: blur(16px);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 24px;
  margin-left: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
  transition: all .25s;
}

.tl-content:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, .07); }

.tl-title { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--t1); letter-spacing: -.3px; margin-bottom: 6px; }
.tl-desc { font-size: 13.5px; color: var(--t3); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════════════════════
   33. DELIVERABLES
   ═══════════════════════════════════════════════════════════════════════════ */
.deliverables-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }

.dlv-card {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
  transition: all .25s;
}

.dlv-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, .07); border-color: rgba(99, 102, 241, .12); }

.dlv-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(99, 102, 241, .07);
  border: 1px solid rgba(99, 102, 241, .1);
}

.dlv-title { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--t1); letter-spacing: -.3px; margin-bottom: 4px; }
.dlv-desc { font-size: 12.5px; color: var(--t3); line-height: 1.5; }


/* ═══════════════════════════════════════════════════════════════════════════
   34. FAQ / ACCORDION
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  background: rgba(255, 255, 255, .4);
  border-top: 1px solid var(--bdr2);
}

.faq-list { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .03);
  transition: all .25s;
}

.faq-item:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, .06); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--t1);
  transition: color .2s;
  min-height: 44px;
}

.faq-q:hover { color: var(--blue); }

.faq-chev { font-size: 14px; color: var(--t3); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--blue); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--t2); line-height: 1.7; font-weight: 300; }


/* ═══════════════════════════════════════════════════════════════════════════
   35. SIBLING NAV STRIP (Sub-service pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.sibling-nav {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  border-top: 1px solid var(--bdr2);
  border-bottom: 1px solid var(--bdr2);
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sibling-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sibling-inner::-webkit-scrollbar { display: none; }

.sib-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  border-bottom: 2.5px solid transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  min-height: 44px;
}

.sib-link:hover { background: rgba(99, 102, 241, .04); color: var(--blue); }
.sib-link.active { border-bottom-color: var(--blue); background: rgba(99, 102, 241, .04); color: var(--blue); font-weight: 600; }

.sib-num {
  font-family: 'Outfit',monospace, monospace;
  font-size: 10px;
  font-weight: 500;
  background: rgba(99, 102, 241, .08);
  color: var(--blue);
  padding: 2px 7px;
  border-radius: 5px;
}

.sib-link.active .sib-num { background: var(--blue); color: #fff; }


/* ═══════════════════════════════════════════════════════════════════════════
   36. RELATED SERVICES
   ═══════════════════════════════════════════════════════════════════════════ */
.related { position: relative; z-index: 1; padding: 80px 24px; border-top: 1px solid var(--bdr2); }

.related-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rel-card {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04), inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: all .35s var(--ease-bounce);
  position: relative;
  overflow: hidden;
}

.rel-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0, 0, 0, .1); border-color: rgba(99, 102, 241, .2); }

.rel-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

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

.rc-ic { font-size: 32px; margin-bottom: 14px; display: block; transition: transform .3s; }
.rel-card:hover .rc-ic { transform: scale(1.1) rotate(-3deg); }
.rc-title { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--t1); letter-spacing: -.4px; margin-bottom: 6px; }
.rc-desc { font-size: 13px; color: var(--t3); line-height: 1.5; flex: 1; }

.rc-arrow {
  width: 32px;
  height: 32px;
  background: rgba(99, 102, 241, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
  align-self: flex-end;
  margin-top: 16px;
  transition: all .25s;
}

.rel-card:hover .rc-arrow { background: var(--blue); color: #fff; transform: translate(2px, -2px); }


/* ═══════════════════════════════════════════════════════════════════════════
   37. BREADCRUMBS
   ═══════════════════════════════════════════════════════════════════════════ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--t3);
  margin-bottom: 28px;
  flex-wrap: wrap;
  animation: fadeUp .7s ease both;
}

.breadcrumbs a { color: var(--t3); text-decoration: none; transition: color .2s; }
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { color: var(--blue); }
.breadcrumbs .bc-sep { opacity: .4; font-size: 11px; }
.breadcrumbs .bc-cur { color: var(--blue); font-weight: 600; }


/* ═══════════════════════════════════════════════════════════════════════════
   38. CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-wrap { position: relative; z-index: 1; padding: 0 24px; margin: 60px 0; }

.cta-dark { border-radius: 32px; background: var(--dark); padding: 100px 60px; position: relative; overflow: hidden; }

.cta-g1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .2), transparent 70%);
  top: -150px;
  left: -100px;
  pointer-events: none;
}

.cta-g2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 46, 129, .15), transparent 70%);
  bottom: -100px;
  right: -50px;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }

.cta-eye { font-size: 11.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: #4D9FFF; margin-bottom: 20px; }

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
}

.cta-title .grad {
  background: linear-gradient(135deg, #4d9fff, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub { font-size: 17px; color: rgba(255, 255, 255, .6); line-height: 1.65; margin-top: 18px; font-weight: 300; }

.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

.btn-cta {
  background: #fff;
  color: var(--t1);
  border: none;
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 48px;
}

.btn-cta:hover, .btn-cta:focus-visible {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, .4);
}

.btn-cta-o {
  background: transparent;
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 48px;
}

.btn-cta-o:hover, .btn-cta-o:focus-visible {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.cta-contacts { display: flex; justify-content: center; gap: 48px; margin-top: 52px; flex-wrap: wrap; }
.cc-item { display: flex; align-items: center; gap: 12px; }

.cc-ic {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.cc-lbl { font-size: 11px; color: rgba(255, 255, 255, .6); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.cc-val { font-size: 15px; color: rgba(255, 255, 255, .85); font-weight: 500; margin-top: 2px; }


/* ═══════════════════════════════════════════════════════════════════════════
   39. FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, .4), rgba(49, 46, 129, .3), transparent);
}

.foot-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Contact band */
.foot-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.fb-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  background: var(--dark);
  transition: background .2s;
  text-decoration: none;
}

.fb-item:hover { background: rgba(255, 255, 255, .02); }

.fb-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 102, 241, .1);
  border: 1px solid rgba(99, 102, 241, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all .2s;
}

.fb-item:hover .fb-ic { background: var(--blue); border-color: var(--blue); }

.fb-lbl { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, .6); }

.fb-val {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  margin-top: 3px;
  font-family: 'Outfit', sans-serif;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Main grid */
.foot-main {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 56px 0 52px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.foot-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}

.foot-tagline { font-size: 13.5px; line-height: 1.7; color: rgba(255, 255, 255, .6); font-weight: 300; max-width: 260px; }

.foot-socials { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }

.soc {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  color: rgba(255, 255, 255, .65);
  min-width: 36px;
  min-height: 36px;
}

.soc:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }

.foot-areas { margin-top: 28px; }
.fa-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, .55); margin-bottom: 10px; }
.fa-txt { font-size: 11.5px; color: rgba(255, 255, 255, .55); line-height: 1.7; }
.fa-txt a { color: rgba(255, 255, 255, .55); text-decoration: none; transition: color .18s; }
.fa-txt a:hover { color: rgba(0, 150, 255, .8); }

.foot-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.foot-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: 13px; color: rgba(255, 255, 255, .6); text-decoration: none; transition: color .18s; display: flex; align-items: center; gap: 6px; }
.foot-links a::before { content: ''; width: 3px; height: 3px; background: rgba(99, 102, 241, .5); border-radius: 50%; flex-shrink: 0; transition: background .18s; }
.foot-links a:hover { color: rgba(255, 255, 255, .8); }
.foot-links a:hover::before { background: var(--blue); }

/* Newsletter */
.nl-wrap { display: flex; gap: 8px; margin-top: 6px; }

.nl-input {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
  min-width: 0;
  min-height: 44px;
}

.nl-input:focus { border-color: rgba(99, 102, 241, .4); }
.nl-input::placeholder { color: rgba(255, 255, 255, .22); }

.nl-btn {
  background: var(--blue);
  border: none;
  border-radius: 10px;
  padding: 11px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
  min-height: 44px;
}

.nl-btn:hover { background: var(--indigo); transform: translateY(-1px); }
.nl-note { font-size: 11.5px; color: rgba(255, 255, 255, .5); margin-top: 8px; }

/* Bottom bar */
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy { font-size: 12px; color: rgba(255, 255, 255, .5); }
.foot-legal { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.foot-legal a { font-size: 12px; color: rgba(255, 255, 255, .5); text-decoration: none; transition: color .2s; }
.foot-legal a:hover { color: rgba(255, 255, 255, .55); }
.fl-dot { width: 3px; height: 3px; background: rgba(255, 255, 255, .3); border-radius: 50%; }

/* Simplified footer variant */
.foot-simple { padding: 40px 0; text-align: center; }


/* ═══════════════════════════════════════════════════════════════════════════
   40. FOOTER ACCORDION (MOBILE)
   ═══════════════════════════════════════════════════════════════════════════ */
.foot-accordion { display: none; }

.foot-acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  min-height: 48px;
}

.foot-acc-toggle .acc-chev { font-size: 12px; color: rgba(255, 255, 255, .5); transition: transform .25s; display: inline-block; }
.foot-acc-toggle[aria-expanded="true"] .acc-chev { transform: rotate(180deg); }

.foot-acc-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out); }
.foot-acc-body.open { max-height: 500px; }
.foot-acc-body .foot-links { padding: 12px 0 20px; }

.foot-col-desktop { display: block; }


/* ═══════════════════════════════════════════════════════════════════════════
   41. FOOTER FORM
   ═══════════════════════════════════════════════════════════════════════════ */
.foot-form { display: flex; flex-direction: column; gap: 10px; }

.ff-input,
.ff-textarea {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  min-height: 44px;
}

.ff-input:focus, .ff-textarea:focus { border-color: rgba(99, 102, 241, .5); }
.ff-input::placeholder, .ff-textarea::placeholder { color: rgba(255, 255, 255, .35); }
.ff-textarea { resize: vertical; min-height: 70px; max-height: 140px; line-height: 1.5; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.ff-btn {
  background: var(--blue);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: 100%;
  min-height: 44px;
}

.ff-btn:hover { background: var(--indigo); transform: translateY(-1px); }
.ff-note { font-size: 11.5px; color: rgba(255, 255, 255, .5); margin-top: 2px; }


/* ═══════════════════════════════════════════════════════════════════════════
   42. BLOG & CONTENT (WordPress)
   ═══════════════════════════════════════════════════════════════════════════ */

/* WordPress content defaults */
.entry-content { max-width: 800px; margin: 0 auto; }
.entry-content p { margin-bottom: 1.5em; }
.entry-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.entry-content a:hover { color: var(--indigo); }
.entry-content ul, .entry-content ol { margin-bottom: 1.5em; padding-left: 1.5em; }
.entry-content li { margin-bottom: 0.5em; color: var(--t2); }
.entry-content blockquote { border-left: 3px solid var(--blue); padding-left: 24px; margin: 2em 0; font-style: italic; color: var(--t2); }
.entry-content img { border-radius: var(--r); margin: 2em 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; }
.entry-content th, .entry-content td { padding: 12px 16px; border: 1px solid var(--bdr2); text-align: left; }
.entry-content th { background: rgba(99, 102, 241, .04); font-weight: 600; }
.entry-content pre { background: var(--dark); color: rgba(255, 255, 255, .85); border-radius: 12px; padding: 24px; overflow-x: auto; margin-bottom: 1.5em; font-family: 'Outfit',monospace, monospace; font-size: 14px; }
.entry-content code { font-family: 'Outfit',monospace, monospace; font-size: 0.9em; background: rgba(99, 102, 241, .06); padding: 2px 6px; border-radius: 4px; }
.entry-content pre code { background: transparent; padding: 0; }
.entry-content hr { border: none; height: 1px; background: var(--bdr2); margin: 3em 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   42b. WORDPRESS COMMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Comments wrapper ── */
.comments-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}

.comments-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--t1);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bdr2);
}

/* ── Comment list ── */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-list .comment {
  margin-bottom: 24px;
}

.comment-list .comment:last-child {
  margin-bottom: 0;
}

/* ── Individual comment ── */
.comment-body {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04), inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: box-shadow .25s ease;
}

.comment-body:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

/* Comment metadata row */
.comment-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(99, 102, 241, .1);
}

.comment-author .fn {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -.3px;
}

.comment-author .fn a {
  color: var(--t1);
  text-decoration: none;
  transition: color .2s;
}

.comment-author .fn a:hover {
  color: var(--blue);
}

.comment-author .says {
  display: none; /* Hide "says" text — redundant */
}

.comment-metadata {
  margin-left: auto;
}

.comment-metadata a {
  font-size: 12px;
  color: var(--t3);
  text-decoration: none;
  transition: color .2s;
}

.comment-metadata a:hover {
  color: var(--blue);
}

/* Comment content */
.comment-content {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
  font-weight: 300;
}

.comment-content p {
  margin-bottom: 1em;
  color: var(--t2);
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.comment-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}

.comment-content a:hover {
  color: var(--indigo);
}

/* Reply link */
.reply {
  margin-top: 12px;
}

.comment-reply-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  background: rgba(99, 102, 241, .06);
  border: 1px solid rgba(99, 102, 241, .1);
  padding: 6px 14px;
  border-radius: 8px;
  transition: all .2s;
  min-height: 36px;
}

.comment-reply-link:hover,
.comment-reply-link:focus-visible {
  background: rgba(99, 102, 241, .12);
  border-color: rgba(99, 102, 241, .2);
}

/* ── Nested / threaded comments ── */
.comment-list .children {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 28px;
  border-left: 2px solid rgba(99, 102, 241, .1);
  padding-left: 24px;
}

.comment-list .children .comment {
  margin-bottom: 20px;
}

.comment-list .children .children {
  margin-left: 20px;
}

/* ── Pingbacks & Trackbacks ── */
.comment-list .pingback,
.comment-list .trackback {
  margin-bottom: 16px;
}

.comment-list .pingback .comment-body,
.comment-list .trackback .comment-body {
  background: rgba(99, 102, 241, .03);
  border: 1px solid rgba(99, 102, 241, .08);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--t2);
}

.comment-list .pingback .comment-body a,
.comment-list .trackback .comment-body a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

/* ── Bypostauthor highlight ── */
.bypostauthor > .comment-body {
  border-color: rgba(99, 102, 241, .2);
  background: rgba(99, 102, 241, .03);
}

.bypostauthor > .comment-body .fn::after {
  content: 'Author';
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Comment navigation ── */
.comment-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--bdr2);
}

.comment-navigation .nav-previous a,
.comment-navigation .nav-next a {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: opacity .2s;
}

.comment-navigation .nav-previous a:hover,
.comment-navigation .nav-next a:hover {
  opacity: .7;
}

/* ── No comments message ── */
.no-comments,
.comments-closed {
  font-size: 14px;
  color: var(--t3);
  font-style: italic;
  padding: 20px 0;
}

/* ── Comment respond / reply form ── */
.comment-respond {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--bdr2);
}

.comment-reply-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -.8px;
  color: var(--t1);
  margin-bottom: 24px;
}

.comment-reply-title small {
  display: block;
  margin-top: 8px;
}

.comment-reply-title small a {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0;
}

/* Comment form */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 6px;
}

.comment-form .required {
  color: var(--warm);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: var(--surf);
  border: 1px solid var(--bdr2);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--t1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  transition: all .2s;
  min-height: 44px;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  border-color: var(--blue);
  box-shadow: var(--focus-ring);
  background: #fff;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: var(--t3);
  font-weight: 300;
}

.comment-form textarea {
  resize: vertical;
  min-height: 140px;
  max-height: 400px;
  line-height: 1.6;
}

/* Author info row (name, email, url side-by-side on desktop) */
.comment-form-author,
.comment-form-email,
.comment-form-url {
  flex: 1;
  min-width: 0;
}

/* WP wraps these three in sequence — we'll lay them out with CSS grid */
.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.comment-form .comment-form-comment {
  grid-column: 1 / -1;
}

.comment-form .form-submit {
  grid-column: 1 / -1;
}

.comment-form .comment-notes {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--t3);
  font-weight: 300;
}

.comment-form .comment-form-cookies-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--t2);
}

.comment-form .comment-form-cookies-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex-shrink: 0;
  min-height: auto;
}

/* Logged-in user — form is simpler, full-width textarea */
.logged-in-as {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--t3);
  margin-bottom: 4px;
}

.logged-in-as a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

/* Submit button */
.comment-form .submit {
  background: var(--t1);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .25s;
  min-height: 48px;
}

.comment-form .submit:hover,
.comment-form .submit:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, .3);
}

/* ── Comment awaiting moderation ── */
.comment-awaiting-moderation {
  font-size: 13px;
  color: var(--warm);
  font-style: italic;
  margin-top: 8px;
  padding: 8px 14px;
  background: rgba(255, 107, 53, .06);
  border: 1px solid rgba(255, 107, 53, .12);
  border-radius: 8px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   42c. WORDPRESS SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Sidebar layout ── */
/* When blog/single pages use sidebar, the layout becomes 2-column */
.has-sidebar .site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.has-sidebar .content-area {
  min-width: 0; /* prevent grid blowout */
}

/* Primary sidebar */
.sidebar,
.widget-area,
#secondary {
  position: sticky;
  top: 100px;
  padding-top: 20px;
}

body.admin-bar .sidebar,
body.admin-bar .widget-area,
body.admin-bar #secondary {
  top: 132px;
}

/* ── Widget base ── */
.widget {
  background: var(--surf2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.widget:last-child {
  margin-bottom: 0;
}

/* Widget title */
.widget-title,
.widget .widgettitle {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -.3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bdr2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-title::before,
.widget .widgettitle::before {
  content: '';
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, var(--blue), var(--indigo));
  border-radius: 2px;
  flex-shrink: 0;
}

/* Widget links list (shared by many widgets) */
.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget ul li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  font-size: 13.5px;
  color: var(--t2);
  text-decoration: none;
  font-weight: 400;
  transition: all .18s;
  min-height: 40px;
}

.widget ul li a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .4;
  transition: opacity .18s;
}

.widget ul li a:hover,
.widget ul li a:focus-visible {
  color: var(--blue);
}

.widget ul li a:hover::before {
  opacity: 1;
}

/* Nested lists (categories with children, etc.) */
.widget ul ul {
  margin-left: 16px;
  padding-left: 12px;
  border-left: 1px solid rgba(99, 102, 241, .08);
}

.widget ul ul li:first-child {
  border-top: 1px solid rgba(0, 0, 0, .04);
}

/* Post count badges in category/archive widgets */
.widget li .count,
.widget li .post-count,
.widget_categories li,
.widget_archive li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ═══════════════════════════════════════════════════════════════════════════
   42d. WORDPRESS WIDGETS (Individual)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Search Widget ── */
.widget_search .search-form,
.wp-block-search {
  display: flex;
  gap: 8px;
}

.widget_search .search-field,
.wp-block-search__input {
  flex: 1;
  background: var(--surf);
  border: 1px solid var(--bdr2);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--t1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  transition: all .2s;
  min-height: 44px;
  min-width: 0;
}

.widget_search .search-field:focus,
.wp-block-search__input:focus {
  border-color: var(--blue);
  box-shadow: var(--focus-ring);
  background: #fff;
}

.widget_search .search-field::placeholder,
.wp-block-search__input::placeholder {
  color: var(--t3);
}

.widget_search .search-submit,
.wp-block-search__button {
  background: var(--blue);
  border: none;
  border-radius: 10px;
  padding: 11px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
  min-height: 44px;
}

.widget_search .search-submit:hover,
.wp-block-search__button:hover {
  background: var(--indigo);
  transform: translateY(-1px);
}

/* ── Recent Posts Widget ── */
.widget_recent_entries ul li a {
  font-weight: 500;
}

.widget_recent_entries .post-date {
  display: block;
  font-size: 11.5px;
  color: var(--t3);
  margin-top: 2px;
  font-weight: 400;
}

/* ── Recent Comments Widget ── */
.widget_recent_comments ul li {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
  padding: 10px 4px;
}

.widget_recent_comments .comment-author-link {
  font-weight: 600;
  color: var(--t1);
}

.widget_recent_comments a {
  color: var(--blue);
  text-decoration: none;
}

.widget_recent_comments a:hover {
  text-decoration: underline;
}

/* Remove default ::before for recent comments */
.widget_recent_comments ul li::before,
.widget_recent_comments ul li a::before {
  display: none;
}

/* ── Categories Widget ── */
.widget_categories select,
.widget_archive select {
  width: 100%;
  background: var(--surf);
  border: 1px solid var(--bdr2);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--t1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  appearance: none;
  cursor: pointer;
  min-height: 44px;
  transition: border-color .2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.widget_categories select:focus,
.widget_archive select:focus {
  border-color: var(--blue);
  box-shadow: var(--focus-ring);
}

/* ── Tag Cloud Widget ── */
.widget_tag_cloud .tagcloud,
.wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.widget_tag_cloud .tagcloud a,
.wp-block-tag-cloud a {
  display: inline-flex;
  align-items: center;
  font-size: 12px !important; /* Override WP inline font-size */
  font-weight: 500;
  color: var(--blue);
  background: rgba(99, 102, 241, .06);
  border: 1px solid rgba(99, 102, 241, .1);
  padding: 5px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .18s;
  min-height: 32px;
}

.widget_tag_cloud .tagcloud a::before,
.wp-block-tag-cloud a::before {
  display: none; /* Remove bullet */
}

.widget_tag_cloud .tagcloud a:hover,
.wp-block-tag-cloud a:hover {
  background: rgba(99, 102, 241, .12);
  border-color: rgba(99, 102, 241, .2);
  color: var(--blue);
}

/* ── Calendar Widget ── */
.widget_calendar table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 13px;
}

.widget_calendar caption {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  padding-bottom: 12px;
  caption-side: top;
}

.widget_calendar thead th {
  font-size: 11px;
  font-weight: 600;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--bdr2);
}

.widget_calendar tbody td {
  padding: 8px 4px;
  color: var(--t2);
  border-bottom: 1px solid rgba(0, 0, 0, .03);
}

.widget_calendar tbody td a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.widget_calendar tbody td#today {
  background: rgba(99, 102, 241, .08);
  border-radius: 8px;
  font-weight: 700;
  color: var(--blue);
}

.widget_calendar tfoot td {
  padding-top: 10px;
}

.widget_calendar tfoot a {
  font-size: 12px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.widget_calendar nav {
  display: flex;
  justify-content: space-between;
}

/* ── RSS Widget ── */
.widget_rss ul li {
  padding: 12px 4px;
}

.widget_rss .rss-date {
  display: block;
  font-size: 11.5px;
  color: var(--t3);
  margin-top: 4px;
}

.widget_rss .rssSummary {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
  margin-top: 6px;
  font-weight: 300;
}

.widget_rss cite {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--t3);
  margin-top: 4px;
  font-style: normal;
}

/* ── Text Widget ── */
.widget_text .textwidget {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
}

.widget_text .textwidget p {
  margin-bottom: 1em;
}

.widget_text .textwidget p:last-child {
  margin-bottom: 0;
}

.widget_text .textwidget a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Custom HTML Widget ── */
.widget_custom_html .custom-html-widget {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
}

/* ── Navigation Menu Widget ── */
.widget_nav_menu ul li a {
  font-weight: 500;
}

.widget_nav_menu .current-menu-item > a {
  color: var(--blue);
  font-weight: 600;
}

.widget_nav_menu .current-menu-item > a::before {
  opacity: 1;
  background: var(--blue);
}

/* ── Pages Widget ── */
.widget_pages .current_page_item > a {
  color: var(--blue);
  font-weight: 600;
}

/* ── Media Widgets (Image, Audio, Video, Gallery) ── */
.widget_media_image img {
  border-radius: var(--r);
  width: 100%;
  height: auto;
}

.widget_media_audio audio,
.widget_media_video video {
  width: 100%;
  border-radius: 12px;
}

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

.widget_media_gallery .gallery img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ── Elementor widgets inside sidebar ── */
.sidebar .elementor-widget,
.widget-area .elementor-widget {
  margin-bottom: 0;
}

/* ── Footer widgets ── */
footer .widget {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 24px;
}

footer .widget-title,
footer .widget .widgettitle {
  color: rgba(255, 255, 255, .75);
  border-bottom-color: rgba(255, 255, 255, .08);
}

footer .widget-title::before,
footer .widget .widgettitle::before {
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

footer .widget ul li {
  border-bottom-color: rgba(255, 255, 255, .06);
}

footer .widget ul li a {
  color: rgba(255, 255, 255, .6);
}

footer .widget ul li a::before {
  background: rgba(99, 102, 241, .5);
}

footer .widget ul li a:hover {
  color: rgba(255, 255, 255, .85);
}

footer .widget ul li a:hover::before {
  background: var(--blue);
}

footer .widget_text .textwidget,
footer .widget_custom_html .custom-html-widget {
  color: rgba(255, 255, 255, .6);
}

footer .widget_text .textwidget a,
footer .widget_custom_html a {
  color: rgba(0, 150, 255, .8);
}

footer .widget_search .search-field {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .08);
  color: #fff;
}

footer .widget_search .search-field::placeholder {
  color: rgba(255, 255, 255, .25);
}

footer .widget_search .search-field:focus {
  border-color: rgba(99, 102, 241, .4);
}

footer .widget_tag_cloud .tagcloud a {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
}

footer .widget_tag_cloud .tagcloud a:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}


/* ═══════════════════════════════════════════════════════════════════════════
   43. RESPONSIVE — 1100px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .detail-hero-grid { gap: 40px; }
  .overview-inner { gap: 48px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-wide { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-line { display: none !important; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .ss-hero-grid { gap: 40px; }
  .content-2col { gap: 40px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   44. RESPONSIVE — 900px (Tablet)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  #nav { padding: 0 18px; width: calc(100% - 32px); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mega, .mega-overlay { display: none !important; }

  /* Landing Hero */
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(34px, 7vw, 52px); letter-spacing: -1.5px; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-stats { gap: 24px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .sc-num { font-size: 30px; }

  /* Bento */
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "b1 b4"
      "b2 b3"
      "b5 b6"
      "b7 b7"
      "b8 b8"
      "b9 b10"
      "b11 b11";
  }
  .bc-horiz { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bc-horiz .ch-visual { width: 100%; }

  /* Industries */
  .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Testimonials */
  .test-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Recognition */
  .recog-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .recog-badges { gap: 10px; }

  /* CTA */
  .cta-dark { padding: 64px 28px; border-radius: 24px; }
  .cta-contacts { gap: 28px; flex-direction: column; align-items: center; }

  /* Footer */
  .foot-band { grid-template-columns: 1fr; }
  .foot-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Detail Pages */
  .detail-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .dh-br { display: inline; }
  .dh-sub { max-width: 100%; }
  .overview-inner { grid-template-columns: 1fr; gap: 32px; }
  .ov-nav { position: static; }
  .ov-nav-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .ov-nav-link { padding: 10px 14px; font-size: 12.5px; gap: 8px; }
  .onl-num { width: 24px; height: 24px; font-size: 10px; border-radius: 6px; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sub-header { gap: 16px; }
  .sub-num { font-size: 42px; }
  .feat-wide { grid-template-columns: 1fr; gap: 24px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .breadcrumbs .bc-mid { display: none; }

  /* Sub-service pages */
  .ss-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .ss-hero-sub { max-width: 100%; }
  .content-2col { grid-template-columns: 1fr; gap: 28px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 18px; }
  .tl-num { width: 36px; font-size: 10px; }
  .tl-content { margin-left: 12px; }

  /* Sibling nav scroll fade */
  .sibling-nav {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
  }

  /* Service cards */
  .svc-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .svc-card-featured { grid-column: 1 / -1; }

  /* Page hero */
  .page-hero { padding: 120px 20px 60px; }
  .hero-stats-bar { gap: 32px; }
  .hsb-num { font-size: 28px; }

  /* Vertical sections */
  .vertical-section { padding: 60px 20px 48px; }
  .vert-header { margin-bottom: 36px; }

  /* Sidebar — stack below content on tablet */
  .has-sidebar .site-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sidebar, .widget-area, #secondary {
    position: static;
  }

  /* Comments — nested threads reduce indent */
  .comment-list .children {
    margin-left: 16px;
    padding-left: 16px;
  }
  .comment-form {
    grid-template-columns: 1fr 1fr;
  }
  .comment-form .comment-form-url {
    grid-column: 1 / -1;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   45. RESPONSIVE — 600px (Mobile)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Nav */
  #nav { top: 10px; width: calc(100% - 24px); padding: 0 16px; height: 50px; }

  /* Landing Hero */
  .hero { padding: 88px 16px 48px; }
  .hero-inner { gap: 32px; }
  .hero h1 { font-size: clamp(30px, 9vw, 44px); letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-p, .btn-s { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }

  /* Dashboard */
  .dash-card { padding: 16px; }
  .dash-num { font-size: 24px; }
  .mini-cards { gap: 8px; }

  /* Marquee */
  .brand-item { padding: 8px 20px; }
  .brand-nm { font-size: 13px; }

  /* Section titles */
  .sec-title { font-size: clamp(24px, 7vw, 36px); letter-spacing: -1px; }
  .sec-sub { font-size: 15px; }
  .wrap { padding: 0 16px; }

  /* About */
  .about { padding: 56px 16px; }
  .about-inner { gap: 32px; }
  .about-feats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sc-num { font-size: 28px; }
  .stat-card { padding: 18px; }

  /* Services */
  .services { padding: 56px 16px; }
  .svc-hdr { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }

  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "b1" "b2" "b3" "b4" "b5" "b6" "b7" "b8" "b9" "b10" "b11";
    gap: 10px;
  }

  .bc { padding: 20px; border-radius: 16px; }
  .ctitle { font-size: 16px; }
  .ctitle-sm { font-size: 14px; }
  .bc-horiz { flex-direction: column; gap: 12px; }
  .bc-horiz .ch-visual { display: none; }

  /* Industries */
  .industries { padding: 56px 16px 64px; }
  .ind-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
  .ind-card { padding: 18px; border-radius: 16px; }
  .ind-em { font-size: 28px; margin-bottom: 10px; }
  .ind-name { font-size: 14px; }
  .ind-desc { font-size: 12px; }

  /* Testimonials */
  .testimonials { padding: 56px 16px 64px; }
  .test-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .test-card { padding: 22px; border-radius: 20px; }
  .test-txt { font-size: 14px; }
  .qmark { font-size: 48px; margin-bottom: 14px; }

  /* Recognition */
  .recog { padding: 40px 16px; }
  .rbadge { padding: 10px 14px; border-radius: 10px; }
  .rb-name { font-size: 12px; }
  .rb-sub { font-size: 10px; }

  /* CTA */
  .cta-wrap { padding: 0 12px; margin: 32px 0; }
  .cta-dark { padding: 52px 20px; border-radius: 20px; }
  .cta-title { font-size: clamp(26px, 7vw, 44px); letter-spacing: -1px; }
  .cta-sub { font-size: 14px; }
  .cta-actions { flex-direction: column; gap: 10px; align-items: stretch; }
  .btn-cta, .btn-cta-o { width: 100%; justify-content: center; padding: 14px 20px; }
  .cta-contacts { flex-direction: column; gap: 18px; align-items: flex-start; }

  /* Footer */
  .foot-inner { padding: 0 16px; }
  .foot-band { grid-template-columns: 1fr; }
  .foot-main { grid-template-columns: 1fr; gap: 0; padding: 36px 0 24px; }
  .foot-col-desktop { display: none; }
  .foot-accordion { display: block; }
  .ff-row { grid-template-columns: 1fr; }
  .foot-main > div:first-child { margin-bottom: 20px; }
  .foot-main > div:last-child { margin-top: 20px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .fb-item { padding: 20px 16px; gap: 12px; }
  .fb-ic { width: 38px; height: 38px; border-radius: 10px; font-size: 16px; }
  .fb-val { font-size: 13px; }
  .fb-lbl { font-size: 10px; }

  /* Detail Hero */
  .detail-hero { padding: 96px 16px 0; }
  .detail-hero h1 { font-size: clamp(28px, 8vw, 42px); letter-spacing: -1px; }
  .dh-sub { font-size: 15px; }
  .dh-badge { font-size: 11px; padding: 5px 12px 5px 8px; }
  .dh-actions { flex-direction: column; gap: 10px; }
  .hv-emoji { font-size: 56px; margin-bottom: 16px; }
  .hv-stat-num { font-size: 20px; }
  .hv-stat-lbl { font-size: 10.5px; }
  .hv-stat { padding: 14px 16px; }
  .hero-visual { padding: 22px; }
  .hv-tags { gap: 6px; }
  .hv-tag { font-size: 10.5px; padding: 4px 10px; }

  /* Stats band */
  .stats-band { padding: 32px 16px; margin-top: 40px; }
  .stats-band-inner { gap: 12px; }
  .sb-num { font-size: 26px; }
  .sb-lbl { font-size: 11px; }

  /* Overview */
  .overview { padding: 48px 16px; }
  .ov-text h2 { font-size: clamp(24px, 7vw, 36px); letter-spacing: -1px; }
  .ov-para { font-size: 15px; }
  .ov-highlights { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ov-hl { padding: 14px 16px; }
  .ov-hl-ic { font-size: 20px; margin-bottom: 6px; }
  .ov-hl-lbl { font-size: 12px; }
  .ov-hl-sub { font-size: 11px; }
  .ov-nav-list { gap: 5px; }
  .ov-nav-link { padding: 8px 12px; font-size: 12px; gap: 7px; }
  .onl-num { width: 22px; height: 22px; font-size: 9.5px; }
  .ov-nav-cta { padding: 12px 16px; font-size: 13px; }
  .ov-nav-title { font-size: 12px; margin-bottom: 12px; }

  /* Sub sections */
  .sub-section { padding: 48px 16px; }
  .sub-header { grid-template-columns: 1fr; gap: 8px; }
  .sub-num { font-size: 32px; }
  .sub-header h3 { font-size: clamp(22px, 6vw, 30px); }
  .sub-desc { font-size: 15px; margin-top: 6px; }

  /* Feature grid */
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { padding: 22px; border-radius: 16px; }
  .fc-ic { font-size: 24px; margin-bottom: 10px; }
  .fc-title { font-size: 14px; }
  .fc-desc { font-size: 12.5px; }
  .feat-wide { padding: 24px; border-radius: 16px; }
  .feat-wide .fc-title { font-size: 16px; }
  .feat-wide .fc-desc { font-size: 13px; }
  .fw-metrics { gap: 16px; }
  .fw-m-num { font-size: 24px; }
  .fw-m-lbl { font-size: 10px; }

  /* Process */
  .process-section { padding: 56px 16px 64px; }
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-card { padding: 24px 20px; }
  .process-num { font-size: 36px; }

  /* Related */
  .related { padding: 48px 16px; }
  .related-grid { grid-template-columns: 1fr; }
  .rel-card { padding: 22px; border-radius: 20px; }
  .rc-ic { font-size: 28px; margin-bottom: 10px; }
  .rc-title { font-size: 15px; }
  .rc-desc { font-size: 12.5px; }

  /* Breadcrumbs */
  .breadcrumbs { font-size: 12px; gap: 5px; margin-bottom: 16px; }

  /* Sub-service hero */
  .ss-hero { padding: 96px 16px 0; }
  .ss-hero h1 { font-size: clamp(26px, 8vw, 40px); letter-spacing: -1px; }
  .ss-hero-sub { font-size: 15px; }
  .ss-parent-badge { font-size: 10.5px; padding: 4px 12px 4px 8px; }
  .ss-back { font-size: 12px; margin-bottom: 14px; }
  .ss-hero-actions { flex-direction: column; gap: 10px; }
  .ssm-grid { gap: 10px; }
  .ssm-num { font-size: 22px; }
  .ssm-lbl { font-size: 11px; }
  .ssm-item { padding: 14px; }
  .ss-metrics { padding: 24px; }
  .ssm-tags { gap: 5px; }
  .ssm-tag { font-size: 10px; padding: 3px 10px; }

  /* Sibling nav */
  .sibling-nav { margin-top: 36px; }
  .sib-link { padding: 14px 16px; font-size: 12px; }
  .sib-num { font-size: 9px; padding: 2px 5px; }

  /* Content sections */
  .content-section { padding: 48px 16px; }
  .c2-text h2 { font-size: clamp(22px, 6.5vw, 32px); letter-spacing: -.8px; }
  .c2-para { font-size: 15px; }
  .c2-list li { font-size: 13.5px; gap: 10px; }
  .c2-visual { padding: 24px; }
  .c2v-emoji { font-size: 40px; margin-bottom: 14px; }
  .c2v-title { font-size: 17px; }
  .c2v-desc { font-size: 13px; margin-bottom: 18px; }
  .c2v-stats { gap: 10px; }
  .c2v-stat { padding: 14px; }
  .c2v-stat-num { font-size: 18px; }
  .c2v-stat-lbl { font-size: 9.5px; }

  /* Timeline */
  .approach { padding: 56px 16px 64px; }
  .timeline { margin-top: 32px; }
  .timeline::before { left: 14px; }
  .tl-dot { width: 12px; height: 12px; border-width: 2px; }
  .tl-num { width: 28px; font-size: 9px; }
  .tl-content { padding: 18px; margin-left: 8px; border-radius: 14px; }
  .tl-title { font-size: 14px; }
  .tl-desc { font-size: 12.5px; }
  .tl-item { gap: 16px; margin-bottom: 20px; }

  /* Deliverables */
  .deliverables-grid { margin-top: 28px; gap: 10px; }
  .dlv-card { padding: 18px; gap: 12px; border-radius: 14px; }
  .dlv-ic { width: 38px; height: 38px; font-size: 17px; border-radius: 10px; }
  .dlv-title { font-size: 13px; }
  .dlv-desc { font-size: 12px; }

  /* FAQ */
  .faq-section { padding: 48px 16px; }
  .faq-q { padding: 16px 18px; font-size: 14px; }
  .faq-a-inner { padding: 0 18px 16px; font-size: 13px; }

  /* Service cards */
  .svc-grid.cols-2, .svc-grid.cols-3 { grid-template-columns: 1fr; }
  .svc-card-featured { grid-column: auto; }
  .svc-card { padding: 24px; }
  .svc-card-icon { font-size: 28px; margin-bottom: 14px; }
  .svc-card-title { font-size: 17px; }
  .svc-card-desc { font-size: 13px; }
  .svc-card-featured .svc-feat-metric { font-size: 32px; }
  .cmetric { font-size: 32px; }

  /* Page hero */
  .page-hero { padding: 100px 16px 56px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 44px); letter-spacing: -1px; }
  .page-hero .hero-sub { font-size: 15px; }
  .hero-stats-bar { gap: 24px; }
  .hsb-num { font-size: 26px; }

  /* Comments */
  .comments-area { padding: 40px 0 24px; }
  .comments-title { font-size: clamp(20px, 6vw, 28px); margin-bottom: 24px; }
  .comment-body { padding: 18px; border-radius: 16px; }
  .comment-author .avatar { width: 36px; height: 36px; }
  .comment-author .fn { font-size: 13px; }
  .comment-metadata a { font-size: 11px; }
  .comment-content { font-size: 14px; }
  .comment-list .children { margin-left: 12px; padding-left: 12px; }
  .comment-list .children .children { margin-left: 10px; padding-left: 10px; }
  .comment-respond { margin-top: 32px; padding-top: 28px; }
  .comment-reply-title { font-size: clamp(18px, 5vw, 24px); }
  .comment-form { grid-template-columns: 1fr; }
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea { padding: 12px 14px; font-size: 13px; border-radius: 10px; }
  .comment-form textarea { min-height: 120px; }
  .comment-form .submit { width: 100%; }
  .comment-reply-link { font-size: 12px; padding: 5px 12px; }
  .bypostauthor > .comment-body .fn::after { font-size: 9px; padding: 2px 6px; margin-left: 6px; }

  /* Sidebar */
  .sidebar, .widget-area, #secondary { padding-top: 0; }
  .widget { padding: 20px; border-radius: 16px; margin-bottom: 14px; }
  .widget-title, .widget .widgettitle { font-size: 12px; margin-bottom: 12px; padding-bottom: 10px; }
  .widget ul li a { font-size: 13px; padding: 8px 4px; }
  .widget_search .search-field { font-size: 13px; padding: 10px 12px; }
  .widget_search .search-submit { padding: 10px 14px; font-size: 12px; }
  .widget_tag_cloud .tagcloud a,
  .wp-block-tag-cloud a { font-size: 11px !important; padding: 4px 10px; }
  .widget_media_gallery .gallery { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   46. RESPONSIVE — 380px (Small Mobile)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .ss-hero h1 { font-size: 24px; letter-spacing: -.8px; }
  .ss-hero-sub { font-size: 14px; }
  .ssm-grid { grid-template-columns: 1fr; }
  .ssm-num { font-size: 20px; }
  .ss-metrics { padding: 20px; }
  .content-section { padding: 36px 12px; }
  .c2-text h2 { font-size: 22px; }
  .c2-para { font-size: 14px; }
  .c2-visual { padding: 20px; border-radius: 20px; }
  .c2v-stats { grid-template-columns: 1fr; }
  .feat-card { padding: 18px; }
  .fc-ic { font-size: 22px; margin-bottom: 8px; }
  .tl-content { padding: 16px; }
  .tl-title { font-size: 13px; }
  .tl-desc { font-size: 12px; }
  .faq-q { font-size: 13px; padding: 14px 16px; }
  .faq-a-inner { font-size: 12.5px; }
  .hero h1 { font-size: 28px; letter-spacing: -.8px; }
  .detail-hero h1 { font-size: 26px; }
  .ind-grid { grid-template-columns: 1fr; }
  .about-feats { grid-template-columns: 1fr; }
  .ov-highlights { grid-template-columns: 1fr; }
  .hv-stats { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   47. ACCESSIBILITY ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Focus visible — keyboard users only */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Focus styles for dark backgrounds */
footer :focus-visible,
.cta-dark :focus-visible,
.bc-dark :focus-visible,
.c2-visual :focus-visible {
  outline-color: #4D9FFF;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top .3s;
}

.skip-link:focus {
  top: 0;
}

/* Ensure contrast ratios meet WCAG AA */
/* Text on colored backgrounds */
.bc-accent .csub { color: rgba(255, 255, 255, .85); }
.bc-accent .citem { color: rgba(255, 255, 255, .85); }

/* High contrast mode */
@media (forced-colors: active) {
  .grad {
    -webkit-text-fill-color: currentColor;
    background: none;
  }

  .bc, .svc-card, .feat-card, .ind-card, .test-card, .stat-card,
  .process-card, .rel-card, .dlv-card, .faq-item, .rbadge {
    border: 2px solid currentColor;
  }

  .btn-p, .btn-cta, .nav-cta, .dr-cta, .nl-btn, .ff-btn, .ov-nav-cta {
    border: 2px solid currentColor;
  }

  .carrow, .svc-arrow, .rc-arrow {
    border: 1px solid currentColor;
  }
}

/* Ensure touch targets are at least 44x44px */
.nav-links > li > a { min-height: 44px; display: flex; align-items: center; }
.vn-btn { min-height: 44px; }
.sib-link { min-height: 44px; }
.mega-tab { min-height: 44px; }
.mega-card { min-height: 44px; }

/* Improve readability for long text */
.ov-para, .about-para, .c2-para, .sub-desc, .test-txt {
  max-width: 70ch;
}

/* Selection colors */
::selection {
  background: rgba(99, 102, 241, .2);
  color: var(--t1);
}


/* ═══════════════════════════════════════════════════════════════════════════
   48. PAGE-SPECIFIC: ABOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.about-hero { position: relative; z-index: 1; padding: 140px 24px 80px; text-align: center; }
.about-hero-inner { max-width: 800px; margin: 0 auto; }
.about-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; color: var(--t1); animation: fadeUp .8s .1s ease both; }
.about-hero .hero-sub { margin-top: 20px; font-size: 18px; line-height: 1.65; color: var(--t2); max-width: 640px; margin-left: auto; margin-right: auto; font-weight: 300; animation: fadeUp .8s .2s ease both; }

.about-stats { position: relative; z-index: 1; padding: 60px 24px; background: var(--dark); border-radius: 24px; margin: 40px 24px; }
.about-stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.as-num { font-family: 'Outfit', sans-serif; font-size: clamp(32px, 4vw, 56px); font-weight: 800; letter-spacing: -2px; background: linear-gradient(135deg, var(--blue), var(--indigo)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.as-lbl { font-size: 13px; color: rgba(255, 255, 255, .6); margin-top: 6px; font-weight: 300; }

.sov-card { background: var(--surf2); border: 1px solid var(--bdr); border-radius: var(--r); padding: 24px 20px; text-align: center; transition: all .3s ease; box-shadow: 0 4px 16px rgba(0, 0, 0, .04); }
.sov-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, .08); border-color: rgba(99, 102, 241, .15); }
.sov-ic { font-size: 28px; margin-bottom: 10px; display: block; }
.sov-name { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: var(--t1); letter-spacing: -.2px; }
.sov-count { font-size: 11px; color: var(--blue); margin-top: 4px; font-weight: 600; }


/* ═══════════════════════════════════════════════════════════════════════════
   49. PAGE-SPECIFIC: CONTACT
   ═══════════════════════════════════════════════════════════════════════════ */
.cc-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cc-card { background: var(--surf2); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--bdr); border-radius: var(--rl); padding: 32px; text-align: center; box-shadow: 0 4px 20px rgba(0, 0, 0, .05); transition: all .3s ease; }
.cc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, .08); border-color: rgba(99, 102, 241, .15); }
.cc-ic { font-size: 36px; margin-bottom: 14px; display: block; }
.cc-title { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--t1); letter-spacing: -.3px; }
.cc-sub { font-size: 12px; color: var(--t3); margin-top: 4px; }

.cf-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.cf-info { padding-top: 20px; }
.cf-info h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; color: var(--t1); }
.cf-info-para { font-size: 16px; color: var(--t2); line-height: 1.7; font-weight: 300; margin-top: 16px; }

.cf-form-card { background: var(--surf2); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--bdr); border-radius: var(--rl); padding: 36px; box-shadow: 0 8px 32px rgba(0, 0, 0, .06); }
.cf-form-title { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--t1); letter-spacing: -.3px; margin-bottom: 24px; }
.cf-form { display: flex; flex-direction: column; gap: 14px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.cf-input, .cf-select, .cf-textarea { background: rgba(255, 255, 255, .6); border: 1px solid var(--bdr2); border-radius: 12px; padding: 13px 16px; font-size: 14px; color: var(--t1); font-family: 'Plus Jakarta Sans', sans-serif; outline: none; transition: all .2s; width: 100%; min-height: 44px; }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(99, 102, 241, .08); }
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--t3); }
.cf-select { appearance: none; cursor: pointer; }
.cf-textarea { resize: vertical; min-height: 100px; max-height: 200px; line-height: 1.6; }

.cf-btn { background: var(--t1); color: #fff; border: none; border-radius: 12px; padding: 14px 28px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .25s; font-family: 'Plus Jakarta Sans', sans-serif; width: 100%; min-height: 48px; }
.cf-btn:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99, 102, 241, .3); }
.cf-note { font-size: 12px; color: var(--t3); text-align: center; margin-top: 4px; }


/* ═══════════════════════════════════════════════════════════════════════════
   50. PAGE-SPECIFIC: BLOG
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-hero { position: relative; z-index: 1; padding: 140px 24px 60px; text-align: center; }
.blog-hero-inner { max-width: 800px; margin: 0 auto; }
.blog-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; color: var(--t1); animation: fadeUp .8s .1s ease both; }
.blog-hero .hero-sub { margin-top: 20px; font-size: 18px; line-height: 1.65; color: var(--t2); max-width: 640px; margin-left: auto; margin-right: auto; font-weight: 300; animation: fadeUp .8s .2s ease both; }

.blog-filters { position: relative; z-index: 1; padding: 0 24px 48px; }
.bf-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.bf-btn { padding: 8px 20px; border-radius: 100px; border: 1px solid var(--bdr2); background: var(--surf2); font-size: 13px; font-weight: 500; color: var(--t2); cursor: pointer; transition: all .2s; font-family: 'Plus Jakarta Sans', sans-serif; min-height: 36px; }
.bf-btn:hover { border-color: rgba(99, 102, 241, .2); color: var(--blue); background: rgba(99, 102, 241, .04); }
.bf-btn.active { background: var(--t1); color: #fff; border-color: var(--t1); }

.blog-section { position: relative; z-index: 1; padding: 0 24px 80px; }
.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }


/* ═══════════════════════════════════════════════════════════════════════════
   51. PAGE-SPECIFIC: BLOG DETAIL / ARTICLE
   ═══════════════════════════════════════════════════════════════════════════ */
.article-hero { position: relative; z-index: 1; padding: 130px 24px 0; }
.article-hero-inner { max-width: 800px; margin: 0 auto; }
.article-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: var(--t1); animation: fadeUp .7s .1s ease both; }

.article-body { position: relative; z-index: 1; padding: 64px 24px 80px; }
.article-content { max-width: 740px; margin: 0 auto; }
.article-content h2 { font-family: 'Outfit', sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin: 44px 0 16px; color: var(--t1); }
.article-content h3 { font-family: 'Outfit', sans-serif; font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; letter-spacing: -.5px; margin: 32px 0 12px; color: var(--t1); }
.article-content p { font-size: 16.5px; color: var(--t2); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; color: var(--t2); font-size: 16px; line-height: 1.8; }
.article-content li { margin-bottom: 8px; font-weight: 300; }
.article-content strong { font-weight: 600; color: var(--t1); }
.article-content blockquote { border-left: 3px solid var(--blue); padding: 16px 24px; margin: 28px 0; background: rgba(99, 102, 241, .03); border-radius: 0 12px 12px 0; font-style: italic; color: var(--t2); }

.art-author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--indigo)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; flex-shrink: 0; }
.art-author-name { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--t1); }
.art-author-role { font-size: 12.5px; color: var(--t3); margin-top: 2px; }
.art-share-btn { padding: 10px 20px; border-radius: 10px; border: 1px solid var(--bdr2); background: var(--surf2); font-size: 13px; font-weight: 500; color: var(--t2); cursor: pointer; transition: all .2s; min-height: 44px; }
.art-share-btn:hover { border-color: rgba(99, 102, 241, .2); color: var(--blue); background: rgba(99, 102, 241, .04); }


/* ═══════════════════════════════════════════════════════════════════════════
   52. PAGE-SPECIFIC: PROJECTS
   ═══════════════════════════════════════════════════════════════════════════ */
.proj-hero { position: relative; z-index: 1; padding: 140px 24px 60px; text-align: center; }
.proj-hero-inner { max-width: 800px; margin: 0 auto; }
.proj-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; color: var(--t1); animation: fadeUp .8s .1s ease both; }
.proj-hero .hero-sub { margin-top: 20px; font-size: 18px; line-height: 1.65; color: var(--t2); max-width: 640px; margin-left: auto; margin-right: auto; font-weight: 300; animation: fadeUp .8s .2s ease both; }

.proj-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.proj-card { background: var(--surf2); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--bdr); border-radius: var(--rl); overflow: hidden; box-shadow: 0 4px 24px rgba(0, 0, 0, .05); transition: all .35s var(--ease-bounce); text-decoration: none; color: inherit; }
.proj-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0, 0, 0, .1); }
.proj-card-featured { grid-column: 1 / -1; background: var(--dark); color: #fff; border-color: rgba(255, 255, 255, .06); }
.proj-card-featured:hover { border-color: rgba(99, 102, 241, .3); box-shadow: 0 32px 80px rgba(0, 0, 0, .35); }

.pc-visual { padding: 32px 32px 0; display: flex; justify-content: center; align-items: center; min-height: 200px; background: linear-gradient(135deg, rgba(99, 102, 241, .06), rgba(49, 46, 129, .04)); border-radius: var(--rl) var(--rl) 0 0; }
.proj-card-featured .pc-visual { background: linear-gradient(135deg, rgba(99, 102, 241, .15), rgba(49, 46, 129, .1)); }
.pc-emoji { font-size: 72px; }
.pc-body { padding: 28px 32px 32px; }

.pc-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; margin-bottom: 12px; }
.pc-badge.snow { background: rgba(34, 211, 238, .1); color: #0090c0; }
.pc-badge.theme { background: rgba(49, 46, 129, .1); color: var(--indigo); }
.pc-badge.consult { background: rgba(16, 185, 129, .1); color: #008060; }
.pc-badge.fec { background: rgba(255, 107, 53, .1); color: var(--warm); }
.pc-badge.aquarium { background: rgba(99, 102, 241, .1); color: var(--blue); }
.pc-badge.feasibility { background: rgba(99, 102, 241, .08); color: var(--blue); }
.proj-card-featured .pc-badge { background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .7); }

.pc-title { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.5px; line-height: 1.2; margin-bottom: 10px; }
.proj-card-featured .pc-title { color: #fff; }
.pc-desc { font-size: 14px; color: var(--t3); line-height: 1.6; font-weight: 300; }
.proj-card-featured .pc-desc { color: rgba(255, 255, 255, .6); }

.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.pc-tag { font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 6px; background: rgba(99, 102, 241, .06); color: var(--blue); border: 1px solid rgba(99, 102, 241, .08); }
.proj-card-featured .pc-tag { background: rgba(255, 255, 255, .06); color: rgba(255, 255, 255, .55); border-color: rgba(255, 255, 255, .08); }

.pc-metrics { display: flex; gap: 24px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--bdr2); }
.proj-card-featured .pc-metrics { border-color: rgba(255, 255, 255, .08); }
.pcm-num { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -.5px; }
.proj-card-featured .pcm-num { background: linear-gradient(135deg, #4d9fff, var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pcm-lbl { font-size: 11px; color: var(--t3); margin-top: 2px; }
.proj-card-featured .pcm-lbl { color: rgba(255, 255, 255, .5); }

.proj-coming { max-width: 1200px; margin: 48px auto 0; text-align: center; }
.proj-coming-inner { background: var(--surf2); border: 1px solid var(--bdr); border-radius: var(--rl); padding: 48px 32px; }


/* ═══════════════════════════════════════════════════════════════════════════
   53. PAGE-SPECIFIC RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cc-grid { grid-template-columns: 1fr; }
  .cf-inner { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card-featured { grid-column: span 1; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 600px) {
  /* About */
  .about-hero { padding: 100px 16px 56px; }
  .about-hero h1 { font-size: clamp(28px, 8vw, 44px); letter-spacing: -1px; }
  .about-hero .hero-sub { font-size: 15px; }
  .about-stats { padding: 40px 16px; margin: 24px 12px; }
  .about-stats-inner { gap: 16px; }
  .as-lbl { font-size: 12px; }
  .sov-card { padding: 18px 14px; border-radius: 14px; }
  .sov-ic { font-size: 24px; margin-bottom: 8px; }
  .sov-name { font-size: 12px; }
  .sov-count { font-size: 10px; }

  /* Contact */
  .cc-grid { gap: 12px; }
  .cc-card { padding: 24px; border-radius: 20px; }
  .cc-ic { font-size: 28px; margin-bottom: 10px; }
  .cc-title { font-size: 14px; }
  .cf-inner { gap: 28px; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-form-card { padding: 28px 22px; border-radius: 20px; }
  .cf-input, .cf-select, .cf-textarea { padding: 12px 14px; font-size: 13px; border-radius: 10px; }

  /* Blog */
  .blog-hero { padding: 100px 16px 40px; }
  .blog-hero h1 { font-size: clamp(28px, 8vw, 44px); letter-spacing: -1px; }
  .blog-hero .hero-sub { font-size: 15px; }
  .blog-filters { padding: 0 16px 32px; }
  .bf-btn { padding: 6px 14px; font-size: 12px; }
  .blog-section { padding: 0 16px 56px; }
  .blog-grid { gap: 14px; }

  /* Blog Detail */
  .article-hero { padding: 96px 16px 0; }
  .article-hero h1 { font-size: clamp(26px, 7vw, 40px); letter-spacing: -1px; }
  .article-body { padding: 40px 16px 56px; }
  .article-content h2 { font-size: clamp(20px, 5vw, 28px); margin: 36px 0 12px; }
  .article-content h3 { font-size: clamp(17px, 4vw, 22px); margin: 28px 0 10px; }
  .article-content p { font-size: 15px; }
  .article-content ul, .article-content ol { font-size: 15px; margin-left: 18px; }
  .art-share-btn { padding: 8px 14px; font-size: 12px; border-radius: 8px; }

  /* Projects */
  .proj-hero { padding: 100px 16px 40px; }
  .proj-hero h1 { font-size: clamp(28px, 8vw, 44px); letter-spacing: -1px; }
  .proj-hero .hero-sub { font-size: 15px; }
  .proj-grid { gap: 14px; }
  .pc-visual { min-height: 140px; padding: 24px 24px 0; }
  .pc-emoji { font-size: 52px; }
  .pc-body { padding: 20px 22px 24px; }
  .pc-title { font-size: 18px; }
  .pc-desc { font-size: 13px; }
  .pc-metrics { gap: 16px; }
  .proj-coming-inner { padding: 32px 20px; }
}

@media (max-width: 380px) {
  .about-hero h1 { font-size: 26px; }
  .about-stats-inner { grid-template-columns: 1fr 1fr; }
  .as-num { font-size: 28px; }
  .blog-hero h1 { font-size: 26px; }
  .article-hero h1 { font-size: 24px; }
  .article-content p { font-size: 14px; }
  .article-content h2 { font-size: 20px; }
  .art-share-btn { padding: 7px 12px; font-size: 11px; }
  .proj-hero h1 { font-size: 26px; }
  .pc-body { padding: 18px 18px 20px; }
  .pc-title { font-size: 16px; }
  .pc-tag { font-size: 10px; padding: 3px 8px; }
  .pc-metrics { flex-wrap: wrap; gap: 12px; }
  .cc-card { padding: 20px; }
  .cc-ic { font-size: 24px; }
  .cc-title { font-size: 13px; }
  .cf-form-card { padding: 22px 18px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   54. PRINT STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
@media print {
  /* Reset all decorative visuals */
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #000 !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.6;
    font-family: 'Plus Jakarta Sans', Georgia, serif;
    overflow: visible !important;
  }

  /* Hide non-essential UI elements */
  .mesh,
  #nav,
  .hamburger,
  .drawer,
  .mega,
  .mega-overlay,
  .cta-wrap,
  .marquee-section,
  .foot-form,
  .ff-btn,
  .nl-wrap,
  .nl-btn,
  .foot-socials,
  .svc-arrow,
  .carrow,
  .rc-arrow,
  .hero-badge,
  .badge-dot,
  .dh-badge,
  .ss-back,
  .bc-glow,
  .svc-card-glow,
  .process-line,
  .foot-accordion,
  .foot-acc-toggle,
  .sibling-nav,
  .vert-nav,
  .blog-filters,
  .bf-btn,
  .cf-form,
  .cf-form-card,
  .cta-g1,
  .cta-g2,
  #wpadminbar,
  .elementor-widget-spacer,
  .skip-link,
  .comment-respond,
  .comment-reply-link,
  .comment-navigation,
  .widget_search,
  .wp-block-search {
    display: none !important;
  }

  /* Show URLs after links */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555 !important;
    word-break: break-all;
  }

  /* Don't show URL for anchors, JS links, or navigation */
  a[href^="#"]::after,
  a[href^="javascript"]::after,
  .nav-links a::after,
  .foot-links a::after,
  .breadcrumbs a::after,
  .comment-author a::after,
  .widget a::after,
  .btn-p::after,
  .btn-s::after,
  .btn-cta::after,
  .btn-cta-o::after,
  .dr-link::after,
  .dr-cta::after {
    content: "" !important;
  }

  /* Flatten all grids to single-column for readability */
  .hero-inner,
  .about-inner,
  .detail-hero-grid,
  .overview-inner,
  .ss-hero-grid,
  .content-2col,
  .cf-inner,
  .bento,
  .ind-grid,
  .test-grid,
  .feat-grid,
  .process-grid,
  .related-grid,
  .blog-grid,
  .proj-grid,
  .cc-grid,
  .svc-grid,
  .stats-band-inner,
  .about-stats-inner,
  .foot-main,
  .foot-band,
  .hv-stats,
  .ssm-grid,
  .ov-highlights,
  .deliverables-grid,
  .c2v-stats,
  .mini-cards,
  .stats-grid,
  .has-sidebar .site-content,
  .comment-form {
    display: block !important;
  }

  /* Sidebar — print below content */
  .sidebar, .widget-area, #secondary {
    position: static !important;
  }

  /* Comments — simplify for print */
  .comment-body {
    border: 1px solid #ccc !important;
    padding: 12px !important;
    border-radius: 4px !important;
    margin-bottom: 12px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .comment-list .children {
    margin-left: 20px !important;
    padding-left: 16px !important;
    border-left: 1px solid #ccc !important;
  }

  .bypostauthor > .comment-body .fn::after {
    border: 1px solid #000;
    background: transparent !important;
    color: #000 !important;
  }

  /* Widgets — simplify for print */
  .widget {
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    padding: 12px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Reset section padding for print */
  .hero,
  .page-hero,
  .detail-hero,
  .ss-hero,
  .about-hero,
  .blog-hero,
  .proj-hero,
  .article-hero {
    padding: 20px 0 !important;
    min-height: auto !important;
  }

  section,
  .about,
  .services,
  .industries,
  .testimonials,
  .recog,
  .overview,
  .sub-section,
  .content-section,
  .approach,
  .related,
  .faq-section,
  .process-section,
  .blog-section,
  .vertical-section {
    padding: 20px 0 !important;
  }

  /* Cards — remove decorative borders, add simple border for print */
  .bc, .svc-card, .feat-card, .ind-card, .test-card,
  .stat-card, .process-card, .rel-card, .dlv-card,
  .faq-item, .rbadge, .proj-card, .cc-card, .ov-hl,
  .hv-stat, .ssm-item, .c2v-stat, .mini-card {
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 12px !important;
    margin-bottom: 12px !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Dark sections — make readable on white paper */
  .bc-dark, .bc-accent, .c2-visual,
  .feat-wide, .svc-card-featured,
  .proj-card-featured, .cta-dark {
    background: #f5f5f5 !important;
    border: 1px solid #ccc !important;
  }

  /* Footer — simplify */
  footer {
    padding: 20px 0 !important;
    border-top: 2px solid #000;
  }

  .foot-main { display: block !important; }
  .foot-band { display: none !important; }
  .foot-tagline { max-width: 100% !important; }
  .foot-col-desktop { display: block !important; }

  /* Images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* FAQ — show all answers */
  .faq-a {
    max-height: none !important;
    overflow: visible !important;
  }

  /* Headings — avoid orphans */
  h1, h2, h3, h4 {
    page-break-after: avoid;
    break-after: avoid;
  }

  /* Paragraphs — avoid widows */
  p {
    orphans: 3;
    widows: 3;
  }

  /* Tables */
  table {
    border-collapse: collapse !important;
  }

  th, td {
    border: 1px solid #ccc !important;
  }

  /* Page margins */
  @page {
    margin: 2cm;
  }

  @page :first {
    margin-top: 3cm;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   49. LANDING PAGE — HERO IMAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-img-wrap {
  border-radius: 32px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .9);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .14);
  transform: rotate(1.5deg);
  aspect-ratio: 1 / 1;
  animation: fadeUp .8s .2s ease both;
  transition: transform .4s var(--ease-out);
}
.hero-img-wrap:hover { transform: rotate(0.5deg) scale(1.01); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ═══════════════════════════════════════════════════════════════════════════
   50. LOGO MARQUEE (Trusted Across India)
   ═══════════════════════════════════════════════════════════════════════════ */
.marquee-outer {
  overflow: hidden;
  position: relative;
}
.marquee-outer::before,
.marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-outer::before { left: 0; background: linear-gradient(90deg, rgba(255,255,255,.9), transparent); }
.marquee-outer::after  { right: 0; background: linear-gradient(-90deg, rgba(255,255,255,.9), transparent); }

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 60px;
  flex-shrink: 0;
  cursor: default;
}
.logo-item svg,
.logo-item img {
  height: 36px;
  max-width: 120px;
  filter: grayscale(1) opacity(0.35);
  transition: filter .35s ease, transform .3s ease;
}
.logo-item:hover svg,
.logo-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}


/* ═══════════════════════════════════════════════════════════════════════════
   51. ABOUT — PHOTO + RIGHT COLUMN
   ═══════════════════════════════════════════════════════════════════════════ */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--bdr);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1), 0 4px 16px rgba(0, 0, 0, .06);
  aspect-ratio: 16 / 9;
  position: relative;
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.about-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 15, .35));
  display: flex; align-items: flex-end;
  padding: 20px 24px;
}
.about-photo-caption {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}


/* ═══════════════════════════════════════════════════════════════════════════
   52. BENTO — IMAGE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.cimg-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 16 / 9;
  position: relative;
}
.cimg-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.bc:hover .cimg-wrap img { transform: scale(1.05); }

/* b10 image constrained so card fits in last bento row */
.b10 .cimg-wrap { aspect-ratio: unset; height: 110px; }
/* b11 fills row */
.b11 { align-self: stretch; }


/* ═══════════════════════════════════════════════════════════════════════════
   53. INDUSTRIES — IMAGE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.ind-img-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}
.ind-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
  filter: saturate(.9);
}
.ind-card:hover .ind-img-wrap img { transform: scale(1.07); filter: saturate(1); }
.ind-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10, 10, 15, .6));
}
.ind-body { padding: 20px 22px 22px; }


/* ═══════════════════════════════════════════════════════════════════════════
   54. RECOGNITION — LOGO BADGES
   ═══════════════════════════════════════════════════════════════════════════ */
.rb-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
}
.rb-logo svg { height: 22px; width: auto; }
.rb-info { display: flex; flex-direction: column; gap: 1px; }
.rbadge {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.rbadge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  border-color: rgba(99, 102, 241, .2);
}


/* ═══════════════════════════════════════════════════════════════════════════
   55. BENTO GRID — 4th row fix
   ═══════════════════════════════════════════════════════════════════════════ */
.bento {
  grid-template-rows: minmax(280px, auto) minmax(160px, auto) minmax(200px, auto) minmax(220px, auto);
}
