/* ============================================
   Abba Technologies — Global Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --navy: #0B1D3A;
  --navy-light: #122a4f;
  --blue: #2E86C1;
  --blue-light: #5BA4D9;
  --teal: #17A9A0;
  --amber: #E8943A;
  --off-white: #F7F9FC;
  --white: #FFFFFF;
  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;
  --text-on-dark: #E2E8F0;
  --border: #E5E7EB;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0B1D3A 0%, #122a4f 50%, #0f2847 100%);
  --gradient-accent: linear-gradient(135deg, #2E86C1, #17A9A0);
  --gradient-card-hover: linear-gradient(135deg, rgba(46,134,193,0.05), rgba(23,169,160,0.05));

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Theme-aware surface colors */
  --surface: var(--white);
  --surface-alt: var(--off-white);
  --card-bg: var(--white);
  --card-border: var(--border);
  --card-shadow: rgba(11, 29, 58, 0.1);
  --nav-bg: rgba(11, 29, 58, 0.95);
  --nav-border: rgba(255,255,255,0.08);
  --input-bg: var(--white);
  --input-border: var(--border);
  --input-text: var(--text-primary);
}

/* ---- Light Theme ---- */
body.theme-light {
  --navy: #D6E6F2;
  --navy-light: #E3EDF7;
  --gradient-hero: linear-gradient(135deg, #C8DCF0 0%, #D6E6F2 50%, #DAEAF5 100%);
  --text-on-dark: #2A4A6B;
  --surface: var(--white);
  --surface-alt: #F0F4F8;
  --card-bg: var(--white);
  --card-border: #D1D9E6;
  --card-shadow: rgba(46, 134, 193, 0.1);
  --nav-bg: rgba(255, 255, 255, 0.97);
  --nav-border: rgba(0,0,0,0.08);
}

body.theme-light .nav {
  background: var(--nav-bg);
  border-bottom-color: var(--nav-border);
  backdrop-filter: blur(20px);
}

body.theme-light .nav-links a {
  color: var(--text-primary);
}

body.theme-light .nav-links a:hover {
  color: var(--blue);
}

body.theme-light .nav-links a::after {
  background: var(--gradient-accent);
}

body.theme-light .nav-store {
  color: var(--teal) !important;
  border-color: var(--teal);
}

body.theme-light .nav-store:hover {
  background: var(--teal);
  color: var(--white) !important;
}

body.theme-light .nav-toggle span {
  background: var(--text-primary);
}

body.theme-light .blog-card,
body.theme-light .work-card {
  box-shadow: 0 2px 12px var(--card-shadow);
  border-color: var(--card-border);
}

body.theme-light .section-alt,
body.theme-light .section-light {
  background: var(--surface-alt);
}

body.theme-light .trust-bar {
  border-color: var(--card-border);
}

body.theme-light .filter-btn {
  border-color: var(--card-border);
}

/* Light theme: hero/page-header/CTA/footer text needs dark color */
body.theme-light .hero h1,
body.theme-light .page-header h1 {
  color: #1A2E4A;
}

body.theme-light .hero p,
body.theme-light .page-header p {
  color: #3A5A7C;
}

body.theme-light .hero-tagline,
body.theme-light .page-header .label {
  color: var(--blue);
}

body.theme-light .cta-section {
  background: var(--gradient-hero);
}

body.theme-light .cta-section h2 {
  color: #1A2E4A;
}

body.theme-light .cta-section p {
  color: #3A5A7C;
}

body.theme-light .footer {
  background: #E3EDF7;
}

body.theme-light .footer h4 {
  color: #1A2E4A;
}

body.theme-light .footer-brand p,
body.theme-light .footer-links a {
  color: #3A5A7C;
}

body.theme-light .footer-links a:hover {
  color: var(--teal);
}

body.theme-light .footer-bottom {
  border-top-color: rgba(0,0,0,0.08);
  color: #3A5A7C;
}

body.theme-light .section-dark {
  background: #C8DCF0;
}

body.theme-light .section-dark h2,
body.theme-light .section-dark h3,
body.theme-light .section-dark h4 {
  color: #1A2E4A;
}

body.theme-light .section-dark p,
body.theme-light .section-dark .label {
  color: #3A5A7C;
}

body.theme-light .btn-secondary {
  color: #1A2E4A;
  border-color: rgba(26, 46, 74, 0.3);
}

body.theme-light .btn-secondary:hover {
  border-color: #1A2E4A;
  color: #1A2E4A;
  background: rgba(26, 46, 74, 0.05);
}

body.theme-light .value-props {
  border-color: var(--card-border);
}

/* Light theme: SVG blog/work images get washed-out blue bg */
body.theme-light .blog-card-image,
body.theme-light .work-card-image {
  background: linear-gradient(135deg, #C8DCF0, #D6E6F2);
}

body.theme-light .how-card,
body.theme-light .how-item {
  background: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.8);
}

/* ---- Dark Theme ---- */
body.theme-dark {
  --text-primary: #E2E8F0;
  --text-secondary: #94A3B8;
  --border: #2A2A2A;
  --navy: #000000;
  --navy-light: #0A0A0A;
  --off-white: #141414;
  --gradient-hero: linear-gradient(135deg, #000000 0%, #0A0A0A 50%, #050505 100%);
  --surface: #0D0D0D;
  --surface-alt: #141414;
  --card-bg: #1A1A1A;
  --card-border: #2A2A2A;
  --card-shadow: rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(0, 0, 0, 0.92);
  --nav-border: rgba(255,255,255,0.06);
  --input-bg: #1A1A1A;
  --input-border: #2A2A2A;
  --input-text: #E2E8F0;
  background: #0D0D0D;
  color: var(--text-primary);
}

body.theme-dark .nav {
  background: var(--nav-bg);
  border-bottom-color: var(--nav-border);
}

/* Content sections get dark surface */
body.theme-dark .section,
body.theme-dark .work-proof-bar {
  background: var(--surface);
}

body.theme-dark .section-alt,
body.theme-dark .section-light {
  background: var(--surface-alt);
}

/* Cards */
body.theme-dark .blog-card,
body.theme-dark .work-card,
body.theme-dark .event-card,
body.theme-dark .cert-card,
body.theme-dark .contract-card,
body.theme-dark .market-card,
body.theme-dark .news-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

body.theme-dark .blog-card:hover,
body.theme-dark .work-card:hover {
  box-shadow: 0 8px 30px var(--card-shadow);
}

body.theme-dark .blog-card h3,
body.theme-dark .work-card h3,
body.theme-dark .blog-card-body h3,
body.theme-dark .market-card h3,
body.theme-dark .cert-card h4,
body.theme-dark .contract-card h4,
body.theme-dark .event-card h3,
body.theme-dark .news-card h3 {
  color: var(--text-primary);
}

/* Trust bar */
body.theme-dark .trust-bar {
  background: var(--surface);
  border-color: var(--card-border);
}

body.theme-dark .trust-bar p {
  color: var(--text-secondary);
}

body.theme-dark .trust-bar img {
  filter: brightness(0.8) contrast(1.2);
}

/* Filters */
body.theme-dark .filter-btn {
  background: var(--card-bg);
  border-color: var(--card-border);
  color: var(--text-secondary);
}

body.theme-dark .filter-btn:hover,
body.theme-dark .filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* Footer */
body.theme-dark .footer {
  background: #000000;
}

/* Forms */
body.theme-dark input,
body.theme-dark textarea,
body.theme-dark select {
  background: var(--input-bg);
  border-color: var(--input-border);
  color: var(--input-text);
}

/* Misc components */
body.theme-dark .how-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

body.theme-dark .accordion-section {
  border-color: var(--card-border);
}

body.theme-dark .accordion-header {
  color: var(--text-primary);
}

body.theme-dark .accordion-desc {
  color: var(--text-secondary);
}

body.theme-dark .flip-card-back {
  background: #1A1A1A;
}

body.theme-dark .testimonial-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}

body.theme-dark .proof-label {
  color: var(--text-secondary);
}

body.theme-dark .proof-grid {
  border-color: var(--card-border);
}

/* Value props strip */
body.theme-dark .value-props {
  background: var(--surface);
  border-color: var(--card-border);
}

body.theme-dark .value-item h4 {
  color: var(--text-primary);
}

body.theme-dark .value-item p {
  color: var(--text-secondary);
}

/* Service cards (index.html) */
body.theme-dark .service-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

body.theme-dark .service-card:hover {
  background: rgba(46, 134, 193, 0.08);
  border-color: var(--blue);
}

body.theme-dark .service-card h4 {
  color: var(--text-primary);
}

body.theme-dark .service-card-icon {
  background: linear-gradient(135deg, rgba(46,134,193,0.2), rgba(23,169,160,0.2));
}

/* Generic cards (careers, etc.) */
body.theme-dark .card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

body.theme-dark .card h4 {
  color: var(--text-primary);
}

/* Contact form */
body.theme-dark .contact-form {
  background: var(--surface-alt);
  border-color: var(--card-border);
}

body.theme-dark .form-group label {
  color: var(--text-primary);
}

body.theme-dark .form-group input,
body.theme-dark .form-group select,
body.theme-dark .form-group textarea {
  background: var(--surface);
  border-color: var(--card-border);
  color: var(--text-primary);
}

body.theme-dark .form-group input:focus,
body.theme-dark .form-group select:focus,
body.theme-dark .form-group textarea:focus {
  background: var(--surface);
  border-color: var(--blue);
}

body.theme-dark .contact-info {
  color: var(--text-primary);
}

body.theme-dark .contact-info h3,
body.theme-dark .contact-info h4 {
  color: var(--text-primary);
}

/* SEWP contact box */
body.theme-dark .sewp-contact {
  background: var(--card-bg);
  border-color: var(--card-border);
}

body.theme-dark .sewp-contact h4 {
  color: var(--text-primary);
}

/* Section headers on light-bg sections */
body.theme-dark .section-header h2,
body.theme-dark .section-header p,
body.theme-dark h2,
body.theme-dark h3 {
  color: var(--text-primary);
}

/* Keep headings on dark-bg sections white */
body.theme-dark .hero h1,
body.theme-dark .page-header h1,
body.theme-dark .cta-section h2,
body.theme-dark .section-dark h2,
body.theme-dark .section-dark h3,
body.theme-dark .section-dark h4 {
  color: var(--white);
}

/* ---- Theme Switcher ---- */
.theme-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  gap: 2px;
  background: rgba(11, 29, 58, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.theme-switcher button {
  padding: 8px 16px;
  border: none;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-primary);
}

.theme-switcher button:hover {
  color: rgba(255,255,255,0.9);
}

.theme-switcher button.active {
  background: var(--gradient-accent);
  color: #fff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--teal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}


/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav .nav-logo:hover img,
.footer .nav-logo:hover img {
  opacity: 0.85;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--gradient-accent);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(46, 134, 193, 0.4);
}

.nav-store {
  color: var(--teal) !important;
  font-weight: 600 !important;
  border: 1.5px solid var(--teal);
  padding: 7px 18px !important;
  border-radius: 50px;
  font-size: 0.85rem !important;
  transition: var(--transition);
}

.nav-store::after {
  display: none !important;
}

.nav-store:hover {
  background: var(--teal);
  color: var(--white) !important;
}

/* Dropdown nav */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a .nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 2px;
  transition: var(--transition);
}

