/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS — KreativSales Book a Call
   Font: Inter | BG: #000 | Accent: #00ff00 | Radius: 57px
═══════════════════════════════════════════════════════════════ */
:root {
  --bg:           #000000;
  --bg-card:      #0e0e0e;
  --bg-card-2:    #111111;
  --bg-border:    #222222;
  --text-primary: #f2f2f2;
  --text-muted:   #d9d9d9;
  --text-dim:     #888888;
  --red:          #00ff00;
  --red-dark:     #00cc00;
  --red-hover:    #00cc00;
  --white:        #ffffff;

  --font:         'Inter', sans-serif;
  --r-pill:       57px;
  --r-card:       16px;
  --r-sm:         10px;

  --fast:         300ms;
  --instant:      200ms;

  --max-w:        1100px;
}

[data-theme="light"] {
  --bg:           #ffffff;
  --bg-card:      #f9f9f9;
  --bg-card-2:    #f1f1f1;
  --bg-border:    #e0e0e0;
  --text-primary: #111111;
  --text-muted:   #333333;
  --text-dim:     #666666;
  --red:          #00aa00; /* Darker green for contrast on white */
  --red-dark:     #008800;
  --red-hover:    #009900;
  --white:        #000000; /* Inverting white text to black */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text-muted);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: opacity var(--instant);
}
a:hover { opacity: 0.78; }
a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 3px; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

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

/* ─── URGENCY BAR ──────────────────────────────────────────── */
.urgency-bar {
  background: var(--red-dark);
  color: var(--bg); /* Black in dark theme, white in light theme */
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 20px;
  letter-spacing: 0.2px;
}

/* ─── HEADER ───────────────────────────────────────────────── */
.site-header {
  padding: 18px 0;
  border-bottom: 1px solid var(--bg-border);
}

.logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  cursor: default;
  user-select: none;
  display: inline-block;
  text-decoration: none;
}
.logo-r { color: var(--red); }
.logo-w { color: var(--white); }

/* ─── HERO SECTION ─────────────────────────────────────────── */
.hero-section {
  padding: 72px 0 60px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--r-pill);
  padding: 6px 20px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-guarantee {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 52px;
}

/* Hero cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1040px;
  margin-inline: auto;
  text-align: left;
  align-items: center;
}

@media (max-width: 720px) {
  .hero-cards { grid-template-columns: 1fr; }
}

/* Founder photo card */
.hero-photo-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
}

.founders-photo-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  pointer-events: none;
}

.founders-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border: 2px dashed #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
  transition: border-color var(--instant);
}
.founders-photo-placeholder:hover { border-color: var(--red); }

/* When real image is added, replace the placeholder div with:
   <img src="founders.jpg" alt="[Name] and [Name], Co-Founders of KreativSales"
        style="width:100%;aspect-ratio:4/3;object-fit:cover;display:block">
*/
.founders-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.placeholder-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  color: #555;
}

.placeholder-text {
  font-size: 13px;
  color: #555;
  text-align: center;
  line-height: 1.5;
}
.placeholder-text small { font-size: 11px; color: #444; }

.photo-text-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
}

.photo-quote {
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.founder-name-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--red);
  color: var(--bg); /* Black in dark theme, White in light theme */
  font-size: 13px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.hero-photo-card:hover .founder-name-bar {
  transform: translateY(0);
}

.founder-socials a {
  color: var(--bg);
  transition: opacity 0.2s;
}
.founder-socials a:hover {
  opacity: 0.7;
}

/* Highlights card */
.hero-highlights-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.highlights-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: var(--r-pill);
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: border-color var(--fast), transform var(--fast), box-shadow var(--fast);
}
.highlight-pill:hover { 
  border-color: var(--red); 
  box-shadow: 0 8px 24px rgba(0, 255, 0, 0.2);
  transform: translateX(8px);
}

