/*
Theme Name: Scale Up Turbo
Theme URI: https://scaleupturbo.com
Author: Scale Up Turbo
Author URI: https://scaleupturbo.com
Description: Full-Service Marketing Agency theme for Scale Up Turbo. Dark, high-converting, animated.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scaleupturbo
Tags: marketing, agency, dark, custom
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --orange-primary:   #FF4E00;
  --orange-secondary: #FF6700;
  --green-cta:        #2DFF08;
  --green-hover:      #13FF00;
  --green-mid:        #4AE213;
  --bg-dark:          #0A0A0A;
  --bg-section:       #111111;
  --bg-card:          #161616;
  --bg-card-hover:    #1E1E1E;
  --text-white:       #FFFFFF;
  --text-muted:       #AAAAAA;
  --border-orange:    rgba(255, 78, 0, 0.3);
  --border-card:      rgba(255, 255, 255, 0.08);
  --gradient-orange:  linear-gradient(135deg, #FF4E00, #FF6700);
  --gradient-green:   linear-gradient(135deg, #2DFF08, #4AE213);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

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

section { padding: 100px 0; }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
}

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.section-label.green {
  color: var(--green-cta);
  border: 1px solid rgba(45, 255, 8, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
}
.section-label.orange { color: var(--orange-primary); }

h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
}
h2 span { color: var(--orange-primary); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-green {
  display: inline-block;
  background: var(--gradient-green);
  color: #000 !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 255, 8, 0.4);
  background: linear-gradient(135deg, #13FF00, #2DFF08);
  color: #000 !important;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff !important;
  background: transparent;
  padding: 14px 30px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--green-cta);
  color: var(--green-cta) !important;
  transform: translateY(-2px);
}

.btn-orange-outline {
  display: inline-block;
  border: 2px solid var(--orange-primary);
  color: var(--orange-primary) !important;
  background: transparent;
  padding: 14px 30px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-orange-outline:hover {
  background: var(--orange-primary);
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(255, 78, 0, 0.4);
  transform: translateY(-2px);
}

.btn-white-outline {
  display: inline-block;
  border: 2px solid white;
  color: white !important;
  background: transparent;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-white-outline:hover {
  background: white;
  color: var(--orange-primary) !important;
  transform: translateY(-2px);
}

.btn-learn-more {
  display: inline-block;
  border: 1px solid var(--green-cta);
  color: var(--green-cta) !important;
  background: transparent;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 16px;
  transition: all 0.3s ease;
}
.btn-learn-more:hover {
  background: var(--green-cta);
  color: #000 !important;
  transform: translateY(-1px);
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.sut-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 78, 0, 0.2);
  transition: box-shadow 0.3s ease;
}
.sut-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.sut-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.sut-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.sut-logo img {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: contain;
}
.sut-logo-text {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  letter-spacing: 0.2px;
  line-height: 1;
}
.sut-logo-text strong {
  font-weight: 700;
  color: #FF4E00;
}

/* RESPONSIVE LOGO */
@media (max-width: 1024px) {
  .sut-logo-text { font-size: 16px; }
  .sut-logo img  { width: 42px; height: 42px; }
  .sut-logo      { gap: 10px; }
}
@media (max-width: 768px) {
  .sut-logo-text { font-size: 14px; }
  .sut-logo img  { width: 36px; height: 36px; }
  .sut-logo      { gap: 8px; }
}

/* Primary Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-cta);
  transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--green-cta); }
.nav-menu a:hover::after { width: 100%; }

/* WordPress generated nav UL */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-menu ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.nav-menu ul li a:hover { color: var(--green-cta); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
.sut-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--green-cta);
  color: var(--green-cta);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: var(--text-white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-content h1 span { color: var(--orange-primary); }
.hero-content p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   CLIENTS CAROUSEL
   ============================================= */
.sut-clients {
  padding: 50px 0;
  background: var(--bg-section);
  overflow: hidden;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}
.sut-clients .section-label {
  display: block;
  text-align: center;
  margin-bottom: 28px;
}
.clients-carousel {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.clients-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.clients-track span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  padding: 0 48px;
  white-space: nowrap;
  transition: color 0.3s ease, opacity 0.3s ease;
  cursor: default;
}
.clients-track span:hover {
  color: var(--orange-secondary);
  opacity: 1 !important;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   CONNECT SECTION
   ============================================= */
.sut-connect {
  background: var(--bg-section);
  padding: 100px 0;
}
.two-col {
  display: flex;
  gap: 60px;
  align-items: center;
}
.two-col > * { flex: 1; }
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border: 2px solid var(--orange-primary);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.connect-text .section-label { display: block; margin-bottom: 12px; }
.connect-text h2 { margin-bottom: 20px; }
.connect-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   SOLUTIONS / SERVICES
   ============================================= */
.sut-solutions {
  background: linear-gradient(135deg, #1A0A00, #0F0800);
  padding: 100px 0;
}
.sut-solutions .container > .section-label { display: block; margin-bottom: 12px; }
.sut-solutions h2 { margin-bottom: 50px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 78, 0, 0.2);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 78, 0, 0.12);
  background: var(--bg-card-hover);
}
.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   STATS BAR
   ============================================= */
.sut-stats {
  background: var(--gradient-orange);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: #fff;
  line-height: 1;
}
.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: rgba(255,255,255,0.85);
}
.stat-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* =============================================
   PROCESS — 4 STEPS
   ============================================= */
.sut-process {
  background: var(--bg-dark);
  padding: 100px 0;
}
.sut-process .section-label { display: block; margin-bottom: 12px; }
.sut-process h2 { margin-bottom: 50px; max-width: 560px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 78, 0, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-secondary);
  box-shadow: 0 12px 40px rgba(255, 78, 0, 0.1);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Connector between steps */
