/* ==========================================================================
   SMASH & DASH CLUB - Premium Marketing Website Stylesheet
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ── Layout helpers ── */
body { background: #0d0d10; margin: 0; padding: 0; }
.lp-wrap { background: #0d0d10; min-height: 100vh; color: #f3f2eb; font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }
.lp-section { max-width: 1120px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #eeaf61; color: #0d0d0d; font-weight: 800;
  border: none; border-radius: 100px; cursor: pointer; font-family: inherit;
  padding: clamp(11px, 2vw, 15px) clamp(20px, 4vw, 32px);
  font-size: clamp(13px, 2vw, 16px);
  transition: all .2s ease; text-decoration: none; white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(238,175,97,0.3); filter: brightness(1.1); }
.btn-primary:active { transform: none; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.85); font-weight: 700;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 100px; cursor: pointer; font-family: inherit;
  padding: clamp(11px, 2vw, 15px) clamp(20px, 4vw, 32px);
  font-size: clamp(13px, 2vw, 16px);
  transition: all .2s ease; text-decoration: none; white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.04); }

/* ── Nav ── */
.lp-nav { position: sticky; top: 0; z-index: 200; background: rgba(13,13,16,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.07); }
.lp-nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lp-nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.lp-nav-logo img { height: 32px; width: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(238,175,97,0.33); }
.lp-nav-logo span { font-weight: 900; font-size: clamp(13px, 2vw, 16px); color: #fff; letter-spacing: -0.03em; white-space: nowrap; }
.lp-nav-links { display: flex; align-items: center; gap: 4px; }
.lp-nav-link { background: none; border: none; color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600; cursor: pointer; padding: 8px 14px; border-radius: 8px; transition: color .2s; text-decoration: none; font-family: inherit; display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.lp-nav-link:hover { color: #fff; }
.lp-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger { background: rgba(255,255,255,0.06); border: none; border-radius: 9px; color: #fff; cursor: pointer; width: 38px; height: 38px; display: none; align-items: center; justify-content: center; }
.mobile-drawer { display: none; border-top: 1px solid rgba(255,255,255,0.07); background: rgba(10,10,13,0.98); position: absolute; top: 72px; left: 0; width: 100%; z-index: 150; max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.16,1,0.3,1); }
.mobile-drawer.open { display: block; max-height: 480px; }
.mobile-drawer a { display: flex; align-items: center; padding: 15px clamp(16px,4vw,24px); color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.04); gap: 10px; }
.mobile-drawer a:hover { color: #fff; background: rgba(255,255,255,0.03); }
.drawer-cta { padding: 14px clamp(16px,4vw,24px) 20px; }

/* ── Nav Hover Dropdown system ── */
.nav-dropdown-wrapper { position: relative; display: inline-block; padding: 10px 0; }
.dropdown-trigger .chevron-icon { transition: transform 0.2s ease; }
.nav-dropdown-wrapper:hover .chevron-icon { transform: rotate(180deg); }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #16161a; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 7px; min-width: 250px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); z-index: 500; animation: fadeIn .15s ease; }
.nav-dropdown-wrapper:hover .dropdown-menu { display: block; }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; transition: all .15s; }
.dropdown-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.dropdown-item-icon { display: flex; flex-shrink: 0; align-items: center; justify-content: center; }
.dropdown-item-label { font-weight: 600; color: #fff; line-height: 1.2; }
.dropdown-item-desc { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; line-height: 1.3; }

/* ── Sections generic ── */
.lp-section-pad { padding: clamp(56px, 8vw, 100px) 0; }
.lp-section-pad-sm { padding: clamp(32px, 5vw, 64px) 0; }
.lp-section-alt { background: rgba(255,255,255,0.012); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.section-label { font-size: 11px; font-weight: 800; color: #eeaf61; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: clamp(26px, 5vw, 48px); font-weight: 900; letter-spacing: -0.03em; color: #fff; line-height: 1.1; margin-bottom: 16px; font-family: 'Plus Jakarta Sans', sans-serif; }
.section-sub { font-size: clamp(14px, 2vw, 17px); color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 500px; }
.section-header-center { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section-header-center .section-sub { margin: 0 auto; }

/* ── Hero ── */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-checks { display: flex; gap: clamp(16px, 3vw, 28px); flex-wrap: wrap; margin-top: clamp(28px, 4vw, 48px); }
.hero-check-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 600; white-space: nowrap; }
.hero-mockup-wrap { display: flex; justify-content: center; align-items: center; }
.hero-mockup { max-width: 100%; object-fit: contain; filter: drop-shadow(0 32px 64px rgba(0,0,0,0.5)); animation: float 5s ease-in-out infinite; }

/* ── Trust bar ── */
.trust-bar { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 4vw, 48px); flex-wrap: wrap; padding: clamp(16px,3vw,24px) 0; }
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.5); font-size: clamp(12px,1.5vw,14px); font-weight: 600; white-space: nowrap; }

/* ── Features grid ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 20px); }
.feature-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: clamp(20px, 3vw, 28px); transition: all .3s cubic-bezier(0.4,0,0.2,1); }
.feature-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0; }
.feature-title { font-size: clamp(15px,2vw,18px); font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.feature-desc { font-size: clamp(13px,1.5vw,14px); color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.step-card { text-align: center; }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: rgba(238,175,97,0.12); border: 2px solid rgba(238,175,97,0.35); display: flex; align-items: center; justify-content: center; margin: 0 auto clamp(16px,3vw,24px); }
.step-num span { font-size: 22px; font-weight: 900; color: #eeaf61; font-family: 'JetBrains Mono', monospace; }
.step-title { font-size: clamp(16px,2.5vw,20px); font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.02em; }
.step-desc { font-size: clamp(13px,1.5vw,14px); color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; margin: 0 auto; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,2vw,20px); }
.testimonial-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: clamp(20px,3vw,32px); transition: all .3s ease; display: flex; flex-direction: column; }
.testimonial-card:hover { background: rgba(255,255,255,0.04); transform: translateY(-2px); }
.testimonial-text { font-size: clamp(13px,1.5vw,15px); color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 20px; }
.testimonial-author { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 16px; margin-top: auto; }
.testimonial-name { font-weight: 800; color: #fff; font-size: 14px; }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── Trust badges under testimonials ── */
.trust-badges-row { display: flex; justify-content: center; align-items: center; gap: clamp(16px,3vw,40px); flex-wrap: wrap; padding-top: 36px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.06); }
.trust-badge { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.55); white-space: nowrap; }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.12); }

