/* =========================================================
   2025 BRAND IDENTITY: THE ENGINE ROOM
   Theme: Sophisticated Systems Engineering
========================================================= */

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

:root {
  /* Core Palette - Dark Mode Primary */
  --bg-deep: #020617;
  /* Midnight Space */
  --bg-surface: #0f172a;
  /* Deep Slate */
  --accent: #e19831;
  /* Electric Cyan */
  --accent-glow: rgba(225, 152, 49, 0.3);
  --text-main: #f8fafc;
  /* High Contrast White */
  --text-dim: #94a3b8;
  /* Muted Slate */
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.03);

  /* Modern Radius */
  --radius-2xl: 32px;
  --radius-xl: 20px;
  --radius-sm: 8px;

  /* Transitions */
  --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* =========================================================
   BASE STYLES
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  /* Subtle Tech Grid Pattern */
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  overflow-x: hidden;
}

/* Enable Smooth Scrolling at the Engine Level */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Adjust this to match your sticky header height */
}

/* Link Hover Animation for the Nav */
.nav a {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  /* Using your #e19831 gold */
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav a:hover::after {
  width: 100%;
}

h1,
h2,
h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================================
   HEADER & NAVIGATION
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(to right, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: lowercase;
}

.nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

/* =========================================================
   HERO SECTION: THE SYSTEMS ARCHITECT [cite: 5, 6]
========================================================= */

.hero {
  padding: 120px 0 80px;
  position: relative;
}

/* Glowing Aura behind Hero Content */
.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* =========================================================
   BENTO GRID SERVICES [cite: 13, 14]
========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.service-card {
  grid-column: span 2;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all 0.4s var(--spring);
  position: relative;
  overflow: hidden;
}

/* Service 1 & 2 are larger for visual hierarchy */
.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 3;
}

.service-card:hover {
  border-color: var(--accent);
  background: rgba(34, 211, 238, 0.05);
  transform: translateY(-10px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  color: var(--accent);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* =========================================================
   STATE TRACK: CIRCUIT PATH [cite: 39, 40]
========================================================= */

.state-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 0;
  position: relative;
}

.state-block {
  text-align: left;
  padding: 2rem;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.state-block.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.1);
}

.state-label {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

/* =========================================================
   ENGAGEMENT: MODERN PRICING [cite: 73, 74]
========================================================= */

.price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.1) 0%, var(--bg-surface) 100%);
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem 0;
  color: #fff;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.price-card li {
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-card li::before {
  content: "→";
  color: var(--accent);
  font-weight: bold;
}

/* =========================================================
   ACTION BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--accent);
  color: var(--bg-deep);
}

.btn.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--accent-glow);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn.ghost:hover {
  background: var(--border);
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

  .services-grid,
  .state-track,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-column: span 1;
  }

  .price-card.featured {
    transform: none;
  }
}

/* =========================================================
   WHO THIS IS FOR: THE BADGE SYSTEM [cite: 27]
========================================================= */

.who-alt {
  padding: 100px 0;
  position: relative;
}

.who-alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.who-alt-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.who-alt-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(34, 211, 238, 0.5);
}

.who-alt-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.who-alt-head i {
  font-size: 1.5rem;
  color: var(--accent);
}

.who-alt-head h3 {
  font-size: 1.25rem;
  margin: 0;
}

/* =========================================================
   WORKING PHILOSOPHY: SPLIT LAYOUT [cite: 36]
========================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.clean-list {
  list-style: none;
}

.clean-list li {
  font-size: 1.1rem;
  color: var(--text-main);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.clean-list li::before {
  content: "—";
  color: var(--accent);
  font-weight: bold;
}

.img-placeholder.tall {
  height: 400px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, #1e293b 100%);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Decorative Blueprint Lines for the placeholder */


/* =========================================================
   FAILURE PATTERNS: THE RISK GRID [cite: 63]
========================================================= */

.card {
  background: var(--glass);
  border-left: 3px solid var(--border);
  padding: 2rem;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  transition: all 0.3s ease;
}

.card:hover {
  border-left-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.card h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

/* =========================================================
   PROCESS STEPS: AFTER THE CALL [cite: 91]
========================================================= */

.center .grid-3 {
  margin-top: 4rem;
}

.center .card {
  text-align: center;
  border-left: none;
  border-top: 3px solid var(--border);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.center .card:hover {
  border-top-color: var(--accent);
}

/* =========================================================
   CTA SECTION: FOCUS CARD [cite: 96]
========================================================= */

.cta {
  padding: 120px 0;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
}

.cta h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--text-dim);
}

/* =========================================================
   FOOTER & UTILITIES
========================================================= */

.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
}

/* Section Header Spacing */
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Horizontal Rule Fix */
hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 4rem 0;
}

/* Responsive Overrides for split layouts */
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .img-placeholder.tall {
    height: 250px;
    order: -1;
  }

  .cta h2 {
    font-size: 2.5rem;
  }
}

