/* ====================================================================
   AUTOMATAIZ – THE AI BUSINESS OPERATING SYSTEM
   MASTER STYLESHEET (css/style.css)
   Aesthetic: 40% NVIDIA | 25% Linear | 20% Apple | 15% Automataiz
   Strict Colors: Black (#050505), Greens (#19B000, #4CAF00, #9ACD00), Mustard (#FFC61A, #FFD43B, #FFE066)
   Strictly NO Blue, NO Cyan, NO Purple, NO Pink.
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Backgrounds */
  --bg-primary: #050505;
  --bg-secondary: #0D1117;
  --bg-surface: #11161D;
  --bg-surface-elevated: #161D26;
  --bg-glass: rgba(255, 255, 255, 0.035);
  --bg-glass-card: rgba(17, 22, 29, 0.65);
  --bg-glass-card-hover: rgba(22, 29, 38, 0.85);

  /* Primary Brand Greens */
  --green-primary: #19B000;
  --green-secondary: #4CAF00;
  --green-accent: #9ACD00;
  --green-glow: rgba(25, 176, 0, 0.28);
  --green-glow-strong: rgba(25, 176, 0, 0.50);
  --green-subtle: rgba(25, 176, 0, 0.10);
  --green-border: rgba(25, 176, 0, 0.35);

  /* Primary Mustard & Yellows */
  --yellow-primary: #FFC61A;
  --yellow-golden: #FFD43B;
  --yellow-soft: #FFE066;
  --yellow-glow: rgba(255, 198, 26, 0.25);
  --yellow-subtle: rgba(255, 198, 26, 0.10);
  --yellow-border: rgba(255, 198, 26, 0.35);

  /* Text Hierarchy */
  --text-primary: #FFFFFF;
  --text-secondary: #C7CDD6;
  --text-muted: #8A909A;
  --text-dim: #545B67;
  --text-inverse: #050505;

  /* Borders & Glass */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glow-green: rgba(25, 176, 0, 0.45);
  --border-glow-yellow: rgba(255, 198, 26, 0.45);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #19B000 0%, #FFC61A 100%);
  --grad-brand-soft: linear-gradient(135deg, #2FAF00 0%, #FFE066 100%);
  --grad-brand-reverse: linear-gradient(135deg, #FFC61A 0%, #19B000 100%);
  --grad-green-fade: linear-gradient(180deg, rgba(25, 176, 0, 0.20) 0%, transparent 100%);
  --grad-yellow-fade: linear-gradient(180deg, rgba(255, 198, 26, 0.15) 0%, transparent 100%);
  --grad-dark-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

  /* Typography */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
  --shadow-green: 0 10px 30px rgba(25, 176, 0, 0.25);
  --shadow-yellow: 0 10px 30px rgba(255, 198, 26, 0.20);
  --shadow-glow: 0 0 50px rgba(25, 176, 0, 0.15), 0 0 80px rgba(255, 198, 26, 0.10);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Max Widths */
  --container-max: 1280px;
  --container-wide: 1440px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-primary);
}

::selection {
  background: var(--green-primary);
  color: #000000;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
}

/* --- Layout & Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-top: clamp(4.5rem, 9vw, 8.5rem);
  padding-bottom: clamp(4.5rem, 9vw, 8.5rem);
  position: relative;
  z-index: 2;
}

.section-tight {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

/* Eyebrow / Pill Badge */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow-primary);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge-tag.green {
  color: var(--green-primary);
  border-color: var(--green-border);
  background: var(--green-subtle);
}

.badge-tag.yellow {
  color: var(--yellow-primary);
  border-color: var(--yellow-border);
  background: var(--yellow-subtle);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 10px var(--green-primary);
  animation: pulseGlow 2s infinite ease-in-out;
}

.pulse-dot.yellow {
  background: var(--yellow-primary);
  box-shadow: 0 0 10px var(--yellow-primary);
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Background Ambient Lighting Canvas & Shaders */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-bg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: blur(120px);
  opacity: 0.45;
  border-radius: 50%;
}

.glow-green {
  background: radial-gradient(circle, var(--green-primary) 0%, transparent 70%);
}

.glow-yellow {
  background: radial-gradient(circle, var(--yellow-primary) 0%, transparent 70%);
}

