/*
Theme Name: Aansys
Theme URI: https://aansys.com
Author: Aansys
Author URI: https://aansys.com
Description: Custom theme for Aansys — Branding & Marketing Engineered for the AI Era. Includes landing page, services, about, projects, and contact templates.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aansys
Tags: one-column, custom-menu, featured-images, full-width-template, theme-options
*/

/* ═══════════════════════════════════════
   VARIABLES
   ═══════════════════════════════════════ */
:root {
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --purple-deep: #5B21B6;
  --purple-glow: rgba(124,58,237,0.35);
  --purple-bg: rgba(124,58,237,0.08);
  --purple-border: rgba(124,58,237,0.2);
  --black: #0B0B12;
  --dark: #111118;
  --dark-card: #1A1A24;
  --cream: #F7F5F0;
  --warm: #EDEBE5;
  --white: #FFFFFF;
  --text: #1A1A24;
  --text-muted: #71717A;
  --text-light: rgba(255,255,255,0.92);
  --text-light-muted: rgba(255,255,255,0.55);
  --border: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 120px 0; }
.section-dark { background: var(--black); color: var(--text-light); }
.section-cream { background: var(--cream); }
.section-warm { background: var(--warm); }
.section-purple { background: var(--purple); color: #fff; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(36px, 4vw, 56px);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 28px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: currentColor;
}
.section-dark .section-label { color: var(--purple-light); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.55;
}
.section-dark .section-sub { color: var(--text-light-muted); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.muted { color: var(--text-muted); }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover {
  background: var(--purple-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--purple-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-white { background: #fff; color: var(--black); }
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--border-dark);
}
.btn-ghost-light:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--dark); transform: translateY(-1px); }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(247,245,240,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg, .logo img { width: 32px; height: 32px; }
.logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.current-menu-item { color: var(--black); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero { padding: 160px 0 80px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.98;
  margin-bottom: 32px;
  color: var(--black);
}
.hero h1 .highlight { color: var(--purple); }
.hero-right-text {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-image {
  position: relative;
  height: 580px;
  overflow: hidden;
  border-radius: 0 0 0 80px;
  margin-top: 60px;
}
.hero-image-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple), var(--purple-light));
  transform: rotate(-6deg) scale(1.3);
  transform-origin: center;
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,18,0.4));
  z-index: 2;
}
.hero-image-grid {
  position: absolute; inset: 0; z-index: 3;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-logo-float {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 4;
  width: 200px; height: 200px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%,-50%) translateY(0); }
  50% { transform: translate(-50%,-50%) translateY(-10px); }
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 180px 0 80px;
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  color: #fff;
  margin-bottom: 20px;
  max-width: 800px;
}
.page-hero .highlight { color: var(--purple-light); }
.page-hero p {
  font-size: 18px;
  color: var(--text-light-muted);
  max-width: 600px;
  line-height: 1.55;
}
.page-hero .breadcrumb {
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-light-muted);
}
.page-hero .breadcrumb a { color: var(--purple-light); }
.page-hero .breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ═══════════════════════════════════════
   SERVICES LIST (Homepage)
   ═══════════════════════════════════════ */
.services-list-section { padding: 100px 0; border-top: 1px solid var(--border); }
.services-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: 0.3s;
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { padding-left: 8px; }
.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}
.service-name a { transition: color 0.2s; }
.service-name a:hover { color: var(--purple); }
.service-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}
.services-right { position: sticky; top: 120px; }
.services-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   STATS
   ═══════════════════════════════════════ */
.stats-section { padding: 64px 0; border-top: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}
.section-dark .stat-num { color: var(--purple-light); }
.section-dark .stat-label { color: var(--text-light-muted); }

/* ═══════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════ */
.marquee-section { padding: 80px 0; overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}
.marquee-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: -0.04em;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--black);
  color: transparent;
}
.marquee-text .filled { -webkit-text-stroke: 0; color: var(--black); }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   REFRAME
   ═══════════════════════════════════════ */
