/* ==========================================================================
   RIDHI SALECHA — PERSONAL BRAND LANDING PAGE
   Aesthetic: Swiss Neo-Brutalist & Bauhaus Geometric Typography + Luxe Dark Minimalist
   Optimized for Google Ads & Meta Ads conversion speed and compliance
   ========================================================================== */

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

/* --- THEME VARIABLES --- */
:root {
  /* Default: Dark Luxe Studio Mode */
  --bg-body: #0a0b0d;
  --bg-surface: #121418;
  --bg-surface-elevated: #1a1d24;
  --bg-surface-glass: rgba(18, 20, 24, 0.88);
  --border-subtle: #242933;
  --border-strong: #384152;
  --border-hard: #ffffff;
  
  --text-main: #f4f6fa;
  --text-muted: #9aa2b1;
  --text-dim: #606877;
  
  /* Bauhaus Geometric Color System */
  --color-orange: #FF541E;
  --color-blue: #1A56FF;
  --color-yellow: #FFBF00;
  --color-green: #00965E;
  --color-purple: #7038FF;
  --color-pink: #FF66A1;
  
  --accent-primary: #FF541E;
  --accent-secondary: #1A56FF;
  
  --radius-none: 0px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --container-max: 1240px;
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-luxe: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  --shadow-hard: 5px 5px 0px rgba(255, 255, 255, 0.9);
}

/* Swiss Bauhaus Cream Editorial Mode */
[data-theme="light"] {
  --bg-body: #F4EFEA;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #EFE9E0;
  --bg-surface-glass: rgba(244, 239, 234, 0.92);
  --border-subtle: #D8D1C5;
  --border-strong: #111111;
  --border-hard: #111111;
  
  --text-main: #111111;
  --text-muted: #4A4A4A;
  --text-dim: #7A7A7A;
  
  --accent-primary: #FF3B00;
  --accent-secondary: #0F4CFF;
  
  --shadow-luxe: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  --shadow-hard: 5px 5px 0px #111111;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- UTILITY CLASSES & GEOMETRIC SHAPES (BAUHAUS ACCENTS) --- */
.shape-pill {
  display: inline-block;
  border-radius: var(--radius-full);
}

.shape-circle {
  display: inline-block;
  border-radius: 50%;
}

.shape-semi-up {
  width: 24px;
  height: 12px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  display: inline-block;
}

.shape-semi-left {
  width: 12px;
  height: 24px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  display: inline-block;
}

.shape-rect {
  display: inline-block;
}

.hard-cut-border {
  border: 2px solid var(--border-strong);
}

.section-divider {
  height: 2px;
  background-color: var(--border-subtle);
  width: 100%;
  margin: 0;
}

/* --- HEADER / NAVBAR --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-logo-shapes {
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-logo-shapes .dot-1 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-orange);
}

.brand-logo-shapes .dot-2 {
  width: 10px;
  height: 10px;
  background-color: var(--color-blue);
  transform: rotate(45deg);
}

.brand-logo-shapes .dot-3 {
  width: 8px;
  height: 14px;
  background-color: var(--color-yellow);
  border-radius: 2px;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 150, 94, 0.12);
  border: 1px solid var(--color-green);
  color: var(--color-green);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(0, 150, 94, 0.7); }
  70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(0, 150, 94, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(0, 150, 94, 0); }
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.theme-toggle-btn {
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--radius-none);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  border-color: var(--text-main);
}

.theme-toggle-btn .theme-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange), var(--color-blue));
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--accent-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.4rem;
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-none);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0px var(--border-hard);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.4rem;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-none);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background-color: var(--bg-surface-elevated);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  border-bottom: 2px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.8vw, 5.2rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-title .title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
}

.hero-title .shape-badge-orange {
  width: 32px;
  height: 32px;
  background: var(--color-orange);
  border-radius: 50%;
  display: inline-block;
}

.hero-title .shape-badge-blue {
  width: 28px;
  height: 28px;
  background: var(--color-blue);
  transform: rotate(45deg);
  display: inline-block;
}

.hero-title .shape-badge-yellow {
  width: 36px;
  height: 18px;
  background: var(--color-yellow);
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  display: inline-block;
}

.hero-subhead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
}

.hero-subhead strong {
  color: var(--text-main);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.guarantee-item .check {
  color: var(--color-green);
  font-weight: bold;
}

/* Hero Portrait Framing */
.hero-visual-card {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  background-color: var(--bg-surface);
  border: 3px solid var(--border-strong);
  padding: 1.25rem;
  box-shadow: var(--shadow-hard);
  transition: transform var(--transition-smooth);
}

.portrait-container:hover {
  transform: translateY(-4px);
}

.portrait-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #1a1d24;
  border: 1px solid var(--border-subtle);
}

.portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-container:hover .portrait-inner img {
  transform: scale(1.03);
}

/* Bauhaus Graphic Shapes Behind Portrait */
.portrait-shapes-bg {
  position: absolute;
  top: -24px;
  right: -24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: -1;
}

.shape-bg-1 {
  width: 54px;
  height: 54px;
  background-color: var(--color-yellow);
  border-radius: 50%;
}

.shape-bg-2 {
  width: 48px;
  height: 48px;
  background-color: var(--color-blue);
}

.shape-bg-3 {
  width: 64px;
  height: 32px;
  background-color: var(--color-orange);
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
}

.portrait-badge-top {
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--text-main);
  color: var(--bg-body);
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--border-hard);
}

.portrait-badge-bottom {
  position: absolute;
  bottom: -16px;
  right: -14px;
  background: var(--accent-primary);
  color: #ffffff;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 3px 3px 0px var(--border-hard);
}

/* --- STATS & TRUST STRIP --- */
.stats-strip {
  border-bottom: 2px solid var(--border-subtle);
  background-color: var(--bg-surface);
}

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

.stat-item {
  padding: 2.2rem 1.5rem;
  border-right: 2px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background-color var(--transition-fast);
}

.stat-item:nth-child(1):hover::before { background: var(--color-orange); }
.stat-item:nth-child(2):hover::before { background: var(--color-blue); }
.stat-item:nth-child(3):hover::before { background: var(--color-yellow); }
.stat-item:nth-child(4):hover::before { background: var(--color-green); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- SECTION HEADINGS --- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
}

.eyebrow-shape {
  width: 10px;
  height: 10px;
  background-color: var(--accent-primary);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.55;
}

/* --- PROOF OF WORK / PORTFOLIO SECTION --- */
.portfolio-section {
  padding: 5.5rem 0;
  border-bottom: 2px solid var(--border-subtle);
}

.portfolio-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.6rem 1.3rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.filter-btn.active {
  background-color: var(--text-main);
  color: var(--bg-body);
  border-color: var(--text-main);
}

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

.work-card {
  background-color: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

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

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: #000000;
  overflow: hidden;
}

.card-media-canvas {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .card-media-canvas {
  transform: scale(1.04);
}

.card-overlay-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.card-duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 3px 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
}

.play-hover-indicator {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--accent-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: scale(0.85);
  opacity: 0.85;
  transition: all var(--transition-fast);
  z-index: 3;
}