/* Grid & Noise Overlay */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}

.btn svg {
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* Primary Button: Green to Mustard gradient, Dark text, Luxury glow */
.btn-primary {
  background: var(--grad-brand);
  color: #040803;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 20px var(--green-glow), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px var(--green-glow-strong), 0 0 40px var(--yellow-glow);
  color: #000000;
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

/* Secondary Button: Transparent, Mustard Border, White text */
.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--yellow-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 198, 26, 0.12);
  border-color: var(--yellow-primary);
  color: var(--yellow-soft);
  box-shadow: 0 0 25px var(--yellow-glow);
  transform: translateY(-2px);
}

/* Ghost Button: Green subtle border */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  background: var(--green-subtle);
  border-color: var(--green-border);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Cards & Glassmorphism --- */
.card-glass {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

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

.card-glass:hover {
  border-color: var(--border-glow-green);
  background: var(--bg-glass-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--green-subtle);
}

.card-glass.hover-yellow:hover {
  border-color: var(--border-glow-yellow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--yellow-subtle);
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-subtle);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.card-icon-box.yellow {
  background: var(--yellow-subtle);
  border-color: var(--yellow-border);
  color: var(--yellow-primary);
}

.card-glass:hover .card-icon-box {
  transform: scale(1.08);
  box-shadow: 0 0 20px var(--green-glow);
}

.card-glass.hover-yellow:hover .card-icon-box.yellow {
  box-shadow: 0 0 20px var(--yellow-glow);
}

/* --- Sticky Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-smooth);
  padding: 20px 0;
}

.site-nav.scrolled {
  padding: 12px 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #FFFFFF 30%, #C7CDD6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-primary);
  font-family: var(--font-body);
  font-weight: 700;
  margin-top: 2px;
}

/* Nav Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-brand);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover {
  background: rgba(25, 176, 0, 0.12);
  border-color: var(--green-border);
  color: #FFFFFF;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border-glass);
  padding: 20px 20px 36px;
  z-index: 999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
  animation: slideDrawer 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDrawer {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer .nav-menu {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  margin-bottom: 20px;
}

.mobile-drawer .nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.mobile-drawer .nav-link:hover,
.mobile-drawer .nav-link.active {
  color: #FFFFFF;
  background: rgba(25, 176, 0, 0.1);
  border-color: var(--green-border);
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text-secondary);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Dashboard Showcase Window */
.hero-dashboard-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.dashboard-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(25, 176, 0, 0.15), 0 0 100px rgba(255, 198, 26, 0.08);
  overflow: hidden;
  position: relative;
}

.dash-header {
  height: 48px;
  background: #090D13;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.dash-controls {
  display: flex;
  gap: 8px;
}

.dash-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dash-dot.active-g {
  background: var(--green-primary);
  box-shadow: 0 0 8px var(--green-primary);
}
.dash-dot.active-y {
  background: var(--yellow-primary);
  box-shadow: 0 0 8px var(--yellow-primary);
}

.dash-title-bar {
  font-family: var(--font-heading);
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-body {
  padding: clamp(1rem, 2.5vw, 2rem);
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
}

.dash-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.dash-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  position: relative;
}

