/* ============================================================
   LKBR Marketing LLC — Main Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --navy: #0a0f2c;
  --navy-dark: #060b1f;
  --cyan: #00d4ff;
  --cyan-dark: #00b8d9;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --body-text: #1e293b;
  --muted: #64748b;
  --gold: #f59e0b;
  --green: #10b981;
  --border: #e2e8f0;
  --red: #ef4444;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-padding: 80px 24px;
  --section-padding-mobile: 48px 20px;
  --max-width: 1100px;
  --radius: 12px;
  --radius-sm: 8px;

  --transition: 0.2s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  overflow: visible;
}

h1, h2, h3, h4 {
  overflow: visible !important;
  padding-bottom: 10px !important;
  line-height: 1.3 !important;
}

/* ============================================================
   Utilities
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

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

/* ============================================================
   Fade-in Animation
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.02);
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--cyan-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: #151c40;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: #d97706;
}

.btn-block {
  display: flex;
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-brand span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body-text);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-cta {
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--cyan-dark);
  transform: scale(1.02);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
}

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

/* ============================================================
   Mobile Overlay
   ============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  font-family: var(--font-body);
  padding: 8px;
  transition: opacity var(--transition);
}

.overlay-close:hover {
  opacity: 0.7;
}

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

.overlay-links a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.overlay-links a:hover {
  color: var(--cyan);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy);
}

.footer-top {
  border-top: 3px solid var(--cyan);
  padding: 60px 24px 48px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand span {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}

.footer-tagline {
  color: var(--cyan);
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-location {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-email {
  color: var(--white);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-email:hover {
  color: var(--cyan);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

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

.footer-links a {
  color: var(--white);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 14px;
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--cyan);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  background: var(--navy-dark);
  padding: 18px 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--white);
  font-size: 13px;
  opacity: 0.85;
}

/* ============================================================
   Back to Top
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform var(--transition);
  z-index: 999;
  border: none;
  color: var(--navy);
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(0,212,255,0.4);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ============================================================
   Hero — Home (100vh)
   ============================================================ */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.hero-home .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 44, 0.75);
  z-index: 1;
}

.hero-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 0 24px 20px;
  width: 100%;
  overflow: visible;
}

.hero-home h1 {
  font-size: 58px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  overflow: visible;
  padding-bottom: 10px;
}

.hero-home .hero-sub {
  font-size: 20px;
  color: var(--white);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
  opacity: 0.92;
}

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

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 14px;
  opacity: 0.9;
}

.trust-item::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 15px;
}

/* ============================================================
   Hero — Inner Pages (460px)
   ============================================================ */
.hero-inner {
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  background: var(--navy);
}

.hero-inner .hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.15;
}

.hero-inner .hero-dot-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(0,212,255,0.25) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-inner .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
  width: 100%;
}

.hero-inner h1 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-inner .hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   Problem Section
   ============================================================ */
.section-problem {
  background: var(--white);
  padding: var(--section-padding);
}

.problem-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-headline {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 24px;
}

.problem-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: var(--white);
  border-left: 4px solid var(--cyan);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.problem-card strong {
  display: block;
  color: var(--body-text);
  font-size: 16px;
  margin-bottom: 6px;
}

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

/* ============================================================
   Services Section (Home)
   ============================================================ */
.section-services {
  background: var(--light-gray);
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-cards {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.service-card-cyan {
  border-top: 4px solid var(--cyan);
}

.service-card-gold {
  border-top: 4px solid var(--gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-laptop {
  width: 48px;
  height: 36px;
  border: 3px solid var(--cyan);
  border-radius: 4px;
  position: relative;
  background: transparent;
}

.icon-laptop::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--cyan);
  border-radius: 3px;
}

.icon-pencil {
  width: 8px;
  height: 44px;
  background: var(--gold);
  border-radius: 4px 4px 2px 2px;
  position: relative;
  transform: rotate(-30deg);
}

.icon-pencil::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 10px solid var(--gold);
}

.service-card h3 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-card .service-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-list.gold-checks li::before {
  color: var(--gold);
}

.price-box {
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  margin-bottom: 20px;
  text-align: center;
}

.price-box .price-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 4px;
}

.price-box .price-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.price-box .price-note {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 4px;
}

.content-note {
  background: #fefce8;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  color: #92400e;
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   How It Works
   ============================================================ */
.section-how {
  background: var(--navy);
  padding: var(--section-padding);
}

.section-how .section-header h2 {
  color: var(--white);
}

.section-how .section-header p {
  color: var(--muted);
}

.steps-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.how-note {
  text-align: center;
  margin-top: 40px;
  color: var(--white);
  font-style: italic;
  font-size: 16px;
  opacity: 0.85;
}

/* ============================================================
   Stats / Results
   ============================================================ */
.section-stats {
  background: var(--white);
  padding: var(--section-padding);
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   About Strip (Home)
   ============================================================ */
.section-about-strip {
  background: var(--light-gray);
  padding: var(--section-padding);
}

.about-strip-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.about-strip-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  border: 3px solid var(--cyan);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-strip-content h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-strip-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-strip-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.about-strip-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--body-text);
  font-weight: 500;
}