.nav-dropdown:hover > a .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(11, 29, 58, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(11, 29, 58, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    backdrop-filter: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }
}


/* ============================================
   Hero Section
   ============================================ */

.hero {
  background: var(--gradient-hero);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 50%, var(--blue) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, var(--teal) 2px, transparent 2px),
    radial-gradient(circle at 60% 80%, var(--blue-light) 1.5px, transparent 1.5px),
    radial-gradient(circle at 40% 30%, var(--teal) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, var(--blue) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 40px 40px, 50px 50px, 35px 35px;
  animation: drift-pattern 20s linear infinite;
}

@keyframes drift-pattern {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-15px, -10px); }
  100% { transform: translate(0, 0); }
}

/* Node/circuit animation overlay */
.hero-nodes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-nodes::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(46, 134, 193, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(46, 134, 193, 0.06), inset 0 0 40px rgba(46, 134, 193, 0.03);
  animation: pulse-ring 8s ease-in-out infinite;
}

.hero-nodes::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(23, 169, 160, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(23, 169, 160, 0.05), inset 0 0 30px rgba(23, 169, 160, 0.03);
  animation: pulse-ring 8s ease-in-out infinite 2s;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(23, 169, 160, 0.3);
  border-radius: 50px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(46, 134, 193, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(46, 134, 193, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-arrow::after {
  content: '→';
  transition: var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}


/* ============================================
   Sections — General
   ============================================ */

.section {
  padding: var(--section-padding);
}

.section-dark {
  background: var(--navy);
  color: var(--text-on-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-light {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-dark .section-header p {
  color: var(--text-on-dark);
}


/* ============================================
   Value Props Strip
   ============================================ */

.value-props {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.value-item {
  padding: 0 16px;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Service Cards
   ============================================ */

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.services-column h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.services-column > p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: var(--text-primary);
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(46, 134, 193, 0.08);
  background: var(--gradient-card-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.service-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(46,134,193,0.1), rgba(23,169,160,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ============================================
   Pillar Cards (Digital Services page)
   ============================================ */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.1);
  border-color: transparent;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46,134,193,0.1), rgba(23,169,160,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.pillar-card ul {
  list-style: none;
  padding: 0;
}

.pillar-card ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.pillar-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.pillar-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   How We Work
   ============================================ */

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.how-item {
  text-align: center;
  padding: 32px 20px;
}

.how-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.how-item h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.how-item p {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Partner / Trust Bar
   ============================================ */

.trust-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-bar .container {
  text-align: center;
}

.trust-bar p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.trust-logos span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.trust-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all 0.3s;
}

.trust-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* ============================================
   Blog Cards
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(11, 29, 58, 0.1);
  color: var(--text-primary);
}

.blog-card-image {
  height: 200px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image .blog-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 30% 50%, var(--blue) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, var(--teal) 1px, transparent 1px);
  background-size: 30px 30px, 40px 40px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(23, 169, 160, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ============================================
   Blog Page — Filter + List
   ============================================ */

.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}


/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(46, 134, 193, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(23, 169, 160, 0.1) 0%, transparent 50%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-on-dark);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   Markets Page — Industry Cards
   ============================================ */

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: var(--transition);
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.08);
  border-color: transparent;
}

.market-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.market-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46,134,193,0.1), rgba(23,169,160,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.market-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.market-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.market-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.market-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(46, 134, 193, 0.08);
  color: var(--blue);
}

@media (max-width: 768px) {
  .market-grid {
    grid-template-columns: 1fr;
  }

  .market-card.featured {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   About Page
   ============================================ */

.about-hero {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  padding: 60px 0;
}

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* ============================================
   Contact Page
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(46,134,193,0.1), rgba(23,169,160,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--off-white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Page Header (interior pages)
   ============================================ */

.page-header {
  background: var(--gradient-hero);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-accent);
  opacity: 0.3;
}

.page-header .hero-bg-pattern {
  opacity: 0.05;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  max-width: 600px;
}

.page-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}


/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  opacity: 0.7;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--text-on-dark);
  opacity: 0.7;
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Scroll Animations
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   Differentiators Section
   ============================================ */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.diff-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(23, 169, 160, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}

.diff-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.diff-item p {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Integration Visual
   ============================================ */

.integration-visual {
  text-align: center;
  padding: 40px 0;
}

.integration-nodes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.integration-node {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  position: relative;
}

.integration-node:hover {
  border-color: var(--blue);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(46, 134, 193, 0.15);
}

.integration-node svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.integration-connector {
  width: 40px;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .integration-connector {
    display: none;
  }

  .integration-nodes {
    gap: 16px;
  }

  .integration-node {
    width: 100px;
    height: 100px;
    font-size: 0.7rem;
  }
}


/* ============================================
   Service Showcase — Alternating Scroll Layout
   ============================================ */

.service-showcase {
  padding: 40px 0;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

.showcase-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* Alternate: even items flip the layout */
.showcase-item:nth-child(even) {
  direction: rtl;
}

.showcase-item:nth-child(even) > * {
  direction: ltr;
}

/* Content side */
.showcase-content {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-item:nth-child(even) .showcase-content {
  transform: translateX(40px);
}

.showcase-item.visible .showcase-content {
  opacity: 1;
  transform: translateX(0);
}

.showcase-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(23, 169, 160, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.showcase-content h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.showcase-content > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.showcase-list {
  list-style: none;
  padding: 0;
}

.showcase-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.showcase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-accent);
}

.showcase-cta {
  margin-top: 24px;
}

/* Graphic / visual side */
.showcase-graphic {
  position: relative;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.showcase-item:nth-child(even) .showcase-graphic {
  transform: translateX(-40px);
}

.showcase-item.visible .showcase-graphic {
  opacity: 1;
  transform: translateX(0);
}

.showcase-graphic-inner {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated floating elements inside the graphic */
.showcase-graphic-inner .float-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: float-bob 6s ease-in-out infinite;
}

.showcase-graphic-inner .float-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-icon:nth-child(1) { top: 15%; left: 12%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; }
.float-icon:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 2s; }
.float-icon:nth-child(4) { bottom: 15%; right: 12%; animation-delay: 0.5s; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Central icon in graphic */
.showcase-graphic-center {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(46, 134, 193, 0.3);
}

.showcase-graphic-center svg {
  width: 36px;
  height: 36px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Ring decorations inside graphic */
.showcase-graphic-inner .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46, 134, 193, 0.15);
}

.showcase-graphic-inner .ring-1 {
  width: 180px;
  height: 180px;
  animation: spin-slow 20s linear infinite;
}

.showcase-graphic-inner .ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(23, 169, 160, 0.1);
  animation: spin-slow 30s linear infinite reverse;
}

.showcase-graphic-inner .ring-3 {
  width: 340px;
  height: 340px;
  border-color: rgba(46, 134, 193, 0.06);
}

/* Dot on the ring */
.ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(23, 169, 160, 0.5);
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Particle dots in the graphic */
.showcase-graphic-inner .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: 0.4;
  animation: particle-drift 8s ease-in-out infinite;
}

.particle:nth-child(odd) {
  background: var(--teal);
}

@keyframes particle-drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25% { transform: translate(10px, -15px); opacity: 0.6; }
  50% { transform: translate(-5px, -25px); opacity: 0.4; }
  75% { transform: translate(15px, -10px); opacity: 0.6; }
}

.particle:nth-child(1) { top: 20%; left: 40%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 30%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; right: 25%; animation-delay: 2s; }
.particle:nth-child(4) { top: 70%; right: 35%; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 60%; animation-delay: 0.5s; }
.particle:nth-child(6) { bottom: 20%; left: 50%; animation-delay: 1.5s; }

/* Connection lines inside graphic */
.showcase-graphic-inner .conn-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 134, 193, 0.2), transparent);
  transform-origin: left center;
}

/* ============================================
   Scene-specific showcase graphics
   ============================================ */

/* Shared scene base */
.scene {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  border-radius: 20px;
  overflow: hidden;
}

/* --- 1. Strategy: Roadmap flowchart --- */
.scene-strategy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap {
  position: relative;
  width: 280px;
  height: 320px;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-light), var(--teal), var(--blue-light));
  opacity: 0.3;
  transform: translateX(-50%);
}