.dash-stat-label {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-stat-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dash-stat-change {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dash-stat-change.yellow {
  color: var(--yellow-primary);
}

.dash-grid-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.dash-chart-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.dash-chat-feed {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  line-height: 1.45;
}

.chat-bubble.ai {
  background: rgba(25, 176, 0, 0.12);
  border: 1px solid var(--green-border);
  color: #E2FFE0;
  align-self: flex-start;
}

.chat-bubble.user {
  background: rgba(255, 198, 26, 0.12);
  border: 1px solid var(--yellow-border);
  color: #FFF8E7;
  align-self: flex-end;
}

/* Floating Widgets */
.floating-widget {
  position: absolute;
  background: rgba(17, 22, 29, 0.85);
  border: 1px solid var(--border-glass);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 25px var(--green-glow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10;
  animation: floatWidget 6s ease-in-out infinite alternate;
}

.floating-widget.left-bot {
  top: 25%;
  left: -30px;
}

.floating-widget.right-top {
  bottom: 20%;
  right: -30px;
  animation-delay: -3s;
  border-color: var(--yellow-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 25px var(--yellow-glow);
}

@keyframes floatWidget {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-16px); }
}

/* --- Interactive Module Showcase Grid --- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.module-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.module-card .module-content h3 {
  margin-bottom: 0.75rem;
}

.module-card .module-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.module-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.module-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-features-list li svg {
  color: var(--green-primary);
  flex-shrink: 0;
}

.module-action-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--yellow-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.module-action-link:hover {
  color: var(--yellow-golden);
  text-decoration: underline;
}

/* --- Comparison Section (Fragmented vs Automataiz) --- */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comp-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  position: relative;
}

.comp-card.legacy {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-card.automataiz {
  background: linear-gradient(180deg, rgba(25, 176, 0, 0.08) 0%, rgba(17, 22, 29, 0.9) 100%);
  border: 1px solid var(--green-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px var(--green-subtle);
}

.comp-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.comp-badge.legacy {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.comp-badge.automataiz {
  background: var(--green-primary);
  color: #000000;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 1.5rem;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.comp-list.legacy li svg {
  color: #8A909A;
  margin-top: 3px;
  flex-shrink: 0;
}

.comp-list.automataiz li svg {
  color: var(--green-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* --- Interactive ROI Calculator --- */
.roi-calculator-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg), 0 0 50px var(--green-subtle);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.roi-slider-group {
  margin-bottom: 24px;
}

.roi-slider-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.roi-slider-val {
  color: var(--yellow-primary);
  font-family: var(--font-heading);
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 10px var(--green-primary);
  cursor: pointer;
  border: 2px solid #FFFFFF;
}

.roi-result-card {
  background: linear-gradient(135deg, rgba(25, 176, 0, 0.12) 0%, rgba(255, 198, 26, 0.08) 100%);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.roi-big-stat {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--yellow-primary);
  line-height: 1;
  margin: 12px 0 6px;
}

.roi-stat-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* --- Pricing System --- */
/* --- Pricing System --- */
.pricing-controls-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto 3.5rem;
}

.pricing-switcher, .currency-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 5px 6px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pricing-switch-btn, .currency-switch-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pricing-switch-btn.active, .currency-switch-btn.active {
  background: var(--grad-brand);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 2px 14px var(--green-glow);
}

.currency-switch-btn.active {
  background: var(--yellow-primary);
  color: #000000;
  box-shadow: 0 2px 14px var(--yellow-glow);
}

.currency-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.85;
}

.discount-tag {
  background: var(--yellow-primary);
  color: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-border);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px var(--green-subtle);
}

.pricing-card.featured, .pricing-card.growth-card {
  background: linear-gradient(180deg, rgba(25, 176, 0, 0.1) 0%, rgba(17, 22, 29, 0.95) 100%);
  border: 2px solid var(--yellow-primary);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 50px var(--green-glow), 0 0 30px var(--yellow-glow);
  transform: scale(1.04);
  z-index: 5;
}

.pricing-card.featured:hover, .pricing-card.growth-card:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95), 0 0 60px var(--green-glow-strong), 0 0 40px var(--yellow-glow);
}

@media (max-width: 1024px) {
  .pricing-card.featured, .pricing-card.growth-card {
    transform: none;
  }
  .pricing-card.featured:hover, .pricing-card.growth-card:hover {
    transform: translateY(-6px);
  }
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px var(--green-glow);
  white-space: nowrap;
}

.popular-badge.mustard {
  background: var(--yellow-primary);
  box-shadow: 0 4px 15px var(--yellow-glow);
}

.pricing-price-wrap {
  margin: 1.25rem 0 1.75rem;
}

.price-original-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.price-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-heading);
}

.price-savings-badge {
  display: inline-block;
  background: rgba(25, 176, 0, 0.15);
  border: 1px solid var(--green-border);
  color: #19B000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.price-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  transition: all var(--transition-fast);
}

.price-cycle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--text-secondary);
}

.pricing-features li svg {
  color: var(--green-primary);
  flex-shrink: 0;
}

.pricing-features-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow-primary);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

/* Trust Section Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 3rem auto 0;
  max-width: 1100px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition-fast);
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--green-border);
  transform: translateY(-3px);
}

.trust-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: var(--radius-md);
  background: var(--green-subtle);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
}

.trust-card-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* Payment Methods Grid */
.payment-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 1.5rem auto 0;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.payment-badge:hover {
  border-color: var(--yellow-border);
  color: #FFFFFF;
  background: rgba(255, 198, 26, 0.08);
}