.steps-grid .step-card:not(:last-child)::after {
  content: '- - - -';
  position: absolute;
  top: 36px;
  right: -28px;
  color: rgba(255, 78, 0, 0.3);
  font-size: 14px;
  letter-spacing: 2px;
  z-index: 1;
}

/* =============================================
   DIGITAL STRATEGIES
   ============================================= */
.sut-strategy {
  background: linear-gradient(135deg, #1A0800, #0A0A0A);
  padding: 100px 0;
}
.sut-strategy .section-label { display: block; margin-bottom: 12px; }
.strategy-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.strategy-left p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.strategy-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.orange-card {
  background: var(--orange-primary);
  border-radius: 14px;
  padding: 28px;
  color: white;
  transition: transform 0.3s ease;
}
.orange-card:hover { transform: translateY(-4px); }
.card-icon-top { font-size: 32px; margin-bottom: 14px; }
.orange-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}
.orange-card p { font-size: 14px; opacity: 0.9; line-height: 1.65; }

/* =============================================
   LEADS CALCULATOR
   ============================================= */
.sut-calculator {
  background: var(--bg-section);
  padding: 100px 0;
  text-align: center;
}
.sut-calculator h2 {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 36px;
}
.calc-wrapper { max-width: 680px; margin: 0 auto; }
.calc-form {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: 16px;
  padding: 40px;
  text-align: left;
}
.calc-form p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-white);
  margin: 20px 0 12px;
}
.calc-form p:first-child { margin-top: 0; }
.calc-form label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}
.calc-form label:hover { color: var(--text-white); }
.calc-form input[type="checkbox"],
.calc-form input[type="radio"] {
  accent-color: var(--orange-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Budget slider */
#budget-display {
  color: var(--orange-primary);
  font-weight: 700;
}
#budget-slider {
  width: 100%;
  margin-top: 12px;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, var(--orange-primary) 0%, rgba(255,78,0,0.2) 0%);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
#budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-primary);
  box-shadow: 0 0 8px rgba(255,78,0,0.5);
  cursor: pointer;
}
#budget-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-primary);
  border: none;
  cursor: pointer;
}

.calc-result {
  margin: 28px 0;
  text-align: center;
  padding: 28px;
  background: rgba(45, 255, 8, 0.05);
  border: 1px solid rgba(45, 255, 8, 0.2);
  border-radius: 12px;
}
.calc-result p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 8px !important;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
#leads-result {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 60px;
  color: var(--green-cta);
  display: block;
  line-height: 1;
}

/* =============================================
   BENTO GRID
   ============================================= */
.sut-bento {
  background: var(--bg-dark);
  padding: 100px 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-template-rows: auto;
}
.bento-card {
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease;
}
.bento-card:hover { transform: translateY(-4px); }
.orange-bg {
  background: var(--gradient-orange);
  color: white;
}
.orange-gradient-card {
  background: linear-gradient(135deg, #FF4E00, #CC3A00);
  color: white;
}
.dark-card {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  color: white;
}
.bento-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--orange-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.dark-card .stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 12px;
}
.bento-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
}
.bento-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.bento-card p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.9;
  margin-bottom: 20px;
}
.rocket-emoji {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1;
}
.whatsapp-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
/* Bento layout: make specific cards span 2 columns */
.bento-card:nth-child(1) { grid-column: span 2; }
.bento-card:nth-child(4) { grid-column: span 2; }

/* =============================================
   CTA BANNER
   ============================================= */
.sut-cta-banner {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,78,0,0.88), rgba(255,103,0,0.78));
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* =============================================
   CONTACT SECTION (Homepage)
   ============================================= */
.sut-contact-home {
  background: var(--bg-section);
  padding: 100px 0;
  text-align: center;
}
.sut-contact-home h2 { margin-bottom: 12px; }
.sut-contact-home > .container > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 44px;
}

/* Form Styles */
.sut-form {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.sut-form input,
.sut-form textarea,
.sut-form select {
  width: 100%;
  background: #1A1A1A;
  border: 1px solid rgba(255, 78, 0, 0.3);
  border-radius: 8px;
  color: var(--text-white);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin-bottom: 16px;
}
.sut-form input::placeholder,
.sut-form textarea::placeholder { color: #666; }
.sut-form input:focus,
.sut-form textarea:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 10px rgba(255, 78, 0, 0.2);
}
.sut-form textarea { resize: vertical; min-height: 140px; }
.sut-form button[type="submit"] {
  margin-top: 8px;
  cursor: pointer;
}

/* =============================================
   FOOTER
   ============================================= */
.sut-footer {
  background: #080808;
  border-top: 3px solid var(--orange-primary);
  padding-top: 70px;
}
.footer-inner {
  display: flex;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand { flex: 1.4; }
.footer-brand p {
  font-size: 14px;
  color: #777;
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-col { flex: 1; }
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: #777;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--orange-primary); }

.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #888;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #1A1A1A;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: #555;
}
.footer-bottom div {
  display: flex;
  gap: 24px;
}
.footer-bottom a {
  font-size: 12px;
  color: #555;
  transition: color 0.3s ease;
}
.footer-bottom a:hover { color: var(--orange-primary); }

/* Chat FAB */
#chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--orange-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(255,78,0,0.4);
  transition: all 0.3s ease;
}
#chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255,78,0,0.6);
}
.chat-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(10,10,10,0.95);
  color: white;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255,78,0,0.3);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
#chat-fab:hover .chat-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  background: var(--gradient-orange);
  text-align: center;
  padding: 150px 24px 90px;
}
.contact-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: white;
  margin-bottom: 16px;
}
.contact-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin: 0 auto;
}

.contact-content {
  background: var(--bg-dark);
  padding: 100px 0;
}
.contact-left .section-label { display: block; margin-bottom: 12px; }
.contact-left h2 { font-size: 38px; margin-bottom: 20px; }
.contact-left > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-info-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 14px;
  color: var(--text-white);
  margin: 0;
}
.contact-info-item a {
  color: var(--orange-primary);
}
.contact-info-item a:hover { color: var(--orange-secondary); }