.about-strip-checks li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 15px;
}

.link-arrow {
  color: var(--cyan);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.link-arrow:hover {
  gap: 10px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.section-testimonials {
  background: var(--navy);
  padding: var(--section-padding);
}

.section-testimonials .section-header h2 {
  color: var(--white);
}

.testimonials-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  color: var(--white);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
}

.author-biz {
  color: var(--muted);
  font-size: 13px;
}

/* ============================================================
   Final CTA
   ============================================================ */
.section-final-cta {
  background: var(--cyan);
  padding: var(--section-padding);
  text-align: center;
}

.section-final-cta h2 {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-final-cta p {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-final-cta .btn-hero {
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.section-final-cta .btn-hero:hover {
  background: #151c40;
  transform: scale(1.02);
}

/* ============================================================
   About Page — Story
   ============================================================ */
.section-story {
  background: var(--white);
  padding: var(--section-padding);
}

.story-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.story-img {
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid var(--cyan);
  object-fit: cover;
  min-height: 500px;
}

.story-content h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 28px;
}

.story-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-byline {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--body-text);
  font-weight: 500;
}

/* ============================================================
   Why LKBR Section
   ============================================================ */
.section-why {
  background: var(--light-gray);
  padding: var(--section-padding);
}

.section-why .section-header h2 {
  font-size: 38px;
}

.why-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-card {
  border-radius: var(--radius);
  padding: 32px;
}

.why-card-dark {
  background: var(--body-text);
  color: var(--white);
}

.why-card-highlight {
  background: var(--cyan);
  color: var(--navy);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.why-card-dark h3 { color: var(--white); }
.why-card-highlight h3 { color: var(--navy); }

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

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.why-card-dark .why-list li { color: rgba(255,255,255,0.85); }
.why-card-highlight .why-list li { color: var(--navy); font-weight: 600; }

.badge-x::before {
  content: '✗';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.badge-check::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   Values Section
   ============================================================ */
.section-values {
  background: var(--white);
  padding: var(--section-padding);
}

.values-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-top: 4px solid var(--cyan);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.value-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   Page-level Dark CTA
   ============================================================ */
.section-page-cta {
  background: var(--navy);
  padding: 60px 24px;
  text-align: center;
}

.section-page-cta h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 28px;
}

/* ============================================================
   Services Page Sections
   ============================================================ */
.section-service-detail {
  padding: var(--section-padding);
}

.section-service-detail.alt {
  background: var(--light-gray);
}

.service-detail-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-grid.reversed {
  direction: rtl;
}

.service-detail-grid.reversed > * {
  direction: ltr;
}

.service-detail-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  min-height: 400px;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
}

.service-detail-content h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-detail-content .service-desc {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.pricing-card-inline {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.pricing-card-inline .price-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-card-inline .price-tier:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-card-inline .tier-name {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.pricing-card-inline .tier-desc {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.pricing-card-inline .tier-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
}

.content-note-yellow {
  background: #fefce8;
  border-left: 4px solid var(--gold);
  padding: 16px;
  border-radius: 4px;
  color: #92400e;
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

/* ============================================================
   Maintenance Section
   ============================================================ */
.section-maintenance {
  background: var(--navy);
  padding: var(--section-padding);
  text-align: center;
}

.section-maintenance h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
}

.section-maintenance p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 48px;
}

.maintenance-cards {
  max-width: 800px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.maintenance-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.maintenance-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.maintenance-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   Pricing Page — Cards
   ============================================================ */
.section-pricing {
  background: var(--white);
  padding: var(--section-padding);
}

.pricing-cards {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--border);
  position: relative;
  background: var(--white);
}

.pricing-card.featured {
  border: 3px solid var(--cyan);
}

.most-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-card .card-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.price-main {
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.price-period {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.price-green {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pill-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pill-cyan {
  background: rgba(0,212,255,0.15);
  color: var(--cyan);
}

.pill-gold {
  background: rgba(245,158,11,0.15);
  color: var(--gold);
}

.pricing-card .check-list {
  flex: 1;
}

.pricing-card .check-list li {
  font-size: 15px;
  line-height: 1.8;
}

.card-btn {
  margin-top: auto;
  display: flex;
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  font-weight: 700;
  font-size: 15px;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}

.card-btn:hover {
  transform: scale(1.01);
}

.card-btn-cyan {
  background: var(--cyan);
  color: var(--navy);
}

.card-btn-cyan:hover {
  background: var(--cyan-dark);
}

.card-btn-dark {
  background: var(--navy);
  color: var(--white);
}

.card-btn-dark:hover {
  background: #151c40;
}

.card-btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.card-btn-gold:hover {
  background: #d97706;
}

/* ============================================================
   Content Creation Card (Pricing Page)
   ============================================================ */
.section-content-creation {
  background: var(--white);
  padding: 0 24px 60px;
}

.content-creation-card {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #0a0f2c;
  border-radius: 12px;
  padding: 40px;
  border-left: 4px solid #f59e0b;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cc-headline {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cc-subtext {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.cc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-list li {
  color: var(--white);
  font-size: 15px;
  line-height: 1.8;
  padding-left: 26px;
  position: relative;
}

.cc-list li::before {
  content: '\2713';
  color: #f59e0b;
  font-weight: 700;
  position: absolute;
  left: 0;
}

.cc-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cc-note {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
}

.cc-btn {
  display: inline-block;
  background: #f59e0b;
  color: #0a0f2c;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cc-btn:hover {
  opacity: 0.88;
}

/* ============================================================
   Included Section (Pricing)
   ============================================================ */
.section-included {
  background: var(--light-gray);
  padding: var(--section-padding);
}

.section-included h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

.included-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.included-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.included-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.included-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
}

.included-item span {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

/* ============================================================
   FAQ (Pricing Page)
   ============================================================ */
.section-faq {
  background: var(--white);
  padding: var(--section-padding);
}

.section-faq h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  gap: 16px;
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--cyan);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--cyan);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================================
   Compare Table (Pricing)
   ============================================================ */
.section-compare {
  background: var(--navy);
  padding: var(--section-padding);
}

.section-compare h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.compare-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.compare-table th.col-lkbr {
  color: var(--cyan);
  font-size: 16px;
}

.compare-table td {
  padding: 14px 20px;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.compare-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}

.compare-table td.feature-name {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.compare-table td.col-lkbr {
  background: rgba(0,212,255,0.12);
  color: var(--cyan);
  font-weight: 700;
}

/* ============================================================
   Contact Page
   ============================================================ */
.section-contact {
  background: var(--white);
  padding: var(--section-padding);
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--body-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color var(--transition);
  color: var(--body-text);
  background: var(--white);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
}

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

/* Service checkboxes as pill toggles */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pill-label {
  cursor: pointer;
}

.service-pill-label input {
  display: none;
}

.pill-text {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
  background: var(--white);
}

.service-pill-label input:checked + .pill-text {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
  font-weight: 700;
}

.submit-btn {
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 18px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.submit-btn:hover {
  background: var(--cyan-dark);
  transform: scale(1.01);
}

.form-error {
  color: var(--red);
  font-size: 14px;
  padding: 12px;
  background: #fef2f2;
  border-radius: var(--radius-sm);
  border: 1px solid #fca5a5;
  display: none;
}

.form-error.visible { display: block; }

/* Success state */
.form-success {
  text-align: center;
  padding: 48px 32px;
  display: none;
}

.form-success.visible { display: block; }

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--navy);
}

.form-success h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Contact info card */
.contact-info-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
}

.contact-info-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 32px;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.next-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  flex-shrink: 0;
}

.next-step-text h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}

.next-step-text p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

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

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.detail-label {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 80px;
}

.detail-value {
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
}

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

.contact-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 14px;
  transition: color var(--transition);
}

.contact-social a:hover {
  color: var(--cyan);
}

.contact-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Trust row */
.section-trust {
  background: var(--light-gray);
  padding: 48px 24px;
}

.trust-cards {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.trust-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
}

.trust-card h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

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

/* ============================================================
   Responsive — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 500px; }
  .about-strip-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-img { max-width: 100%; }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Responsive — 768px
   ============================================================ */
@media (max-width: 768px) {
  .content-creation-card {
    grid-template-columns: 1fr;
    gap: 32px;
    border-left: none;
    border-top: 4px solid #f59e0b;
  }
  :root {
    --section-padding: 48px 20px;
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero home */
  .hero-home h1 { font-size: 36px; }
  .hero-home .hero-sub { font-size: 17px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  /* Hero inner */
  .hero-inner h1 { font-size: 36px; }
  .hero-inner { height: auto; padding: 80px 20px; }

  /* Sections */
  .section-header h2 { font-size: 32px; }
  .section-header p { font-size: 16px; }

  /* Grids → single column */
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reversed { direction: ltr; }
  .maintenance-cards { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  /* Problem headline */
  .problem-headline { font-size: 30px; }

  /* Stat */
  .stat-num { font-size: 36px; }

  /* About strip img */
  .about-strip-img { max-width: 100%; aspect-ratio: auto; }

  /* Story img */
  .story-img { min-height: 300px; }

  /* Final CTA */
  .section-final-cta h2 { font-size: 30px; }
  .section-final-cta .btn-hero { font-size: 16px; padding: 16px 32px; }

  /* Section page cta */
  .section-page-cta h2 { font-size: 28px; }

  /* Compare table */
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

/* ============================================================
   Responsive — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-home h1 { font-size: 30px; }
  .hero-trust { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cards { grid-template-columns: 1fr; }
  .service-pills { gap: 8px; }
  .pricing-card { padding: 28px 20px; }
  .price-amount { font-size: 44px; }
}
