html { scroll-behavior: auto !important; }
/* ===== NOISE OVERLAY ===== */
.sd-noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1;
}
.sd-noise { position: relative; }
.sd-noise > * { position: relative; z-index: 2; }

/* ===== GRADIENT MESH HERO ===== */
.sd-hero-mesh {
  position: relative;
  overflow: hidden;
}
.sd-hero-mesh::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(30,30,30,0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(40,40,40,0.3) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(25,25,25,0.5) 0%, transparent 50%);
  animation: sd-mesh-drift 20s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes sd-mesh-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-3%, 2%) scale(1.02); }
  66% { transform: translate(2%, -1%) scale(0.98); }
  100% { transform: translate(-1%, 3%) scale(1.01); }
}

/* ===== SECTIONS ===== */
.sd-hero {
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sd-hero h1 {
  font-family: Orbitron, sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}
.sd-hero p {
  font-family: Rajdhani, sans-serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.sd-hero .sd-hero-accent { color: #fff; font-weight: 600; }

/* Section types */
.sd-section-beige { background: #111111; padding: 100px 24px; position: relative; }
.sd-section-white { background: #0a0a0a; padding: 100px 24px; position: relative; }
.sd-section-black { background: #0a0a0a; padding: 100px 24px; color: #fff; position: relative; }
.sd-inner { max-width: 1200px; margin: 0 auto; }

/* ===== LABELS & TITLES ===== */
.sd-label {
  font-family: Rajdhani, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.sd-label::before, .sd-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.sd-label-light { color: rgba(255,255,255,0.75); }
.sd-section-title {
  font-family: Orbitron, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.sd-section-title-light { color: #fff; }
.sd-section-sub {
  font-family: Rajdhani, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin: 0 0 56px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.sd-section-sub-light { color: rgba(255,255,255,0.75); }

/* ===== CARDS — 3D HOVER ===== */
.sd-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sd-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.sd-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  border-color: transparent;
}
.sd-card:hover::before { opacity: 1; }
.sd-card-num {
  font-family: Orbitron, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  margin: 0 0 24px;
  letter-spacing: 0.1em;
}
.sd-card h3 {
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.sd-card p {
  font-family: Rajdhani, sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}
/* Dark card variant */
.sd-card-dark {
  background: #111;
  border-color: rgba(255,255,255,0.06);
}
.sd-card-dark:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  border-color: transparent;
}
.sd-card-dark h3 { color: #fff; }
.sd-card-dark p { color: #666; }
.sd-card-dark .sd-card-num { color: #333; }

/* ===== BUTTONS ===== */
.sd-btn-solid, .sd-btn-outline, .sd-btn-white, .sd-btn-outline-white {
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sd-btn-solid {
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}
.sd-btn-solid:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}
.sd-btn-outline {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
}
.sd-btn-outline:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}
.sd-btn-white {
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}
.sd-btn-white:hover {
  background: #1a1a1a;
  border-color: #f5f3ee;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}
.sd-btn-outline-white {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
}
.sd-btn-outline-white:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
}
/* Arrow slide on hover */
.sd-btn-arrow { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; }
.sd-btn-solid:hover .sd-btn-arrow,
.sd-btn-outline:hover .sd-btn-arrow,
.sd-btn-white:hover .sd-btn-arrow,
.sd-btn-outline-white:hover .sd-btn-arrow { transform: translateX(4px); }
/* Ripple */
.sd-ripple {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50% !important;
  transform: scale(0);
  animation: sd-ripple-anim 0.6s ease-out;
  pointer-events: none;
}
@keyframes sd-ripple-anim { to { transform: scale(80); opacity: 0; } }

.sd-btn-center { text-align: center; margin-top: 48px; }
.sd-cta { text-align: center; max-width: 700px; margin: 0 auto; }
.sd-cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ===== SPLIT LAYOUT ===== */
.sd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.sd-split-label {
  font-family: Rajdhani, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin: 0 0 12px;
}
.sd-split h2 {
  font-family: Orbitron, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}
.sd-split p {
  font-family: Rajdhani, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 20px;
}
.sd-arrow-link {
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sd-arrow-link:hover { gap: 14px; }

/* ===== STATS ===== */
.sd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.sd-stat {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.sd-stat:last-child { border-right: none; }
.sd-stat-num {
  font-family: Orbitron, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.sd-stat-label {
  font-family: Rajdhani, sans-serif;
  font-size: 0.8rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* ===== DEMO CHAT ===== */
.sd-demo-box {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Courier New', monospace;
  position: relative;
  overflow: hidden;
}
.sd-demo-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.sd-demo-line {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0 12px;
  opacity: 0;
  animation: sd-chat-in 0.5s ease forwards;
}
.sd-demo-line:nth-child(1) { animation-delay: 0.3s; }
.sd-demo-line:nth-child(2) { animation-delay: 0.8s; }
.sd-demo-line:nth-child(3) { animation-delay: 1.6s; }
.sd-demo-line:nth-child(4) { animation-delay: 2.1s; }
@keyframes sd-chat-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.sd-demo-name { color: #fff; font-weight: 700; }
.sd-demo-sally { color: #a8e6cf; font-weight: 700; }
.sd-demo-text { color: #bbb; }

/* ===== WAVE DIVIDER ===== */
.sd-divider-wave {
  height: 60px;
  overflow: hidden;
  position: relative;
}
.sd-divider-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ===== PROCESS STEPS ===== */
.sd-process { max-width: 900px; margin: 0 auto; }
.sd-step {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding: 32px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}
.sd-step:hover {
  border-color: rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.sd-step-num {
  font-family: Orbitron, sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  min-width: 70px;
  transition: color 0.3s ease;
}
.sd-step:hover .sd-step-num { color: #fff; }
.sd-step h3 {
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 10px;
}
.sd-step p {
  font-family: Rajdhani, sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.7;
}

/* ===== TEXT SECTION ===== */
.sd-text-section { max-width: 800px; margin: 0 auto; }
.sd-text-section h2 {
  font-family: Orbitron, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.08;
  text-align: left;
  letter-spacing: -0.03em;
}
.sd-text-section p {
  font-family: Rajdhani, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin: 0 0 20px;
}
.sd-text-section ul { margin: 0 0 28px; padding-left: 0; list-style: none; }
.sd-text-section li {
  font-family: Rajdhani, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  padding-left: 28px;
  position: relative;
}
.sd-text-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.sd-text-section li strong { color: #fff; }

/* ===== COMPARISON ===== */
.sd-comparison {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sd-comp-col { padding: 40px; font-family: Rajdhani, sans-serif; }
.sd-comp-col h3 { font-family: Orbitron, sans-serif; font-weight: 700; font-size: 1.3rem; margin: 0 0 24px; }
.sd-comp-col ul { list-style: none; padding: 0; margin: 0; }
.sd-comp-col li { font-size: 1rem; line-height: 2.2; padding-left: 28px; position: relative; }
.sd-comp-old { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06); }
.sd-comp-old h3 { color: rgba(255,255,255,0.75); }
.sd-comp-old li { color: rgba(255,255,255,0.8); }
.sd-comp-old li::before { content: '✗'; position: absolute; left: 0; color: rgba(255,255,255,0.2); }
.sd-comp-new { background: #0a0a0a; border: 1px solid rgba(255,255,255,0.06); }
.sd-comp-new h3 { color: #fff; }
.sd-comp-new li { color: #999; }
.sd-comp-new li::before { content: '✓'; position: absolute; left: 0; color: #a8e6cf; }

/* ===== CONTACT GRID ===== */
.sd-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.sd-contact-info h3 {
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 16px;
}
.sd-contact-info p {
  font-family: Rajdhani, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 2;
}

/* ===== FORM SECTION ===== */
.sd-form-section { max-width: 600px; margin: 0 auto; }
.sd-form-section label {
  display: block;
  font-family: Rajdhani, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin: 24px 0 8px;
}
.sd-form-section label:first-child { margin-top: 0; }
.sd-form-section input,
.sd-form-section select,
.sd-form-section textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
  font-family: Rajdhani, sans-serif;
  background: #1a1a1a;
  color: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sd-form-section input:focus,
.sd-form-section select:focus,
.sd-form-section textarea:focus {
  border-color: rgba(255,255,255,0.3);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}
.sd-form-section button {
  margin-top: 28px;
  width: 100%;
  cursor: pointer;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  padding: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: Rajdhani, sans-serif;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sd-form-section button:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.1);
}

/* ===== MARQUEE ===== */
.sd-marquee-wrap {
  background: #0a0a0a;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sd-marquee {
  display: flex;
  gap: 60px;
  animation: sd-marquee-scroll 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.sd-marquee span {
  font-family: Orbitron, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes sd-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */



/* ===== CYAN ACCENT SYSTEM (#00e0ff) ===== */
:root {
  --sd-cyan: #00e0ff;
  --sd-cyan-glow: rgba(0,224,255,0.15);
  --sd-cyan-dim: rgba(0,224,255,0.6);
}

/* Labels get cyan */
.sd-label {
  color: var(--sd-cyan) !important;
}
.sd-label::before, .sd-label::after {
  background: var(--sd-cyan) !important;
  opacity: 0.4;
}
.sd-hero-fullscreen .sd-label {
  color: var(--sd-cyan) !important;
}

/* Card hover gets cyan border glow */
.sd-card:hover {
  border-color: var(--sd-cyan) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px var(--sd-cyan-glow) !important;
}

/* Card numbers get cyan */
.sd-card-num {
  color: var(--sd-cyan-dim) !important;
}

/* Buttons — primary becomes cyan */
.sd-btn-solid {
  background: var(--sd-cyan) !important;
  border-color: var(--sd-cyan) !important;
  color: #000 !important;
}
.sd-btn-solid:hover {
  background: #00c4e0 !important;
  border-color: #00c4e0 !important;
  color: #000 !important;
  box-shadow: 0 6px 30px var(--sd-cyan-glow) !important;
}
.sd-btn-outline:hover {
  background: var(--sd-cyan) !important;
  border-color: var(--sd-cyan) !important;
  color: #000 !important;
}

/* Section titles get subtle cyan underline */
.sd-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--sd-cyan);
  margin: 16px auto 0;
  opacity: 0.6;
}

/* Step numbers */
.sd-step-num {
  color: var(--sd-cyan-dim) !important;
}
.sd-step:hover .sd-step-num {
  color: var(--sd-cyan) !important;
}

/* Comparison checkmarks */
.sd-comp-new li::before {
  color: var(--sd-cyan) !important;
}

/* Arrow links */
.sd-arrow-link {
  color: var(--sd-cyan) !important;
}
.sd-arrow-link:hover {
  color: #fff !important;
}

/* Stat numbers */
.sd-stat-num {
  color: var(--sd-cyan) !important;
}

/* Form focus */
.sd-form-section input:focus,
.sd-form-section select:focus,
.sd-form-section textarea:focus {
  border-color: var(--sd-cyan) !important;
  box-shadow: 0 0 0 3px var(--sd-cyan-glow) !important;
}

/* Form submit button */
.sd-form-section button,
.sd-form-section input[type="submit"],
.sd-form-section .wpcf7-submit {
  background: var(--sd-cyan) !important;
  border-color: var(--sd-cyan) !important;
  color: #000 !important;
}
.sd-form-section button:hover,
.sd-form-section input[type="submit"]:hover,
.sd-form-section .wpcf7-submit:hover {
  background: #00c4e0 !important;
  border-color: #00c4e0 !important;
  box-shadow: 0 6px 30px var(--sd-cyan-glow) !important;
}

/* Marquee text */
.sd-marquee span {
  color: rgba(0,224,255,0.15) !important;
}

/* Demo chat Sally name */
.sd-demo-sally {
  color: var(--sd-cyan) !important;
}

/* Scroll hint */
.sd-scroll-hint {
  color: var(--sd-cyan-dim) !important;
}

/* Links inside sections */
.sd-section-beige a, .sd-section-white a, .sd-section-black a,
.sd-text-section a {
  color: var(--sd-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,224,255,0.3);
  transition: border-color 0.3s ease;
}
.sd-section-beige a:hover, .sd-section-white a:hover, .sd-section-black a:hover,
.sd-text-section a:hover {
  border-color: var(--sd-cyan);
}



/* Cyan hero accent */
.sd-hero-cyan {
  color: #00e0ff !important;
}
/* Cyan feature cards */
.sd-card-cyan {
  background: transparent !important;
  border: 1px solid #00e0ff !important;
  color: #fff !important;
}
.sd-card-cyan h3 { color: #00e0ff !important; }
.sd-card-cyan p { color: rgba(255,255,255,0.75) !important; }
.sd-card-cyan .sd-card-num { color: rgba(0,224,255,0.4) !important; }

/* ===== YELLOW ACCENT SYSTEM ===== */
/* Yellow toolkit/feature cards */
.sd-card-yellow {
  background: #F5C518 !important;
  border: none !important;
  color: #000 !important;
}
.sd-card-yellow h3 {
  color: #000 !important;
}
.sd-card-yellow p {
  color: rgba(0,0,0,0.8) !important;
}
.sd-card-yellow .sd-card-num {
  color: rgba(0,0,0,0.3) !important;
}

/* Yellow hero accent text */
.sd-hero-yellow {
  color: #F5C518 !important;
}

@media (max-width: 768px) {
  .sd-hero { padding: 60px 20px 48px; }
  .sd-hero h1 { font-size: 2.2rem; }
  .sd-cards { grid-template-columns: 1fr; }
  .sd-split { grid-template-columns: 1fr; gap: 40px; }
  .sd-section-title { font-size: 2rem; }
  .sd-section-beige, .sd-section-white, .sd-section-black { padding: 64px 20px; }
  .sd-cta-buttons { flex-direction: column; align-items: center; }
  .sd-stats { grid-template-columns: repeat(2, 1fr); }
  .sd-stat { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sd-comparison { grid-template-columns: 1fr; }
  .sd-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .sd-step { flex-direction: column; gap: 1rem; padding: 20px; }
  .sd-demo-box { padding: 28px 20px; }
}


/* ===== FULL-SCREEN HERO ===== */
.sd-hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.sd-hero-fullscreen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
  pointer-events: none;
}

.sd-hero-fullscreen .sd-hero {
  padding: 120px 24px 80px;
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.sd-hero-fullscreen .sd-hero h1 {
  color: #fff;
  text-shadow: 0 0 40px rgba(0,0,0,1), 0 0 80px rgba(0,0,0,0.8);
}
.sd-hero-fullscreen .sd-hero p {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 30px rgba(0,0,0,1), 0 0 60px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,1);
}
.sd-hero-fullscreen .sd-hero .sd-hero-accent {
  color: #fff;
}
.sd-hero-fullscreen .sd-label {
  text-shadow: 0 0 20px rgba(0,0,0,1), 0 0 40px rgba(0,0,0,0.8);
  color: rgba(255,255,255,0.8);
}
.sd-hero-fullscreen .sd-label::before,
.sd-hero-fullscreen .sd-label::after {
  background: rgba(255,255,255,0.2);
}
.sd-hero-fullscreen .sd-btn-solid {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.sd-hero-fullscreen .sd-btn-solid:hover {
  background: #1a1a1a;
  border-color: #f5f3ee;
  color: #000;
}
.sd-hero-fullscreen .sd-btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.sd-hero-fullscreen .sd-btn-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Scroll hint */
.sd-scroll-hint {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
}
.sd-scroll-hint span {
  font-family: Rajdhani, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.sd-scroll-dot {
  animation: sd-scroll-bounce 2s ease-in-out infinite;
}
@keyframes sd-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* Threads canvas styling */
.sd-hero-fullscreen canvas {
  opacity: 0.7;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

@media (max-width: 768px) {
  .sd-hero-fullscreen { min-height: 100svh; }
  
.sd-hero-fullscreen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
  pointer-events: none;
}

.sd-hero-fullscreen .sd-hero { padding: 80px 20px 60px; }
  .sd-hero-fullscreen .sd-hero h1 { font-size: 2rem; }
  .sd-scroll-hint { display: none; }
}


/* Hero content direct class selectors */
.sd-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.sd-hero-title {
  font-family: Orbitron, sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff !important;
  text-shadow: 0 0 40px rgba(0,0,0,1), 0 0 80px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,1);
  margin: 0 0 20px;
  line-height: 1.1;
}
.sd-hero-sub {
  font-family: Rajdhani, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.95) !important;
  text-shadow: 0 0 30px rgba(0,0,0,1), 0 0 60px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,1);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Text backdrop — readable text without killing Threads */
.sd-hero-content {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 60%, transparent 80%);
  padding: 60px 80px;
  border-radius: 8px;
}
/* ===== MOBILE FIXES ===== */

/* Fix: sd-reveal elements in hero must be visible immediately (iOS Safari IntersectionObserver issue) */
.sd-hero-fullscreen .sd-reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Nuclear Astra background override for mobile */
@media (max-width: 921px) {
  .ast-separate-container,
  .ast-plain-container,
  .ast-page-builder-template,
  .ast-separate-container .ast-article-single,
  .ast-separate-container .ast-article-post,
  .ast-separate-container .site-main,
  .ast-separate-container .site-main > .ast-row,
  .ast-separate-container .ast-article-single .entry-content,
  .ast-separate-container .comment-respond,
  #content.site-content,
  .site-content,
  .ast-container,
  #primary,
  #main,
  article,
  .entry-content,
  .ast-row,
  .site-main {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }
  
  /* Astra mobile header */
  .ast-mobile-header-wrap,
  .ast-mobile-header {
    background: transparent !important;
  }
  body.page.sd-nav-scrolled .ast-mobile-header-wrap,
  body.page.sd-nav-scrolled .ast-mobile-header {
    background: rgba(10,10,10,0.95) !important;
  }
  
  /* Hero mobile padding fix */
  .sd-hero-fullscreen {
    min-height: 100svh;
    min-height: 100vh;
  }
  .sd-hero-fullscreen .sd-hero {
    padding: 100px 20px 60px;
  }
  .sd-hero-fullscreen .sd-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  /* Fix Astra page container white bg on mobile */
  .ast-separate-container .ast-article-single-style-1 .entry-content,
  .ast-separate-container .ast-article-single-style-2 .entry-content {
    background: transparent !important;
    padding: 0 !important;
  }
}

/* ===== MOBILE NAV NUCLEAR FIX ===== */
@media (max-width: 921px) {
  /* Hamburger icon — force white everywhere */
  .ast-mobile-menu-trigger-minimal,
  .ast-button-wrap .menu-toggle,
  .menu-toggle,
  .ast-mobile-menu-buttons .menu-toggle,
  [data-section="section-header-mobile-trigger"] .ast-button-wrap .ast-mobile-menu-trigger-minimal,
  .ast-header-break-point .ast-mobile-menu-buttons .menu-toggle,
  .ast-mobile-menu-trigger-minimal .ast-mobile-svg,
  .ast-mobile-menu-trigger-fill,
  .ast-mobile-menu-trigger-outline,
  .ast-mobile-menu-trigger-minimal svg,
  .ast-mobile-menu-trigger-minimal .ast-mobile-svg svg {
    color: #fff !important;
    fill: #fff !important;
    border-color: rgba(255,255,255,0.3) !important;
    background: transparent !important;
  }
  
  /* SVG inside hamburger */
  .ast-mobile-menu-trigger-minimal svg path,
  .ast-mobile-menu-trigger-minimal svg line,
  .ast-mobile-menu-trigger-minimal svg rect,
  .menu-toggle svg path,
  .menu-toggle svg line,
  .menu-toggle svg rect,
  .ast-mobile-svg svg path,
  .ast-mobile-svg svg {
    fill: #fff !important;
    stroke: #fff !important;
    color: #fff !important;
  }
  
  /* Close button in mobile menu */
  .ast-mobile-popup-drawer .menu-toggle-close,
  .ast-mobile-popup-drawer.active .menu-toggle-close,
  .menu-toggle-close svg,
  .menu-toggle-close svg path {
    color: #fff !important;
    fill: #fff !important;
  }

  /* Mobile menu drawer/popup background */
  .ast-mobile-popup-drawer,
  .ast-mobile-popup-drawer .ast-mobile-popup-inner,
  .ast-mobile-popup-drawer.active .ast-mobile-popup-inner,
  .ast-mobile-header-content,
  .ast-mobile-popup-content,
  .ast-mobile-popup-overlay,
  .ast-mobile-header-wrap .ast-mobile-header-content,
  #ast-mobile-popup {
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
  }

  /* Mobile menu links */
  .ast-mobile-popup-content a,
  .ast-mobile-popup-content .menu-link,
  .ast-mobile-header-content a,
  .ast-mobile-header-content .menu-link,
  .ast-mobile-popup-inner a,
  .ast-mobile-popup-inner .menu-link,
  #ast-mobile-popup a,
  #ast-mobile-popup .menu-link {
    color: #fff !important;
    font-family: "Rajdhani", sans-serif !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
  }

  /* Menu item borders */
  .ast-mobile-popup-content .menu-item,
  .ast-mobile-header-content .menu-item,
  .ast-mobile-popup-inner .menu-item,
  #ast-mobile-popup .menu-item {
    border-color: rgba(255,255,255,0.08) !important;
  }
  
  /* Submenu arrows */
  .ast-mobile-popup-content .ast-menu-toggle,
  .ast-mobile-header-content .ast-menu-toggle,
  .ast-mobile-popup-inner .ast-menu-toggle,
  .ast-mobile-popup-content .ast-menu-toggle svg,
  .ast-mobile-header-content .ast-menu-toggle svg {
    color: #fff !important;
    fill: #fff !important;
    border-color: rgba(255,255,255,0.1) !important;
  }

  /* Mobile header bar background */
  .ast-mobile-header-wrap,
  .ast-mobile-header,
  .ast-header-break-point .ast-primary-header {
    background: transparent !important;
    border: none !important;
  }
  body.sd-nav-scrolled .ast-mobile-header-wrap,
  body.sd-nav-scrolled .ast-mobile-header,
  body.sd-nav-scrolled .ast-header-break-point .ast-primary-header {
    background: rgba(10,10,10,0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }
  body.single-post .ast-mobile-header-wrap,
  body.single-post .ast-mobile-header {
    background: rgba(10,10,10,0.95) !important;
  }
}

/* ===== ASTRA MENU BG NUCLEAR FIX ===== */
.main-header-menu,
.main-header-menu.ast-menu-shadow,
.main-header-menu.ast-nav-menu,
.ast-builder-menu-mobile .main-header-menu,
.ast-builder-menu .main-header-menu,
.ast-builder-menu-mobile-focus-item .main-header-menu,
.ast-nav-menu,
.ast-flex.main-header-menu,
.submenu-with-border.main-header-menu,
.astra-menu-animation-fade .main-header-menu {
  background: #0a0a0a !important;
  background-color: #0a0a0a !important;
}

/* Footer */
.site-below-footer-wrap,
.site-footer,
.ast-footer,
.ast-small-footer,
footer,
.site-footer-primary-section,
.ast-builder-grid-row-container {
  background: #0a0a0a !important;
  background-color: #0a0a0a !important;
  color: rgba(255,255,255,0.5) !important;
}
footer a, .site-footer a, .ast-footer a {
  color: rgba(255,255,255,0.6) !important;
}

/* ===== MENU LINK BG FIX ===== */
.menu-link,
a.menu-link,
.main-header-menu .menu-link,
.ast-nav-menu .menu-link,
.ast-builder-menu .menu-link,
.ast-builder-menu-mobile .menu-link,
.main-header-menu .menu-item > a,
.ast-nav-menu .menu-item > a,
.menu-item .menu-link,
.sub-menu .menu-link,
.sub-menu a {
  background: transparent !important;
  background-color: transparent !important;
  color: #fff !important;
}

/* ===== MOBILE MENU SPACING FIX ===== */
@media (max-width: 921px) {
  .ast-mobile-header-content {
    padding-top: 70px !important;
  }
  .ast-mobile-header-content .menu-item:first-child {
    margin-top: 0 !important;
  }
}

/* ===== COMPREHENSIVE MOBILE FIX ===== */
@media (max-width: 768px) {
  /* Our Work: stats grid */
  .sd-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .sd-stat {
    padding: 16px !important;
  }
  .sd-stat-num {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }

  /* Our Work: technical highlights table */
  .sd-tech-grid,
  table.sd-tech-grid {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    font-size: 0.8rem !important;
  }
  .sd-tech-grid td,
  .sd-tech-grid th {
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }

  /* Our Work: brief/deliverables split */
  .sd-case-split,
  .sd-brief-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Pricing: cards stack */
  .sd-pricing-cards,
  .sd-pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .sd-pricing-card {
    padding: 32px 24px !important;
  }

  /* Pricing: comparison table */
  .sd-comparison,
  .sd-comparison-table {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .sd-comparison table,
  .sd-versus-table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    font-size: 0.85rem !important;
  }
  .sd-versus-table td,
  .sd-versus-table th {
    padding: 10px 12px !important;
  }

  /* FAQ sections */
  .sd-faq-item {
    padding: 20px 16px !important;
  }
  .sd-faq-item h3 {
    font-size: 1rem !important;
  }

  /* General section padding reduction */
  .sd-section-beige,
  .sd-section-white,
  .sd-section-black {
    padding: 48px 16px !important;
  }

  /* Split layouts */
  .sd-split {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 0 16px !important;
  }

  /* Buttons: full width on mobile */
  .sd-cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .sd-cta-buttons a {
    text-align: center !important;
    justify-content: center !important;
  }

  /* Card grid */
  .sd-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .sd-card {
    padding: 28px 20px !important;
  }

  /* Inner container max-width */
  .sd-inner {
    padding: 0 4px !important;
  }

  /* Section titles */
  .sd-section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
  }

  /* Hero adjustments */
  .sd-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
  }
  .sd-hero p {
    font-size: 1rem !important;
  }

  /* Demo box */
  .sd-demo-box {
    padding: 20px 16px !important;
    font-size: 0.85rem !important;
  }

  /* Marquee */
  .sd-marquee-wrap {
    font-size: 0.7rem !important;
  }

  /* Contact grid */
  .sd-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Steps */
  .sd-step {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px !important;
  }
}

/* Ensure all table elements in Our Work are scrollable */
.sd-case-study table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .sd-case-study table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ===== MOBILE GRID OVERRIDE — INLINE STYLES ===== */
@media (max-width: 768px) {
  /* Force ALL multi-column grids to single column on mobile */
  div[style*="grid-template-columns:1fr 1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr 1fr"],
  div[style*="grid-template-columns:repeat(4"],
  div[style*="grid-template-columns: repeat(4"],
  div[style*="grid-template-columns:1fr auto auto"],
  div[style*="grid-template-columns: 1fr auto auto"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* 2-column grids → single column */
  div[style*="grid-template-columns:1fr 1fr;"],
  div[style*="grid-template-columns: 1fr 1fr;"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Stats grids (repeat 4) → 2 columns on mobile */
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Pricing cards: full width, bigger padding */
  div[style*="grid-template-columns:1fr 1fr 1fr"] > div[style*="background:#111"] {
    padding: 32px 24px !important;
  }

  /* Pricing price font size */
  div[style*="grid-template-columns:1fr 1fr 1fr"] span[style*="font-size:2.4rem"] {
    font-size: 2rem !important;
  }

  /* Comparison table: reformat as stacked cards */
  div[style*="grid-template-columns:1fr auto auto"] {
    grid-template-columns: 1fr 1fr !important;
  }
  div[style*="grid-template-columns:1fr auto auto"] > div:nth-child(3n+1) {
    grid-column: 1 / -1 !important;
    background: #1a1a1a !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    padding: 12px 16px !important;
  }
  div[style*="grid-template-columns:1fr auto auto"] > div:nth-child(3n+2),
  div[style*="grid-template-columns:1fr auto auto"] > div:nth-child(3n+3) {
    padding: 10px 16px !important;
  }

  /* Section padding on mobile */
  div[style*="padding:80px 24px"] {
    padding: 48px 16px !important;
  }
  div[style*="padding: 80px 24px"] {
    padding: 48px 16px !important;
  }

  /* Technical highlights — horizontal scroll */
  div[style*="grid-template-columns:1fr 1fr 1fr"] > div[style*="grid-template-columns"] {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Prevent horizontal overflow on body */
  body {
    overflow-x: hidden !important;
  }
  .entry-content,
  .entry-content > div {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Max width containers */
  div[style*="max-width:1200px"],
  div[style*="max-width: 1200px"],
  div[style*="max-width:900px"],
  div[style*="max-width: 900px"],
  div[style*="max-width:700px"],
  div[style*="max-width: 700px"] {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


/* Stock image sections */
.sd-image-break { max-width: 1200px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.sd-image-break img { width: 100%; height: 320px; object-fit: cover; display: block; border-radius: 2px; }
.page .entry-content[data-ast-blocks-layout] > .sd-image-break { max-width: 1200px !important; margin: 0 auto !important; padding: 0 24px !important; }
@media (max-width: 768px) { .sd-image-break img { height: 200px; } }

/* ===== COMPARISON TABLE ===== */
.sd-compare-table { overflow-x: auto; margin-top: 40px; }
.sd-compare-table table { width: 100%; border-collapse: collapse; border-spacing: 0; }
.sd-compare-table th, .sd-compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; }
.sd-compare-table thead th { font-weight: 600; font-size: 1rem; letter-spacing: 0.03em; padding-bottom: 20px; border-bottom: 2px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.sd-compare-table thead th.sd-col-sally { color: #00e5ff; }
.sd-compare-table thead th.sd-col-agency { color: rgba(255,255,255,0.4); }
.sd-compare-table .sd-compare-label { color: #fff; font-weight: 500; }
.sd-compare-table .sd-col-sally { color: rgba(255,255,255,0.9); }
.sd-compare-table .sd-col-agency { color: rgba(255,255,255,0.4); }
.sd-compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.sd-check { color: #00e5ff; font-weight: 700; margin-right: 4px; }
.sd-cross { color: rgba(255,255,255,0.2); margin-right: 4px; }
@media (max-width: 768px) {
  .sd-compare-table th, .sd-compare-table td { padding: 12px 10px; font-size: 0.85rem; }
  .sd-compare-table .sd-compare-label { min-width: 120px; }
}

/* Force dark table styling */
.sd-compare-table table,
.sd-compare-table table thead,
.sd-compare-table table tbody,
.sd-compare-table table tr,
.sd-compare-table table th,
.sd-compare-table table td {
    background: transparent !important;
    background-color: transparent !important;
    border-color: rgba(255,255,255,0.06) !important;
}
.sd-compare-table {
    background: rgba(255,255,255,0.02) !important;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}
/* ========================================
  max-width: 100%;
  overflow: hidden;
}

/* Hero */
  text-align: center;
  padding: 100px 20px 40px;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

  color: #00e5ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

  color: #999;
  font-size: 18px;
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto;
}

/* Form Section */
  display: flex;
  justify-content: center;
  padding: 40px 20px 60px;
  background: #111;
}

  background: #1a1a1a;
  border: 1px solid #00e5ff33;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.05);
}

  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px;
}

/* CF7 form styling within landing page */
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  padding: 14px 16px;
  font-size: 15px;
  margin-bottom: 4px;
  transition: border-color 0.2s;
}

  border-color: #00e5ff;
  outline: none;
}

  width: 100%;
  background: #00e5ff;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

  background: #00ccdd;
}

  margin: 0 0 16px;
}

  border-color: #00e5ff !important;
  color: #ccc !important;
  margin: 16px 0 0 !important;
}

/* ID anchor for scroll */
#sd-audit-form {
  scroll-margin-top: 80px;
}

/* Features Grid */
  padding: 80px 20px;
  background: #0a0a0a;
  text-align: center;
}

  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}

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

  background: #151515;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

  border-color: #00e5ff44;
}

  font-size: 36px;
  margin-bottom: 16px;
}

  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
}

  color: #888;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Social Proof */
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

  max-width: 600px;
}

/* Steps */
  padding: 80px 20px;
  background: #0a0a0a;
  text-align: center;
}

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

  text-align: center;
}

  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00e5ff;
  color: #000;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
}

  color: #888;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Final CTA */
  padding: 80px 20px;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  text-align: center;
}

  display: inline-block;
  background: #00e5ff;
  color: #000;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.2s;
}

  background: #00ccdd;
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    font-size: 32px;
  }
  
    font-size: 16px;
  }
  
    font-size: 26px;
  }
  
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
    padding: 28px 20px;
  }
  
    padding: 80px 20px 30px;
  }
}


  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color 0.2s;
}

  border-color: #00e5ff;
  outline: none;
}

  width: 100%;
  background: #00e5ff;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

  background: #00ccdd;
}

  margin: 0 0 14px;
}

  border-color: #00e5ff !important;
  color: #ccc !important;
}