/* --- Accordion (FAQ & Features) --- */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--green-border);
  background: var(--bg-glass-card-hover);
}

.faq-question {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--yellow-subtle);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  padding: 0 26px;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* --- Interactive Tabs & Workflow Simulator --- */
.tab-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-glass);
}

.tab-btn.active {
  background: var(--green-subtle);
  border-color: var(--green-primary);
  color: var(--green-accent);
  box-shadow: 0 0 20px var(--green-glow);
}

.tab-content-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-content-panel.active {
  display: block;
}

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

/* Visual Workflow Engine Simulator */
.workflow-builder {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 30px;
  position: relative;
}

.wf-canvas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow-x: auto;
  padding: 30px 10px;
}

.wf-node {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.wf-node.trigger {
  border-color: var(--yellow-border);
}

.wf-node.action {
  border-color: var(--green-border);
}

.wf-connector {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow-primary), var(--green-primary));
  position: relative;
  min-width: 40px;
}

.wf-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--green-primary);
  border-right: 2px solid var(--green-primary);
  transform: rotate(45deg);
}

/* --- Final Call To Action Banner --- */
.final-cta-card {
  background: radial-gradient(circle at 50% 0%, rgba(25, 176, 0, 0.22) 0%, var(--bg-surface) 75%);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9), 0 0 60px var(--green-glow);
}

.final-cta-card .hero-title {
  margin-bottom: 1.25rem;
}

.final-cta-card p {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
}

/* --- Footer --- */
.site-footer {
  background: #020202;
  border-top: 1px solid var(--border-subtle);
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.925rem;
  color: var(--text-muted);
  max-width: 320px;
  margin: 1.25rem 0 1.5rem;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--yellow-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(25, 176, 0, 0.08);
  border: 1px solid var(--green-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: var(--green-primary);
  font-size: 0.775rem;
  font-weight: 600;
}

/* --- Universal Modal (Book a Demo) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  background: var(--bg-surface);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px var(--green-glow);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-window {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

/* Form Styles */
.form-group {
  margin-bottom: 18px;
}

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

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 15px var(--green-glow);
}

.form-select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-surface);
  border: 1px solid var(--green-primary);
  color: var(--text-primary);
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--green-glow);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ====================================================================
   MASTER RESPONSIVE SUITE (TABLET & MOBILE OPTIMIZATION)
   ==================================================================== */

/* --- Global Mobile/Tablet Safety --- */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