.contact-right {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: 16px;
  padding: 44px;
}
.contact-right h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-right > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

/* =============================================
   GENERIC PAGE TEMPLATE
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #1A0A00, #0A0A0A);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 16px;
}
.page-content {
  background: var(--bg-dark);
  padding: 80px 0;
}
.page-content .entry-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  color: #ccc;
  line-height: 1.85;
}
.page-content .entry-content h2 { margin: 40px 0 16px; font-size: 28px; }
.page-content .entry-content h3 { margin: 30px 0 12px; font-size: 22px; color: var(--orange-primary); }
.page-content .entry-content p { margin-bottom: 20px; }
.page-content .entry-content a { color: var(--orange-primary); }
.page-content .entry-content a:hover { color: var(--orange-secondary); }

/* =============================================
   BLOG / ARCHIVE
   ============================================= */
.archive-hero {
  background: linear-gradient(135deg, #1A0A00, #0A0A0A);
  padding: 140px 24px 80px;
  text-align: center;
}
.archive-hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 12px;
}
.archive-hero p { color: var(--text-muted); font-size: 18px; }

.blog-section {
  background: var(--bg-dark);
  padding: 80px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.post-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,78,0,0.1);
}
.post-thumb {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1A0A00, #FF4E00);
  overflow: hidden;
  position: relative;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 24px; }
