/* ============================================
   ZM2 - Digital Agency Stylesheet
   Light theme default with dark mode toggle
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables (Light Theme Default) --- */
:root {
  --bg: #f8f9fc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-muted: #64648c;
  --accent: #00c98d;
  --accent2: #6366f1;
  --border: rgba(0, 0, 0, 0.08);

  --font-title: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --container-max: 1200px;
  --section-padding: 5rem 1.5rem;
  --card-radius: 16px;
  --btn-radius: 10px;
  --nav-height: 72px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow-accent: 0 0 30px rgba(0, 201, 141, 0.2);
  --shadow-glow-accent2: 0 0 30px rgba(99, 102, 241, 0.2);

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Theme-specific component variables */
  --nav-bg: rgba(248, 249, 252, 0.85);
  --nav-bg-scrolled: rgba(248, 249, 252, 0.95);
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-bg-solid: #ffffff;
  --overlay-bg: rgba(0, 0, 0, 0.3);
  --grid-dot: rgba(0, 0, 0, 0.06);
  --noise-opacity: 0.02;
  --mesh-accent-opacity: 0.06;
  --mesh-accent2-opacity: 0.06;
  --btn-secondary-border: rgba(0, 0, 0, 0.15);
  --scrollbar-thumb: rgba(0, 0, 0, 0.15);
  --scrollbar-thumb-hover: rgba(0, 0, 0, 0.25);
  --scroll-indicator-stroke: rgba(0, 0, 0, 0.12);
}

/* --- Dark Theme Override --- */
[data-theme="dark"] {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --text: #e8e6f0;
  --text-muted: #8a87a0;
  --accent: #00e5a0;
  --accent2: #6366f1;
  --border: rgba(255, 255, 255, 0.06);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-glow-accent: 0 0 30px rgba(0, 229, 160, 0.25);
  --shadow-glow-accent2: 0 0 30px rgba(99, 102, 241, 0.25);

  --nav-bg: rgba(10, 10, 15, 0.8);
  --nav-bg-scrolled: rgba(10, 10, 15, 0.95);
  --card-bg: rgba(22, 22, 31, 0.6);
  --card-bg-solid: #16161f;
  --overlay-bg: rgba(0, 0, 0, 0.6);
  --grid-dot: rgba(255, 255, 255, 0.06);
  --noise-opacity: 0.035;
  --mesh-accent-opacity: 0.12;
  --mesh-accent2-opacity: 0.12;
  --btn-secondary-border: rgba(255, 255, 255, 0.15);
  --scrollbar-thumb: rgba(255, 255, 255, 0.1);
  --scrollbar-thumb-hover: rgba(255, 255, 255, 0.18);
  --scroll-indicator-stroke: rgba(255, 255, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
  transition: background-color 0.3s ease, color 0.3s ease;
}

html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

h1 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw + 0.5rem, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw + 0.3rem, 1.75rem);
}

h4 {
  font-size: clamp(1.15rem, 1.5vw + 0.2rem, 1.35rem);
}

h5 {
  font-size: clamp(1rem, 1.2vw + 0.15rem, 1.15rem);
}

h6 {
  font-size: clamp(0.875rem, 1vw + 0.1rem, 1rem);
}

p {
  color: var(--text-muted);
  max-width: 65ch;
}

strong {
  font-weight: 600;
}

small {
  font-size: 0.875rem;
}

/* --- Links --- */
a:not(.btn) {
  transition: color var(--transition-fast);
}

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* --- Sections --- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 680px;
  margin-inline: auto;
}

.section-header p {
  margin-inline: auto;
  margin-top: 1rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* --- Grain / Noise Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* --- Gradient Mesh Backgrounds --- */
.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-mesh::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 229, 160, var(--mesh-accent-opacity)) 0%, transparent 70%);
  filter: blur(80px);
  animation: meshFloat 12s ease-in-out infinite alternate;
}

.hero-mesh::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(99, 102, 241, var(--mesh-accent2-opacity)) 0%, transparent 70%);
  filter: blur(80px);
  animation: meshFloat 10s ease-in-out infinite alternate-reverse;
}

.section-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.section-mesh::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: 20%;
  right: -5%;
  background: radial-gradient(circle, rgba(0, 229, 160, var(--mesh-accent-opacity)) 0%, transparent 70%);
  filter: blur(60px);
}

.section-mesh::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: 10%;
  left: -5%;
  background: radial-gradient(circle, rgba(99, 102, 241, var(--mesh-accent2-opacity)) 0%, transparent 70%);
  filter: blur(60px);
}

/* --- Grid Dot Pattern (Hero Background) --- */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, var(--grid-dot) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
}

