/* ==============================
   SALONFIX – Style Enhanced (Desktop polish only)
   ============================== */
:root {
  --sf-purple: #4B0082;
  --sf-purple-dark: #2d004c;
  --sf-gold: #D4AF37;
  --sf-white: #fff;
  --sf-dark: #1b1230;
  --radius: 20px;
  --shadow: 0 8px 22px rgba(0,0,0,.15);
  --shadow-hover: 0 12px 28px rgba(0,0,0,.2);
}

/* ---------- BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  font-family: 'Montserrat', sans-serif;
  background: var(--sf-white);
  color: var(--sf-dark);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
section { padding: 70px 20px; margin-bottom: 70px; }
section h2 {
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}
section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--sf-gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---------- NAVBAR ---------- */
nav.sf-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 14px 28px;
  background: var(--sf-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}
nav.sf-navbar .logo a { font-size: 1.6rem; font-weight: 900; color: #fff; }
nav.sf-navbar ul { list-style: none; display: flex; gap: 28px; }
nav.sf-navbar ul li a {
  color: #fff;
  font-weight: 600;
  position: relative;
  transition: color .3s;
}
nav.sf-navbar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--sf-gold);
  transition: width .3s;
}
nav.sf-navbar ul li a:hover::after,
nav.sf-navbar ul li a.active::after { width: 100%; }
.cta-btn {
  background: linear-gradient(135deg,#FFD700,var(--sf-gold));
  color: var(--sf-purple-dark);
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--sf-purple), var(--sf-purple-dark));
  color: #fff;
  text-align: center;
  padding: 140px 20px 100px;
}
.hero h1 {
  font-size: clamp(32px,6vw,52px);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--sf-gold);
  margin: 12px auto 0;
  border-radius: 2px;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 30px;
}
.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  background: linear-gradient(45deg,#FFD700,#D4AF37,#FFD700);
  background-size: 300% 300%;
  animation: shimmer 3s linear infinite;
  color: #111!important;
  box-shadow: 0 0 15px rgba(212,175,55,.7);
  transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(212,175,55,.9); }
@keyframes shimmer {
  0% { background-position: 0 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

/* ---------- FOOTER ---------- */
.footer-premium {
  background: linear-gradient(160deg,var(--sf-purple-dark),var(--sf-purple));
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
.btn-outline {
  border: 2px solid var(--sf-gold);
  color: var(--sf-gold);
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 700;
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: var(--sf-gold); color: #000; }
.copyright {
  margin-top: 28px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 16px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 18px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
  z-index: 3000;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(37,211,102,.6);
}

/* ==========================================================
   DESKTOP POLISH — only above 769px
   ========================================================== */
@media (min-width: 769px) {

  section {
    margin-bottom: 60px !important;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* ===== WHY SALONS LOSE PROFIT ===== */
  .problems {
    max-width: 1100px;
    margin: 0 auto 100px;
    text-align: center;
  }
  .profit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
  }
  .problem-card {
    background: #fff;
    border: 2px solid var(--sf-purple);
    border-radius: 16px;
    padding: 28px;
    font-size: 1.05rem;
    color: var(--sf-purple);
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  .problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--sf-gold);
    box-shadow: 0 8px 22px rgba(212,175,55,0.35);
  }

  /* ===== CHAOS TO CONTROL ===== */
  .chaos {
    background: linear-gradient(180deg,#f7f3ff 0%,#efe7ff 100%);
    padding: 100px 8%;
    text-align: center;
  }
  .chaos h2 {
    color: var(--sf-purple);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 50px;
  }
  .chaos-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .chaos-card {
    background: linear-gradient(135deg,#FFD700,#D4AF37,#FFF5CC);
    color: #2A014F;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 0 25px rgba(212,175,55,0.3);
    transition: all 0.3s ease;
  }
  .chaos-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(212,175,55,0.6);
  }

  /* ===== TAKEOVER SECTION ===== */
  .takeover {
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 80px 6%;
    box-sizing: border-box;
    gap: 60px;
  }
  .takeover .solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  }

  /* ===== FOUNDER SECTION ===== */
  .founder {
    display: grid;
    grid-template-columns: 55% 40%;
    align-items: center;
    justify-content: space-between;
    background: var(--sf-purple);
    color: #fff;
    padding: 100px 8%;
    position: relative;
    gap: 60px;
  }
  .founder::before,
  .founder::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#FFD700,#D4AF37,#FFD700);
    opacity: 0.9;
  }
  .founder::before { top: 0; }
  .founder::after { bottom: 0; }
  .founder h2 {
    color: var(--sf-gold);
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 20px;
  }
  .founder p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .founder ul {
    list-style: none;
    margin: 20px 0 30px 0;
    padding: 0;
  }
  .founder ul li {
    padding-left: 26px;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
  }
  .founder ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--sf-gold);
    font-weight: 900;
  }
  .founder .btn-gold {
    margin-top: 25px;
  }
  .founder img {
    justify-self: end;
    align-self: center;
    max-width: 420px;
    border-radius: 20px;
    border: 4px solid var(--sf-gold);
    box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  }
}

/* ==========================================================
   RESULTS SECTION — PREMIUM SALONFIX ENHANCEMENT
   ========================================================== */
@media (min-width: 769px) {
  .results-section {
    background: linear-gradient(180deg, #faf5ff 0%, #f2e9ff 100%);
    padding: 100px 8%;
    border-radius: 0;
    text-align: center;
  }

  .results-section h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--sf-purple);
    margin-bottom: 18px;
    position: relative;
  }

  .results-section h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #D4AF37, #FFD700);
    margin: 16px auto 0;
    border-radius: 2px;
  }

  .results-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--sf-dark);
    max-width: 700px;
    margin: 0 auto 50px;
  }

  .results-section .card-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .results-section .result-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(75,0,130,0.15);
    border: 2px solid transparent;
    padding: 36px 28px;
    flex: 1 1 300px;
    max-width: 340px;
    transition: all 0.35s ease;
    overflow: hidden;
  }

  .results-section .result-card:hover {
    border-color: var(--sf-gold);
    box-shadow: 0 0 25px rgba(212,175,55,0.4);
    transform: translateY(-8px);
  }

  .results-section .result-card h3 {
    color: var(--sf-purple);
    font-weight: 900;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .results-section .result-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--sf-dark);
  }

  .results-section .result-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.5) 50%,
      rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
  }

  .results-section .result-card:hover::after {
    animation: shimmer 1.8s forwards;
    opacity: 1;
  }

  @keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(100%) skewX(-20deg); }
  }
}
