/* ═══════════════════════════════════════════════
   VYNTRA — styles.css
   Premium Tech Landing Page Stylesheet
═══════════════════════════════════════════════ */

/* ── 0. DESIGN TOKENS ── */
:root {
  /* DARK THEME (Default) */
  --red: #FF3C3C;
  --red-light: #FF5F5F;
  --red-dark: #cc3030;
  --red-glow: rgba(255, 60, 60, 0.25);
  --red-subtle: rgba(255, 60, 60, 0.08);

  --white: #050505;
  --off-white: #080808;
  --grey-50: #0a0a0a;
  --grey-100: #121212;
  --grey-200: #1a1a1a;
  --grey-300: #2a2a2a;
  --grey-400: #4a4a4a;
  --grey-500: #888888;
  --grey-600: #a0a0a0;
  --grey-700: #d1d1d1;
  --grey-800: #e4e4e4;
  --grey-900: #ffffff;
  --black: #000000;

  --bg-glass: rgba(13, 13, 13, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --card-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
}


:root {
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 0 30px rgba(255, 60, 60, 0.2);

  --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);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 80px;
}

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

html,
body {
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--grey-700);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ── 2. TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--grey-900);
}

/* ── 3. UTILITY CLASSES ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  border: 1px solid rgba(255, 60, 60, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--grey-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 3.1 ICON UTILITIES ── */
.icon-svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: middle;
}

.icon-sm { font-size: 1rem; }
.icon-md { font-size: 1.5rem; }
.icon-lg { font-size: 2rem; }
.icon-xl { font-size: 2.5rem; }

.icon-red { color: var(--red); }
.icon-grey { color: var(--grey-500); }


/* ── 4. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition-spring);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary::after {
  background: rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 60, 60, 0.35);
}

.btn-primary:hover::after {
  opacity: 1;
}

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

.btn-outline {
  background: transparent;
  color: var(--grey-800);
  border: 1.5px solid var(--grey-300);
}

.btn-outline:hover {
  border-color: var(--grey-600);
  background: var(--grey-50);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── 4.1 THEME TOGGLE ── */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grey-100);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
  color: var(--grey-600);
  margin: 0 8px;
}

.theme-toggle:hover {
  background: var(--grey-200);
  color: var(--red);
  transform: rotate(15deg) scale(1.1);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

body.light-mode .theme-toggle .icon-sun { display: block; }
body.light-mode .theme-toggle .icon-moon { display: none; }

/* ── 5. NAVBAR ── */
.navbar {
  position: fixed; /* Consistently fixed across all mobile/tablet devices */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
  padding: 0 32px;
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--grey-900);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-600);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--grey-900);
}

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-700);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span {
  background: var(--grey-900); /* Force extreme contrast when menu is open */
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ── 6. HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  background: var(--off-white);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 60, 60, 0.12), transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 60, 60, 0.08), transparent 70%);
  bottom: -80px;
  left: -80px;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 200, 230, 0.2), transparent 70%);
  top: 40%;
  right: 20%;
  animation-delay: -6s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-20px, 20px) scale(1.05);
  }

  66% {
    transform: translate(20px, -15px) scale(0.95);
  }
}

.hero-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center; /* Ensure internal items are centered */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-600);
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(16px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4.5rem); /* Slightly reduced max size */
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--grey-900);
  line-height: 1.1; /* Increased from 1.05 for better multi-line legibility */
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  text-wrap: balance; /* Prevent awkward single-word wraps */
}

@media (max-width: 500px) {
  .hero-headline {
    font-size: 2.1rem; /* Slightly smaller for tighter screens */
    line-height: 1.2;
    padding: 0 10px;
  }
}

.dot-accent {
  color: var(--red);
  font-weight: 900;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fadeUp 0.6s 0.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-sub strong {
  color: var(--grey-800);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.6s 0.3s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 500px) {
  .hero-cta-group {
    flex-direction: column;
    padding: 0 20px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 24px 40px;
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.6s 0.4s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  max-width: 100%; /* Ensure it doesn't overflow container */
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--grey-900);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--grey-500);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--grey-200);
  flex-shrink: 0;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--grey-400);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 0.6s 0.8s ease forwards, scrollBounce 2s 1.5s ease-in-out infinite;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--grey-300), transparent);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── 7. SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.why-item {
  position: relative;
  padding: 48px 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border-right: 1.5px solid var(--border-glass);
}

