:root {
  --bg-color: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --accent-color: #3b82f6; /* professional blue */
  --accent-hover: #2563eb;
  --border-color: #e2e8f0;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html, body {
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}

.nav-cta {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--text-main);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-surface);
}

/* Hero Section */
.hero {
  padding: 12rem 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  z-index: -1;
}

.hero-content {
  max-width: 600px;
}

.headline {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.subheadline {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-primary {
  display: inline-block;
  background-color: var(--text-main);
  color: var(--bg-surface);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.cta-primary:hover {
  transform: translateY(-2px);
  background-color: var(--accent-color);
  color: var(--bg-surface);
}

/* Director's Clapboard - Floating right */
.hero-visual {
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.clapboard-container {
  transform: rotateY(-15deg) rotateX(10deg);
  transition: transform 0.5s ease;
  width: 100%;
  max-width: 650px;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
  border-radius: 12px;
}

.clapboard {
  background: #111;
  border-radius: 8px;
  padding: 8px;
  font-family: 'Courier New', Courier, monospace;
  color: white;
  position: relative;
  border: 4px solid #222;
}

.clapper-stick {
  height: 50px;
  background: repeating-linear-gradient(
    45deg,
    #fff,
    #fff 25px,
    #111 25px,
    #111 50px
  );
  border-radius: 4px;
  border: 2px solid #222;
}

.top-stick {
  transform-origin: 0% 50%;
  transform: rotate(-35deg);
  margin-bottom: -25px;
  position: relative;
  z-index: 2;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.top-stick.closed {
  transform: rotate(0deg);
}

.bottom-stick {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.clapboard-body {
  border: 2px solid #fff;
  border-radius: 4px;
  padding: 1rem;
  background: #111;
}

.clapboard-content .row {
  display: flex;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding: 0.5rem 0;
  align-items: center;
  gap: 1rem;
}

.clapboard-content .row:last-child {
  border-bottom: none;
}

.clapboard-content .label {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 80px;
}

.clapboard-content .value {
  font-weight: bold;
  font-size: 1.5rem;
  flex-grow: 1;
}

/* Features / Pain Point Grid */
.features {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

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

.feature-card {
  padding: 2rem;
  background: var(--bg-color);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
}

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

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border-color);
  z-index: 0;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px; height: 50px;
  background: var(--text-main);
  color: var(--bg-surface);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-muted);
}

/* Lead Form */
.lead-form-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #1e293b;
  color: white;
  padding: 4rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.form-wrapper > p {
  color: #94a3b8;
  margin-bottom: 2.5rem;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group.full-width {
  grid-column: 1 / -1;
}

.input-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"],
.input-group input[type="date"],
.input-group textarea {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #0f172a;
  color: white;
  font-family: inherit;
  font-size: 1rem;
}

.input-group textarea {
  resize: vertical;
  min-height: 100px;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: 2px solid var(--accent-color);
}

/* Radio Pills */
.radio-pill-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-pill-group.vertical {
  flex-direction: column;
}

.radio-pill {
  cursor: pointer;
  flex: 1;
}

.radio-pill input {
  display: none;
}

.pill-content {
  display: block;
  padding: 1rem;
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s;
}

.radio-pill input:checked + .pill-content {
  border-color: var(--accent-color);
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-color);
}

.size-pill .pill-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.25rem;
}

.size-title { font-weight: 700; font-size: 1.1rem; }
.size-desc { font-size: 0.875rem; color: #94a3b8; font-weight: 400; }

/* File Upload */
.file-upload {
  position: relative;
  background: #0f172a;
  border: 2px dashed #334155;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s;
}

.file-upload:hover {
  border-color: var(--accent-color);
}

.file-upload input[type="file"] {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #94a3b8;
}

.submit-btn {
  grid-column: 1 / -1;
  background: var(--accent-color);
  color: #000;
  border: none;
  padding: 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-hover);
}

/* Footer */
footer {
  background: var(--bg-color);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

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

.brand h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.brand p {
  color: var(--text-muted);
}

.trust-signals .coi {
  font-weight: 600;
  margin-bottom: 1rem;
}

.studios {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 900px) {
  .headline { font-size: 2.5rem; }
  .subheadline { font-size: 1rem; }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
  }
  .hero-content { margin: 0 auto; }
  .clapboard-container { transform: none; margin: 0 auto; }
  .lead-form {
    grid-template-columns: 1fr;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .form-wrapper { padding: 2rem; }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  .navbar {
    display: none;
  }
  .hero {
    padding-top: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
  .hero-content {
    display: contents;
  }
  .hero-text-wrapper {
    order: 1;
    position: sticky;
    top: 4rem;
    z-index: 5;
  }
  .hero-text-wrapper h1 { 
    margin-bottom: 0.25rem; 
  }
  .hero-text-wrapper p { 
    margin-bottom: 0.5rem; 
  }
  .hero-actions { 
    order: 4; 
    margin-top: -7rem; 
    position: relative; 
    z-index: 10;
  }
  .hero-actions .cta-primary {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    width: 100%;
    max-width: 350px;
  }
  .clapboard-container {
    display: none;
  }
  .form-wrapper {
    padding: 1.25rem;
  }
  .hero-visual {
    width: 100%;
    min-width: 0;
    margin-top: 14rem;
    order: 3;
  }
  .clapboard-container {
    display: block;
    min-width: 650px;
    margin-left: 0;
    margin-right: 0;
    transform: rotateY(-15deg) rotateX(10deg) scale(0.55);
    transform-origin: top center;
    margin-bottom: 0;
    box-shadow: none;
  }
  .form-wrapper h2 {
    font-size: 1.75rem;
  }
  .form-wrapper > p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .lead-form {
    gap: 1rem;
  }
  .input-group input[type="text"],
  .input-group input[type="email"],
  .input-group input[type="tel"],
  .input-group input[type="date"],
  .input-group textarea,
  .pill-content {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  .size-title {
    font-size: 1rem;
  }
  .radio-pill-group {
    flex-direction: column;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .studios {
    justify-content: center;
  }
}

/* Layout Utilities for Images */
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.section-image {
  width: 100%;
}
.section-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  object-fit: cover;
}
.truck-image img {
  box-shadow: none;
  mix-blend-mode: multiply;
}

/* Nav Links */
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar .nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.navbar .nav-link:hover {
  color: var(--primary-color);
}

/* SOP Page Styles */
.sop-page {
  padding: 8rem 0 6rem;
  background-color: var(--bg-color);
}
.sop-container {
  max-width: 800px;
  margin: 0 auto;
}
.sop-intro {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
  line-height: 1.7;
}
.sop-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.sop-step {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}
.step-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.step-content p:last-child {
  margin-bottom: 0;
}
.sop-footer {
  margin-top: 5rem;
  text-align: center;
}
.sop-footer .cta-primary {
  display: inline-block;
}

@media (max-width: 768px) {
  .sop-step {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

/* About Us Section */
.about-us {
  padding: 6rem 0;
  background-color: var(--card-bg);
}
.about-header {
  text-align: center;
  margin-bottom: 3rem;
}
.about-header .section-title {
  margin-bottom: 0.5rem;
}
.about-subtitle {
  font-size: 1.25rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}
.headshot-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  border: 4px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
}
.headshot-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 28%; /* Zoom in on the face on the right side */
  transform: scale(1.8); /* Zoom effect */
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.about-content p:last-child {
  margin-bottom: 0;
}