.roadmap-line::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  width: 8px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  border-radius: 4px;
  animation: roadmap-pulse 3s ease-in-out infinite;
}

@keyframes roadmap-pulse {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.roadmap-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-bob 6s ease-in-out infinite;
}

.roadmap-node:nth-child(2) { top: 20px; animation-delay: 0s; }
.roadmap-node:nth-child(3) { top: 100px; animation-delay: 0.5s; }
.roadmap-node:nth-child(4) { top: 180px; animation-delay: 1s; }
.roadmap-node:nth-child(5) { top: 260px; animation-delay: 1.5s; }

.roadmap-node:nth-child(odd) {
  flex-direction: row-reverse;
  transform: translateX(-80%);
}
.roadmap-node:nth-child(even) {
  transform: translateX(-20%);
}

.roadmap-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 0 16px rgba(46, 134, 193, 0.4);
  flex-shrink: 0;
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(8px);
}

.roadmap-card span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  font-weight: 600;
}

.roadmap-card p {
  font-size: 13px;
  color: var(--white);
  margin: 2px 0 0;
  white-space: nowrap;
}

/* --- 2. AI & Data: Neural network --- */
.scene-ai {
  display: flex;
  align-items: center;
  justify-content: center;
}

.neural-net {
  position: relative;
  width: 300px;
  height: 300px;
}