/* 1. TABLET & LAPTOP ADAPTATION (<= 1080px) */
@media (max-width: 1080px) {
  .nav-menu,
  .nav-cta-wrap .btn-secondary {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr !important;
    gap: 36px;
  }

  .comparison-container {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .roi-calculator-box {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .dash-grid-split {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .dash-metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .policy-layout {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .policy-sidebar {
    display: none !important;
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px;
  }

  .pricing-card.featured,
  .pricing-card.growth-card {
    transform: none !important;
  }

  .pricing-card.featured:hover,
  .pricing-card.growth-card:hover {
    transform: translateY(-4px) !important;
  }

  .modules-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 20px;
  }

  .founder-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    text-align: center;
  }

  .founder-hero-text .badge-tag,
  .founder-hero-text .hero-cta-group {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .founder-portrait-wrap {
    order: -1;
    max-width: 380px;
    margin: 0 auto 20px;
  }

  .who-help-grid,
  .services-interactive-grid,
  .beliefs-grid,
  .expertise-dashboard-grid,
  .social-connect-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
}

/* 2. TABLET VERTICAL & LARGE PHONES (<= 768px) */
@media (max-width: 768px) {
  .section {
    padding: 70px 0 !important;
  }

  .section-header {
    margin-bottom: 40px !important;
  }

  .floating-widget {
    display: none !important;
  }

  .hero-section {
    padding-top: 110px !important;
    padding-bottom: 60px !important;
    min-height: auto !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 28px 20px !important;
  }

  /* Story Timeline Mobile Transformation (Left Spine) */
  .story-timeline-wrap {
    margin-top: 2rem;
  }

  .story-timeline-wrap::before {
    left: 20px !important;
    transform: none !important;
  }

  .story-milestone-item {
    flex-direction: column !important;
    margin-bottom: 2.5rem !important;
  }

  .story-milestone-item:nth-child(even) {
    flex-direction: column !important;
  }

  .story-milestone-node {
    left: 10px !important;
    top: 20px !important;
    transform: none !important;
    margin-top: 0 !important;
  }

  .story-milestone-card {
    width: 100% !important;
    padding-left: 45px !important;
  }

  /* Founder Badges Repositioning for Mobile */
  .floating-founder-badge {
    position: static !important;
    margin: 10px auto !important;
    display: inline-flex !important;
    max-width: 100% !important;
    animation: none !important;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  .founder-portrait-wrap {
    max-width: 320px !important;
    margin: 0 auto 16px !important;
  }

  .who-help-grid,
  .services-interactive-grid,
  .beliefs-grid,
  .expertise-dashboard-grid,
  .social-connect-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* Horizontal Scrollable Table Wrapper */
  .table-responsive,
  .card-glass[style*="overflow-x: auto"] {
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
  }

  .table-responsive table,
  .card-glass[style*="overflow-x: auto"] table {
    min-width: 640px !important;
  }
}

/* 3. MOBILE FORM & UI GRIDS (<= 600px) */
@media (max-width: 600px) {
  /* Collapse all 2-column form grids and stat rows to 1 column */
  .form-grid-2,
  .modal-form-grid,
  form [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .dash-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .modal-window {
    width: 95% !important;
    padding: 24px 16px !important;
    border-radius: var(--radius-lg) !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 14px;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center !important;
  }

  .pricing-controls-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .pricing-switcher,
  .currency-switcher {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .pricing-switch-btn,
  .currency-switch-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.825rem;
  }
}

/* 4. COMPACT MOBILE SCREENS (<= 480px) */
@media (max-width: 480px) {
  h1, .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.35rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.03em !important;
  }

  h2 {
    font-size: clamp(1.45rem, 6.2vw, 1.85rem) !important;
    line-height: 1.25 !important;
  }

  h3 {
    font-size: clamp(1.2rem, 5vw, 1.45rem) !important;
  }

  .lead {
    font-size: 0.925rem !important;
    line-height: 1.6 !important;
  }

  .site-nav {
    height: 64px !important;
  }

  .mobile-drawer {
    top: 64px !important;
    max-height: calc(100vh - 64px) !important;
    padding: 16px 16px 28px !important;
  }

  .brand-logo-img {
    height: 30px !important;
    max-width: 145px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
    text-align: left;
  }

  .card-glass {
    padding: 20px 14px !important;
  }

  .dashboard-window {
    padding: 14px 10px !important;
    border-radius: var(--radius-md) !important;
  }

  .dash-stat-box {
    padding: 12px 10px !important;
  }

  .dash-stat-val {
    font-size: 1.35rem !important;
  }

  .dash-title-bar span {
    display: none;
  }

  .dash-title-bar::after {
    content: 'AUTOMATAIZ // PROD 01';
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
  }

  .badge-tag {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
    white-space: normal !important;
    max-width: 100% !important;
  }

  .btn-lg {
    padding: 13px 20px !important;
    font-size: 0.95rem !important;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
    padding: 12px 14px !important;
  }

  .philosophy-quote-box {
    padding: 24px 16px !important;
  }

  .philosophy-quote-box blockquote {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }

  .social-card-left {
    gap: 10px;
  }

  .social-card-icon {
    width: 40px !important;
    height: 40px !important;
  }
}

/* 5. ULTRA-SMALL HANDSETS (<= 360px) */
@media (max-width: 360px) {
  .container,
  .container-wide {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .brand-logo-img {
    height: 26px !important;
    max-width: 130px !important;
  }

  .pricing-switch-btn,
  .currency-switch-btn {
    font-size: 0.72rem !important;
    padding: 6px 4px !important;
  }

  .price-num {
    font-size: 2.2rem !important;
  }
}

/* ====================================================================
   TRUST CENTER & PRIVACY POLICY STYLES
   ==================================================================== */
.policy-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--grad-brand);
  z-index: 1500;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--green-primary);
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: flex-start;
  position: relative;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 24px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.policy-toc-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.policy-toc-link {
  display: block;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border-left: 2px solid transparent;
  line-height: 1.35;
}

.policy-toc-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.policy-toc-link.active {
  color: var(--green-primary);
  background: var(--green-subtle);
  border-left-color: var(--green-primary);
  font-weight: 600;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.policy-section {
  scroll-margin-top: 100px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3.5vw, 3rem);
  position: relative;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.policy-section:hover {
  border-color: var(--border-glass);
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
}

.policy-section-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow-primary);
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.policy-section h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: #FFFFFF;
}

.policy-body {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.policy-body p {
  margin-bottom: 1rem;
}

.policy-body p:last-child {
  margin-bottom: 0;
}

.policy-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 1rem 0 1.25rem;
}

.policy-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.policy-body ul li svg {
  color: var(--green-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.policy-callout {
  background: linear-gradient(135deg, rgba(25, 176, 0, 0.08) 0%, rgba(255, 198, 26, 0.04) 100%);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 1.5rem 0;
}

.policy-callout.yellow {
  background: linear-gradient(135deg, rgba(255, 198, 26, 0.08) 0%, rgba(25, 176, 0, 0.04) 100%);
  border-color: var(--yellow-border);
}

.policy-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 1.5rem 0;
}

.policy-data-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}

.policy-data-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ====================================================================
   DEBASISH KABI – FOUNDER PAGE LUXURY DESIGN SYSTEM
   ==================================================================== */

.founder-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.founder-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.founder-hero-content {
  position: relative;
  z-index: 2;
}

.founder-hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.hero-highlight-green {
  color: var(--green-primary);
  display: inline-block;
}

.hero-highlight-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.founder-hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 620px;
}

.founder-quick-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.quick-metric-item {
  display: flex;
  flex-direction: column;
}

.quick-metric-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.quick-metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Portrait Visual Area */
.founder-portrait-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.founder-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1.12;
  border-radius: 28px;
  overflow: hidden;
  background: #0D1117;
  border: 2px solid transparent;
  background-image: linear-gradient(#0D1117, #0D1117), linear-gradient(135deg, rgba(25, 176, 0, 0.8), rgba(255, 198, 26, 0.8));
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(25, 176, 0, 0.25);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.founder-portrait-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 198, 26, 0.35);
}