/* ============================================
   SCROLL PROGRESS INDICATOR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 10001;
  transition: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition-base), background var(--transition-base);
}

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

.navbar.scrolled {
  background: var(--nav-bg-scrolled);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 1001;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

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

.nav-cta {
  margin-left: 1rem;
}

/* --- Hamburger / Mobile Toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Navigation --- */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100dvh;
  background: var(--bg-elevated);
  z-index: 999;
  padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: right var(--transition-slow);
  border-left: 1px solid var(--border);
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile a {
  display: block;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
  padding-left: 0.5rem;
}

.nav-mobile .btn {
  margin-top: 1.5rem;
  text-align: center;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--btn-radius);
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #00c48c);
  color: var(--bg);
  border: none;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-glow-accent);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--btn-secondary-border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.1);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn-icon {
  font-size: 1.1em;
  transition: transform var(--transition-fast);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 .highlight,
.hero h1 .highlight .hero-word {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* --- Hero Stats --- */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.hero-stat .stat-number .accent {
  color: var(--accent);
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 229, 160, 0.08);
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid.cols-2 {
  grid-template-columns: repeat(1, 1fr);
}

.card-grid.cols-3 {
  grid-template-columns: repeat(1, 1fr);
}

.card-grid.cols-4 {
  grid-template-columns: repeat(1, 1fr);
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-grid {
  display: grid;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.1), rgba(99, 102, 241, 0.1));
  border: 1px solid var(--border);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.process-content h3 {
  margin-bottom: 0.5rem;
}

.process-content p {
  font-size: 0.9rem;
}

/* --- Timeline Vertical Line (desktop) --- */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent2), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.2);
}

.timeline-item h4 {
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.9rem;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail {
  padding-top: calc(var(--nav-height) + 3rem);
}

.service-detail-grid {
  display: grid;
  gap: 3rem;
}

.service-main {
  min-width: 0;
}

.service-main h2 {
  margin-bottom: 1rem;
}

.service-main p {
  margin-bottom: 1.25rem;
}

.service-main ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-main ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.service-sidebar {
  position: relative;
}

.service-sidebar-inner {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.sidebar-nav a:last-child {
  border-bottom: none;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--accent);
  padding-left: 0.5rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--btn-radius);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.1);
}

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a87a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Floating Labels */
.form-group label {
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: transform var(--transition-fast), font-size var(--transition-fast), color var(--transition-fast);
  transform-origin: left top;
  background: var(--bg-card);
  padding: 0 0.25rem;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-1.55rem) scale(0.85);
  color: var(--accent);
}

.form-group select ~ label {
  transform: translateY(-1.55rem) scale(0.85);
  color: var(--accent);
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

/* Contact Info (beside form) */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 229, 160, 0.08);
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.contact-info-item p {
  font-size: 0.85rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

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

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  padding: 0;
}

.footer-social a:hover {
  color: var(--accent);
  background: rgba(0, 229, 160, 0.08);
  border-color: rgba(0, 229, 160, 0.2);
  transform: translateY(-2px);
  padding-left: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   CTA BANNER / SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-inline: auto;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
}

.cta-inner h2 {
  margin-bottom: 1rem;
}

.cta-inner p {
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 229, 160, 0.1) 0%, rgba(99, 102, 241, 0.08) 50%, transparent 70%);
  filter: blur(60px);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

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

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

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

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--bg);
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page-transition {
  animation: pageIn 0.6s ease forwards;
}

.page-transition-out {
  animation: pageOut 0.3s ease forwards;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  position: relative;
  padding: calc(var(--nav-height) + 4rem) 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}

.about-values-grid {
  display: grid;
  gap: 1.5rem;
}

.value-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 2rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 229, 160, 0.08);
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition-base);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-elevated);
}

.team-card-body {
  padding: 1.25rem;
}

.team-card-body h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-card-body p {
  font-size: 0.8rem;
  color: var(--accent);
}

/* --- Stats Row --- */
.stats-row {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}

.stat-item .stat-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item .stat-number .accent {
  color: var(--accent);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-code {
  font-family: var(--font-title);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glitchText 3s ease-in-out infinite;
  margin-bottom: 1rem;
}

.error-content h1,
.error-content h2 {
  margin-bottom: 1rem;
}

.error-content p {
  margin-inline: auto;
  margin-bottom: 2rem;
  max-width: 420px;
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes meshFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -20px) scale(1.08);
  }
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glitchText {
  0%, 100% {
    text-shadow: 2px 0 var(--accent2), -2px 0 var(--accent);
  }
  25% {
    text-shadow: -2px 2px var(--accent2), 2px -2px var(--accent);
  }
  50% {
    text-shadow: 2px -2px var(--accent2), -2px 2px var(--accent);
  }
  75% {
    text-shadow: -2px 0 var(--accent2), 2px 0 var(--accent);
  }
}

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

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* --- Scroll-triggered animation classes --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-accent { color: var(--accent); }
.text-accent2 { color: var(--accent2); }
.text-muted { color: var(--text-muted); }

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mx-auto { margin-inline: auto; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid { display: grid; }

.w-full { width: 100%; }
.max-w-container { max-width: var(--container-max); }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.hidden { display: none !important; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Desktop-only / Mobile-only visibility */
.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: var(--btn-radius);
  font-weight: 600;
  z-index: 10002;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--accent);
  background: rgba(0, 201, 141, 0.08);
  border-color: rgba(0, 201, 141, 0.2);
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.05);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

