/* ============================================
   BOLD MINDSET MARKETING — Styles
   Matching current Wix site look & feel
   ============================================ */

:root {
  --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-hero: clamp(2.8rem,   0.5rem  + 6vw,    5.5rem);

  --space-1:  0.25rem; --space-2:  0.5rem; --space-3:  0.75rem;
  --space-4:  1rem;    --space-5:  1.25rem; --space-6:  1.5rem;
  --space-8:  2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  --color-bg:           #f0f0f0;
  --color-surface:      #ffffff;
  --color-surface-dark: #555555;
  --color-footer:       #000000;
  --color-text:         #1a1a1a;
  --color-text-muted:   #555555;
  --color-text-light:   #aaaaaa;
  --color-text-inverse: #ffffff;
  --color-accent:       #cc0000;
  --color-accent-hover: #aa0000;
  --color-accent-dark:  #8b0000;
  --color-icon-pink:    #e8897b;
  --color-border:       #d0d0d0;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);

  --content-wide: 1060px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

section {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-slide-up.anim-visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 150ms; }
.anim-delay-2 { transition-delay: 300ms; }
.anim-delay-3 { transition-delay: 450ms; }

/* Hero entrance: lines slide in from left */
@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromBottom {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .anim-slide-up { opacity: 1; transform: none; transition: none; }
  .hero__line, .hero__cta-anim { animation: none !important; opacity: 1 !important; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-2);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.header__nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}
.header__nav a:hover { color: var(--color-accent); }

/* Mobile menu */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 640px) {
  .header__menu-btn { display: flex; }
  .header__nav {
    position: fixed; top: 0; right: -100%;
    width: 70%; max-width: 280px; height: 100dvh;
    background: var(--color-surface);
    flex-direction: column;
    padding: var(--space-16) var(--space-8);
    gap: var(--space-6);
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
  }
  .header__nav.open { right: 0; }
  .header__overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.4); z-index: 150;
  }
  .header__overlay.open { display: block; }
}

/* ============================================
   SOCIAL SIDEBAR
   ============================================ */
.social-sidebar {
  position: fixed;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: 50;
}
.social-sidebar a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-text);
  color: var(--color-text-inverse);
  text-decoration: none;
}
.social-sidebar a:hover {
  background: var(--color-accent);
  transform: scale(1.1);
}
.social-sidebar svg { width: 16px; height: 16px; }
@media (max-width: 640px) {
  .social-sidebar { display: none; }
}

/* ============================================
   HERO — Left-aligned text, starburst behind on right
   ============================================ */
.hero {
  background: var(--color-bg);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.hero h1 em {
  color: var(--color-accent);
  font-style: normal;
  font-weight: 800;
}
.hero__line {
  display: block;
  opacity: 0;
}
.hero__line--1 {
  animation: slideFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.hero__line--2 {
  animation: slideFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.hero__line--3 {
  animation: slideFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}
.hero__cta-anim {
  opacity: 0;
  animation: slideFromBottom 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

/* CTA Button — gradient like the Wix version */
.hero__cta,
.contact__cta {
  display: inline-block;
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-12);
  background: linear-gradient(180deg, #dd3333 0%, #aa0000 100%);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero__cta:hover,
.contact__cta:hover {
  background: linear-gradient(180deg, #ee4444 0%, #bb1111 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Starburst — behind text */
.starburst {
  position: absolute;
  width: clamp(160px, 20vw, 260px);
  height: clamp(160px, 20vw, 260px);
  z-index: 1;
  pointer-events: none;
}
.starburst--hero {
  right: 15%;
  top: 10%;
}
.starburst--diff {
  right: 5%;
  top: 5%;
}
.starburst line {
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* ============================================
   PROBLEM SECTION — Bold black text
   ============================================ */
.problem {
  background: var(--color-surface);
  text-align: center;
}
.problem__lead {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.problem__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto var(--space-6);
  line-height: 1.7;
}
.problem__question {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
}

/* ============================================
   OPTIONS (3-column)
   ============================================ */
.options {
  background: var(--color-surface);
  padding-top: 0;
}
.options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  text-align: center;
}
@media (max-width: 768px) {
  .options__grid { grid-template-columns: 1fr; gap: var(--space-10); }
}
.option__icon {
  width: 48px; height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-icon-pink);
}
.option__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.option__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* ============================================
   DIFFERENTIATORS — Bold heading, rounded cards
   ============================================ */
.differentiators {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.differentiators__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  text-align: left;
  margin-bottom: var(--space-10);
}
.differentiators__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .differentiators__grid { grid-template-columns: 1fr; }
  .differentiators__heading { text-align: center; }
}
.diff-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
}
.diff-card__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.diff-card__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   CONTACT / FORM SECTION
   ============================================ */
.contact {
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
}
.contact__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact__heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.contact__subtext {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}
.contact__subtext strong { color: var(--color-text-inverse); }

/* Form */
.form { text-align: left; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (max-width: 640px) {
  .form__row { grid-template-columns: 1fr; }
}
.form__group { margin-bottom: var(--space-4); }
.form__row .form__group { margin-bottom: 0; }
.form__group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-2);
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: var(--space-3) 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--color-text-inverse);
  font-size: var(--text-base);
  outline: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form__group input:focus,
.form__group textarea:focus { border-bottom-color: var(--color-accent); outline: none; }
.form__group textarea { resize: vertical; min-height: 60px; }

.form__submit {
  display: block;
  width: 200px;
  margin: var(--space-8) auto 0;
  padding: var(--space-4) var(--space-8);
  background: linear-gradient(180deg, #dd3333 0%, #8b0000 100%);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.form__submit:hover {
  background: linear-gradient(180deg, #ee4444 0%, #aa0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.form__message {
  text-align: center; padding: var(--space-4);
  margin-top: var(--space-4); font-size: var(--text-sm);
  display: none;
}
.form__message--success { color: #6daa45; }
.form__message--error { color: #ff6b6b; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-footer);
  color: var(--color-text-inverse);
  text-align: center;
  padding-block: var(--space-10);
}
.footer__privacy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  margin-bottom: var(--space-6);
  display: inline-block;
}
.footer__privacy:hover { color: rgba(255,255,255,0.8); }
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-6) auto;
}
.footer__logo-img {
  height: 80px;
  width: auto;
}
.footer__social {
  display: none;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  color: var(--color-text-inverse);
  text-decoration: none;
}
.footer__social a:hover { background: var(--color-accent); }
.footer__social svg { width: 18px; height: 18px; }
@media (max-width: 640px) {
  .footer__social { display: flex; }
}

/* ============================================
   CTA SECTION (dark bg, heading + button)
   ============================================ */
.cta-section {
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}
.cta-section__inner {
  text-align: center;
}
.cta-section__heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  font-style: italic;
  margin-bottom: var(--space-6);
}

/* ============================================
   FORM PAGE — Hero + Form Section
   ============================================ */
.form-hero {
  background: var(--color-surface);
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
  text-align: center;
}
.form-hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
}

.form-section {
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}
.form-section__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.form-section__intro {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.form-section__intro strong {
  color: var(--color-text-inverse);
}