.nn-layer {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nn-layer-input { left: 10px; top: 50%; transform: translateY(-50%); }
.nn-layer-hidden1 { left: 100px; top: 50%; transform: translateY(-60%); }
.nn-layer-hidden2 { left: 190px; top: 50%; transform: translateY(-55%); }
.nn-layer-output { right: 10px; top: 50%; transform: translateY(-40%); }

.nn-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(46, 134, 193, 0.3);
  border: 2px solid var(--blue-light);
  position: relative;
}

.nn-node.active {
  background: var(--gradient-accent);
  border-color: var(--teal);
  box-shadow: 0 0 12px rgba(23, 169, 160, 0.5);
  animation: nn-pulse 2s ease-in-out infinite;
}

@keyframes nn-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(23, 169, 160, 0.3); }
  50% { box-shadow: 0 0 20px rgba(23, 169, 160, 0.7); }
}

.nn-node:nth-child(1) .nn-node { animation-delay: 0s; }
.nn-node:nth-child(2) .nn-node { animation-delay: 0.3s; }
.nn-node:nth-child(3) .nn-node { animation-delay: 0.6s; }

.nn-connections {
  position: absolute;
  inset: 0;
}

.nn-connections line {
  stroke: rgba(46, 134, 193, 0.15);
  stroke-width: 1;
}