#sd-audit-form {
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
    padding: 24px 18px;
  }
}

/* Audit Form Card */














/* Who It's For List */




/* Mobile: Stack hero + form */
@media (max-width: 768px) {
  
  
  
  
  
  
  
}

/* Landing Page: Override Astra container */
.page-id-13 .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-id-13 #primary {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-id-13 .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}

.page-id-13 #content {
  padding-top: 0 !important;
}

.page-id-13 .entry-header {
  display: none !important;
}

/* Landing Hero: full bleed dark bg */
.sd-landing-top {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 5% 80px;
}

.sd-landing-left {
  flex: 1;
  min-width: 0;
}

.sd-landing-left h1 {
  color: #fff;
}

.sd-landing-right {
  flex: 0 0 400px;
  scroll-margin-top: 80px;
}

.sd-landing-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-check-item {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* Audit Form Card */
.sd-audit-form-card {
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.06);
}

.sd-audit-form-card .wpcf7 input[type="text"],
.sd-audit-form-card .wpcf7 input[type="email"],
.sd-audit-form-card .wpcf7 input[type="url"],
.sd-audit-form-card .wpcf7 textarea {
  width: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid #333 !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.sd-audit-form-card .wpcf7 input:focus,
.sd-audit-form-card .wpcf7 textarea:focus {
  border-color: #00e5ff !important;
  outline: none !important;
}

.sd-audit-form-card .wpcf7 input[type="submit"] {
  width: 100% !important;
  background: #00e5ff !important;
  color: #000 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.sd-audit-form-card .wpcf7 input[type="submit"]:hover {
  background: #00ccdd !important;
}

.sd-audit-form-card .wpcf7 p {
  margin: 0 0 14px !important;
}

.sd-audit-form-card .wpcf7 label {
  color: #999 !important;
  font-size: 13px;
}

.sd-audit-form-card .wpcf7-response-output {
  border-color: #00e5ff !important;
  color: #ccc !important;
}

/* Who It's For List */
.sd-landing-who-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.sd-who-item {
  color: #ccc;
  font-size: 17px;
  line-height: 1.6;
  padding-left: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .sd-landing-top {
    flex-direction: column;
    padding: 80px 5% 50px;
    gap: 32px;
  }
  
  .sd-landing-right {
    flex: 1 1 auto;
    width: 100%;
  }
  
  .sd-landing-left h1 {
    font-size: 30px !important;
  }
  
  .sd-audit-form-card {
    padding: 28px 20px;
  }
}

/* Landing Page: Section spacing fixes */
.sd-section-dark {
  background: #0d0d0d;
  padding: 100px 24px;
  position: relative;
}

.page-id-13 .sd-section-beige,
.page-id-13 .sd-section-dark {
  padding: 100px 24px;
}

.page-id-13 .sd-cards {
  padding-bottom: 16px;
}

@media (max-width: 768px) {
  .sd-section-dark {
    padding: 64px 20px;
  }
  .page-id-13 .sd-section-beige,
  .page-id-13 .sd-section-dark {
    padding: 64px 20px;
  }
}

/* Landing: Styled checkmarks */
.sd-check-tick {
  color: #00e5ff;
  font-weight: 700;
  font-size: 18px;
  margin-right: 8px;
  display: inline-block;
}