.why-item:last-child {
  border-right: none;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { border-right: none; border-bottom: 1.5px solid var(--border-glass); }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-child(odd) { border-right: 1.5px solid var(--border-glass); }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; border-bottom: 1.5px solid var(--border-glass); }
  .why-item:last-child { border-bottom: none; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  animation: cardReveal 0.6s ease forwards;
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:nth-child(1) {
  animation-delay: 0s;
}

.service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:nth-child(3) {
  animation-delay: 0.2s;
}

.service-card:nth-child(4) {
  animation-delay: 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--red-subtle), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: rgba(255, 60, 60, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 60, 60, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .card-icon-wrap {
  background: var(--red-subtle);
  border-color: rgba(255, 60, 60, 0.3);
  color: var(--red);
}

.card-icon {
  width: 26px;
  height: 26px;
  color: var(--grey-600);
  transition: var(--transition);
}

.service-card:hover .card-icon {
  color: var(--red);
}

.service-card-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
}

.card-accent-line {
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  transition: width 0.4s ease;
}

.service-card:hover .card-accent-line {
  width: 56px;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--grey-900);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grey-600);
  background: var(--grey-100);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  transition: var(--transition);
}

.service-card:hover .tag {
  background: var(--red-subtle);
  color: var(--red);
}

.card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
  align-self: flex-start;
}

.card-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--grey-500);
  transition: var(--transition);
}

.service-card:hover .card-arrow {
  background: var(--red);
  transform: translateX(4px);
}

.service-card:hover .card-arrow svg {
  color: var(--white);
}

/* ── 8. ABOUT ── */
.about {
  padding: 160px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Symmetrical split */
  gap: 80px;
  align-items: center; 
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.about-card-stack {
  position: relative;
  width: 440px;
  height: 440px;
}

.about-glyph {
  position: absolute;
  inset: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  cursor: pointer;
}

.about-glyph:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 60, 60, 0.2);
  border-color: rgba(255, 60, 60, 0.3);
}

.about-logo-icon {
  width: 160px;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: logoFloat 6s ease-in-out infinite;
}