.nn-signal {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: nn-signal-move 3s linear infinite;
}

@keyframes nn-signal-move {
  0% { left: 10%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 90%; opacity: 0; }
}

.nn-signal:nth-child(1) { top: 30%; animation-delay: 0s; }
.nn-signal:nth-child(2) { top: 50%; animation-delay: 1s; }
.nn-signal:nth-child(3) { top: 70%; animation-delay: 2s; }

.nn-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nn-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: nn-pulse 1.5s ease-in-out infinite;
}

.nn-label span {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- 3. App Modernization: Layer transformation --- */
.scene-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 600px;
}

.app-layers {
  position: relative;
  width: 260px;
  height: 280px;
  transform-style: preserve-3d;
  transform: rotateX(15deg) rotateY(-5deg);
}

.app-layer {
  position: absolute;
  left: 0;
  right: 0;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  animation: float-bob 6s ease-in-out infinite;
}

.app-layer-legacy {
  bottom: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation-delay: 0s;
}

.app-layer-api {
  bottom: 76px;
  background: rgba(46, 134, 193, 0.12);
  border: 1px solid rgba(46, 134, 193, 0.2);
  animation-delay: 0.5s;
}

.app-layer-cloud {
  bottom: 152px;
  background: rgba(23, 169, 160, 0.12);
  border: 1px solid rgba(23, 169, 160, 0.2);
  animation-delay: 1s;
}

.app-layer-ui {
  bottom: 228px;
  background: var(--gradient-accent);
  border: none;
  animation-delay: 1.5s;
  box-shadow: 0 4px 24px rgba(46, 134, 193, 0.3);
}

.app-layer svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.app-layer-ui svg { stroke: var(--white); }

.app-layer-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.app-layer-ui .app-layer-label { color: var(--white); font-weight: 600; }

.app-arrows {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 56px;
  height: 172px;
  width: 2px;
}

.app-arrow-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  left: -3px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: app-arrow-rise 2.5s ease-in-out infinite;
}

@keyframes app-arrow-rise {
  0% { bottom: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { bottom: 100%; opacity: 0; }
}

.app-arrow-particle:nth-child(1) { animation-delay: 0s; }
.app-arrow-particle:nth-child(2) { animation-delay: 0.8s; }
.app-arrow-particle:nth-child(3) { animation-delay: 1.6s; }

/* --- 4. GIS: Layered map --- */
.scene-gis {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}

.gis-map {
  position: relative;
  width: 280px;
  height: 300px;
  transform-style: preserve-3d;
  transform: rotateX(45deg) rotateZ(-15deg);
}

.gis-layer {
  position: absolute;
  width: 240px;
  height: 240px;
  left: 20px;
  border-radius: 8px;
  border: 1px solid rgba(46, 134, 193, 0.15);
  transform-style: preserve-3d;
}

.gis-layer-terrain {
  bottom: 0;
  background: rgba(46, 134, 193, 0.06);
}

.gis-layer-roads {
  bottom: 30px;
  background: rgba(23, 169, 160, 0.06);
  border-color: rgba(23, 169, 160, 0.15);
}

.gis-layer-data {
  bottom: 60px;
  background: rgba(46, 134, 193, 0.1);
  animation: gis-layer-hover 4s ease-in-out infinite;
}

@keyframes gis-layer-hover {
  0%, 100% { transform: translateZ(0); }
  50% { transform: translateZ(10px); }
}

.gis-topo-line {
  position: absolute;
  border: 1px solid rgba(46, 134, 193, 0.12);
  border-radius: 50%;
}

.gis-road {
  position: absolute;
  height: 1px;
  background: rgba(23, 169, 160, 0.3);
}

.gis-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: rotateX(-45deg) rotateZ(15deg);
}

.gis-pin::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 12px rgba(23, 169, 160, 0.5);
}

.gis-pin::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 2px;
  width: 8px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.gis-pin:nth-child(1) { top: 30%; left: 25%; animation: gis-pin-drop 0.6s ease-out 0.5s both; }
.gis-pin:nth-child(2) { top: 50%; left: 60%; animation: gis-pin-drop 0.6s ease-out 1s both; }
.gis-pin:nth-child(3) { top: 20%; left: 70%; animation: gis-pin-drop 0.6s ease-out 1.5s both; }
.gis-pin:nth-child(4) { top: 65%; left: 35%; animation: gis-pin-drop 0.6s ease-out 2s both; }

@keyframes gis-pin-drop {
  0% { transform: rotateX(-45deg) rotateZ(15deg) translateY(-30px); opacity: 0; }
  60% { transform: rotateX(-45deg) rotateZ(15deg) translateY(3px); opacity: 1; }
  100% { transform: rotateX(-45deg) rotateZ(15deg) translateY(0); opacity: 1; }
}

.gis-grid-line {
  position: absolute;
  background: rgba(46, 134, 193, 0.06);
}

.gis-grid-line.h { left: 0; right: 0; height: 1px; }
.gis-grid-line.v { top: 0; bottom: 0; width: 1px; }

