/* ============================================================
   CLICKBURST — YouTube Thumbnail Selling Website
   Premium Dark Theme | Red & Yellow Accents
   ============================================================ */

:root {
  --red: #FF3333;
  --red-dark: #CC0000;
  --yellow: #FFD700;
  --yellow-soft: #FFDD44;
  --white: #FFFFFF;
  --off-white: #E8E8E8;
  --muted: #A0A0A0;
  --bg-0: #080808;
  --bg-1: #0F0F0F;
  --bg-2: #141414;
  --bg-3: #1A1A1A;
  --bg-4: #222222;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --glow-red: rgba(255,51,51,0.25);
  --glow-yellow: rgba(255,215,0,0.18);
  --radius: 14px;
  --radius-lg: 20px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --nav-h: 70px;
  --section-py: 100px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-0);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ============ TYPOGRAPHY ============ */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.7;
}

.accent-red { color: var(--red); }
.accent-yellow { color: var(--yellow); }

.gradient-text {
  background: linear-gradient(135deg, var(--red) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #FF6600 100%);
  color: var(--white);
  box-shadow: 0 4px 24px var(--glow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,51,51,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); font-size: 16px; padding: 16px 24px; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8,8,8,0.92);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--red); }

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--red), #FF6600);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

.nav-links .nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,51,51,0.22) 0%, transparent 70%);
  top: -150px;
  left: -100px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,51,51,0.12);
  border: 1px solid rgba(255,51,51,0.3);
  color: #FF6666;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: float 3s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,51,51,0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(255,51,51,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 86px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-ctas .btn-primary { padding: 17px 34px; font-size: 16px; }
.hero-ctas .btn-secondary { padding: 17px 30px; font-size: 16px; }