.reframe-section { background: var(--warm); }
.reframe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reframe-title {
  font-size: clamp(32px, 3.8vw, 52px);
  margin-bottom: 32px;
  color: var(--black);
  line-height: 1.1;
}
.reframe-body p {
  font-size: 17px;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 20px;
}
.reframe-body strong { color: var(--black); font-weight: 600; }
.reframe-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rf-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.rf-generic { background: #E5E7EB; }
.rf-generic h4 { font-size: 18px; color: #6B7280; margin-bottom: 10px; }
.rf-generic p { font-size: 14px; color: #9CA3AF; line-height: 1.45; }
.rf-dots { display: flex; gap: 6px; margin-top: auto; padding-top: 24px; }
.rf-dot { width: 28px; height: 28px; border-radius: 50%; background: #B0B4BA; }
.rf-aansys {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.rf-aansys::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  opacity: 0.5;
}
.rf-aansys h4 { font-size: 18px; color: #fff; margin-bottom: 10px; position: relative; z-index: 2; }
.rf-aansys p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.45; position: relative; z-index: 2; }
.rf-mark { margin-top: auto; padding-top: 24px; position: relative; z-index: 2; }

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-headline {
  font-size: clamp(32px, 3.8vw, 52px);
  margin-bottom: 24px;
  color: #fff;
}
.about-text {
  font-size: 16px;
  color: var(--text-light-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.team-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark-card);
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.team-card:hover img { transform: scale(1.03); }
.team-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(11,11,18,0.9));
}
.team-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.team-card-role { font-size: 13px; color: var(--text-light-muted); }
.team-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-card), var(--purple-deep));
  font-size: 64px;
  font-family: 'Syne';
  font-weight: 800;
  color: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════
   COMPARISON
   ═══════════════════════════════════════ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.compare-card {
  padding: 48px 40px;
  border-radius: var(--radius);
}
.compare-old { background: #fff; border: 1px solid var(--border); }
.compare-new {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.compare-new::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 65%);
}
.compare-card h3 {
  font-size: 22px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.compare-list { position: relative; z-index: 2; }
.compare-list li {
  padding: 14px 0 14px 32px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.compare-new .compare-list li { border-bottom-color: var(--border-dark); }
.compare-list li:last-child { border-bottom: none; }
.compare-old .compare-list li::before {
  content: '\00d7';
  position: absolute;
  left: 0; top: 12px;
  color: #D1D5DB;
  font-size: 20px;
  font-weight: 700;
}
.compare-new .compare-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 14px;
  background: var(--purple-light);
  clip-path: polygon(0 50%, 35% 100%, 100% 0, 80% 0, 35% 70%, 15% 50%);
}

/* ═══════════════════════════════════════
   PROJECT CARDS
   ═══════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.4s;
}
.project-card:hover { transform: translateY(-4px); }
.project-card.wide { grid-column: span 2; aspect-ratio: auto; min-height: 360px; }
.project-card-bg { position: absolute; inset: 0; }
.project-card-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.project-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 3;
  background: linear-gradient(transparent, rgba(11,11,18,0.7));
}
.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-light);
  margin-bottom: 8px;
  padding: 4px 10px;
  background: rgba(167,139,250,0.15);
  border-radius: 100px;
}
.project-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Gradient backgrounds for project cards */
.pc-1 { background: linear-gradient(135deg, #1a0a2e, var(--purple-deep), var(--purple)); }
.pc-2 { background: linear-gradient(135deg, var(--black), #1a1a40); }
.pc-3 { background: linear-gradient(135deg, #2d1054, var(--purple)); }
.pc-4 { background: linear-gradient(135deg, var(--purple-deep), #0f0f2a); }
.pc-5 { background: linear-gradient(135deg, #0a0a1e, var(--purple-deep)); }
.pc-6 { background: linear-gradient(135deg, #1a0a30, #3b1a6e); }

/* ═══════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ind-tile {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
}
.ind-tile:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-4px);
  border-color: var(--black);
}
.ind-icon {
  width: 48px; height: 48px;
  background: var(--purple-bg);
  border: 1px solid var(--purple-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple);
  transition: all 0.3s;
}
.ind-tile:hover .ind-icon {
  background: rgba(167,139,250,0.15);
  border-color: var(--purple-light);
  color: var(--purple-light);
}
.ind-tile h3 { font-size: 20px; margin-bottom: 6px; }
.ind-tile p {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.ind-tile:hover p { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 65%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: #fff;
  margin-bottom: 24px;
}
.cta-banner p {
  font-size: 17px;
  color: var(--text-light-muted);
  margin-bottom: 36px;
  line-height: 1.55;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Purple CTA variant */
.cta-purple {
  background: var(--purple);
  position: relative;
  overflow: hidden;
}
.cta-purple::before {
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
}

/* ═══════════════════════════════════════
   VISION TEXT
   ═══════════════════════════════════════ */
.vision-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto;
  color: var(--black);
  text-align: center;
}

/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */
.reviews-marquee { position: relative; margin-bottom: 80px; overflow: hidden; }
.reviews-marquee-track {
  display: flex;
  gap: 48px;
  animation: review-scroll 15s linear infinite;
  width: max-content;
}
.reviews-marquee-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1.5px var(--black);
  color: transparent;
}
.reviews-marquee-text .filled { -webkit-text-stroke: 0; color: var(--black); }
.reviews-marquee-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 4vw, 56px);
  height: clamp(32px, 4vw, 56px);
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
}
.reviews-marquee-dot svg { width: 50%; height: 50%; }
@keyframes review-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-dark .review-card {
  background: var(--dark-card);
  border-color: var(--border-dark);
}
.review-stars { display: flex; gap: 3px; color: var(--purple); font-size: 16px; }
.review-text { font-size: 16px; line-height: 1.6; color: var(--text); flex: 1; }
.section-dark .review-text { color: var(--text-light); }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}
.review-name { font-weight: 600; font-size: 15px; }
.review-role { font-size: 13px; color: var(--text-muted); }
.section-dark .review-role { color: var(--text-light-muted); }

/* ═══════════════════════════════════════
   INSIGHTS / BLOG
   ═══════════════════════════════════════ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(11,11,18,0.1);
}
.insight-img {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.insight-img::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.ii-1 { background: linear-gradient(135deg, var(--purple-deep), var(--purple)); }
.ii-2 { background: linear-gradient(135deg, var(--black), var(--purple-deep)); }
.ii-3 { background: linear-gradient(135deg, var(--purple), var(--black)); }
.insight-content { padding: 28px; }
.insight-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.insight-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.insight-link {
  color: var(--purple);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.insight-link:hover { gap: 10px; }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.section-dark .faq-item { border-bottom-color: var(--border-dark); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.35;
}
.section-dark .faq-q { color: #fff; }
.faq-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--text-muted);
  font-size: 20px;
}
.faq-item.open .faq-toggle {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
.faq-a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 700px;
}
.section-dark .faq-a p { color: var(--text-light-muted); }

/* ═══════════════════════════════════════
   SERVICES PAGE — CARD GRID
   ═══════════════════════════════════════ */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card-full {
  padding: 48px 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(11,11,18,0.1);
  border-color: var(--purple);
}
.service-card-full:hover::before { transform: scaleX(1); }
.service-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--purple);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.service-card-full h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--black);
}
.service-card-full p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.service-feature-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  background: var(--purple-bg);
  color: var(--purple);
  border-radius: 100px;
}

/* ═══════════════════════════════════════
   SINGLE SERVICE PAGE
   ═══════════════════════════════════════ */
.service-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.service-main h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 48px 0 20px;
  color: var(--black);
}
.service-main h2:first-child { margin-top: 0; }
.service-main p {
  font-size: 17px;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-main ul {
  margin: 0 0 24px 0;
  padding: 0;
}
.service-main ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 16px;
  color: #374151;
  border-bottom: 1px solid var(--border);
}
.service-main ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  background: var(--purple-light);
  clip-path: polygon(0 50%, 35% 100%, 100% 0, 80% 0, 35% 70%, 15% 50%);
}
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--black);
  color: #fff;
  padding: 40px 32px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.sidebar-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 65%);
}
.sidebar-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.sidebar-card p {
  font-size: 15px;
  color: var(--text-light-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.sidebar-nav { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.sidebar-nav a {
  display: block;
  padding: 16px 24px;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--purple);
  background: var(--purple-bg);
  padding-left: 28px;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: var(--purple-bg);
  border: 1px solid var(--purple-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-detail p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.contact-form {
  background: #fff;
  padding: 48px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.contact-form > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ═══════════════════════════════════════
   APPROACH / STEPS
   ═══════════════════════════════════════ */
.step {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: 0.3s;
}
.step:hover { padding-left: 12px; }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--purple-light);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step h3 { font-size: 32px; margin-bottom: 8px; color: #fff; }
.step p { color: var(--text-light-muted); font-size: 16px; max-width: 600px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 80px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo-name { color: #fff; }
.footer-tagline {
  font-size: 15px;
  color: var(--text-light-muted);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.5;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: 0.2s;
}
.footer-col a:hover { color: var(--purple-light); }
.footer-col li { margin-bottom: 10px; }
.newsletter-form {
  display: flex;
  background: var(--dark);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 12px;
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 20px;
  color: #fff;
  font-family: 'DM Sans';
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--purple);
  border: none;
  color: #fff;
  padding: 12px 20px;
  font-family: 'DM Sans';
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}
.newsletter-form button:hover { background: var(--purple-deep); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--purple-light); }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: 0.2s;
}
.social-icons a:hover { color: var(--purple-light); border-color: var(--purple-light); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.vis { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { height: 400px; }
  .services-layout { grid-template-columns: 1fr; }
  .services-right { position: static; margin-bottom: 40px; }
  .about-grid, .reframe-grid, .contact-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.wide { grid-column: span 2; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid, .insights-grid { grid-template-columns: 1fr; }
  .service-content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .hero { padding: 120px 0 60px; }
  .section { padding: 80px 0; }
  .service-item { grid-template-columns: 1fr; gap: 8px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.wide { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-group, .hero-ctas, .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns { align-items: center; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-num { font-size: 48px; }
  .step h3 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}

/* ═══════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════ */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 4px;
  border-radius: 50%;
  border: 1px solid var(--border);
  margin: 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.page-numbers:hover { border-color: var(--purple); color: var(--purple); }
.page-numbers.current { background: var(--purple); color: #fff; border-color: var(--purple); }
.page-numbers.prev, .page-numbers.next {
  width: auto;
  padding: 0 16px;
  border-radius: 100px;
  font-size: 13px;
}

/* ═══════════════════════════════════════
   COMMENT FORM OVERRIDES
   ═══════════════════════════════════════ */
#respond .comment-form { display: flex; flex-direction: column; gap: 0; }
#respond .logged-in-as { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
#respond .form-submit { margin-top: 16px; }
#respond .form-submit .submit { cursor: pointer; }

/* ═══════════════════════════════════════
   SEARCH RESULT HIGHLIGHT
   ═══════════════════════════════════════ */
.search-highlight { background: rgba(124, 58, 237, 0.1); padding: 2px 4px; border-radius: 3px; }

/* ═══════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════ */
@media print {
  .site-nav, .site-footer, .cta-banner, .reviews-marquee, .marquee-section,
  .menu-toggle, .btn, .sidebar-card, .newsletter-form { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .page-hero { background: #fff !important; color: #000 !important; padding: 20px 0; }
  .page-hero h1 { color: #000 !important; }
  .container { max-width: 100%; padding: 0 20px; }
  a { color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #666; }
}

/* ═══════════════════════════════════════
   LOGO IMAGES
   ═══════════════════════════════════════ */
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.logo-dark { display: block; }
.logo-light { display: none; }
.site-footer .logo-dark { display: none; }
.site-footer .logo-light { display: block; }

/* ═══════════════════════════════════════
   HERO VIDEO / SHOWREEL
   ═══════════════════════════════════════ */
.hero-video {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.hero-video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: 20px;
  overflow: hidden;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(11,11,18,0.85), rgba(91,33,182,0.4)),
    url('') center/cover;
  transition: all 0.4s ease;
}
.hero-video-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-video-overlay:hover {
  background: linear-gradient(135deg, rgba(11,11,18,0.7), rgba(124,58,237,0.5));
}
.hero-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(124,58,237,0.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(124,58,237,0.4); }
  70% { box-shadow: 0 0 0 20px rgba(124,58,237,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
}
.hero-video-overlay:hover .hero-play-btn {
  transform: scale(1.1);
  background: var(--purple-deep);
}
.hero-play-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   CREATIVE AGENCY ENHANCEMENTS
   ═══════════════════════════════════════ */

/* Cursor follower */
.cursor-follower {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--purple-light);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor-follower.active { opacity: 1; }
.cursor-follower.hovering {
  width: 48px;
  height: 48px;
  border-color: var(--purple);
  background: rgba(124,58,237,0.1);
}

/* Grain texture overlay (subtle) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Text reveal on scroll */
.text-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.text-reveal.vis {
  clip-path: inset(0 0 0% 0);
}

/* Magnetic button effect */
.btn-magnetic {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Horizontal scroll section for logos */
.logo-scroll {
  display: flex;
  gap: 60px;
  animation: logo-scroll-anim 25s linear infinite;
  width: max-content;
}
@keyframes logo-scroll-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* Image tilt on hover (project cards) */
.project-card:hover {
  transform: translateY(-4px) perspective(1000px) rotateX(2deg);
}

/* Service card hover line animation */
.service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.4s ease;
}
.service-item { position: relative; }
.service-item:hover::after { width: 100%; }

/* Smooth page transitions feel */
.section { position: relative; }
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.section-dark::before { background: linear-gradient(to right, transparent, var(--border-dark), transparent); }

/* YouTube 2D branding badge */
.yt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
}
.yt-badge svg { flex-shrink: 0; }

@media (max-width: 720px) {
  .cursor-follower { display: none; }
  .hero-play-btn { width: 60px; height: 60px; }
}

/* ═══════════════════════════════════════
   HERO VIDEO RESPONSIVE FIX
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-video { margin-top: 40px; }
  .hero-video-wrapper { border-radius: 16px; }
}
@media (max-width: 720px) {
  .hero-video { margin-top: 32px; }
  .hero-video-wrapper { border-radius: 12px; }
  .hero-play-btn { width: 56px; height: 56px; }
  .hero-play-btn svg { width: 18px; height: 18px; }
  .hero-play-text { font-size: 12px; }
  .hero-video-overlay img { width: 80px !important; }
}