/* =========================================================
   MISSING HERO UTILITIES: THE TRUST LINE
========================================================= */

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-bottom: 1.5rem;
}

.trust-line {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

.trust-line i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* =========================================================
   MISSING STATE TRACK REFINEMENT: THE "BEFORE/AFTER" FLOW
========================================================= */

/* This ensures the state-track-wrapper centers correctly in the grid */
.state-track-wrapper {
  width: 100%;
  overflow-x: auto;
}

/* Designing the visual dividers (arrows/lines) between states */
.state-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.3;
  position: relative;
}

.state-divider::after {
  content: "→";
  position: absolute;
  right: 0;
  top: -10px;
  color: var(--accent);
  font-weight: bold;
}

/* State Block Typography Sync */
.state-block h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: #fff;
}

.state-block p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* =========================================================
   MISSING HERO VISUAL: THE ENGINE PLACEHOLDER
========================================================= */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  z-index: 1;
  /* Digital Blueprint Texture */
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* =========================================================
   UTILITY REVEAL ANIMATIONS (SCROLL EFFECTS)
========================================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.section {
  animation: fadeInUp 0.8s ease-out both;
}

/* Staggered delay for sections */
#services {
  animation-delay: 0.2s;
}

#who {
  animation-delay: 0.3s;
}

#approach {
  animation-delay: 0.4s;
}

/* =========================================================
   MODERN SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

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

/* =========================================================
   FIX: BENTO GRID SPANNING (WHAT I ACTUALLY DO)
========================================================= */
@media (min-width: 1025px) {

  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(2) {
    grid-column: span 3;
    /* First two take 50% width */
    min-height: 320px;
  }

  .services-grid .service-card:nth-child(n+3) {
    grid-column: span 2;
    /* Remaining cards take 33% width */
  }
}

/* =========================================================
   FIX: ENGAGEMENT MODEL ALIGNMENT & SPACING
========================================================= */
#engagement .grid-3 {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding-top: 2rem;
}

.price-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  transform: translateY(-20px);
  /* Lift the middle card */
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.15);
  z-index: 10;
}

/* =========================================================
   FIX: STATE TRACK PROGRESSION (COMPLEXITY TO CONTROL)
========================================================= */
.state-track {
  display: grid;
  grid-template-columns: 1fr 0.2fr 1fr 0.2fr 1fr 0.2fr 1fr;
  /* Space for dividers */
  align-items: center;
}

@media (max-width: 768px) {
  .state-track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .state-divider {
    width: 2px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--accent), transparent);
  }
}

/* =========================================================
   FIX: READABILITY & UI POLISH
========================================================= */
p,
.text-dim {
  color: #a1a1aa !important;
  /* Slightly brighter slate for readability */
}

.hero-visual .img-placeholder {
  box-shadow: inset 0 0 100px rgba(34, 211, 238, 0.05),
    0 0 50px rgba(0, 0, 0, 0.5);
}

/* Ensure icons are consistently sized */
.service-icon i,
.who-alt-head i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   FIX: SECTION HEADER ALIGNMENT & TYPOGRAPHY
========================================================= */

.section-header {
  text-align: center;
  /* Forces center alignment for title/desc [cite: 13, 27, 39] */
  max-width: 800px;
  /* Prevents the description from becoming a long single line */
  margin: 0 auto 4rem;
  /* Centers the header block and adds bottom spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  /* Responsive scaling for titles [cite: 5, 13, 27, 39] */
  margin-bottom: 1rem;
  background: linear-gradient(to bottom, #fff, var(--text-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-dim);
  text-wrap: balance;
  /* Modern CSS to prevent awkward line breaks */
}

/* =========================================================
   FIX: BENTO & CARD INTERNALS ALIGNMENT
========================================================= */

.service-card,
.who-alt-card,
.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Keeps card content naturally left-aligned for readability [cite: 15, 30, 65] */
  text-align: left;
}

/* Center-aligned cards (specifically for the "What Happens Next" section) */
.center .card {
  align-items: center;
  text-align: center;
}

/* =========================================================
   FIX: HERO CONTENT ALIGNMENT
========================================================= */

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Ensures hero text stays left-aligned to the visual [cite: 5, 6] */
  justify-content: center;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  width: 100%;
  /* Ensures buttons don't stretch weirdly */
}

/* =========================================================
   FIX: PRICING & CTA CENTERING
========================================================= */

.price-card h3,
.price-card .price {
  text-align: center;
  width: 100%;
}

.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =========================================================
   PROCESS STEPS: HORIZONTAL LAYOUT
========================================================= */