.hero-trust {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-stars {
  color: var(--yellow);
  font-size: 22px;
  letter-spacing: 3px;
}

.hero-trust p {
  font-size: 14px;
  color: var(--muted);
}

.hero-trust p strong { color: var(--white); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  backdrop-filter: blur(20px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

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

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll-indicator span { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

/* ============ PROBLEM SECTION ============ */
.problem-section {
  padding: var(--section-py) 0;
  background: var(--bg-1);
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.problem-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.problem-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.problem-callout {
  background: linear-gradient(135deg, rgba(255,51,51,0.08), rgba(255,215,0,0.06));
  border: 1px solid rgba(255,51,51,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.callout-icon { font-size: 40px; flex-shrink: 0; }

.problem-callout p { font-size: 17px; color: var(--off-white); }
.problem-callout p strong { color: var(--yellow); }

/* ============ BEFORE / AFTER SECTION ============ */
.before-after-section {
  padding: var(--section-py) 0;
  background: var(--bg-0);
  text-align: center;
}

.ba-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.ba-card {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ba-before { background: var(--bg-2); }

.ba-after {
  background: linear-gradient(160deg, rgba(255,51,51,0.05), rgba(255,215,0,0.04));
  border-left: 1px solid var(--border);
}

.ba-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 6px;
  align-self: flex-start;
}

.ba-label-bad { background: rgba(255,50,50,0.15); color: #FF6666; }
.ba-label-good { background: rgba(60,230,60,0.12); color: #66DD66; }

.ba-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  background: var(--bg-4);
}

.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ba-image-wrap:hover img { transform: scale(1.03); }

.ba-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--off-white);
}

.ba-points li span { font-weight: 700; font-size: 16px; }
.bad-points li span { color: #FF4444; }
.good-points li span { color: #44CC44; }

.ba-ctr-badge {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  align-self: flex-start;
}

.bad-ctr { background: rgba(255,50,50,0.15); color: #FF6666; border: 1px solid rgba(255,50,50,0.2); }
.good-ctr { background: rgba(60,200,60,0.12); color: #66DD66; border: 1px solid rgba(60,200,60,0.2); }

.ba-vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 12px;
  position: relative;
  background: var(--bg-1);
  min-width: 80px;
}

.vs-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #FF6600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: white;
  box-shadow: 0 0 30px var(--glow-red);
  z-index: 1;
}

.vs-arrow { font-size: 24px; color: var(--red); }

/* Portfolio */
.portfolio-intro h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-4);
  border: 1px solid var(--border);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.portfolio-ctr {
  background: linear-gradient(135deg, var(--red), #FF6600);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

/* ============ WHY SECTION ============ */
.why-section {
  padding: var(--section-py) 0;
  background: var(--bg-1);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
  margin-bottom: 48px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, border-color 0.3s;
}

.why-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.why-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.why-quote {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  padding: 32px;
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-lg);
}

.quote-bar {
  width: 4px;
  min-height: 60px;
  background: linear-gradient(to bottom, var(--yellow), var(--red));
  border-radius: 4px;
  flex-shrink: 0;
}

.why-quote blockquote {
  font-size: 17px;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.65;
}

/* ============ SERVICES SECTION ============ */
.services-section {
  padding: var(--section-py) 0;
  background: var(--bg-0);
  text-align: center;
}

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

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,51,51,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.service-card-featured {
  background: linear-gradient(160deg, rgba(255,51,51,0.08), rgba(255,215,0,0.05));
  border-color: rgba(255,51,51,0.25);
  box-shadow: 0 0 40px rgba(255,51,51,0.1);
}

.service-card-featured:hover {
  border-color: rgba(255,51,51,0.5);
  box-shadow: 0 24px 60px rgba(255,51,51,0.18);
}

.service-badge-popular {
  position: absolute;
  top: -12px;
  left: 28px;
  background: linear-gradient(135deg, var(--red), #FF6600);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-icon { font-size: 38px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }

.service-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-benefits li {
  font-size: 13px;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-benefits li::before {
  content: '✓';
  color: #44CC44;
  font-weight: 700;
  flex-shrink: 0;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
}

.service-link:hover { color: var(--yellow); }

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--bg-1);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.2);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong { color: var(--white); font-size: 14px; }
.author-info span { color: var(--muted); font-size: 12px; }

.testimonial-ctr-badge {
  background: rgba(60,220,60,0.1);
  color: #66DD66;
  border: 1px solid rgba(60,220,60,0.2);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ============ ORDER SECTION ============ */
.order-section {
  padding: var(--section-py) 0;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,51,51,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.order-left .section-title { text-align: left; font-size: clamp(28px, 3.5vw, 44px); }

.order-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.order-perks li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.perk-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.order-perks li > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.order-perks li strong { color: var(--white); font-size: 15px; display: block; }
.order-perks li span { color: var(--muted); font-size: 13px; }

.contact-options {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-options > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.contact-link:hover {
  border-color: var(--border-strong);
  background: var(--bg-4);
}

.contact-link-wa { color: #25D366; }
.contact-link-wa:hover { border-color: rgba(37,211,102,0.3); }

/* Form */
.order-form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.order-form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,51,51,0.5);
  box-shadow: 0 0 0 3px rgba(255,51,51,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group select option { background: var(--bg-4); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }

.field-error { font-size: 12px; color: #FF6666; min-height: 16px; }

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon { font-size: 56px; margin-bottom: 16px; animation: bounceIn 0.5s ease; }

.form-success h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.form-success p { color: var(--muted); }

@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.65; }

.footer-links-group h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-links-group ul a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-links-group ul a:hover { color: var(--white); }

.footer-cta-small { margin-top: 20px; }
.footer-cta-small .btn { font-size: 13px; padding: 10px 20px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-tagline { color: var(--red); font-weight: 600; }

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

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

/* Stagger children */
.problem-grid .problem-card:nth-child(2) { transition-delay: 0.1s; }
.problem-grid .problem-card:nth-child(3) { transition-delay: 0.2s; }
.problem-grid .problem-card:nth-child(4) { transition-delay: 0.3s; }

.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(4) { transition-delay: 0.15s; }
.testimonials-grid .testimonial-card:nth-child(5) { transition-delay: 0.25s; }
.testimonials-grid .testimonial-card:nth-child(6) { transition-delay: 0.35s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-stats { padding: 20px 24px; gap: 0; }
  .stat-item { padding: 0 20px; }
  .stat-number { font-size: 32px; }

  .ba-wrapper { flex-direction: column; }
  .ba-vs-divider { flex-direction: row; padding: 16px; min-width: auto; justify-content: center; gap: 16px; }
  .vs-arrow { transform: rotate(90deg); }

  .order-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --section-py: 72px; }

  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(8,8,8,0.97); backdrop-filter: blur(20px); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-item { padding: 0; }

  .hero-ctas { flex-direction: column; align-items: center; }

  .portfolio-grid { grid-template-columns: 1fr; }

  .order-form-card { padding: 28px 20px; }

  .footer-top { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-options { flex-direction: column; align-items: flex-start; }

  .problem-callout { flex-direction: column; padding: 24px; }
}