.post-meta {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.post-body h2 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.post-body h2 a { color: var(--text-white); transition: color 0.3s ease; }
.post-body h2 a:hover { color: var(--orange-primary); }
.post-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.read-more {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.read-more:hover { color: var(--orange-secondary); }
.read-more::after { content: ' →'; }

.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.pagination-wrap a,
.pagination-wrap span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,78,0,0.3);
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.pagination-wrap a:hover,
.pagination-wrap .current {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: white;
}

/* =============================================
   SINGLE POST
   ============================================= */
.single-hero {
  padding: 140px 24px 70px;
  text-align: center;
  background: linear-gradient(135deg, #1A0A00, #0A0A0A);
}
.single-hero h1 {
  font-size: 46px;
  font-weight: 900;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.single-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.single-meta span { margin: 0 12px; }
.single-meta a { color: var(--orange-primary); }
.single-content {
  background: var(--bg-dark);
  padding: 80px 0;
}
.single-content .entry-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  color: #ccc;
  line-height: 1.85;
}
.single-content .entry-content h2 { margin: 40px 0 16px; font-size: 28px; color: var(--text-white); }
.single-content .entry-content h3 { margin: 30px 0 12px; font-size: 22px; color: var(--orange-primary); }
.single-content .entry-content p { margin-bottom: 20px; }
.single-content .entry-content img { border-radius: 12px; margin: 28px 0; }
.single-content .entry-content a { color: var(--orange-primary); }
.single-content .entry-content blockquote {
  border-left: 4px solid var(--orange-primary);
  padding: 16px 24px;
  background: var(--bg-card);
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
  font-style: italic;
  color: #aaa;
}
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.back-to-blog:hover { color: var(--orange-primary); }
.back-to-blog::before { content: '←'; font-size: 16px; }

/* =============================================
   404 PAGE
   ============================================= */
.sut-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-dark);
  padding: 80px 24px;
}
.error-content .error-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 140px;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.error-content h2 { font-size: 32px; margin-bottom: 16px; }
.error-content p { color: var(--text-muted); font-size: 16px; max-width: 400px; margin: 0 auto 36px; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.service-card:nth-child(1)  { transition-delay: 0.05s; }
.service-card:nth-child(2)  { transition-delay: 0.10s; }
.service-card:nth-child(3)  { transition-delay: 0.15s; }
.service-card:nth-child(4)  { transition-delay: 0.20s; }
.service-card:nth-child(5)  { transition-delay: 0.25s; }
.service-card:nth-child(6)  { transition-delay: 0.30s; }
.service-card:nth-child(7)  { transition-delay: 0.05s; }
.service-card:nth-child(8)  { transition-delay: 0.10s; }
.service-card:nth-child(9)  { transition-delay: 0.15s; }
.service-card:nth-child(10) { transition-delay: 0.20s; }
.service-card:nth-child(11) { transition-delay: 0.25s; }
.service-card:nth-child(12) { transition-delay: 0.30s; }

.step-card:nth-child(1) { transition-delay: 0.05s; }
.step-card:nth-child(2) { transition-delay: 0.12s; }
.step-card:nth-child(3) { transition-delay: 0.19s; }
.step-card:nth-child(4) { transition-delay: 0.26s; }

.bento-card:nth-child(1) { transition-delay: 0.05s; }
.bento-card:nth-child(2) { transition-delay: 0.12s; }
.bento-card:nth-child(3) { transition-delay: 0.19s; }
.bento-card:nth-child(4) { transition-delay: 0.05s; }
.bento-card:nth-child(5) { transition-delay: 0.12s; }

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid .step-card:not(:last-child)::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .hero-content h1 { font-size: 56px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card:nth-child(1),
  .bento-card:nth-child(4) { grid-column: span 1; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  section { padding: 70px 0; }
  h2 { font-size: 30px; }

  /* Header */
  .sut-header .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: 24px;
    border-top: 1px solid rgba(255,78,0,0.2);
    border-bottom: 1px solid rgba(255,78,0,0.2);
    gap: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
  }
  .sut-header .nav-menu.nav-open { display: flex; }
  .sut-header .nav-menu ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .sut-header .nav-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .sut-header .nav-menu ul li a,
  .sut-header .nav-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: var(--text-white);
  }
  .nav-cta { margin-top: 16px; width: 100%; text-align: center; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 100px 16px 60px; }
  .hero-content h1 { font-size: 38px; }
  .hero-content p { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-badge { font-size: 10px; text-align: center; }

  /* Two-col → single col */
  .two-col { flex-direction: column; gap: 36px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 42px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bento-card:nth-child(1),
  .bento-card:nth-child(4) { grid-column: span 1; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom div { justify-content: center; }

  /* Contact page */
  .contact-hero h1 { font-size: 40px; }
  .contact-right { padding: 28px; }

  /* Calculator */
  .calc-form { padding: 24px; }

  /* CTA Banner */
  .cta-content h2 { font-size: 30px; }
  .sut-cta-banner { background-attachment: scroll; }

  /* Single */
  .single-hero h1 { font-size: 28px; }

  /* 404 */
  .error-content .error-num { font-size: 90px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 30px; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 32px; }
}

@media (min-width: 769px) {
  .hamburger { display: none !important; }
}

/* ==============================================
   v2.0 ADDITIONS — All new page components
   ============================================== */

/* ── UTILITY ─────────────────────────────────── */
.btn-large {
  font-size: 15px !important;
  padding: 18px 42px !important;
}
.btn-white-outline {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff !important;
  background: transparent;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-white-outline:hover {
  background: #fff;
  color: #000 !important;
}

/* ── FORM SUCCESS / ERROR ─────────────────────── */
.form-success {
  background: rgba(45,255,8,0.08);
  border: 1px solid rgba(45,255,8,0.3);
  border-radius: 10px;
  padding: 18px 24px;
  color: #2DFF08;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-bottom: 24px;
}
.form-error {
  background: rgba(255,78,0,0.08);
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: 10px;
  padding: 14px 20px;
  color: #FF4E00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ── NEWSLETTER ───────────────────────────────── */
.footer-newsletter {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-newsletter h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-newsletter p {
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}
.newsletter-form .newsletter-row {
  display: flex;
  gap: 8px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input[type="email"]:focus {
  border-color: #FF4E00;
}
.newsletter-form button {
  background: var(--gradient-green);
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}
.newsletter-form button:hover {
  box-shadow: 0 4px 15px rgba(45,255,8,0.4);
}
.newsletter-success {
  color: #2DFF08 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}

/* ── SOCIAL ICONS (SVG style) ────────────────── */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,78,0,0.12);
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  margin-right: 8px;
}
.social-icons a:hover {
  background: #FF4E00;
  border-color: #FF4E00;
  transform: translateY(-2px);
}

/* ── CHAT FAB ─────────────────────────────────── */
#chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(255,78,0,0.5);
  transition: all 0.3s ease;
}
#chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(255,78,0,0.7);
}
#chat-fab:hover .chat-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}
.chat-tooltip {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #1a1a1a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* ── SERVICES PAGE ────────────────────────────── */
.services-hero {
  background: linear-gradient(135deg, #FF4E00, #FF6700);
  padding: 120px 0 80px;
  text-align: center;
}
.services-hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  margin: 16px 0;
  line-height: 1.1;
}
.services-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
}
.services-intro {
  padding: 80px 0;
}
.services-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}
.services-intro-body {
  max-width: 800px;
  margin: 0 auto;
}
.services-intro-body p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,78,0,0.2);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.service-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-inner-reverse .service-text { order: 2; }
.service-inner-reverse .service-visual { order: 1; }
.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,78,0,0.07);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: -20px;
  pointer-events: none;
  user-select: none;
}
.service-text {
  position: relative;
}
.service-text h2 {
  font-size: 36px;
  margin: 12px 0 20px;
}
.service-text p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}
.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-large {
  width: 200px;
  height: 200px;
  background: rgba(255,78,0,0.06);
  border: 1px solid rgba(255,78,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.included-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FF4E00;
  margin: 28px 0 12px;
}
.included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.included-list li {
  padding: 7px 0 7px 28px;
  position: relative;
  color: #ccc;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2DFF08;
  font-weight: 700;
}
.who-for-box {
  background: #161616;
  border-left: 3px solid #FF4E00;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}
.who-for-box strong {
  color: #FF4E00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.services-bottom-cta {
  background: linear-gradient(135deg, #FF4E00, #FF6700);
  padding: 100px 0;
  text-align: center;
}
.services-bottom-cta h2 { color: #fff; margin-bottom: 16px; }
.services-bottom-cta p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 32px; font-size: 17px; }
.cta-subtext { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 16px; }

/* ── ABOUT PAGE ───────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0a00 100%);
  padding: 120px 0 80px;
  border-bottom: 1px solid rgba(255,78,0,0.2);
}
.about-hero h1 { font-size: 52px; font-weight: 900; margin: 16px 0; }
.about-hero p { color: #aaa; font-size: 18px; max-width: 640px; }
.about-story { padding: 100px 0; }
.about-story-text p { color: #aaa; line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-stats-card {
  background: #161616;
  border: 1px solid rgba(255,78,0,0.2);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.about-stat { text-align: center; }
.about-stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #FF4E00;
  margin-bottom: 6px;
}
.about-stat-label { font-size: 12px; color: #777; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.about-values { padding: 100px 0; }
.about-values h2 { text-align: center; margin-bottom: 48px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: #161616;
  border: 1px solid rgba(255,78,0,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.value-card:hover { border-color: rgba(255,78,0,0.4); transform: translateY(-4px); }
.value-icon { margin-bottom: 16px; }
.value-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.value-card p { color: #aaa; font-size: 14px; line-height: 1.7; }
.about-team { padding: 80px 0; }
.team-placeholder { display: flex; justify-content: center; }
.team-placeholder-card { text-align: center; }
.team-avatar-placeholder {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 2px dashed rgba(255,78,0,0.3);
  margin: 0 auto;
}
.about-careers { padding: 100px 0; }
.about-careers h2 { text-align: center; margin-bottom: 16px; }
.careers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.career-card {
  background: #161616;
  border: 1px solid rgba(255,78,0,0.15);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.career-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.career-header h3 { font-size: 18px; font-weight: 800; }
.career-badge {
  background: rgba(255,78,0,0.12);
  color: #FF4E00;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.career-card p { color: #aaa; font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
.career-requirements { list-style: none; padding: 0; }
.career-requirements li { font-size: 13px; color: #aaa; padding: 5px 0 5px 20px; position: relative; }
.career-requirements li::before { content: '—'; position: absolute; left: 0; color: #FF4E00; }
.career-card-open { border-color: rgba(45,255,8,0.2); }

/* ── LEGAL PAGE ───────────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, #0A0A0A, #1a0a00);
  padding: 100px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255,78,0,0.2);
}
.legal-hero h1 { font-size: 48px; }
.legal-hero p { color: #aaa; margin-top: 12px; }
.legal-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.legal-nav a {
  color: #FF4E00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.legal-nav a:hover { color: #2DFF08; }
.legal-content { padding: 80px 0; }
.legal-container { max-width: 820px; }
.legal-section { margin-bottom: 16px; }
.legal-section h2 { font-size: 32px; color: #FF4E00; margin-bottom: 8px; }
.legal-date { color: #555; font-size: 13px; margin-bottom: 28px; display: block; }
.legal-section h3 { font-size: 18px; color: #fff; margin: 28px 0 10px; }
.legal-section p { color: #aaa; line-height: 1.8; font-size: 15px; margin-bottom: 14px; }
.legal-section ul { padding-left: 0; margin: 0 0 14px; }
.legal-section ul li { color: #aaa; font-size: 15px; line-height: 1.8; padding: 4px 0 4px 24px; position: relative; }
.legal-section ul li::before { content: '—'; position: absolute; left: 0; color: #FF4E00; }
.legal-section a { color: #FF4E00; }
.legal-section a:hover { color: #2DFF08; }
.legal-divider { border: none; border-top: 1px solid rgba(255,78,0,0.15); margin: 60px 0; }

/* ── PROPOSAL PAGES ───────────────────────────── */
.proposal-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #0A0A0A, #1a0800);
  border-bottom: 1px solid rgba(255,78,0,0.2);
}
.tier1-hero { border-bottom-color: rgba(255,78,0,0.3); }
.tier2-hero { background: linear-gradient(135deg, #0a0800, #1a1200); border-bottom-color: rgba(255,165,0,0.3); }
.tier3-hero { background: linear-gradient(135deg, #0a0a0a, #1a0505); border-bottom-color: rgba(255,50,50,0.3); }
.proposal-hero h1 { font-size: 48px; font-weight: 900; margin: 16px 0; }
.proposal-hero p { color: #aaa; font-size: 17px; max-width: 640px; margin: 0 auto; }
.tier-badge-featured {
  display: inline-block;
  background: var(--gradient-green);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.proposal-body { padding: 80px 0; }
.proposal-container { max-width: 1100px; }
.proposal-intro { text-align: center; margin-bottom: 60px; }
.proposal-intro h2 { margin-bottom: 12px; }
.proposal-intro p { color: #aaa; max-width: 680px; margin: 0 auto; font-size: 16px; line-height: 1.7; }
.proposal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.proposal-card {
  background: #161616;
  border: 1px solid rgba(255,78,0,0.15);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}
.proposal-card:hover { border-color: rgba(255,78,0,0.4); transform: translateY(-3px); }
.proposal-card-featured { border-color: rgba(45,255,8,0.3); background: rgba(45,255,8,0.04); }
.proposal-card-icon { margin-bottom: 14px; }
.proposal-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.proposal-card ul { list-style: none; padding: 0; }
.proposal-card ul li { font-size: 14px; color: #aaa; padding: 5px 0 5px 20px; position: relative; }
.proposal-card ul li::before { content: '✓'; position: absolute; left: 0; color: #2DFF08; font-weight: 700; }
.proposal-card p { color: #aaa; font-size: 14px; line-height: 1.7; }
.proposal-ideal {
  background: #161616;
  border: 1px solid rgba(255,78,0,0.15);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
}
.proposal-ideal h3 { color: #FF4E00; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.proposal-ideal p { color: #aaa; line-height: 1.8; }
.proposal-cta-box {
  background: linear-gradient(135deg, rgba(255,78,0,0.1), rgba(255,103,0,0.05));
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.proposal-cta-box h2 { margin-bottom: 12px; }
.proposal-cta-box p { color: #aaa; max-width: 600px; margin: 0 auto 28px; font-size: 15px; line-height: 1.7; }

/* ── VISITOR ID PAGE ──────────────────────────── */
.vid-hero {
  background: linear-gradient(135deg, #0A0A0A, #1a0a00);
  padding: 120px 0 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255,78,0,0.2);
}
.vid-hero h1 { font-size: 52px; font-weight: 900; margin: 16px 0; }
.vid-hero p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 640px; margin: 0 auto 32px; }
.vid-problem { padding: 80px 0; text-align: center; }
.vid-problem h2 { margin-bottom: 40px; }
.vid-stat-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 40px; }
.vid-stat-item { text-align: center; }
.vid-stat-number { display: block; font-family: 'Montserrat', sans-serif; font-size: 60px; font-weight: 900; color: #FF4E00; line-height: 1; margin-bottom: 10px; }
.vid-stat-item p { color: #aaa; font-size: 14px; max-width: 200px; line-height: 1.5; }
.vid-how { padding: 80px 0; }
.vid-how h2 { text-align: center; margin-bottom: 48px; }
.vid-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vid-step { background: #161616; border: 1px solid rgba(255,78,0,0.15); border-radius: 16px; padding: 28px 20px; text-align: center; }
.vid-step-num { width: 48px; height: 48px; background: var(--gradient-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; color: #fff; margin: 0 auto 16px; }
.vid-step h3 { font-size: 16px; margin-bottom: 10px; }
.vid-step p { color: #aaa; font-size: 13px; line-height: 1.6; }
.vid-deliverables { padding: 80px 0; }
.vid-deliverables h2 { text-align: center; margin-bottom: 40px; }
.vid-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vid-feature { display: flex; gap: 16px; align-items: flex-start; background: #161616; border: 1px solid rgba(255,78,0,0.12); border-radius: 12px; padding: 20px; }
.vid-feature svg { flex-shrink: 0; margin-top: 2px; }
.vid-feature h4 { font-size: 15px; margin-bottom: 6px; }
.vid-feature p { color: #aaa; font-size: 13px; line-height: 1.6; }
.vid-for { padding: 80px 0; }
.vid-for h2 { text-align: center; margin-bottom: 40px; }
.vid-personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vid-persona { background: #161616; border: 1px solid rgba(255,78,0,0.15); border-radius: 16px; padding: 28px; }
.vid-persona h3 { color: #FF4E00; font-size: 16px; margin-bottom: 10px; }
.vid-persona p { color: #aaa; font-size: 14px; line-height: 1.7; }
.vid-cta { padding: 80px 0; }

/* ── VIDEO AI PAGE ────────────────────────────── */
.video-ai-hero {
  background: linear-gradient(135deg, #0A0A0A, #0a0a1a);
  padding: 120px 0 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255,78,0,0.2);
}
.video-ai-hero h1 { font-size: 52px; font-weight: 900; margin: 16px 0; }
.video-ai-hero p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 640px; margin: 0 auto 32px; }
.video-ai-why { padding: 80px 0; }
.video-ai-why h2 { text-align: center; margin-bottom: 48px; }
.video-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.video-benefit { background: #161616; border: 1px solid rgba(255,78,0,0.12); border-radius: 16px; padding: 28px; text-align: center; }
.video-benefit svg { margin: 0 auto 16px; }
.video-benefit h3 { font-size: 17px; margin-bottom: 8px; }
.video-benefit p { color: #aaa; font-size: 13px; line-height: 1.6; }
.video-ai-packages { padding: 80px 0; }
.video-ai-packages h2 { text-align: center; margin-bottom: 16px; }
.video-packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.video-package-card {
  background: #161616;
  border: 1px solid rgba(255,78,0,0.15);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-featured { border-color: rgba(45,255,8,0.4); background: rgba(45,255,8,0.03); }
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-green);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.package-header { margin-bottom: 20px; }
.package-header h3 { font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.package-tagline { color: #aaa; font-size: 12px; line-height: 1.5; }
.package-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.package-features li { font-size: 13px; color: #ccc; padding: 6px 0 6px 20px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.package-features li::before { content: '✓'; position: absolute; left: 0; color: #2DFF08; font-weight: 700; }
.video-ai-usecases { padding: 80px 0; }
.video-ai-usecases h2 { text-align: center; margin-bottom: 40px; }
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.usecase-item { display: flex; align-items: center; gap: 10px; background: #161616; border-radius: 10px; padding: 14px 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: #ccc; }
.video-ai-cta { padding: 80px 0; }

/* ── BLOG / ARCHIVE ───────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, #FF4E00, #FF6700);
  padding: 100px 0 60px;
  text-align: center;
}
.blog-hero h1 { color: #fff; font-size: 48px; margin: 12px 0; }
.blog-hero p { color: rgba(255,255,255,0.85); font-size: 16px; }
.blog-content { padding: 80px 0; }
.blog-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: start;
}
.blog-featured-post {
  background: #161616;
  border: 1px solid rgba(255,78,0,0.15);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.blog-featured-thumb { display: block; }
.blog-featured-thumb img { width: 100%; height: 320px; object-fit: cover; }
.blog-featured-content { padding: 28px; }
.blog-featured-content h2 { font-size: 26px; margin: 12px 0; }
.blog-featured-content h2 a { color: #fff; }
.blog-featured-content h2 a:hover { color: #FF4E00; }
.blog-featured-content p { color: #aaa; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.blog-cat-badge {
  background: rgba(255,78,0,0.15);
  color: #FF4E00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-date { color: #555; font-size: 12px; font-family: 'Montserrat', sans-serif; }
.blog-post-card {
  background: #161616;
  border: 1px solid rgba(255,78,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}
.blog-post-card:hover { border-color: rgba(255,78,0,0.3); }
.blog-card-thumb { flex-shrink: 0; width: 140px; }
.blog-card-thumb img { width: 140px; height: 100%; object-fit: cover; }
.blog-card-content { padding: 18px 20px; }
.blog-card-content h3 { font-size: 15px; margin-bottom: 8px; }
.blog-card-content h3 a { color: #fff; }
.blog-card-content h3 a:hover { color: #FF4E00; }
.blog-card-content p { color: #777; font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
.blog-thumb-placeholder { background: linear-gradient(135deg, #1A0A00, #FF4E00); }
.blog-no-posts { text-align: center; padding: 80px 0; }
.blog-no-posts h2 { margin-bottom: 12px; }
.blog-no-posts p { color: #aaa; }
.blog-pagination { margin-top: 40px; }
.blog-pagination .nav-links { display: flex; gap: 8px; }
.blog-pagination a, .blog-pagination span {
  padding: 8px 16px;
  background: #161616;
  border: 1px solid rgba(255,78,0,0.2);
  border-radius: 8px;
  color: #aaa;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}
.blog-pagination a:hover { border-color: #FF4E00; color: #FF4E00; }
.blog-pagination .current { background: #FF4E00; color: #fff; border-color: #FF4E00; }

/* ── SIDEBAR ─────────────────────────────────── */
.blog-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: #161616;
  border: 1px solid rgba(255,78,0,0.12);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FF4E00;
  margin-bottom: 16px;
}
.sidebar-recent-posts { list-style: none; padding: 0; }
.sidebar-recent-posts li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sidebar-recent-posts li:last-child { border-bottom: none; }
.sidebar-recent-posts a { color: #ccc; font-size: 13px; font-weight: 600; line-height: 1.4; display: block; margin-bottom: 4px; }
.sidebar-recent-posts a:hover { color: #FF4E00; }
.sidebar-date { color: #555; font-size: 11px; }
.sidebar-categories { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-topic-badge {
  background: rgba(255,78,0,0.08);
  color: #FF4E00;
  border: 1px solid rgba(255,78,0,0.2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s;
}
.cat-topic-badge:hover { background: rgba(255,78,0,0.2); }
.sidebar-cta-box {
  background: linear-gradient(135deg, rgba(255,78,0,0.1), rgba(255,103,0,0.05));
  border: 1px solid rgba(255,78,0,0.25);
  border-radius: 12px;
  padding: 24px;
}
.sidebar-cta-box h5 { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.sidebar-cta-box p { color: #aaa; font-size: 13px; line-height: 1.6; margin-bottom: 16px; }

/* ── SINGLE POST ─────────────────────────────── */
.single-hero {
  background: linear-gradient(135deg, #0A0A0A, #1a0800);
  padding: 100px 0 60px;
  border-bottom: 1px solid rgba(255,78,0,0.2);
}
.single-hero h1 { font-size: 40px; font-weight: 900; margin-top: 16px; max-width: 800px; }
.single-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.single-author { color: #aaa; font-size: 13px; font-family: 'Montserrat', sans-serif; }
.single-content-section { padding: 60px 0 80px; }
.single-layout { display: grid; grid-template-columns: 70% 30%; gap: 48px; align-items: start; }
.single-main { }
.single-featured-image { margin-bottom: 32px; }
.single-featured-image img { width: 100%; border-radius: 12px; }
.back-to-blog {
  display: inline-block;
  color: #FF4E00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
  transition: color 0.3s;
}
.back-to-blog:hover { color: #2DFF08; }
.entry-content { color: #ccc; font-size: 16px; line-height: 1.85; }
.entry-content h2 { color: #fff; font-size: 28px; margin: 40px 0 16px; }
.entry-content h3 { color: #fff; font-size: 22px; margin: 32px 0 12px; }
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; }
.entry-content a { color: #FF4E00; text-decoration: underline; }
.entry-content a:hover { color: #2DFF08; }
.entry-content img { border-radius: 10px; margin: 24px 0; }
.entry-content blockquote {
  border-left: 3px solid #FF4E00;
  padding: 16px 24px;
  background: rgba(255,78,0,0.05);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: #aaa;
}
.single-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.tags-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #555; }
.post-tag {
  display: inline-block;
  border: 1px solid rgba(255,78,0,0.3);
  color: #aaa;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
}
.post-tag:hover { border-color: #FF4E00; color: #FF4E00; }
.single-post-nav { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.post-nav-link {
  flex: 1;
  min-width: 200px;
  background: #161616;
  border: 1px solid rgba(255,78,0,0.2);
  border-radius: 10px;
  padding: 20px 24px;
  transition: all 0.3s;
  display: block;
}
.post-nav-link:hover { border-color: #FF4E00; }
.post-nav-next { text-align: right; }
.post-nav-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #555; font-family: 'Montserrat', sans-serif; font-weight: 600; margin-bottom: 6px; }
.post-nav-title { display: block; font-size: 14px; font-weight: 700; color: #fff; font-family: 'Montserrat', sans-serif; line-height: 1.4; }
.single-sidebar { position: sticky; top: 90px; }
.single-full-width { max-width: 860px; margin: 0 auto; }

/* ── CONTACT PAGE UPDATES ─────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, #FF4E00, #FF6700);
  padding: 100px 0 60px;
  text-align: center;
}
.contact-hero h1 { color: #fff; font-size: 52px; }
.contact-hero p { color: rgba(255,255,255,0.85); font-size: 18px; margin-top: 12px; }

/* ── RESPONSIVE — 1024px ─────────────────────── */
@media (max-width: 1024px) {
  .service-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-inner-reverse .service-text { order: 1; }
  .service-inner-reverse .service-visual { order: 2; }
  .service-num { font-size: 80px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: 1fr; }
  .about-stats-card { grid-template-columns: 1fr 1fr; }
  .proposal-grid { grid-template-columns: 1fr 1fr; }
  .video-packages-grid { grid-template-columns: repeat(2, 1fr); }
  .video-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .vid-steps { grid-template-columns: repeat(2, 1fr); }
  .vid-personas { grid-template-columns: 1fr; }
  .vid-features-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 55% 45%; gap: 32px; }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; margin-top: 40px; }
  .trust-badges { gap: 20px; }
  .services-hero h1 { font-size: 38px; }
  .about-story .two-col { flex-direction: column; }
}

/* ── RESPONSIVE — 768px ──────────────────────── */
@media (max-width: 768px) {
  .services-hero { padding: 80px 0 48px; }
  .services-hero h1 { font-size: 30px; }
  .services-hero p { font-size: 15px; }
  .service-section { padding: 60px 0; }
  .service-text h2 { font-size: 26px; }
  .service-icon-large { width: 140px; height: 140px; }
  .service-num { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 32px; }
  .about-stats-card { grid-template-columns: 1fr; gap: 20px; }
  .about-stat-number { font-size: 32px; }
  .proposal-grid { grid-template-columns: 1fr; }
  .proposal-cta-box { padding: 32px 20px; }
  .vid-hero h1 { font-size: 32px; }
  .vid-stat-row { gap: 24px; }
  .vid-stat-number { font-size: 48px; }
  .vid-steps { grid-template-columns: 1fr; }
  .vid-personas { grid-template-columns: 1fr; }
  .video-ai-hero h1 { font-size: 32px; }
  .video-benefits-grid { grid-template-columns: 1fr; }
  .video-packages-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr 1fr; }
  .blog-hero h1 { font-size: 32px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; margin-top: 40px; }
  .blog-post-card { flex-direction: column; }
  .blog-card-thumb { width: 100%; height: 160px; }
  .blog-card-thumb img { width: 100%; height: 160px; }
  .single-hero h1 { font-size: 28px; }
  .single-post-nav { flex-direction: column; }
  .newsletter-form .newsletter-row { flex-direction: column; }
  .legal-section h2 { font-size: 26px; }
  .trust-badges { flex-direction: column; align-items: center; }
  .contact-hero h1 { font-size: 36px; }
  .careers-grid { grid-template-columns: 1fr; }
  .vid-features-grid { grid-template-columns: 1fr; }
}

/* ─── Social Icons (4 icons) ─────────────────────────────────── */
.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,78,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #AAAAAA;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  background: #FF4E00;
  border-color: #FF4E00;
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Form Error ──────────────────────────────────────────────── */
.form-error {
  background: rgba(255,78,0,0.1);
  border: 1px solid #FF4E00;
  color: #FF6700;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

/* ─── Site Logo (updated) ────────────────────────────────────── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.logo-text strong {
  font-weight: 900;
  color: #FF4E00;
}

/* ─── Connect section video fix ─────────────────────────────── */
.sut-connect .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.connect-video-col {
  width: 100%;
}
@media (max-width: 768px) {
  .sut-connect .two-col {
    grid-template-columns: 1fr;
  }
}

/* ── NEWSLETTER CAPTCHA (compact, inside footer) ────────── */
.nl-captcha-wrap {
  margin-top: 10px;
}
.nl-captcha-wrap .sut-captcha-wrap {
  padding: 10px 12px;
  margin: 0;
  background: rgba(255,78,0,0.05);
  border: 1px solid rgba(255,78,0,0.2);
  border-radius: 8px;
}
.nl-captcha-wrap .sut-captcha-wrap p {
  font-size: 12px;
  margin: 0 0 6px;
  color: #999;
}
.nl-captcha-wrap .sut-captcha-wrap input[type="number"] {
  width: 100px !important;
  padding: 7px 10px !important;
  font-size: 13px !important;
}

/* ============================================================
   FORM MESSAGES, CAPTCHA & NEWSLETTER — TASK 2
   ============================================================ */
.sut-form-msg {
  padding: 14px 18px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sut-form-success {
  background: rgba(45,255,8,0.1);
  border: 1px solid #2DFF08;
  color: #2DFF08;
}
.sut-form-error {
  background: rgba(255,78,0,0.1);
  border: 1px solid #FF4E00;
  color: #FF6700;
}
.sut-nl-success {
  color: #2DFF08;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 0;
  font-weight: 600;
}
.sut-nl-error {
  color: #FF4E00;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.sut-captcha-wrap {
  margin: 16px 0;
  padding: 16px;
  background: rgba(255,78,0,0.05);
  border: 1px solid rgba(255,78,0,0.2);
  border-radius: 10px;
}
.sut-nl-form .nl-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sut-nl-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 11px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.sut-nl-form button {
  background: #2DFF08;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ============================================================
   VIDEO RESPONSIVE — TASK 7
   ============================================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  .sut-connect .container  { grid-template-columns: 1fr !important; gap: 40px; }
}

/* ============================================================
   FULL RESPONSIVE AUDIT — TASK 5
   ============================================================ */
.sut-header {
  padding: 0 24px;
}
.sut-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sut-header .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .sut-header .nav-menu { gap: 20px; }
  .sut-header .nav-menu a { font-size: 13px; }
  .sut-header .btn-green { padding: 9px 16px; font-size: 12px; }
  .sut-header .container { gap: 24px; }
  .nav-cta { margin-left: auto; flex-shrink: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sut-stats .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .blog-layout { grid-template-columns: 1fr !important; }
  .single-layout { grid-template-columns: 1fr !important; }
  .blog-sidebar { position: static !important; }
  .proposal-grid { grid-template-columns: 1fr !important; }
  .bento-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-inner { flex-wrap: wrap; gap: 32px; }
  .footer-col { min-width: 160px; }
}

/* MOBILE (<768px) */
@media (max-width: 768px) {
  .sut-header { padding: 0 16px; height: 62px; }
  .sut-header .nav-menu {
    display: none;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: #0A0A0A;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,78,0,0.2);
    z-index: 999;
  }
  .sut-header .nav-menu.nav-open { display: flex; }
  .hamburger { display: flex !important; }
  .sut-logo { gap: 8px; }
  .sut-logo-text { font-size: 14px; }
  .sut-logo img { width: 36px; height: 36px; }
  .nav-cta { display: none !important; }
  .sut-hero h1 { font-size: 34px !important; }
  .sut-hero .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .sut-connect .two-col { flex-direction: column !important; grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .stat-number { font-size: 36px !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .sut-strategy .two-col { flex-direction: column !important; grid-template-columns: 1fr !important; }
  .bento-grid { grid-template-columns: 1fr !important; }
  .bento-card[style*="grid-column: span 2"] { grid-column: span 1 !important; }
  .blog-layout { grid-template-columns: 1fr !important; }
  .blog-sidebar { position: static !important; }
  .single-layout { grid-template-columns: 1fr !important; }
  .blog-small-card { grid-template-columns: 1fr !important; }
  .proposal-grid { grid-template-columns: 1fr !important; }
  .proposal-card.featured { transform: none !important; }
  .location-services-grid { grid-template-columns: 1fr !important; }
  .location-stats-grid { grid-template-columns: 1fr 1fr !important; }
  .location-two-col { grid-template-columns: 1fr !important; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr !important; }
  .sut-nl-form .nl-row { flex-direction: column; }
  .sut-nl-form input[type="email"] { width: 100%; }
  .sut-nl-form button { width: 100%; }
  .contact-content .two-col { grid-template-columns: 1fr !important; }
}
