/*
Theme Name: Cutlab Creative
Theme URI: https://cutlabcreative.com
Author: Cutlab Creative
Author URI: https://cutlabcreative.com
Description: A modern, performance-first video editing agency theme for creators, brands, and companies. Single-page layout with smooth animations.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cutlab-creative
Tags: one-page, custom-logo, custom-menu, featured-images, theme-options
*/

/* ===== CSS Variables ===== */
:root {
  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  --popover: 240 10% 3.9%;
  --popover-foreground: 0 0% 98%;
  --primary: 47 100% 50%;
  --primary-foreground: 240 5.9% 10%;
  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  --accent: 240 3.7% 15.9%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --ring: 47 100% 50%;
  --radius: 0.5rem;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Typography ===== */
.heading-display {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}

.heading-section {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

.text-body {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ===== Layout ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .section-container {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 4rem;
  }
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}

/* ===== Components ===== */
.accent-line {
  width: 3rem;
  height: 3px;
  background-color: hsl(var(--primary));
}

.accent-line.center {
  margin-left: auto;
  margin-right: auto;
}

.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary));
  font-size: 0.75rem;
  font-family: monospace;
  color: hsl(var(--primary));
}

.card-dark {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--secondary));
  border-color: hsl(var(--primary));
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background-color: hsla(var(--background), 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsla(var(--border), 0.5);
}

@media (min-width: 768px) {
  .site-header {
    padding: 1.5rem 3rem;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}

.site-logo .dot {
  color: hsl(var(--primary));
}

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

.main-nav a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: hsl(var(--foreground));
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
}

.hero-content {
  max-width: 48rem;
  padding-top: 2rem;
}

.hero-content .accent-line {
  margin-bottom: 2rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.hero-note {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
  .trust-indicators {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  background-color: hsl(var(--primary));
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.trust-item span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== Who We Work With Section ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.audience-card {
  transition: border-color 0.3s ease;
}

.audience-card:hover {
  border-color: hsla(var(--primary), 0.3);
}

.audience-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.audience-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ===== Problem Section ===== */
.problem-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-left: 2px solid hsla(var(--primary), 0.5);
  background-color: hsla(var(--card), 0.5);
}

.problem-item .icon {
  color: hsl(var(--primary));
  font-family: monospace;
  font-size: 0.875rem;
}

.problem-item span {
  color: hsl(var(--foreground));
}

/* ===== Solution Section ===== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.solution-card {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

.solution-card .icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.solution-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.solution-cards .center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  border: 2px solid hsl(var(--primary));
  border-radius: 50%;
  background-color: hsl(var(--background));
  z-index: 10;
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card .header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-card .number {
  color: hsl(var(--primary));
  font-family: monospace;
  font-size: 0.875rem;
}

.service-card .subtitle {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.service-card ul {
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.service-card li .dash {
  color: hsl(var(--primary));
  margin-top: 0.125rem;
}

/* ===== Process Section ===== */
.process-list {
  position: relative;
}

.process-line {
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: hsl(var(--border));
  display: none;
}

@media (min-width: 768px) {
  .process-line {
    display: block;
  }
}

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

.process-step .number-badge {
  position: relative;
  z-index: 10;
  transition: all 0.2s ease;
}

.process-step:hover .number-badge {
  background-color: hsla(var(--primary), 0.2);
  border-color: hsl(var(--primary));
}

.process-step .content {
  flex: 1;
  padding-bottom: 2rem;
  border-bottom: 1px solid hsl(var(--border));
}

.process-step:last-child .content {
  border-bottom: none;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.process-step p {
  color: hsl(var(--muted-foreground));
}

/* ===== Why Cutlab Section ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-card {
  text-align: center;
  padding: 1.5rem;
}

.reason-card .check {
  color: hsl(var(--primary));
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  display: block;
}

.reason-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

/* ===== Results Section ===== */
.results-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: hsl(var(--secondary));
  border-radius: var(--radius);
}

.result-item .arrow {
  color: hsl(var(--primary));
}

.result-item span {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
}

/* ===== Founder Note Section ===== */
.founder-section {
  background-color: hsla(var(--secondary), 0.3);
}

.founder-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.founder-content blockquote {
  position: relative;
}

.founder-content .quote-mark {
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-size: 4rem;
  color: hsla(var(--primary), 0.2);
  font-family: serif;
}

.founder-content blockquote p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .founder-content blockquote p {
    font-size: 1.5rem;
  }
}

.founder-content .highlight {
  color: hsl(var(--primary));
}

.founder-content .signature {
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  display: inline-block;
}

.founder-content .signature p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.founder-content .signature .name {
  color: hsl(var(--foreground));
  font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
}

.cta-content {
  max-width: 42rem;
  margin: 0 auto;
}

.cta-content .accent-line {
  margin: 0 auto 1.5rem;
}

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

.cta-content .lead {
  margin-bottom: 2rem;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== Section Label ===== */
.section-label {
  font-size: 0.75rem;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

/* ===== Performance Section ===== */
.performance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.perf-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .perf-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Stats / By The Numbers Section ===== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.stat-card {
  padding: 2rem 1rem;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
}

.stat-divider {
  width: 2rem;
  height: 2px;
  background-color: hsl(var(--primary));
  margin: 1rem auto 0.75rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-sub {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

.stat-detail {
  font-size: 0.75rem;
  color: hsla(var(--muted-foreground), 0.7);
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid hsl(var(--border));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: hsl(var(--foreground));
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ===== Animations ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Utility Classes ===== */
.text-center {
  text-align: center;
}

.text-primary {
  color: hsl(var(--primary));
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.italic {
  font-style: italic;
}

.border-t {
  border-top: 1px solid hsl(var(--border));
}

.mt-12 {
  margin-top: 3rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.pt-8 {
  padding-top: 2rem;
}

.bg-secondary {
  background-color: hsla(var(--secondary), 0.3);
}