.pill-check {
  background: var(--red);
  color: #000;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

/* ─── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  padding: 56px 0;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.cta-body {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
}

.cta-subtext {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 480px;
  text-align: center;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(60deg, #00cc00, #00cc00, #00cc00, #aaffaa, #00cc00, #00cc00, #00cc00) !important;
  background-size: 300% 300%;
  color: #000;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.1px;
  transition: transform var(--instant), box-shadow var(--instant);
  box-shadow: 0 4px 24px rgba(0, 255, 0, 0.35);
  animation: btn-shake-glow 1s ease-in-out infinite, btn-shine 3s ease infinite alternate;
}
@keyframes btn-shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes btn-shake-glow {
  0%, 100% { 
    box-shadow: 0 4px 24px rgba(0,255,0,0.35); 
    transform: translateX(0);
  }
  45% {
    box-shadow: 0 6px 36px rgba(0,255,0,0.58);
    transform: translateX(0);
  }
  50% { transform: translateX(-4px); }
  55% { transform: translateX(4px); }
  60% { transform: translateX(-4px); }
  65% { transform: translateX(4px); }
  70% { transform: translateX(0); }
}
.btn-red:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,255,0,0.5);
}
.btn-red:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.btn-red:active { transform: translateY(0); }
.btn-lg { font-size: 19px; padding: 20px 48px; }
.btn-sm { font-size: 14px; padding: 10px 24px; }
.btn-full { width: 100%; margin-top: 8px; }

/* ─── PROCESS / HOW WE DO IT ────────────────────────────────── */
.process-section {
  padding: 80px 0 72px;
}

.section-heading {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.22;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 10px;
}

.section-italic {
  text-align: center;
  font-style: italic;
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 48px;
}

/* ─── CLIENTS SECTION ─────────────────────────────────────────── */
.clients-section {
  padding: 80px 0;
  border-top: 1px solid var(--bg-border);
  background: var(--bg-card-2);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .clients-grid { grid-template-columns: 1fr; }
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color var(--fast), transform var(--fast);
}
.client-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.client-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg);
}

.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.client-card:hover .client-photo img {
  transform: scale(1.05);
}

/* ─── FOUNDERS SECTION ──────────────────────────────────────── */
.founders-section {
  padding: 80px 0;
  background: #050505;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

/* Proof box */
.proof-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px dashed #2a2a2a;
  border-radius: var(--r-card);
  padding: 36px;
  margin-bottom: 56px;
}

@media (max-width: 760px) {
  .proof-box { grid-template-columns: 1fr; }
}

.proof-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #111;
  border: 2px dashed #333;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color var(--instant);
}
.proof-photo-placeholder:hover { border-color: var(--red); }

.proof-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.proof-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.proof-pill {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-pill);
}
.proof-pill.no {
  background: #001a00;
  color: var(--red);
  border: 1px solid #003a00;
}

/* Founder cards */
.founder-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

@media (max-width: 720px) {
  .founder-cards { grid-template-columns: 1fr; }
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color var(--fast), transform var(--fast);
}
.founder-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.founder-portrait-wrap {
  position: relative;
}

.founder-portrait-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #111 0%, #1a1a1a 100%);
  border-bottom: 1px solid var(--bg-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background var(--instant);
}
.founder-card:hover .founder-portrait-placeholder {
  background: linear-gradient(160deg, #001400 0%, #002000 100%);
}

/* When real image is added, replace the placeholder div with:
   <img src="founder1.jpg" alt="[Founder Name]"
        style="width:100%;aspect-ratio:3/4;object-fit:cover;display:block">
*/

.founder-plaque {
  background: var(--red-dark);
  color: #000;
  font-size: 12px;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.3px;
}

.founder-bio {
  padding: 24px 22px 26px;
}

.founder-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.founder-story {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 18px;
}

.founder-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--bg-border);
  padding-top: 16px;
}

.founder-stats li {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

/* Services row */
.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-tag {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: var(--r-pill);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color var(--instant), color var(--instant);
}
.service-tag:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ─── FAQ SECTION ───────────────────────────────────────────── */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--instant);
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--red);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--instant);
}
.faq-q:hover { color: var(--red); }
.faq-q:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--fast);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ─── FINAL CTA ─────────────────────────────────────────────── */
.final-cta-section {
  padding: 96px 0;
  background: var(--bg-card-2);
  border-top: 1px solid var(--bg-border);
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.final-cta-body {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 580px;
  line-height: 1.7;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color var(--instant);
}
.footer-nav a:hover { color: var(--red); }

/* ─── STICKY BAR ────────────────────────────────────────────── */
.sticky-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--red);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  z-index: 99999 !important;
}

.sticky-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.sticky-prices {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-price-old {
  font-size: 24px;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 700;
}

.sticky-price-new {
  font-size: 30px;
  font-weight: 900;
  color: var(--red);
}

.sticky-slots {
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 600;
}

.sticky-hurry {
  color: var(--red);
  font-weight: 800;
}

.sticky-bar .btn-sm {
  font-size: 20px;
  padding: 14px 32px;
}

/* ─── MODAL ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fast);
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 520px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform var(--fast);
}
.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1;
  transition: color var(--instant);
}
.modal-close:hover { color: var(--red); }
.modal-close:focus-visible { outline: 2px solid var(--red); border-radius: 4px; }

.modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  padding-right: 24px;
}

.modal-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

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

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

.form-group input,
.form-group select {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  transition: border-color var(--instant);
  outline: none;
}
.form-group input::placeholder { color: #444; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #111; }

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

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 560px) {
  .hero-headline { letter-spacing: -0.5px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .sticky-slots { display: none; }
  .modal-box { padding: 28px 20px; }
  .section-heading { font-size: 24px; }
}