.founder-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--transition-smooth);
}

.founder-portrait-frame:hover .founder-portrait-img {
  transform: scale(1.03);
}

.founder-halo-green {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(25, 176, 0, 0.35) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.founder-halo-yellow {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 198, 26, 0.30) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.floating-founder-badge {
  position: absolute;
  z-index: 4;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-founder-badge.top-right {
  top: 20px;
  right: -20px;
  border-color: var(--green-border);
  animation-delay: 0.5s;
}

.floating-founder-badge.bottom-left {
  bottom: 25px;
  left: -25px;
  border-color: var(--yellow-border);
  animation-delay: 1.2s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* Timeline Journey */
.story-timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
}

.story-timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--green-primary) 0%, var(--yellow-primary) 50%, var(--green-primary) 100%);
  opacity: 0.4;
}

@media (min-width: 768px) {
  .story-timeline-wrap::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.story-milestone-item {
  position: relative;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .story-milestone-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .story-milestone-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.story-milestone-node {
  position: absolute;
  left: 18px;
  top: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #050505;
  border: 3px solid var(--green-primary);
  box-shadow: 0 0 16px var(--green-glow-strong);
  z-index: 3;
}

.story-milestone-item:nth-child(even) .story-milestone-node {
  border-color: var(--yellow-primary);
  box-shadow: 0 0 16px var(--yellow-glow);
}

@media (min-width: 768px) {
  .story-milestone-node {
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -11px;
  }
}

.story-milestone-card {
  width: 100%;
  padding-left: 55px;
}

@media (min-width: 768px) {
  .story-milestone-card {
    width: 44%;
    padding-left: 0;
  }
}

/* Who I Help Cards */
.who-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.who-help-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.who-help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.who-help-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-border);
  box-shadow: var(--shadow-green);
}

.who-help-card:hover::before {
  opacity: 1;
}

.who-help-card.yellow-accent::before {
  background: linear-gradient(90deg, var(--yellow-primary), transparent);
}