.gis-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) rotateX(-45deg) rotateZ(15deg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.gis-label span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- 5. IoT: Isometric digital twin warehouse --- */
.scene-iot {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dt-wrapper {
  position: absolute;
  inset: 0;
}

/* --- Isometric floor plane --- */
.dt-iso {
  position: absolute;
  bottom: 32px;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translateX(-50%) rotateX(60deg) rotateZ(-45deg);
  transform-style: preserve-3d;
}

.dt-floor {
  position: absolute;
  inset: 0;
  background: rgba(46, 134, 193, 0.05);
  border: 1px solid rgba(46, 134, 193, 0.18);
}

/* Floor grid */
.dt-grid line {
  stroke: rgba(46, 134, 193, 0.1);
  stroke-width: 0.5;
}

/* Warehouse walls (two visible faces) */
.dt-wall-back {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to top, rgba(46, 134, 193, 0.06), rgba(46, 134, 193, 0.02));
  border: 1px solid rgba(46, 134, 193, 0.12);
  border-bottom: none;
  transform-origin: bottom;
}

.dt-wall-side {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 0;
  height: 90px;
  border-left: 240px solid rgba(23, 169, 160, 0.04);
  border-top: 1px solid rgba(23, 169, 160, 0.08);
  transform-origin: bottom right;
  transform: rotateY(0deg);
}

/* --- Racks (isometric rectangles on floor) --- */
.dt-rack {
  position: absolute;
  background: rgba(46, 134, 193, 0.1);
  border: 1px solid rgba(46, 134, 193, 0.22);
}

/* Rack shelf lines */
.dt-rack::before {
  content: '';
  position: absolute;
  left: 2px; right: 2px;
  top: 50%;
  height: 1px;
  background: rgba(46, 134, 193, 0.18);
}

/* Three rows of three racks (320px floor) */
.dt-rack-r1c1 { width: 56px; height: 22px; top: 35px;  left: 28px; }
.dt-rack-r1c2 { width: 56px; height: 22px; top: 35px;  left: 132px; }
.dt-rack-r1c3 { width: 56px; height: 22px; top: 35px;  left: 236px; }
.dt-rack-r2c1 { width: 56px; height: 22px; top: 105px; left: 28px; }
.dt-rack-r2c2 { width: 56px; height: 22px; top: 105px; left: 132px; }
.dt-rack-r2c3 { width: 56px; height: 22px; top: 105px; left: 236px; }
.dt-rack-r3c1 { width: 56px; height: 22px; top: 200px; left: 28px; }
.dt-rack-r3c2 { width: 56px; height: 22px; top: 200px; left: 132px; }
.dt-rack-r3c3 { width: 56px; height: 22px; top: 200px; left: 236px; }

/* --- Forklift --- */
.dt-forklift {
  position: absolute;
  top: 115px;
  width: 16px;
  height: 28px;
  animation: forklift-drive 10s ease-in-out infinite;
}

@keyframes forklift-drive {
  0%   { left: 24px;  top: 150px; }
  18%  { left: 100px; top: 150px; }
  23%  { left: 100px; top: 68px; }
  40%  { left: 210px; top: 68px; }
  48%  { left: 210px; top: 150px; }
  65%  { left: 270px; top: 150px; }
  72%  { left: 270px; top: 240px; }
  88%  { left: 100px; top: 240px; }
  94%  { left: 100px; top: 150px; }
  100% { left: 24px;  top: 150px; }
}

/* Forklift body */
.dt-forklift-body {
  width: 16px;
  height: 22px;
  background: rgba(23, 169, 160, 0.35);
  border: 1px solid rgba(23, 169, 160, 0.5);
  border-radius: 2px;
  position: relative;
}

/* Forklift forks */
.dt-forklift-forks {
  width: 10px;
  height: 6px;
  background: rgba(23, 169, 160, 0.25);
  border: 1px solid rgba(23, 169, 160, 0.4);
  border-top: none;
  position: absolute;
  bottom: -6px;
  left: 3px;
}

/* Forklift glow trail */
.dt-forklift::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 4px;
  background: rgba(23, 169, 160, 0.08);
  filter: blur(4px);
}

/* --- Digital twin overlay (wireframe grid shimmer) --- */
.dt-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dt-overlay-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(23, 169, 160, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 169, 160, 0.5) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: dt-overlay-shift 8s linear infinite;
}

@keyframes dt-overlay-shift {
  0% { background-position: 0 0; }
  100% { background-position: 30px 30px; }
}

/* Overlay "DIGITAL TWIN" label */
.dt-overlay-label {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  opacity: 0.5;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dt-overlay-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: nn-pulse 2s ease-in-out infinite;
}

/* --- Sensor dots on floor --- */
.dt-sensor {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(23, 169, 160, 0.6);
  z-index: 2;
}

.dt-sensor::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(23, 169, 160, 0.3);
  animation: sensor-ping 2.5s ease-out infinite;
}

@keyframes sensor-ping {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Sensor positions (on iso floor) */
.dt-sensor-1 { top: 12px;  left: 12px; }
.dt-sensor-2 { top: 12px;  right: 12px; }
.dt-sensor-3 { top: 156px; left: 156px; }
.dt-sensor-4 { bottom: 12px; left: 12px; }
.dt-sensor-5 { bottom: 12px; right: 12px; }

.dt-sensor-1::after { animation-delay: 0s; }
.dt-sensor-2::after { animation-delay: 0.5s; }
.dt-sensor-3::after { animation-delay: 1s; }
.dt-sensor-4::after { animation-delay: 1.5s; }
.dt-sensor-5::after { animation-delay: 2s; }

/* --- Data pulses rising from warehouse to dashboard --- */
.dt-pulse {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: dt-pulse-rise 3s ease-in-out infinite;
}

@keyframes dt-pulse-rise {
  0%   { bottom: 30%; opacity: 0; transform: translateX(0); }
  15%  { opacity: 1; }
  50%  { bottom: 75%; opacity: 0.8; transform: translateX(10px); }
  85%  { opacity: 1; }
  100% { bottom: 92%; opacity: 0; transform: translateX(0); }
}

.dt-pulse:nth-child(1) { left: 28%; animation-delay: 0s; }
.dt-pulse:nth-child(2) { left: 48%; animation-delay: 1s; }
.dt-pulse:nth-child(3) { left: 68%; animation-delay: 2s; }

/* Pulse connector lines */
.dt-pulse-line {
  position: absolute;
  width: 1px;
  bottom: 30%;
  height: 62%;
  background: linear-gradient(to top, rgba(23, 169, 160, 0.15), rgba(23, 169, 160, 0.03), transparent);
}

.dt-pulse-line:nth-child(4) { left: 29%; }
.dt-pulse-line:nth-child(5) { left: 49%; }
.dt-pulse-line:nth-child(6) { left: 69%; }

/* --- Dashboard HUD with analog gauges --- */
.dt-dashboard {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 14px 6px;
  backdrop-filter: blur(8px);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  z-index: 3;
}

/* Each gauge unit */
.dt-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
}