.about-glyph:hover .about-logo-icon {
  transform: scale(1.1);
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-content {
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  padding: 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 3;
  margin-left: 0; /* Removed overlap */
  position: relative;
}

.about-pillars {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Initial split, becomes 3-col on wider? No, let's go 3-col horizontal */
  gap: 16px;
}

/* ── 8.1 ABOUT RESPONSIVE ── */
@media (min-width: 1200px) {
  .about-pillars { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1200px) {
  .about-inner { gap: 40px; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .about { padding: 100px 0; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .about-visual { transform: none; }
  .about-card-stack { width: 320px; height: 320px; margin: 0 auto; }
  .about-content {
    margin-left: 0;
    padding: 40px 30px;
  }
  .about-pillars {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 32px auto 0;
    text-align: left;
  }
}

@media (max-width: 500px) {
  .about-card-stack { width: 280px; height: 280px; }
}

/* ── 9. PROCESS (Bento Style) ── */
.process {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .p-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.process-item {
  position: relative;
  padding: 48px 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  transition: var(--transition-spring);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}

.process-item:nth-child(1),
.process-item:nth-child(4) { 
  grid-column: span 2; 
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-item,
  .process-item:nth-child(1),
  .process-item:nth-child(4) {
    grid-column: auto;
    padding: 32px 24px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .process { padding: 80px 0; }
  .process-step { font-size: 2rem; top: 24px; left: 24px; }
  .process-item { padding: 24px 20px; }
}

.process-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(255, 60, 60, 0.15);
}

.process-step {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 60, 60, 0.1);
  line-height: 1;
  font-family: var(--font-display);
}

.process-item h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.process-item p {
  font-size: 1rem;
  color: var(--grey-500);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.pillar:hover {
  border-color: rgba(255, 60, 60, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar strong {
  font-size: 0.92rem;
  color: var(--grey-800);
  font-weight: 700;
}

.pillar span {
  font-size: 0.82rem;
  color: var(--grey-500);
}

/* ── 9. WHY US ── */
.why-us {
  padding: 120px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-item {
  padding: 48px 36px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.why-item.visible {
  animation: fadeUp 0.6s ease forwards;
}

.why-item:not(:last-child) {
  border-right: 1.5px solid var(--grey-200);
}

.why-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 0 0 2px 2px;
}

.why-item:hover {
  background: var(--grey-50);
}

.why-item:hover::before {
  transform: scaleX(1);
}

.why-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 12px;
  font-family: var(--font-primary);
}

.why-item p {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.75;
}

/* ── 10. COMING SOON ── */
.coming-soon {
  padding: 120px 0;
  background: #050505; /* Force dark background for teaser visibility */
  position: relative;
  overflow: hidden;
}

.cs-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(255, 60, 60, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(255, 60, 60, 0.08) 0%, transparent 50%);
  animation: csShift 6s ease-in-out infinite alternate;
}

@keyframes csShift {
  from {
    transform: scale(1) rotate(0deg);
  }

  to {
    transform: scale(1.1) rotate(2deg);
  }
}

.cs-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cs-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.cs-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.cs-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: #FFFFFF !important;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.cs-sub {
  color: rgba(255, 255, 255, 0.8) !important;
}

.cnum {
  color: #FFFFFF !important;
}

.clabel {
  color: rgba(255, 255, 255, 0.6) !important;
}

.cs-gradient-text {
  background: linear-gradient(135deg, var(--red-light) 0%, #FF3C3C 60%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.cs-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cs-email-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.cs-email-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.cs-email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cs-email-input:focus {
  border-color: rgba(255, 60, 60, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.cs-countdown {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  min-width: 90px;
}

.cnum {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.clabel {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── 11. CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--grey-50);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label {
  margin-bottom: 16px;
}

.contact-info .section-title {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-sub {
  color: var(--grey-500);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-detail-item:hover {
  border-color: rgba(255, 60, 60, 0.25);
  box-shadow: var(--shadow-sm);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--red-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.contact-detail-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--grey-900);
  margin-bottom: 2px;
}

.contact-detail-item span {
  font-size: 0.85rem;
  color: var(--grey-500);
}

/* ── 12. FORM ── */
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-700);
  letter-spacing: 0.01em;
}

.form-input {
  padding: 14px 18px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--grey-800);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--grey-400);
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%236E6E7C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: #16a34a;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

/* ── 13. FOOTER ── */
.footer {
  background: var(--black);
  padding: 80px 32px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s;
}

.footer-link:hover {
  color: var(--grey-900);
}

.footer-link-plain {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── 14. SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 15. RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    order: -1;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .why-item:not(:last-child) {
    border-right: none;
    border-bottom: 1.5px solid var(--grey-200);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-item:nth-child(odd):not(:last-child) {
    border-right: 1.5px solid var(--grey-200);
  }

  /* Reduce large paddings for mobile/tablet density */
  .services, .why-us, .contact, .about, .process {
    padding: 80px 0 !important;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    height: 100vh;
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 80px 24px 24px;
    gap: 16px;
    z-index: 999;
    animation: menuFadeIn 0.4s ease forwards;
  }

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

  .nav-links.mobile-open .nav-link {
    padding: 20px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--grey-900);
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links.mobile-open .nav-link:last-child {
    border-bottom: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    background: var(--grey-200);
    opacity: 0.5;
  }

  .stat-item {
    padding: 4px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-card-stack {
    width: 260px;
    height: 280px;
  }

  .about-ring-1 {
    width: 300px;
    height: 300px;
  }

  .about-ring-2 {
    width: 360px;
    height: 360px;
  }

  .about-badge-1 {
    left: 0;
  }

  .about-badge-2 {
    right: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item:not(:last-child) {
    border-right: none;
    border-bottom: 1.5px solid var(--grey-200);
  }

  .contact-form {
    padding: 28px 24px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .cs-countdown {
    gap: 12px;
  }

  .countdown-block {
    padding: 16px 20px;
    min-width: 70px;
  }

  .cnum {
    font-size: 1.8rem;
  }

  .services, .why-us, .contact, .about, .process, .coming-soon {
    padding: 60px 0 !important;
  }
  
  .section-header {
    margin-bottom: 40px;
  }

  .nav-container {
    padding: 0 4px; /* Ensure tiny screens don't push logo too far */
  }

  /* Force center for hero content on mobile */
  .hero-container {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    text-align: center;
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .cs-email-row {
    flex-direction: column;
  }

  .cs-email-input {
    min-width: 100%;
  }

  .hero-stats {
    width: 100%;
  }

  .navbar {
    padding: 0 16px;
  }
}

/* ── 16. CURSOR GLOW (desktop only) ── */
@media (pointer: fine) {
  .service-card {
    --mx: 50%;
    --my: 50%;
  }

  .service-card:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(200px circle at var(--mx) var(--my), rgba(255, 60, 60, 0.05), transparent);
    pointer-events: none;
  }
}

/* ── 17. CUSTOM SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--grey-100);
}

::-webkit-scrollbar-thumb {
  background: var(--grey-300);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* ── 18. SELECTION ── */
::selection {
  background: rgba(255, 60, 60, 0.15);
  color: var(--grey-900);
}

/* ==========================================================================
   PRELOADER - OBSIDIAN LENS
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050505;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

#preloader.preloader-hidden {
  transform: translateY(-100%);
}

.preloader-content {
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  opacity: 0;
  animation: fadeInPreloader 1s ease forwards 0.3s;
}

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

.preloader-logo-wrapper {
  margin-bottom: 0.5rem;
}

.preloader-logo-glitch {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: logoPulse 2.5s ease-in-out infinite;
}

.preloader-services {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #222;
  width: 100%;
  padding: 0 20px;
  flex-wrap: wrap; /* Fallback for very small screens */
}

@media (max-width: 600px) {
  .preloader-services {
    gap: 0.8rem;
    letter-spacing: 0.1em;
  }
}

.service-item {
  font-size: 1.1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .service-item {
    font-size: 0.8rem;
  }
}

.service-item.active {
  color: var(--red);
  text-shadow: 0 0 20px rgba(255, 60, 60, 0.4);
  transform: scale(1.1);
}

.preloader-loader-container {
  width: 100%;
  max-width: 280px;
  position: relative;
}

.preloader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.preloader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--red);
  box-shadow: 0 0 15px var(--red);
}

.preloader-percentage {
  margin-top: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: brightness(0) invert(1) drop-shadow(0 0 0px rgba(255, 255, 255, 0)); }
  50% { transform: scale(1.12); filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(255, 255, 255, 0.35)); }
}

/* Scroll Lock */
body.scroll-locked {
  overflow: hidden !important;
  height: 100vh !important;
}

/* ==========================================================================
   VISION NOTE - FOUNDER'S GALLERY
   ========================================================================== */
.vision-note {
  position: relative;
  min-height: 85vh;
  background: url('founder_bg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    #050505 0%, 
    rgba(5, 5, 5, 0.9) 30%, 
    rgba(5, 5, 5, 0.5) 70%,
    rgba(5, 5, 5, 0.2) 100%
  );
  z-index: 1;
}

.vision-inner {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.vision-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.vision-content {
  max-width: 950px;
}

.vision-quote-mark {
  font-family: 'Poppins', sans-serif;
  font-size: 10rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: -3rem;
  margin-left: -0.8rem;
  font-weight: 800;
  opacity: 0.9;
  user-select: none;
}

.vision-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 6vw, 4.2rem); /* Reduced lower clamp for mobile */
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  color: var(--grey-900);
  text-transform: uppercase;
  margin-bottom: 4rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.vision-signature {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.signature-line {
  width: 80px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

.signature-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.founder-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--grey-900);
}

.founder-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--grey-500);
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .vision-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .vision-note {
    min-height: 70vh;
    padding: 80px 0;
    background-position: 70% center;
  }
  .vision-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.95) 0%,
      rgba(5, 5, 5, 0.7) 100%
    );
  }
  .vision-quote-mark {
    font-size: 7rem;
    margin-bottom: -1.5rem;
  }
  .vision-text {
    margin-bottom: 2.5rem;
    font-size: 1.85rem; /* Explicit size for small screens */
    line-height: 1.2;
  }
  .vision-signature {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .signature-line {
    width: 40px;
  }
}