.who-help-card.yellow-accent:hover {
  border-color: var(--yellow-border);
  box-shadow: var(--shadow-yellow);
}

.who-pain-box {
  background: rgba(255, 60, 60, 0.05);
  border-left: 3px solid rgba(255, 80, 80, 0.4);
  padding: 10px 14px;
  border-radius: 4px;
  margin: 12px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.who-outcome-box {
  background: rgba(25, 176, 0, 0.06);
  border-left: 3px solid var(--green-primary);
  padding: 10px 14px;
  border-radius: 4px;
  margin-top: 8px;
  font-size: 0.88rem;
  color: #FFFFFF;
}

/* Service Expansion Grid */
.what-i-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-interactive-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
  position: relative;
}

.service-interactive-card:hover {
  transform: translateY(-5px);
  background: var(--bg-surface-elevated);
  border-color: var(--yellow-border);
  box-shadow: var(--shadow-yellow);
}

.service-interactive-card .service-deliverables {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-interactive-card .service-deliverables li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-interactive-card .service-deliverables li svg {
  color: var(--green-primary);
  flex-shrink: 0;
}

/* Vision Architecture Diagram */
.vision-ecosystem-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}

.ecosystem-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 2rem;
}

.ecosystem-col {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.ecosystem-col.old-way {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.ecosystem-col.new-way {
  background: linear-gradient(135deg, rgba(25, 176, 0, 0.08) 0%, rgba(255, 198, 26, 0.05) 100%);
  border: 1px solid var(--green-border);
  box-shadow: 0 0 40px rgba(25, 176, 0, 0.15);
}

/* Core Beliefs */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.belief-glass-card {
  background: rgba(17, 22, 29, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.belief-glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow-border);
  background: rgba(22, 29, 38, 0.85);
  box-shadow: var(--shadow-yellow);
}

.belief-number {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow-primary);
  margin-bottom: 12px;
}

/* Expertise Radial Visualizer */
.expertise-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.expertise-meter-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition-smooth);
}

.expertise-meter-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-border);
}

.radial-progress-circle {
  width: 70px;
  height: 70px;
  position: relative;
  flex-shrink: 0;
}

.radial-progress-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.radial-progress-circle circle {
  fill: none;
  stroke-width: 6;
}

.radial-progress-circle .circle-bg {
  stroke: rgba(255, 255, 255, 0.08);
}

.radial-progress-circle .circle-val {
  stroke: var(--green-primary);
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-in-out;
}

.radial-progress-circle.yellow .circle-val {
  stroke: var(--yellow-primary);
}

.radial-percent-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Philosophy Epic Quote Box */
.philosophy-quote-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(25, 176, 0, 0.12) 0%, rgba(5, 5, 5, 0.95) 70%);
}

.philosophy-quote-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 60px 40px;
  background: rgba(13, 17, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--yellow-border);
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 198, 26, 0.15);
}

.quote-mark-icon {
  width: 50px;
  height: 50px;
  color: var(--yellow-primary);
  opacity: 0.7;
  margin-bottom: 24px;
}

.philosophy-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 30px;
  letter-spacing: -0.015em;
}

.philosophy-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.philosophy-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.philosophy-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Social Connect Cards */
.social-connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.social-connect-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-smooth);
}

.social-connect-card:hover {
  transform: translateY(-4px);
  background: var(--bg-surface-elevated);
  border-color: var(--yellow-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 198, 26, 0.2);
}

.social-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.social-connect-card:hover .social-card-icon {
  background: var(--grad-brand);
  color: #050505;
}

.social-card-info h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.social-card-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-card-arrow {
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.social-connect-card:hover .social-card-arrow {
  transform: translateX(4px);
  color: var(--yellow-primary);
}

/* Master responsive rules handle founder layout */

/* ====================================================================
   MODALS & OVERLAYS SYSTEM
   ==================================================================== */
.modal-overlay,
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open,
.modal-overlay.active,
.modal-backdrop.open,
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-window {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: #0D1117;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(25, 176, 0, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-window,
.modal-backdrop.active .modal-window {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-close,
.modal-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover,
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* Toast Engine */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  background: #0D1117;
  border: 1px solid var(--green-border);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  color: #FFFFFF;
  font-size: 0.9rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(25, 176, 0, 0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}