/* The SVG dial */
.dt-gauge-dial {
  width: 50px;
  height: 32px;
  overflow: visible;
}

/* Gauge arc track */
.dt-gauge-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3;
  stroke-linecap: round;
}

/* Gauge arc fill (colored portion) */
.dt-gauge-fill {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 3px rgba(23, 169, 160, 0.5));
  transition: stroke-dashoffset 1s ease;
}

/* Warning gauge (orange) */
.dt-gauge-fill--warn {
  stroke: #e8a838;
  filter: drop-shadow(0 0 3px rgba(232, 168, 56, 0.5));
}

/* Gauge needle */
.dt-gauge-needle {
  fill: rgba(255, 255, 255, 0.85);
  transform-origin: 25px 28px;
}

/* Animated needle oscillation per gauge (rotation around center 25,28) */
.dt-gauge:nth-child(1) .dt-gauge-needle { animation: needle-osc-1 4s ease-in-out infinite; }
.dt-gauge:nth-child(2) .dt-gauge-needle { animation: needle-osc-2 5s ease-in-out infinite; }
.dt-gauge:nth-child(3) .dt-gauge-needle { animation: needle-osc-3 6s ease-in-out infinite; }
.dt-gauge:nth-child(4) .dt-gauge-needle { animation: needle-osc-4 3.5s ease-in-out infinite; }

/* Temp ~72%: oscillate ±4° around 40° */
@keyframes needle-osc-1 {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}
/* Humidity ~45%: oscillate ±3° around -9° */
@keyframes needle-osc-2 {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}
/* Assets ~60%: oscillate ±3° around 18° */
@keyframes needle-osc-3 {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}
/* Uptime ~98%: very subtle oscillation ±1.5° */
@keyframes needle-osc-4 {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1.5deg); }
}

/* Gauge center dot */
.dt-gauge-center {
  fill: rgba(255, 255, 255, 0.6);
}

/* Gauge tick marks */
.dt-gauge-ticks line {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 0.8;
}

/* Gauge value + label text */
.dt-gauge-value {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-top: 2px;
}

.dt-gauge-value--warn {
  color: #e8a838;
}

.dt-gauge-label {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1px;
}

/* --- Scan line across warehouse --- */
.dt-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.2;
  animation: dt-scan 5s linear infinite;
}

@keyframes dt-scan {
  0% { top: 0; }
  100% { top: 100%; }
}

/* Bottom label */
.dt-building-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dt-building-label::before,
.dt-building-label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--teal);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }

  .showcase-item:nth-child(even) {
    direction: ltr;
  }

  .showcase-graphic {
    min-height: 280px;
    order: -1;
  }

  .showcase-content {
    transform: translateY(30px) !important;
  }

  .showcase-graphic {
    transform: translateY(20px) !important;
  }

  .showcase-item.visible .showcase-content,
  .showcase-item.visible .showcase-graphic {
    transform: translateY(0) !important;
  }
}

