/* ========================================
   REC Communications — Light Theme Styles
   ======================================== */

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

:root {
  --bg: #ffffff;
  --bg-light: #f5f6f8;
  --bg-mid: #eef0f4;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5a5a72;
  --text-dim: #9a9ab0;
  --accent: #e31e24;
  --accent-dark: #b81820;
  --accent-light: #ff4d52;
  --accent-glow: rgba(227, 30, 36, 0.08);
  --navy: #1a1a2e;
  --navy-mid: #2d2d4e;
  --border: rgba(0, 0, 0, 0.07);
  --border-mid: rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.logo-rec { color: var(--navy); }

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

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

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

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 14px rgba(227,30,36,0.25);
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(227,30,36,0.35) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 90px;
  overflow: hidden;
  background: var(--bg);
}

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

.hero-grain { display: none; }

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(227,30,36,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(26,26,46,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #f8f9fb 0%, #ffffff 50%);
}

/* Hero decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(227,30,36,0.06) 0%, transparent 70%);
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: 60px;
  left: -80px;
  background: radial-gradient(circle, rgba(26,26,46,0.05) 0%, transparent 70%);
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 10%;
  border: 2px solid rgba(227,30,36,0.08);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(227,30,36,0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--navy);
}

.hero-line { display: block; }

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(227,30,36,0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227,30,36,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border-mid);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(26,26,46,0.04);
}

.btn-full { width: 100%; justify-content: center; }

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* Hero Stats */
.hero-stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 48px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-mid);
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 24px; }
}

/* ========================================
   Client Marquee
   ======================================== */
.marquee-section {
  padding: 40px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 20px;
}

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

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  letter-spacing: -0.01em;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.marquee-track span:hover {
  opacity: 1;
  color: var(--navy);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   Section Shared
   ======================================== */
section { padding: 110px 0; }

.section-header { margin-bottom: 60px; }

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

.section-header-center p {
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ========================================
   Services
   ======================================== */
.services { background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,0.08);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 22px;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.service-tags li {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(227,30,36,0.12);
  border-radius: 100px;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ========================================
   Showreel Banner
   ======================================== */
.showreel {
  padding: 0;
  background: var(--navy);
  overflow: hidden;
}

.showreel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.showreel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.showreel-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.showreel-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}

.btn-showreel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  width: fit-content;
  box-shadow: 0 4px 20px rgba(227,30,36,0.3);
}

.btn-showreel svg {
  width: 18px;
  height: 18px;
}

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

.showreel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  position: relative;
}

.showreel-frame {
  width: 260px;
  height: 180px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  transition: all var(--transition);
}

.showreel-frame:hover {
  border-color: var(--accent);
  background: rgba(227,30,36,0.05);
}

.showreel-play {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(227,30,36,0.4);
  transition: transform var(--transition);
}

.showreel-frame:hover .showreel-play {
  transform: scale(1.1);
}

.showreel-play svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 3px;
}

.showreel-bars {
  display: flex;
  gap: 3px;
  align-items: end;
  height: 24px;
}

.showreel-bars span {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: bar-pulse 1.2s ease-in-out infinite;
}

.showreel-bars span:nth-child(1)  { height: 8px; animation-delay: 0s; }
.showreel-bars span:nth-child(2)  { height: 16px; animation-delay: 0.1s; }
.showreel-bars span:nth-child(3)  { height: 10px; animation-delay: 0.2s; }
.showreel-bars span:nth-child(4)  { height: 20px; animation-delay: 0.3s; }
.showreel-bars span:nth-child(5)  { height: 14px; animation-delay: 0.4s; }
.showreel-bars span:nth-child(6)  { height: 18px; animation-delay: 0.5s; }
.showreel-bars span:nth-child(7)  { height: 8px; animation-delay: 0.6s; }
.showreel-bars span:nth-child(8)  { height: 22px; animation-delay: 0.7s; }
.showreel-bars span:nth-child(9)  { height: 12px; animation-delay: 0.8s; }
.showreel-bars span:nth-child(10) { height: 16px; animation-delay: 0.9s; }

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

/* ========================================
   Work / Portfolio
   ======================================== */
.work { background: var(--bg); }

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

.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.work-card-wide { grid-column: 1 / -1; }

.work-thumb {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-card-wide .work-thumb { height: 340px; }

.work-play {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.work-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  color: var(--accent);
}

.work-card:hover .work-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

.work-card:hover .work-play svg { color: #fff; }

.work-info { padding: 22px 26px; }

.work-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.work-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 6px 0;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.work-info p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.work-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   Why REC - Numbers
   ======================================== */
.why-rec {
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.why-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin: 0 auto 20px;
}

.why-icon svg { width: 100%; height: 100%; }

.why-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.why-label {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   Process
   ======================================== */
.process { background: var(--bg); }

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.process-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}

.process-left p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-left {
  position: sticky;
  top: 120px;
}

.process-timeline {
  position: relative;
  padding-left: 80px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border-mid));
}

.process-step {
  position: relative;
  padding: 0 0 52px;
}

.process-step:last-child { padding-bottom: 0; }

.step-number {
  position: absolute;
  left: -80px;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(227,30,36,0.3);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.step-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ========================================
   Tools & Platforms
   ======================================== */
.tools {
  background: var(--bg-light);
  padding: 80px 0;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tool-chip {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.tool-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   About
   ======================================== */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy);
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.value {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.value strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.value span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-visual { position: relative; }
.about-image-block { position: relative; }

.about-img {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 50%, #e31e24 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-logo-overlay {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  opacity: 0.15;
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  opacity: 0.15;
}

.about-mini-stats {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.mini-stat {
  flex: 1;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}

.mini-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========================================
   Testimonials (multi-card)
   ======================================== */
.testimonials {
  background: var(--bg-light);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.stars svg {
  width: 16px;
  height: 16px;
  color: #f5a623;
}

.testimonial-card blockquote p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border: 1px solid rgba(227,30,36,0.15);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cta-banner-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
}

/* ========================================
   Contact
   ======================================== */
.contact { background: var(--bg-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}

.contact-text > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.contact-link:hover { color: var(--accent); }
.contact-link svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-icon svg { width: 18px; height: 18px; }

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: var(--bg-light);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
  cursor: pointer;
  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='%235a5a72' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--bg-light);
  padding-right: 40px;
}

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

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: -4px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 48px;
}

.footer .nav-logo { color: #fff; }
.footer .logo-rec { color: #fff; }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links { display: flex; gap: 64px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

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

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { gap: 48px; }
  .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-left { position: static; }
  .showreel-inner { grid-template-columns: 1fr; }
  .showreel-visual { min-height: 260px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    border-left: 1px solid var(--border);
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; color: var(--navy); }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card-wide { grid-column: auto; }
  .work-thumb, .work-card-wide .work-thumb { height: 200px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-img { height: 260px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }

  .hero-stats {
    gap: 24px;
    padding: 24px 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-num { font-size: 1.5rem; }

  .process-timeline { padding-left: 60px; }
  .step-number { left: -60px; width: 40px; height: 40px; font-size: 0.72rem; }
  .process-timeline::before { left: 24px; }

  .showreel-content { padding: 48px 24px; }
  .showreel-frame { width: 200px; height: 140px; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 32px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .stat-divider { width: 40px; height: 1px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .why-grid { grid-template-columns: 1fr; }
  .about-mini-stats { flex-direction: column; }
  .hero-shape { display: none; }
}