.work-card:hover .play-hover-indicator {
  transform: scale(1.15);
  opacity: 1;
  box-shadow: 0 0 20px rgba(255, 84, 30, 0.6);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.card-caption {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.5;
}

.card-footer-metrics {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
}

.metric-highlight {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-green);
  background: rgba(0, 150, 94, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* --- SERVICES & CAPABILITIES --- */
.services-section {
  padding: 5.5rem 0;
  border-bottom: 2px solid var(--border-subtle);
  background-color: var(--bg-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.service-card {
  background: var(--bg-body);
  border: 2px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-glyph {
  width: 28px;
  height: 28px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.service-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.service-features li::before {
  content: '▪';
  color: var(--accent-primary);
  font-size: 1.1rem;
  line-height: 1.2;
}

.tech-stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.tech-pill {
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 3px 8px;
  text-transform: uppercase;
}

/* --- INTERACTIVE SCOPE & RATE ESTIMATOR --- */
.scope-calculator-box {
  background: var(--bg-body);
  border: 3px solid var(--border-strong);
  padding: 2.5rem;
  box-shadow: var(--shadow-hard);
}

.calculator-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.calculator-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

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

.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.options-group {
  margin-bottom: 1.5rem;
}

.options-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: block;
}

.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.choice-btn {
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  color: var(--text-main);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.choice-btn:hover {
  border-color: var(--text-main);
}

.choice-btn.selected {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

.addon-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.addon-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-main);
  cursor: pointer;
}

.addon-label input {
  accent-color: var(--accent-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.calculator-result-card {
  background: var(--bg-surface);
  border: 2px solid var(--border-strong);
  padding: 2.2rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result-badge {
  background: rgba(255, 84, 30, 0.12);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.result-price-estimate {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.result-turnaround {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.result-turnaround strong {
  color: var(--color-green);
}

/* --- PROCESS SECTION --- */
.process-section {
  padding: 5.5rem 0;
  border-bottom: 2px solid var(--border-subtle);
}

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

.process-step {
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  padding: 2rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border-strong);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- SOCIAL PROOF & TESTIMONIALS --- */
.testimonials-section {
  padding: 5.5rem 0;
  border-bottom: 2px solid var(--border-subtle);
  background-color: var(--bg-surface);
}

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

.testimonial-card {
  background: var(--bg-body);
  border: 2px solid var(--border-subtle);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-stars {
  color: var(--color-yellow);
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

.quote-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-style: normal;
}

.client-info {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.client-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.outcome-pill {
  background: rgba(0, 150, 94, 0.1);
  color: var(--color-green);
  border: 1px solid var(--color-green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 6px;
}

/* --- LEAD CAPTURE / CONTACT SECTION (GOOGLE & META ADS COMPLIANT) --- */
.contact-section {
  padding: 6rem 0;
  border-bottom: 2px solid var(--border-subtle);
  background-color: var(--bg-body);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 84, 30, 0.1);
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-lead-box {
  background: var(--bg-surface);
  border: 3px solid var(--border-strong);
  padding: 2.5rem;
  box-shadow: var(--shadow-hard);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: var(--bg-body);
  border: 2px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  border-radius: var(--radius-none);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background-color: var(--bg-surface-elevated);
}

.form-control::placeholder {
  color: var(--text-dim);
}

.form-privacy-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.4;
}

.form-privacy-disclaimer a {
  text-decoration: underline;
  color: var(--text-main);
  cursor: pointer;
}

.direct-connect-card {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
}

/* Form Success Box */
.form-success-alert {
  display: none;
  background: rgba(0, 150, 94, 0.12);
  border: 2px solid var(--color-green);
  color: var(--text-main);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

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

/* --- FOOTER --- */
.site-footer {
  padding: 4.5rem 0 2.5rem;
  background-color: var(--bg-surface);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand-bio {
  max-width: 400px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.footer-links-group {
  display: flex;
  gap: 3.5rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

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

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

.footer-links a:hover {
  color: var(--text-main);
}

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

/* --- MODALS (PRIVACY POLICY & VIDEO SHOWREEL LIGHTBOX) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--bg-surface);
  border: 3px solid var(--border-strong);
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-luxe);
  position: relative;
  padding: 2.5rem;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-body);
  border: 2px solid var(--border-subtle);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

/* Video Lightbox Specific */
.video-modal-card {
  max-width: 880px;
  padding: 1.5rem;
  background: #0B0D11;
  border: 2px solid #333;
}

.video-player-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-mock-screen {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #1F2430 0%, #080A0D 100%);
  color: #fff;
}

.video-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #fff;
}

.scrubber-track {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  cursor: pointer;
}

.scrubber-fill {
  width: 42%;
  height: 100%;
  background: var(--accent-primary);
}

/* --- MOBILE STICKY CTA --- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-surface);
  border-top: 2px solid var(--border-strong);
  padding: 0.75rem 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 99;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
}

.mobile-sticky-cta .sticky-info {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-cta .sticky-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
}

.mobile-sticky-cta .sticky-status {
  font-size: 0.7rem;
  color: var(--color-green);
  font-weight: 700;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }
  
  .hero-visual-card {
    justify-content: flex-start;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2) {
    border-right: none;
  }
  
  .stat-item:nth-child(1), .stat-item:nth-child(2) {
    border-bottom: 2px solid var(--border-subtle);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 2px solid var(--border-subtle);
    padding: 1.5rem 1rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-sticky-cta {
    display: flex;
  }
  
  body {
    padding-bottom: 64px;
  }
}