/* ===== NEWS PAGE ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.news-card {
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.news-card:hover {
  border-color: rgba(23, 169, 160, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.news-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 24px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-card-body h3 {
  font-size: 1.15rem;
  margin: 8px 0 12px;
  color: var(--navy);
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--text-primary);
  opacity: 0.7;
  line-height: 1.6;
}

/* ===== EVENTS PAGE ===== */
.events-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-card {
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.event-card:hover {
  border-color: rgba(23, 169, 160, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.event-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-body {
  display: flex;
  gap: 20px;
  padding: 24px;
  align-items: flex-start;
}

.event-date-badge {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: rgba(46, 134, 193, 0.1);
  border: 1px solid rgba(46, 134, 193, 0.2);
  border-radius: 10px;
  padding: 10px 8px;
}

.event-month {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  font-weight: 600;
}

.event-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 2px;
}

.event-details h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.event-meta {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 8px;
}

.event-details p:last-child {
  font-size: 0.9rem;
  color: var(--text-primary);
  opacity: 0.7;
  line-height: 1.5;
}

/* ===== CAREERS PAGE ===== */
.careers-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.careers-intro h2 {
  margin-bottom: 16px;
}

.careers-intro p {
  font-size: 1.05rem;
  color: var(--text-primary);
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 12px;
}

.careers-areas h3 {
  margin-bottom: 24px;
}

.careers-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 24px;
}

.careers-location h4 {
  color: var(--teal);
  margin-bottom: 12px;
}

.careers-location p {
  color: var(--text-primary);
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .event-card-body {
    flex-direction: column;
    gap: 12px;
  }

  .careers-location {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== GENERIC CARD (Careers, etc.) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 28px;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(23, 169, 160, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-primary);
  opacity: 0.7;
  line-height: 1.6;
}

/* ===== CONTRACT VEHICLES ===== */
.contract-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.contract-card {
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 28px;
  transition: var(--transition);
}

.contract-card:hover {
  border-color: rgba(23, 169, 160, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.contract-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.contract-number {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.contract-card p {
  font-size: 0.88rem;
  color: var(--text-primary);
  opacity: 0.7;
  line-height: 1.6;
}

.contract-meta {
  font-size: 0.78rem !important;
  color: rgba(0, 0, 0, 0.4) !important;
  margin-top: 8px;
  font-style: italic;
}

/* ===== CERTIFICATIONS ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.cert-card {
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  border-color: rgba(23, 169, 160, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(23, 169, 160, 0.1);
  border: 1px solid rgba(23, 169, 160, 0.25);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cert-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 0.85rem;
  color: var(--text-primary);
  opacity: 0.65;
  line-height: 1.6;
}

/* SEWP Contact block */
.sewp-contact {
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 32px;
  margin-top: 16px;
}

.sewp-contact h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.sewp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.sewp-contact-grid p {
  font-size: 0.88rem;
  color: var(--text-primary);
  opacity: 0.7;
  line-height: 1.6;
}

.sewp-contact-grid a {
  color: var(--teal);
}

@media (max-width: 768px) {
  .contract-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sewp-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Digital Services — Accordion Sections
   ============================================ */
.accordion-showcase {
  padding: 60px 0 40px;
}

.accordion-group {
  border-top: 1px solid var(--border);
}

.accordion-section {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  cursor: pointer;
  user-select: none;
  transition: padding 0.3s ease;
}

.accordion-header:hover .accordion-title h3 {
  color: var(--teal);
}

.accordion-header-left {
  flex: 1;
  min-width: 0;
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.accordion-title h3 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  transition: color 0.3s ease;
  margin: 0;
}

.accordion-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
  min-width: 24px;
}

.accordion-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
}

.accordion-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(23, 169, 160, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.accordion-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  stroke-width: 2;
  fill: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-section.open .accordion-toggle {
  background: rgba(23, 169, 160, 0.15);
}

.accordion-section.open .accordion-toggle svg {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  opacity: 0;
}

.accordion-section.open .accordion-body {
  opacity: 1;
}

.accordion-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}

.accordion-details {
  padding-top: 8px;
}

.accordion-details .showcase-list {
  margin-bottom: 24px;
}

.accordion-details .showcase-list li {
  font-size: 0.92rem;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.accordion-details .showcase-list li:last-child {
  border-bottom: none;
}

.accordion-graphic {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .accordion-body-inner {
    grid-template-columns: 1fr;
  }

  .accordion-graphic {
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .accordion-title h3 {
    font-size: 1.2rem;
  }

  .accordion-desc {
    font-size: 0.88rem;
  }
}

/* ============================================
   About — Flip Cards
   ============================================ */
.flip-cards-section {
  padding: 60px 0 40px;
}

.flip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Card container — sets the 3D perspective */
.flip-card {
  perspective: 1200px;
  height: 420px;
  cursor: pointer;
  outline: none;
}

.flip-card--wide {
  grid-column: 1 / -1;
  height: 380px;
}

/* Inner wrapper that rotates */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* Both faces share these base styles */
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

/* ---- FRONT FACE ---- */
.flip-card-front {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.flip-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-card-img {
  transform: scale(1.05);
}

.flip-card-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 29, 58, 0.9) 0%,
    rgba(11, 29, 58, 0.45) 45%,
    rgba(11, 29, 58, 0.1) 100%
  );
}

.flip-card-front-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.flip-card-front-content h3 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.flip-card-teaser {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ---- BACK FACE ---- */
.flip-card-back {
  transform: rotateY(180deg);
  background: var(--navy);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.flip-card-back h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.flip-card-back p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}

.flip-card-back p:last-of-type {
  margin-bottom: 0;
}

.flip-card-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flip-card-back ul li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.flip-card-back ul li:last-child {
  border-bottom: none;
}

.flip-card-back ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---- Shared elements ---- */
.flip-card-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(23, 169, 160, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.flip-card-hint {
  display: block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.flip-card:hover .flip-card-hint {
  opacity: 1;
}

/* Wide card back gets two-column text */
.flip-card--wide .flip-card-back {
  padding: 40px 48px;
}

@media (max-width: 768px) {
  .flip-grid {
    grid-template-columns: 1fr;
  }

  .flip-card {
    height: 380px;
  }

  .flip-card--wide {
    height: 380px;
  }

  .flip-card-front-content h3 {
    font-size: 1.3rem;
  }

  .flip-card-back {
    padding: 28px;
  }

  .flip-card--wide .flip-card-back {
    padding: 28px;
  }
}


/* ============================================
   Work / Portfolio Page
   ============================================ */

/* Proof Points Bar */
.work-proof-bar {
  padding: 0;
}

.proof-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.proof-item {
  text-align: center;
}

.proof-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.proof-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

/* Work Card Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.12);
  color: var(--text-primary);
}

.work-card-image {
  height: 200px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.work-card:hover .work-card-image img {
  transform: scale(1.05);
}

.work-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.work-divider {
  width: 40px;
  height: 2px;
  background: var(--gradient-accent);
  margin-bottom: 14px;
  border-radius: 2px;
}

.work-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.work-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.work-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal);
  background: rgba(23, 169, 160, 0.08);
  padding: 3px 10px;
  border-radius: 50px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-on-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--teal);
  opacity: 0.8;
}

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-grid {
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .proof-grid {
    gap: 24px;
  }
  .proof-number {
    font-size: 1.8rem;
  }
}