/* ── Stats grid ── */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 18px; padding: clamp(20px,3vw,28px) clamp(16px,3vw,24px); }
.stat-num { font-size: clamp(28px,5vw,36px); font-weight: 900; color: #eeaf61; letter-spacing: -0.03em; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 600; }

/* ── About grid ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 60px); align-items: center; }

/* ── Security grid ── */
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px,2vw,20px); }
.security-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: clamp(20px,3vw,28px); }
.security-card h4 { font-size: clamp(14px,1.8vw,16px); font-weight: 800; color: #fff; margin: 12px 0 8px; }
.security-card p { font-size: clamp(12px,1.4vw,14px); color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── CTA section ── */
.cta-section { padding: clamp(56px,8vw,80px) 0; background: linear-gradient(135deg, rgba(238,175,97,0.09) 0%, rgba(107,44,154,0.05) 100%); border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); text-align: center; }
.cta-checks { display: flex; justify-content: center; gap: clamp(16px,3vw,32px); flex-wrap: wrap; margin-top: 24px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,48px); align-items: start; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(238,175,97,0.13); border: 1px solid rgba(238,175,97,0.22); display: flex; align-items: center; justify-content: center; color: #eeaf61; flex-shrink: 0; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px,1.8vw,18px); align-items: stretch; margin-top: 24px; }
.pricing-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; padding: clamp(20px,2.5vw,30px) clamp(16px,2vw,26px); position: relative; transition: all .3s ease; display: flex; flex-direction: column; }
.pricing-card .pricing-cta { margin-top: auto; }
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.14); }
.pricing-card.featured { background: rgba(238,175,97,0.05); border-color: rgba(238,175,97,0.35); box-shadow: 0 0 60px rgba(238,175,97,0.08); }
.pricing-card.featured:hover { border-color: rgba(238,175,97,0.55); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #eeaf61; color: #0d0d0d; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.pricing-tier { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.5); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-price { font-size: clamp(30px,4vw,44px); font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 0.42em; font-weight: 700; vertical-align: super; color: rgba(255,255,255,0.6); }
.pricing-cadence { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.pricing-annual-note { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 18px; min-height: 16px; transition: color 0.2s ease; }
.pricing-desc { font-size: clamp(11px,1.3vw,13px); color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.6; }
.pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 16px 0; }
.pricing-features-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 9px; font-size: clamp(11px,1.3vw,13px); color: rgba(255,255,255,0.7); line-height: 1.4; }
.pricing-feature.disabled { color: rgba(255,255,255,0.3); }
.pricing-check { color: #10b981; display: flex; flex-shrink: 0; margin-top: 1px; }
.pricing-dash  { color: rgba(255,255,255,0.2); display: flex; flex-shrink: 0; margin-top: 1px; }
.pricing-cta { width: 100%; padding: clamp(11px,1.8vw,14px) 20px; border-radius: 100px; border: none; font-size: clamp(12px,1.5vw,14px); font-weight: 800; cursor: pointer; font-family: inherit; transition: all .2s; margin-top: 24px; text-align: center; text-decoration: none; }
.pricing-cta-primary { background: #eeaf61; color: #0d0d0d; }
.pricing-cta-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.pricing-cta-outline { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.18) !important; }
.pricing-cta-outline:hover { border-color: rgba(255,255,255,0.4) !important; color: #fff; background: rgba(255,255,255,0.03); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: clamp(28px,4vw,44px); }
.toggle-pill { display: flex; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 100px; padding: 4px; }
.toggle-opt { padding: 7px 20px; border-radius: 100px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; font-family: inherit; transition: all .2s; background: transparent; color: rgba(255,255,255,0.5); }
.toggle-opt.on { background: #fff; color: #0d0d10; }
.toggle-save { font-size: 11px; font-weight: 800; color: #10b981; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); padding: 4px 10px; border-radius: 100px; }

/* ── Footer ── */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px,4vw,48px); margin-bottom: 48px; }
.footer-col-title { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
.footer-link { display: block; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 11px; transition: color .2s; }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-link { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.footer-bottom-link:hover { color: #eeaf61; }

/* ── Animations ── */
@keyframes fadeIn  { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp { from { opacity: 0; transform: translateY(18px) } to { opacity: 1; transform: none } }
@keyframes float   { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }
.anim-fadeup { animation: slideUp .8s cubic-bezier(0.16,1,0.3,1) both; }
.anim-fadeup-delay { animation: slideUp 1s cubic-bezier(0.16,1,0.3,1) .1s both; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet & small laptop (≤1024px) ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Large mobile / tablet portrait (≤768px) ── */
@media (max-width: 768px) {
  .lp-nav-links { display: none; }
  .nav-cta-btn { display: none !important; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-checks { justify-content: center; }
  .hero-mockup { max-height: 340px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }

  .trust-bar { gap: 16px; }
}

/* ── Mobile portrait (≤480px) ── */
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
  .hero-mockup { max-height: 280px; }
  .trust-badges-row { gap: 14px; }
  .cta-checks { gap: 14px; }
  .trust-divider { display: none; }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .lp-nav-logo span { font-size: 12px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline { justify-content: center; }
}

/* ── Landscape phone: compact hero ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-mockup-wrap { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
}
