/* ========================================
   BYTENDO AI STUDIO - CSS STYLESHEET
   ======================================== */

/* === FONT IMPORTS === */
/* Fonts loaded via <link> tags in HTML for performance */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --color-bg: #0A041A;
  --color-bg-card: #180B38;
  --color-bg-card-alt: #1F0E4A;
  --color-bg-elevated: #241154;
  --color-bg-input: #2B1466;
  --color-border: #3D1E8D;
  --color-border-light: #5229BD;
  --color-border-subtle: #2F176E;
  --color-primary: #8A58FF;
  --color-primary-dim: #3D1E8D;
  --color-primary-glow: rgba(138, 88, 255, 0.15);
  --color-primary-border: rgba(138, 88, 255, 0.3);
  --color-text: #ffffff;
  --color-text-secondary: #c2b5e6;
  --color-text-muted: #9d8fd0;
  --color-accent-light: #C4A8FF;
  --font-heading: 'Inter Tight', sans-serif;
  --font-body: 'Switzer', 'Inter Tight', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --max-width: 1320px;
  --section-padding: 120px 60px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

@media (hover: none),
(pointer: coarse) {

  *,
  *::before,
  *::after {
    cursor: auto !important;
  }

  .cursor-glow {
    display: none !important;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-secondary);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === CUSTOM CURSOR === */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #562dae 0%, #8A58FF 100%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.2s cubic-bezier(0.16, 1, 0.3, 1), height 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: left, top, width, height;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* === UTILITY === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 30%, #C4A8FF 70%, #8A58FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient text effect for headings */
.gradient-text {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 30%, #C4A8FF 70%, #8A58FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.section-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  max-width: 600px;
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* === NAVIGATION === */
.nav-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(17, 8, 39, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 8px 8px 20px;
  max-width: 780px;
  width: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 20px;
  height: 20px;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-left: 8px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-border-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 20px;
  height: 1.5px;
  background: #8FA4B5;
  /* Soft blueish grey matching reference */
  transition: transform var(--transition-fast);
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  width: 800px;
  height: 600px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(138, 88, 255, 0.15) 0%, rgba(138, 88, 255, 0.05) 40%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 400px;
  top: 30%;
  left: 20%;
  background: radial-gradient(ellipse, rgba(77, 30, 173, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-3 {
  position: absolute;
  width: 500px;
  height: 400px;
  top: 20%;
  right: 15%;
  background: radial-gradient(ellipse, rgba(102, 51, 238, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-border {
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin: 8px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 20%, #C4A8FF 65%, #8A58FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(138, 88, 255, 0.1);
  border-color: var(--color-border-light);
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  background: linear-gradient(135deg, rgba(138, 88, 255, 0.2), rgba(138, 88, 255, 0.05));
  border: 1px solid rgba(138, 88, 255, 0.3);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(138, 88, 255, 0.3), rgba(138, 88, 255, 0.1));
  border-color: rgba(138, 88, 255, 0.5);
}

/* === SECOND HERO (About) === */
.about-hero {
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
}

.about-hero .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(100px, 20vw, 300px);
  font-weight: 400;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 20%, #C4A8FF 65%, #8A58FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.about-hero h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 32px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #FFFFFF 0%, #c0c0c0 30%, #C4A8FF 70%, #8A58FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero .btn-outline {
  margin: 0 auto;
}

/* === SERVICES SECTION === */
.services {
  padding: var(--section-padding);
}

.services .section-header {
  margin-bottom: 60px;
}

/* Old service-card grid/mockup styles removed — replaced by bento grid below */




/* === BENTO GRID (NEW SERVICES) === */












.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(138, 88, 255, 0.08);
  border-color: rgba(138, 88, 255, 0.25);
}

.bento-visual {
  height: 240px;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bento-content {
  padding: 28px;
}

.bento-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.bento-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Shared Bento Animations */
@keyframes bentoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes bentoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(138, 88, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(138, 88, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(138, 88, 255, 0);
  }
}

@keyframes bentoSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bentoFillBar {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

/* --- Bento: App Development --- */
.app-frame {
  width: 100px;
  height: 180px;
  border: 4px solid var(--color-border);
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-frame::before {
  content: '';
  position: absolute;
  top: 0;
  width: 40px;
  height: 10px;
  background: var(--color-border);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.app-icon {
  width: 40px;
  height: 40px;
  fill: var(--color-primary);
  animation: bentoFloat 3s ease-in-out infinite;
  margin-bottom: 20px;
}

.app-loading-track {
  width: 60px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.app-loading-bar {
  height: 100%;
  background: var(--color-primary);
  animation: bentoFillBar 2s ease-out forwards infinite alternate;
}

.app-status {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  animation: bentoPulse 2s infinite;
}

/* --- Bento: Web Development --- */
.web-browser {
  width: 200px;
  height: 140px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  background: var(--color-bg-elevated);
  position: relative;
}

.web-header {
  height: 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 4px;
}

.web-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border-light);
}

.web-dot:nth-child(1) {
  background: #ff5f56;
}

.web-dot:nth-child(2) {
  background: #ffbd2e;
}

.web-dot:nth-child(3) {
  background: #27c93f;
}

.web-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.web-block {
  height: 10px;
  background: var(--color-border);
  border-radius: 4px;
  animation: bentoCascadeIn 2s infinite alternate;
  opacity: 0.5;
}

@keyframes bentoCascadeIn {
  to {
    opacity: 1;
    background: var(--color-border-light);
  }
}

.web-brackets {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: bold;
  font-family: monospace;
  animation: bentoFloat 4s ease-in-out infinite;
}

/* --- Bento: MVP Development --- */
.mvp-timeline {
  display: flex;
  align-items: center;
  position: relative;
  width: 80%;
  justify-content: space-between;
}

.mvp-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  z-index: 1;
  transform: translateY(-50%);
}

.mvp-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  border: 2px solid var(--color-border-light);
  z-index: 2;
  position: relative;
  transition: all 0.3s;
  animation: bentoLightUp 3s infinite;
}

.mvp-node:nth-child(2) {
  animation-delay: 1s;
}

.mvp-node:nth-child(3) {
  animation-delay: 2s;
}

@keyframes bentoLightUp {
  50% {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
  }
}

.mvp-rocket {
  width: 24px;
  height: 24px;
  fill: var(--color-text);
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 3;
  animation: bentoRocketFly 3s infinite;
}

@keyframes bentoRocketFly {
  0% {
    left: 0;
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    left: 90%;
    transform: translateY(0);
  }
}

.mvp-badge {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background: rgba(138, 88, 255, 0.1);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(138, 88, 255, 0.3);
}

/* --- Bento: UI/UX Optimization --- */
.ui-grid {
  width: 180px;
  height: 120px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr 2fr;
  gap: 8px;
  position: relative;
}

.ui-box {
  border: 1px dashed var(--color-border-light);
  border-radius: 6px;
  transition: all 0.5s;
  animation: bentoWireToSolid 4s infinite alternate;
}

.ui-cta {
  background: transparent;
  border: 1px dashed var(--color-border-light);
  border-radius: 6px;
  animation: bentoCtaGlow 4s infinite alternate;
}

@keyframes bentoWireToSolid {
  100% {
    border-style: solid;
    background: var(--color-bg-elevated);
    border-color: var(--color-border);
  }
}

@keyframes bentoCtaGlow {
  100% {
    border-style: solid;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(138, 88, 255, 0.4);
  }
}

.ui-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 10;
  animation: bentoMoveCursor 4s infinite alternate;
  fill: var(--color-text);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes bentoMoveCursor {
  0% {
    top: 100%;
    left: 100%;
  }

  100% {
    top: 60%;
    left: 60%;
  }
}

/* --- Bento: AI Automation --- */
.ai-network {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ai-gear {
  position: absolute;
  width: 30px;
  height: 30px;
  fill: var(--color-border-light);
  top: 20px;
  right: 20px;
  animation: bentoSpin 4s linear infinite;
}

.ai-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-primary);
  animation: bentoTravel 3s infinite ease-in-out;
}

@keyframes bentoTravel {
  0% {
    top: 30%;
    left: 30%;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    top: 70%;
    left: 70%;
    opacity: 0;
  }
}

/* --- Bento: Predictive Analysis --- */
.pa-dashboard {
  width: 200px;
  height: 120px;
  border-left: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  position: relative;
  display: flex;
  align-items: flex-end;
}

.pa-chart {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: bentoDrawLine 3s forwards infinite;
}

@keyframes bentoDrawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.pa-badge {
  position: absolute;
  top: 10px;
  right: 20px;
  background: #4ade80;
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  animation: bentoFloat 2.5s infinite;
}

.pa-crosshair {
  position: absolute;
  right: -8px;
  top: 15px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(138, 88, 255, 0.5);
}

.pa-crosshair::after {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* --- Bento: Data Analysis --- */
.da-widget {
  width: 220px;
  height: 140px;
  background-image: linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 10px;
  box-sizing: border-box;
}

.da-pie {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(var(--color-primary) 0% 60%, var(--color-border-light) 60% 100%);
  border: 2px solid var(--color-bg-card);
}

.da-bar {
  width: 20px;
  background: var(--color-border-light);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  animation: bentoGrowBar 2s ease-out infinite alternate;
}

.da-bar:nth-child(2) {
  background: var(--color-primary);
  animation-delay: 0.2s;
  height: 60%;
}

.da-bar:nth-child(3) {
  animation-delay: 0.4s;
  height: 40%;
}

.da-bar:nth-child(4) {
  animation-delay: 0.6s;
  height: 80%;
}

.da-bar:nth-child(5) {
  animation-delay: 0.8s;
  height: 50%;
}

@keyframes bentoGrowBar {
  0% {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* --- Bento: Technical Consultancy --- */
.tc-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.tc-bubble {
  width: 80px;
  height: 60px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tc-bubble-1 {
  border-radius: 16px 16px 0 16px;
  left: 30%;
  top: 35%;
  z-index: 2;
}

.tc-bubble-2 {
  border-radius: 16px 16px 16px 0;
  right: 30%;
  bottom: 35%;
  border-color: var(--color-primary);
  z-index: 1;
  opacity: 0.8;
}

.tc-circuit {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--color-border-light) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.3;
}

.tc-bulb {
  position: absolute;
  width: 30px;
  height: 30px;
  fill: var(--color-accent-light);
  z-index: 3;
  animation: bentoPulseGlow 2s infinite alternate;
  filter: drop-shadow(0 0 5px var(--color-primary));
}

@keyframes bentoPulseGlow {
  to {
    filter: drop-shadow(0 0 15px var(--color-primary));
    transform: scale(1.1);
  }
}

/* --- Bento: Deployment & Support --- */
.ds-servers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.ds-server {
  width: 100px;
  height: 24px;
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  background: var(--color-bg-elevated);
  display: flex;
  align-items: center;
  padding: 0 8px;
  justify-content: flex-end;
  gap: 4px;
}

.ds-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
}

.ds-server:nth-child(2) .ds-led:last-child {
  background: #4ade80;
  box-shadow: 0 0 5px #4ade80;
}

.ds-arrow {
  position: absolute;
  right: -40px;
  top: 20px;
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
  animation: bentoFloatUp 2s infinite;
}

@keyframes bentoFloatUp {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

.ds-sync {
  position: absolute;
  left: -30px;
  top: 25px;
  width: 20px;
  height: 20px;
  fill: var(--color-text-muted);
  animation: bentoSpin 3s linear infinite;
}

.ds-pill {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #4ade80;
  color: #4ade80;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(74, 222, 128, 0.1);
}

.ds-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: bentoPulse 2s infinite;
}

/* === PROCESS SECTION === */
.process {
  padding: var(--section-padding);
}

.process .section-header {
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.process-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.process-card:hover {
  border-color: rgba(138, 88, 255, 0.15);
}

.process-card-visual {
  height: 280px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.process-card-content {
  padding: 28px;
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Process card visuals */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 100%;
  align-content: center;
}

.icon-box {
  aspect-ratio: 1;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box.highlight {
  background: var(--color-primary);
}

.icon-box img {
  width: 24px;
  height: 24px;
  opacity: 0.4;
}

.icon-box.highlight img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* Code editor visual */
.code-editor {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.code-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}

.code-dots {
  display: flex;
  gap: 6px;
}

.code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border-light);
}

.code-tabs {
  display: flex;
  gap: 4px;
}

.code-tab {
  font-size: 12px;
  color: var(--color-text-muted);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.code-tab.active {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
}

.code-body {
  padding: 16px;
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
  overflow: hidden;
}

.code-line-num {
  color: var(--color-text-muted);
  margin-right: 16px;
  user-select: none;
  display: inline-block;
  width: 16px;
  text-align: right;
}

.code-tag {
  color: var(--color-primary);
}

.code-attr {
  color: #C4A8FF;
}

.code-str {
  color: #9c9c9c;
}

.code-highlight {
  background: rgba(138, 88, 255, 0.1);
  border: 1px solid rgba(138, 88, 255, 0.3);
  border-radius: 4px;
  padding: 1px 4px;
}

/* Metrics list visual */
.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  justify-content: center;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
}

.metric-row .metric-label {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.metric-row .metric-value {
  font-size: 13px;
  color: var(--color-text-muted);
}

.metric-row .metric-value.positive {
  color: #4ade80;
}

/* === STATISTICS SECTION === */
.statistics {
  padding: var(--section-padding);
}

.statistics .section-header {
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition-base);
}

.stat-card:hover {
  border-color: rgba(138, 88, 255, 0.15);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.stat-bar {
  width: 100%;
  height: 2px;
  background: var(--color-border);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 16px;
}

.stat-bar-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 1px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-description {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* === TEAM SECTION === */
.team {
  padding: var(--section-padding);
}

.team .section-header {
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-base);
}

.team-card:hover {
  border-color: rgba(138, 88, 255, 0.15);
  transform: translateY(-4px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-elevated);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* === PRICING SECTION === */
.pricing {
  padding: var(--section-padding);
  text-align: center;
}

.pricing .section-header {
  margin-bottom: 16px;
}

.pricing-subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.pricing-toggle {
  display: inline-flex;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 48px;
}

.pricing-toggle button {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.pricing-toggle button.active {
  color: var(--color-text);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base);
}

.pricing-card:hover {
  border-color: rgba(138, 88, 255, 0.15);
}

.pricing-card.featured {
  border-color: rgba(138, 88, 255, 0.3);
  background: linear-gradient(180deg, rgba(138, 88, 255, 0.03) 0%, var(--color-bg-card) 100%);
}

.pricing-tier {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 16px;
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.pricing-price .period {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

.pricing-cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  margin-bottom: 28px;
  transition: all var(--transition-fast);
}

.pricing-cta:hover {
  background: rgba(138, 88, 255, 0.1);
  border-color: var(--color-border-light);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.pricing-feature .check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-feature .check img {
  width: 100%;
  height: 100%;
}

/* === REVIEWS SECTION === */
.reviews {
  padding: var(--section-padding);
  overflow: hidden;
}

.reviews .section-header {
  margin-bottom: 48px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: scrollReviews 30s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  flex-shrink: 0;
  width: 400px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition-base);
}

.review-card:hover {
  border-color: rgba(138, 88, 255, 0.15);
}

.review-text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: normal;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-elevated);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.reviewer-title {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* === FAQ (ANSWERS) SECTION === */
.faq {
  padding: var(--section-padding);
  text-align: center;
}

.faq .section-header {
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(138, 88, 255, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 150px;
  opacity: 1;
}

/* === CONTACT SECTION === */
.contact {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 48px;
}

.contact-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.contact-block:last-child {
  border-bottom: none;
}

.contact-block-label {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.contact-block p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
}

.contact-block .contact-email {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-primary);
  transition: opacity var(--transition-fast);
}

.contact-block .contact-email:hover {
  opacity: 0.8;
}

.contact-block .contact-phone {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-text);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  background: rgba(138, 88, 255, 0.1);
  border: 1px solid rgba(138, 88, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 32px;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
}

.submit-btn:hover {
  background: rgba(138, 88, 255, 0.2);
  border-color: rgba(138, 88, 255, 0.5);
}

/* === FOOTER === */
footer {
  padding: 40px 60px;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  width: 20px;
  height: 20px;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--color-border-light);
  background: rgba(138, 88, 255, 0.1);
}

.footer-socials a img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-text);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  /* Spreads the 4 sections across the footer */
  align-items: center;
  flex-wrap: wrap;
  /* Allows sections to stack on smaller screens */
  padding: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: #666;
  /* Adjust color to match your theme */
  text-align: center;
}

/* Mobile responsive tweak */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }
}

/* === RESPONSIVE: Tablet (768px-1199px) === */
@media (max-width: 1199px) {
  :root {
    --section-padding: 80px 40px;
  }

  .container {
    padding: 0 40px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .services-grid-top {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid .process-card:last-child {
    grid-column: span 2;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    gap: 40px;
  }
}

/* === RESPONSIVE: Mobile (375px-767px) === */
@media (max-width: 767px) {
  :root {
    --section-padding: 60px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-wrapper {
    top: 0;
    padding: 16px 20px;
    background: rgba(10, 4, 26, 0.85);
    /* Matches body bg but slightly transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    width: 100%;
    justify-content: space-between;
  }

  .nav-logo span {
    display: inline;
    font-size: 20px;
    font-weight: 500;
    color: #E2E8F0;
  }

  /* Mobile menu */
  .mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-open .nav-wrapper {
    background: rgba(10, 4, 26, 0.85);
    /* Glass effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100vh;
    align-items: flex-start;
  }

  @keyframes menuFadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    background: transparent;
    border: none;
    padding: 0;
    gap: 16px;
    z-index: 999;
  }

  .mobile-menu-open .nav-links a {
    font-family: var(--font-body);
    font-size: 18px;
    /* Slightly larger than desktop but regular */
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 8px 0;
    opacity: 0;
    animation: menuFadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .mobile-menu-open .nav-links a:nth-child(1) {
    animation-delay: 0.1s;
  }

  .mobile-menu-open .nav-links a:nth-child(2) {
    animation-delay: 0.15s;
  }

  .mobile-menu-open .nav-links a:nth-child(3) {
    animation-delay: 0.2s;
  }

  .mobile-menu-open .nav-links a:nth-child(4) {
    animation-delay: 0.25s;
  }

  .mobile-menu-open .nav-links a:nth-child(5) {
    animation-delay: 0.3s;
  }

  .mobile-menu-open .nav-links a:nth-child(6) {
    animation-delay: 0.35s;
  }

  .mobile-menu-open .nav-links a:nth-child(7) {
    animation-delay: 0.4s;
  }

  .mobile-menu-open .nav-links a:hover,
  .mobile-menu-open .nav-links a.active {
    background: transparent;
    color: #FFFFFF;
  }

  .mobile-menu-open .hamburger span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
  }

  .mobile-menu-open .hamburger span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-menu-open .nav-cta {
    display: none;
    /* Hide CTA in full menu according to reference */
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-outline,
  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .services-grid-top {
    grid-template-columns: 1fr;
  }

  .services-grid-bottom {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card:hover {
    transform: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid .process-card:last-child {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
    /* Prevents auto-zoom on iOS */
  }

  .review-card {
    width: 300px;
  }

  footer {
    padding: 30px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}