/* Overriding the 3-column grid to a single vertical column */
#approach+.section .grid-3,
.section:has(h2:contains("What Happens After")) .grid-3 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Redesigning the card for horizontal flow */
.section .container.center .grid-3 .card {
  display: flex;
  flex-direction: row;
  /* Aligns number/title and description side-by-side */
  align-items: center;
  text-align: left;
  /* Better for horizontal readability */
  padding: 2rem 3rem;
  gap: 2rem;
  border-left: 2px solid var(--border);
  /* Engineering accent line */
  border-top: 1px solid var(--border);
  background: var(--glass);
  transition: all 0.3s var(--spring);
}

.section .container.center .grid-3 .card:hover {
  border-left-color: var(--accent);
  background: rgba(34, 211, 238, 0.05);
  transform: translateX(10px);
  /* Subtle slide-out effect */
}

/* Styling the title as a bold anchor */
.section .container.center .grid-3 .card h3 {
  flex: 0 0 250px;
  /* Fixed width for the step title (e.g., "1. System Understanding") */
  font-size: 1.25rem;
  margin-bottom: 0;
  color: var(--accent);
}

/* Styling the description for clarity */
.section .container.center .grid-3 .card p {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  color: var(--text-dim);
}

/* Mobile Responsiveness: Stack them back to vertical on small screens */
@media (max-width: 768px) {
  .section .container.center .grid-3 .card {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0.5rem;
  }

  .section .container.center .grid-3 .card h3 {
    flex: none;
    margin-bottom: 0.5rem;
  }
}

/* =========================================================
   FAILURE PATTERNS: HORIZONTAL LIST 
========================================================= */

/* Adjusting the grid to a single column flow */
.grid-2:has(.card h3:contains("AI Without Governance")) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Redesigning the card for horizontal hierarchy */
.section .grid-2 .card {
  display: grid;
  grid-template-columns: 300px 1fr;
  /* Pattern title on left, detail on right */
  align-items: center;
  background: var(--glass);
  border-left: 4px solid var(--border);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  padding: 2rem 3rem;
  gap: 2rem;
  transition: all 0.3s var(--spring);
}

.section .grid-2 .card:hover {
  border-left-color: #e19831;
  /* Alert Red for failure patterns */
  background: rgba(239, 68, 68, 0.03);
  transform: translateX(12px);
}

.section .grid-2 .card h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.section .grid-2 .card p {
  font-size: 1rem;
  margin: 0;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Mobile: Stack for small screens */
@media (max-width: 768px) {
  .section .grid-2 .card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 0.5rem;
  }

  .section .grid-2 .card:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .cta {
    padding: 90px 0;
  }
}

@media (max-width: 768px) {

  /* HEADER */
  .header-inner {
    gap: 1rem;
  }

  .nav {
    display: none;
  }

  .logo img {
    height: 2.6rem !important;
  }

  /* HERO */
  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .trust-line {
    gap: 0.75rem;
  }

  /* SERVICES */
  .services-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1.75rem;
  }

  /* WHO THIS IS FOR */
  .who-alt-grid {
    grid-template-columns: 1fr;
  }

  /* SPLIT SECTION */
  .split {
    gap: 2rem;
  }

  .clean-list li {
    font-size: 1rem;
    padding: 1rem 0;
  }

  /* STATE TRACK */
  .state-block {
    padding: 1.5rem;
  }

  /* PRICING */
  #engagement .grid-3 {
    flex-direction: column;
  }

  .price-card {
    padding: 2rem;
  }

  .price {
    font-size: 2.2rem;
  }

  /* PROCESS STEPS */
  .section .container.center .grid-3 .card {
    padding: 1.75rem;
  }

  /* CTA */
  .cta h2 {
    font-size: 2.2rem;
  }

  .cta p {
    font-size: 1.05rem;
  }
}
@media (max-width: 480px) {

  body {
    background-size: 32px 32px;
  }

  .container {
    padding: 0 1rem;
  }

  /* HERO */
  .hero h1 {
    font-size: 1.9rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  /* CARDS */
  .service-card,
  .who-alt-card,
  .card,
  .price-card {
    border-radius: 16px;
  }

  /* BUTTONS */
  .btn {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
  }

  /* FOOTER */
  .footer {
    padding: 3rem 1rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0.5rem 0;
  }

  .header-inner {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .logo img {
    height: 2.2rem !important;
    max-width: 140px;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .header .btn.primary {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
    gap: 0.35rem;
    border-radius: 999px;
  }

  .header .btn.primary i {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 2rem !important;
  }

  .header .btn.primary {
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  #services .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  #services .service-card {
    grid-column: span 1 !important;
  }
}
@media (max-width: 768px) {
  #services .service-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  #services .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }

  #services .service-icon i {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  #services .service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  #services .service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  #services .service-card {
    padding: 1.25rem;
  }

  #services .service-card h3 {
    font-size: 1.05rem;
  }

  #services .service-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  #approach1 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #approach1 .section-header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  #approach1 .state-track-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 480px) {
  #approach1 .section-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #approach1 .state-track-wrapper {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