/* ============================================
   DARK THEME - FOOTER SOCIAL OVERRIDE
   ============================================ */
[data-theme="dark"] .footer-social a {
  background: rgba(255, 255, 255, 0.04);
}

/* ============================================
   MAP CONTAINER (Contact Page)
   ============================================ */
.map-container {
  aspect-ratio: 16/7;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: none;
}

.contact-form-card {
  padding: 2.5rem;
}

[data-theme="dark"] .map-container iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}

/* ============================================
   RESPONSIVE BREAKPOINTS (Mobile First)
   ============================================ */

/* --- Base mobile enhancements (< 540px) --- */
.hero {
  min-height: 100svh;
  padding: calc(var(--nav-height) + 2rem) 1rem 2.5rem;
}

.hero-buttons {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  gap: 1.5rem;
}

.hero-stat .stat-number {
  font-size: 1.6rem;
}

.about-hero {
  padding: calc(var(--nav-height) + 2.5rem) 1rem 2.5rem;
}

.section {
  padding: 3.5rem 1rem;
}

.section-header {
  margin-bottom: 2.5rem;
}

.cta-section {
  padding: 3.5rem 1rem;
}

.cta-inner {
  padding: 2rem 1.25rem;
  border-radius: 16px;
}

.card {
  padding: 1.5rem;
}

.footer {
  padding: 3rem 1rem 1.5rem;
}

.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.service-sidebar {
  display: none;
}

.map-container {
  aspect-ratio: 4/3;
}

.contact-form-card {
  padding: 1.5rem;
}

.nav-inner {
  padding-inline: 1rem;
}

.container {
  padding-inline: 1rem;
}

/* Fix hero buttons inside CTA sections to not stack */
.cta-inner .flex {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
}

.scroll-indicator {
  display: none;
}

/* --- Extra small phones (< 380px) --- */
@media (max-width: 379px) {
  :root {
    --nav-height: 60px;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.9rem;
  }

  .cta-inner {
    padding: 1.5rem 1rem;
  }

  .card {
    padding: 1.25rem;
  }

  .stat-item {
    padding: 1.25rem 0.75rem;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .process-step {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-brand {
    max-width: 100%;
  }
}

/* >= 480px: Large phones */
@media (min-width: 480px) {
  .hero {
    padding: calc(var(--nav-height) + 2.5rem) 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .cta-inner .flex {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .hero-stats {
    gap: 2.5rem;
  }

  .hero-stat .stat-number {
    font-size: 1.8rem;
  }

  .container {
    padding-inline: 1.5rem;
  }

  .nav-inner {
    padding-inline: 1.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* >= 540px: Small tablets */
@media (min-width: 540px) {
  .card-grid.cols-2,
  .card-grid.cols-3,
  .card-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    gap: 3.5rem;
  }

  .hero-stat .stat-number {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-inner {
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }

  .card {
    padding: 1.75rem;
  }

  .map-container {
    aspect-ratio: 16/9;
  }

  .contact-form-card {
    padding: 2rem;
  }
}

/* >= 768px: Tablets */
@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem;
  }

  .about-hero {
    padding: calc(var(--nav-height) + 4rem) 1.5rem 4rem;
  }

  .section {
    padding: 5rem 2rem;
  }

  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .service-sidebar {
    display: block;
  }

  .service-detail-grid {
    grid-template-columns: 1fr 260px;
  }

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

  .footer {
    padding: 4rem 1.5rem 1.5rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    padding: 2rem;
  }

  .cta-section {
    padding: 5rem 1.5rem;
  }

  .cta-inner {
    padding: 3rem 2.5rem;
    border-radius: 24px;
  }

  .map-container {
    aspect-ratio: 16/7;
  }

  .contact-form-card {
    padding: 2.5rem;
  }

  .btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
  }

  .scroll-indicator {
    display: flex;
  }
}

/* >= 968px: Desktop */
@media (min-width: 968px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-mobile,
  .nav-overlay {
    display: none !important;
  }

  .card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .service-detail-grid {
    grid-template-columns: 1fr 300px;
    gap: 4rem;
  }

  .section {
    padding: 6rem 2rem;
  }

  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}

/* < 968px: Show mobile nav toggle */
@media (max-width: 967px) {
  .nav-links {
    display: none;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* >= 1200px: Large desktop */
@media (min-width: 1200px) {
  .section {
    padding: 7rem 2rem;
  }

  .container {
    padding-inline: 2rem;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 5rem);
  }

  .cta-inner {
    padding: 4rem 3.5rem;
  }
}
