@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800;900&display=swap');

:root {
  --hp-primary: #0b4566;       /* Deep navy-teal from logo */
  --hp-primary-rgb: 11, 69, 102;
  --hp-primary-light: #1c6b8c;
  --hp-primary-hover: #072e45;
  
  --hp-accent: #2fbfa5;        /* Vibrant light teal/turquoise from scissors logo */
  --hp-accent-rgb: 47, 191, 165;
  --hp-accent-light: #e6f8f5;  /* Light mint background */
  --hp-accent-hover: #26a38c;
  
  --hp-gradient-primary: linear-gradient(135deg, #0b4566 0%, #1c8fa6 50%, #2fbfa5 100%);
  --hp-gradient-accent: linear-gradient(135deg, #2fbfa5 0%, #6fd0c3 100%);
  --hp-gradient-hero: linear-gradient(160deg, #071724 0%, #0d2a3f 50%, #071724 100%);
  
  --hp-bg-light: #f3f7f9;      /* Tinted light blue-grey background */
  --hp-border-light: #e4eef2;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden;width:100%}
body{font-family:'Inter',sans-serif;color:#1a1c2e;background:#fff;-webkit-font-smoothing:antialiased;overflow-x:hidden;width:100%}

/* ── Layout ── */
.hp-container{max-width:1160px;margin:0 auto;padding:0 2rem}
.hp-section{padding:6rem 0}

/* ── Section Labels ── */
.hp-section-label{display:inline-flex;align-items:center;gap:.5rem;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--hp-primary);border:1px solid rgba(var(--hp-primary-rgb),.2);background:rgba(var(--hp-primary-rgb),.05);padding:.35rem .875rem;border-radius:2rem;margin-bottom:1.25rem}
.hp-section-title{font-family:'Manrope',sans-serif;font-size:clamp(1.75rem,4vw,2.75rem);font-weight:800;color:#1a1c2e;letter-spacing:-.02em;line-height:1.15;margin-bottom:1rem}
.hp-section-sub{font-size:1.1rem;color:#64748b;line-height:1.7;max-width:600px;margin-bottom:3rem}

/* ── Buttons ── */
.hp-btn{display:inline-flex;align-items:center;gap:.5rem;padding:.875rem 1.75rem;border-radius:.75rem;font-weight:700;font-size:.95rem;text-decoration:none;transition:all .2s ease;cursor:pointer;border:none}
.hp-btn-primary{background:var(--hp-primary);color:#fff;box-shadow:0 4px 20px rgba(var(--hp-primary-rgb),.35)}
.hp-btn-primary:hover{background:var(--hp-primary-hover);transform:translateY(-1px);box-shadow:0 8px 28px rgba(var(--hp-primary-rgb),.45)}
.hp-btn-ghost{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.2);backdrop-filter:blur(8px)}
.hp-btn-ghost:hover{background:rgba(255,255,255,.15)}
.hp-btn-white{background:#fff;color:#1a1c2e;box-shadow:0 4px 20px rgba(0,0,0,.12)}
.hp-btn-white:hover{transform:translateY(-1px);box-shadow:0 8px 28px rgba(0,0,0,.18)}
.hp-btn-ghost-white{background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.25);backdrop-filter:blur(8px)}
.hp-btn-ghost-white:hover{background:rgba(255,255,255,.2)}
.hp-btn-outline{background:transparent;color:#1a1c2e;border:1.5px solid #e2e8f0}
.hp-btn-outline:hover{border-color:var(--hp-primary);color:var(--hp-primary)}

/* ── Nav ── */
.hp-nav{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(255,255,255,.88);backdrop-filter:blur(20px);border-bottom:1px solid rgba(0,0,0,.06);transition:all .3s ease}
.hp-nav-inner{display:flex;align-items:center;justify-content:space-between;height:68px}
.hp-logo{font-family:'Manrope',sans-serif;font-weight:800;font-size:1.4rem;letter-spacing:-.02em;color:#1a1c2e;display:flex;align-items:center;gap:.5rem;text-decoration:none}
.hp-logo-icon{width:34px;height:34px;background:var(--hp-gradient-primary);border-radius:.5rem;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1rem;flex-shrink:0}
.hp-nav-links{display:flex;align-items:center;gap:2rem;list-style:none}
.hp-nav-links a{font-weight:600;font-size:.9rem;color:#64748b;text-decoration:none;transition:color .2s}
.hp-nav-links a:hover{color:#1a1c2e}
.hp-nav-actions{display:flex;align-items:center;gap:1rem}
.hp-nav-login{font-weight:600;font-size:.9rem;color:#64748b;text-decoration:none;transition:color .2s}
.hp-nav-login:hover{color:#1a1c2e}
.hp-nav-cta{background:var(--hp-primary);color:#fff;padding:.6rem 1.25rem;border-radius:.625rem;font-weight:700;font-size:.875rem;text-decoration:none;transition:all .2s;box-shadow:0 2px 12px rgba(var(--hp-primary-rgb),.3)}
.hp-nav-cta:hover{background:var(--hp-primary-hover);transform:translateY(-1px)}
.hp-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--hp-primary-rgb), 0.06);
  border: 1px solid rgba(var(--hp-primary-rgb), 0.12);
  transition: all 0.2s ease;
  padding: 0;
  outline: none;
}
.hp-hamburger:hover {
  background: rgba(var(--hp-primary-rgb), 0.12);
  transform: scale(1.05);
}
.hp-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--hp-primary);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hp-hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hp-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hp-hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Hero ── */
.hp-hero{min-height:100vh;display:flex;align-items:center;padding-top:68px;background:var(--hp-gradient-hero);position:relative;overflow:hidden}
.hp-hero-orb{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none}
.hp-hero-orb-1{width:500px;height:500px;background:rgba(var(--hp-primary-rgb),.25);top:-10%;left:-5%}
.hp-hero-orb-2{width:400px;height:400px;background:rgba(var(--hp-accent-rgb),.2);bottom:0;right:-5%}
.hp-hero-orb-3{width:300px;height:300px;background:rgba(var(--hp-accent-rgb),.15);top:40%;left:45%}
.hp-hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(var(--hp-primary-rgb),.15);border:1px solid rgba(var(--hp-primary-rgb),.3);color:rgba(255,255,255,.8);font-size:.8rem;font-weight:600;padding:.4rem 1rem;border-radius:2rem;margin-bottom:1.5rem}
.hp-hero-badge-dot{width:6px;height:6px;background:#10B981;border-radius:50%;animation:pulse-green 2s infinite}
@keyframes pulse-green{0%,100%{opacity:1}50%{opacity:.4}}
.hp-hero-title{font-family:'Manrope',sans-serif;font-size:clamp(2.5rem,6vw,4.5rem);font-weight:900;color:#fff;letter-spacing:-.03em;line-height:1.08;margin-bottom:1.5rem}
.hp-hero-title .accent{background:var(--hp-gradient-accent);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hp-hero-sub{font-size:1.15rem;color:rgba(255,255,255,.65);line-height:1.7;max-width:540px;margin-bottom:2.5rem}
.hp-hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3rem}
.hp-hero-social-proof{display:flex;align-items:center;gap:1rem}
.hp-hero-avatars{display:flex}
.hp-hero-avatars .avatar{width:32px;height:32px;border-radius:50%;border:2px solid #1a1c3a;margin-left:-8px;font-size:.75rem;font-weight:700;display:flex;align-items:center;justify-content:center;color:#fff}
.hp-hero-avatars .avatar:first-child{margin-left:0}
.hp-hero-proof-text{font-size:.85rem;color:rgba(255,255,255,.6)}
.hp-hero-proof-text strong{color:#fff}

.hp-hero-inner{display:flex;align-items:center;gap:4rem;padding-top:5rem;padding-bottom:5rem;position:relative;z-index:2}
.hp-hero-inner>div:first-child{flex:1;min-width:0}
.hp-hero-dashboard{position:relative;flex-shrink:0;flex:1;min-width:0}
.hp-dashboard-mock{background:#fff;border-radius:1.25rem;box-shadow:0 40px 80px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.1);overflow:hidden;width:100%;max-width:560px}
.hp-dash-topbar{background:#f8f9fa;border-bottom:1px solid #e9ecef;padding:.875rem 1.25rem;display:flex;align-items:center;gap:.75rem}
.hp-dash-dot{width:12px;height:12px;border-radius:50%}
.hp-dash-title{font-size:.75rem;font-weight:700;color:#64748b;margin-left:.5rem;letter-spacing:.02em}
.hp-dash-body{padding:1.25rem}
.hp-dash-stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;margin-bottom:1rem}
.hp-dash-stat{background:#f8f9fa;border-radius:.75rem;padding:.875rem 1rem}
.hp-dash-stat-v{font-family:'Manrope',sans-serif;font-size:1.25rem;font-weight:800;color:#1a1c2e}
.hp-dash-stat-l{font-size:.7rem;font-weight:600;color:#64748b;margin-top:.2rem}
.hp-dash-stat-t{font-size:.7rem;font-weight:700;margin-top:.2rem}
.hp-dash-stat-t.up{color:#10B981}
.hp-dash-apt-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:.75rem}
.hp-dash-apt-title{font-family:'Manrope',sans-serif;font-size:.9rem;font-weight:700;color:#1a1c2e}
.hp-dash-apt{display:flex;align-items:center;gap:.75rem;padding:.625rem .875rem;border-radius:.625rem;margin-bottom:.5rem}
.hp-dash-apt-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}
.hp-dash-apt-name{font-size:.8rem;font-weight:700;color:#1a1c2e;flex:1}
.hp-dash-apt-time{font-size:.75rem;color:#64748b}
.hp-dash-apt-badge{font-size:.65rem;font-weight:700;padding:.2rem .5rem;border-radius:.25rem;text-transform:uppercase;letter-spacing:.03em}

/* ── Benefits ── */
.benefits-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem;margin-top:1rem}
.benefit-card{background:#fff;border:1px solid #f1f3f5;border-radius:1rem;padding:1.75rem;transition:all .3s ease;position:relative;overflow:hidden}
.benefit-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(var(--hp-primary-rgb),.1);border-color:rgba(var(--hp-primary-rgb),.15)}
.benefit-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(var(--hp-primary-rgb),.03),transparent);opacity:0;transition:opacity .3s}
.benefit-card:hover::before{opacity:1}
.benefit-icon{width:48px;height:48px;border-radius:.875rem;display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;font-size:1.25rem}
.benefit-h{font-family:'Manrope',sans-serif;font-size:1.05rem;font-weight:700;color:#1a1c2e;margin-bottom:.5rem}
.benefit-p{font-size:.875rem;color:#64748b;line-height:1.6}

/* ── Features ── */
.feature-row{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;margin-bottom:5rem;padding-bottom:5rem;border-bottom:1px solid #f1f3f5}
.feature-row:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}
.feature-row-reverse{direction:rtl}
.feature-row-reverse>*{direction:ltr}
.feature-tag{display:inline-block;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--hp-primary);background:rgba(var(--hp-primary-rgb),.08);padding:.3rem .75rem;border-radius:2rem;margin-bottom:.875rem}
.feature-h3{font-family:'Manrope',sans-serif;font-size:1.75rem;font-weight:800;color:#1a1c2e;letter-spacing:-.02em;line-height:1.2;margin-bottom:.875rem}
.feature-p{font-size:1rem;color:#64748b;line-height:1.7;margin-bottom:1.25rem}
.feature-list{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.feature-list li{font-size:.9rem;color:#1a1c2e;font-weight:600;padding-left:1.5rem;position:relative}
.feature-list li::before{content:'✓';position:absolute;left:0;color:#10B981;font-weight:800}
.feature-mockup{border-radius:1.25rem;padding:1.5rem;overflow:hidden}
.feature-mockup-blue{background:linear-gradient(135deg,#eef0ff,#f0f2ff)}
.feature-mockup-purple{background:linear-gradient(135deg,#f5f3ff,#ede9fe)}
.feature-mockup-green{background:linear-gradient(135deg,#ecfdf5,#d1fae5)}
.mock-calendar{background:#fff;border-radius:1rem;padding:1.25rem;box-shadow:0 4px 24px rgba(0,0,0,.08)}
.mock-cal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;padding-bottom:.75rem;border-bottom:1px solid #f1f3f5}
.mock-apt{padding:.75rem 1rem;border-radius:.625rem;margin-bottom:.5rem}
.mock-apt:last-child{margin-bottom:0}
.mock-staff-grid{display:flex;flex-direction:column;gap:.875rem}

/* ── Analytics ── */
.analytics-dashboard-mock{background:#1e2140;border-radius:1.5rem;padding:2rem;margin-top:3rem;box-shadow:0 40px 80px rgba(0,0,0,.4)}
.analytics-stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-bottom:1.5rem}
.analytics-stat-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:1rem;padding:1.25rem}
.analytics-stat-icon{width:40px;height:40px;border-radius:.75rem;display:flex;align-items:center;justify-content:center;margin-bottom:.875rem}
.analytics-stat-val{font-family:'Manrope',sans-serif;font-size:1.5rem;font-weight:800;color:#fff;margin-bottom:.25rem}
.analytics-stat-label{font-size:.75rem;color:rgba(255,255,255,.5);font-weight:600;margin-bottom:.5rem}
.analytics-stat-badge{display:inline-block;font-size:.7rem;font-weight:700;padding:.2rem .5rem;border-radius:.375rem}
.analytics-stat-badge.up{background:rgba(16,185,129,.15);color:#10B981}
.analytics-chart-area{display:flex;gap:1rem}
.analytics-chart-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:1rem;padding:1.5rem}
.chart-bars{display:flex;align-items:flex-end;gap:.75rem;height:100px}
.chart-bar-wrap{display:flex;flex-direction:column;align-items:center;gap:.5rem;flex:1}
.chart-bar{width:100%;background:linear-gradient(180deg,var(--hp-primary),rgba(var(--hp-primary-rgb),.4));border-radius:.375rem .375rem 0 0;transition:height .3s}
.chart-bar-wrap span{font-size:.7rem;color:rgba(255,255,255,.4);font-weight:600}

/* ── Testimonials ── */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.testimonial-card{background:var(--hp-bg-light);border-radius:1.25rem;padding:2rem;border:1px solid var(--hp-border-light);transition:all .3s}
.testimonial-card:hover{transform:translateY(-4px);box-shadow:0 20px 48px rgba(var(--hp-primary-rgb),.1)}
.testimonial-featured{background:var(--hp-gradient-primary);border-color:transparent}
.testimonial-featured .testimonial-quote{color:rgba(255,255,255,.85)}
.testimonial-featured .testimonial-name{color:#fff}
.testimonial-featured .testimonial-salon{color:rgba(255,255,255,.6)}
.stars{font-size:1rem;color:#F59E0B;margin-bottom:1rem;letter-spacing:.1em}
.testimonial-featured .stars{color:#fff}
.testimonial-quote{font-size:.95rem;color:#475569;line-height:1.7;margin-bottom:1.5rem;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:.875rem}
.testimonial-avatar{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:1rem;flex-shrink:0}
.testimonial-name{font-weight:700;font-size:.9rem;color:#1a1c2e}
.testimonial-salon{font-size:.8rem;color:#64748b}

/* ── Pain Points ── */
.pain-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.pain-card{background:#fff;border-radius:1rem;padding:1.5rem;border:1px solid #f1f3f5;display:flex;align-items:flex-start;gap:1rem;flex-wrap:wrap}
.pain-before,.pain-after{display:flex;align-items:flex-start;gap:.875rem;flex:1;min-width:200px}
.pain-arrow{font-size:1.25rem;color:#cbd5e1;align-self:center;flex-shrink:0}
.pain-icon{width:36px;height:36px;border-radius:.625rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.pain-icon-red{background:#fef2f2;color:#EF4444}
.pain-icon-green{background:#f0fdf4;color:#10B981}
.pain-label-before{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:#EF4444;margin-bottom:.3rem}
.pain-label-after{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:#10B981;margin-bottom:.3rem}
.pain-problem{font-size:.875rem;color:#64748b;line-height:1.5}
.pain-solution{font-size:.875rem;color:#1a1c2e;font-weight:600;line-height:1.5}

/* ── Pricing ── */
.pricing-single{max-width:520px;margin:0 auto}
.pricing-card-solo{padding:2.5rem 2.25rem;text-align:center}
.pricing-features-highlight{text-align:left;margin-bottom:1.75rem}
.pricing-features-highlight li{align-items:flex-start;line-height:1.5}
.pricing-features-highlight li strong{font-weight:700}
.pricing-trial-note{margin-top:1rem;font-size:.85rem;color:rgba(255,255,255,.65);font-weight:500}
.pricing-example{background:#fff;border-radius:.875rem;padding:1.25rem 1.5rem;margin-bottom:1.75rem;text-align:center}
.pricing-example-label{font-size:.8rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.875rem}
.pricing-example-row{display:flex;align-items:center;justify-content:center;gap:.75rem;flex-wrap:wrap}
.pricing-example-item{font-family:'Manrope',sans-serif;font-size:1.05rem;font-weight:800;color:#1a1c2e;line-height:1.3}
.pricing-example-item small{display:block;font-size:.75rem;font-weight:600;color:#64748b;margin-top:.15rem}
.pricing-example-divider{font-size:1.25rem;font-weight:700;color:#cbd5e1;flex-shrink:0}
@media(max-width:480px){
  .pricing-example-row{flex-direction:column;gap:.5rem}
  .pricing-example-divider{display:none}
}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;align-items:start}
.pricing-card{background:#fff;border:1.5px solid #e9ecef;border-radius:1.25rem;padding:2rem;position:relative;transition:all .3s}
.pricing-card:hover{box-shadow:0 20px 48px rgba(0,0,0,.08);transform:translateY(-2px)}
.pricing-featured{background:var(--hp-gradient-hero);border:1px solid rgba(255,255,255,.15);box-shadow:0 24px 64px rgba(15,17,35,.25)}
.popular-badge{position:absolute;top:-1px;left:50%;transform:translateX(-50%);background:var(--hp-accent);color:#fff;font-size:.7rem;font-weight:800;padding:.3rem .875rem;border-radius:0 0 .625rem .625rem;text-transform:uppercase;letter-spacing:.06em;white-space:nowrap}
.pricing-tier{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:#64748b;margin-bottom:.75rem;margin-top:.5rem}
.pricing-price{font-family:'Manrope',sans-serif;font-size:2.25rem;font-weight:900;color:#1a1c2e;line-height:1;margin-bottom:.75rem}
.pricing-price span{font-size:2.5rem}
.pricing-price small{font-size:1rem;font-weight:500;color:#94a3b8}
.pricing-desc{font-size:.875rem;color:#64748b;line-height:1.6;margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid #f1f3f5}
.pricing-featured .pricing-desc{border-color:rgba(255,255,255,.15)}
.pricing-features{list-style:none;display:flex;flex-direction:column;gap:.625rem;margin-bottom:2rem}
.pricing-features li{font-size:.875rem;color:#475569;display:flex;align-items:center;gap:.625rem}
.pf-check{color:#10B981;font-weight:800;flex-shrink:0}
.pf-check-white{color:rgba(255,255,255,.9)}
.pf-cross{color:#cbd5e1;flex-shrink:0}
.pricing-btn-outline{display:block;text-align:center;padding:.875rem;border-radius:.75rem;font-weight:700;font-size:.9rem;text-decoration:none;border:1.5px solid #e2e8f0;color:#1a1c2e;transition:all .2s}
.pricing-btn-outline:hover{border-color:var(--hp-primary);color:var(--hp-primary)}
.pricing-btn-white{display:block;text-align:center;padding:.875rem;border-radius:.75rem;font-weight:700;font-size:.9rem;text-decoration:none;background:#fff;color:var(--hp-primary);transition:all .2s;box-shadow:0 4px 16px rgba(0,0,0,.15)}
.pricing-btn-white:hover{transform:translateY(-1px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.pricing-tier-emoji{font-size:1.75rem;margin-bottom:.375rem}
.pricing-capacity-badge{display:inline-flex;align-items:center;gap:.4rem;font-size:.78rem;font-weight:700;color:var(--hp-primary);background:rgba(var(--hp-primary-rgb),.08);border:1px solid rgba(var(--hp-primary-rgb),.15);padding:.3rem .75rem;border-radius:2rem;margin-bottom:1rem}
.pricing-capacity-badge-white{color:rgba(255,255,255,.9);background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.2)}
.pricing-addon{background:rgba(var(--hp-primary-rgb),.05);border:1px solid rgba(var(--hp-primary-rgb),.12);border-radius:.875rem;padding:1rem 1.125rem;margin-bottom:1.5rem}
.pricing-addon-white{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.2)}
.pricing-addon-white p,.pricing-addon-white strong{color:rgba(255,255,255,.9)}
.pricing-addon-purple{background:rgba(var(--hp-accent-rgb),.06);border-color:rgba(var(--hp-accent-rgb),.18)}
.pricing-addon-label{font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:var(--hp-primary);margin-bottom:.4rem}
.pricing-addon-white .pricing-addon-label{color:rgba(255,255,255,.8)}
.pricing-addon-purple .pricing-addon-label{color:var(--hp-accent)}
.pricing-addon p{font-size:.82rem;color:#475569;line-height:1.55}

/* ── FAQ ── */
.faq-list{display:flex;flex-direction:column;gap:.75rem;margin-top:2rem}
.faq-item{background:var(--hp-bg-light);border-radius:.875rem;border:1px solid var(--hp-border-light);overflow:hidden;transition:all .2s}
.faq-item[open]{background:#fff;box-shadow:0 4px 20px rgba(var(--hp-primary-rgb),.08);border-color:rgba(var(--hp-primary-rgb),.2)}
.faq-q{padding:1.25rem 1.5rem;font-weight:700;font-size:.95rem;color:#1a1c2e;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;user-select:none}
.faq-q::-webkit-details-marker{display:none}
.faq-q::after{content:'＋';font-size:1.1rem;color:var(--hp-primary);transition:transform .2s;flex-shrink:0}
.faq-item[open] .faq-q::after{content:'－'}
.faq-a{padding:0 1.5rem 1.25rem;font-size:.9rem;color:#64748b;line-height:1.7}

/* ── CTA Section ── */
.hp-cta-section{padding:8rem 0;background:var(--hp-gradient-hero);position:relative;overflow:hidden}
.hp-cta-glow{position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(var(--hp-primary-rgb),.3),transparent 70%);top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none}

/* ── Footer ── */
.hp-footer{background:#071724;padding:5rem 0 2rem}
.hp-footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem;margin-bottom:4rem}
.hp-footer-col{display:flex;flex-direction:column;gap:.75rem}
.hp-footer-col h4{font-family:'Manrope',sans-serif;font-weight:700;font-size:.85rem;color:#fff;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.25rem}
.hp-footer-col a{font-size:.875rem;color:rgba(255,255,255,.45);text-decoration:none;transition:color .2s}
.hp-footer-col a:hover{color:#fff}
.hp-footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;border-top:1px solid rgba(255,255,255,.08);flex-wrap:wrap;gap:1rem}
.hp-footer-bottom span,.hp-footer-bottom a{font-size:.85rem;color:rgba(255,255,255,.35);text-decoration:none}
.hp-footer-bottom a:hover{color:rgba(255,255,255,.7)}
.hp-social-btn{width:36px;height:36px;background:rgba(255,255,255,.08);border-radius:.5rem;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);text-decoration:none;transition:all .2s}
.hp-social-btn:hover{background:rgba(255,255,255,.15);color:#fff}

/* ── Messaging Add-Ons ── */
.msg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}
.msg-card {
  background: var(--hp-bg-light);
  border: 1.5px solid var(--hp-border-light);
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.msg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(var(--hp-accent-rgb), 0.08);
  border-color: rgba(var(--hp-accent-rgb), 0.25);
}
.msg-featured-purple {
  background: #fff;
  border: 2px solid var(--hp-accent);
  box-shadow: 0 12px 32px rgba(var(--hp-accent-rgb), 0.08);
}
.msg-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  background: #e2e8f0;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.msg-badge-purple {
  color: #fff;
  background: var(--hp-accent);
}
.msg-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1c2e;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.msg-price {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #1a1c2e;
  margin-bottom: 1rem;
}
.msg-price-type {
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
}
.msg-amount {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hp-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--hp-border-light);
}
.msg-featured-purple .msg-amount {
  color: var(--hp-accent);
}
.msg-best-for {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin-top: auto;
}
.msg-info-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.125rem 1.75rem;
  background: var(--hp-bg-light);
  border-radius: 1rem;
  border: 1.5px dashed var(--hp-border-light);
}

/* ── Responsive ── */

/* 1300px — slight compression, keep two-column hero but tighten spacing */
@media(max-width:1300px){
  .hp-hero-inner{gap:2.75rem}
  .hp-dashboard-mock{max-width:480px}
  .hp-dash-stat-v{font-size:1.05rem}
  .hp-dash-apt-name{font-size:.75rem}
  .hp-hero-title{font-size:clamp(2.25rem,5vw,3.75rem)}
  .analytics-stats-row{gap:.75rem}
  .analytics-stat-val{font-size:1.25rem}
}

/* 1023px — stack hero, hide dashboard mockup, collapse desktop nav */
@media(max-width:1023px){
  .hp-hero-inner{flex-direction:column;text-align:center;gap:3rem;padding-top:4rem;padding-bottom:4rem}
  .hp-hero-inner>div:first-child{display:flex;flex-direction:column;align-items:center}
  .hp-hero-sub{max-width:600px;text-align:center}
  .hp-hero-actions{justify-content:center}
  .hp-hero-social-proof{justify-content:center}
  .hp-hero-dashboard{display:none}
  .hp-nav-links{display:none}
  .hp-hamburger{display:flex}
  .hp-nav-actions .hp-nav-cta{display:none}
  .feature-row{grid-template-columns:1fr;gap:2.5rem}
  .feature-row-reverse{direction:ltr}
  .analytics-stats-row{grid-template-columns:repeat(2,1fr)}
  .testimonials-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr}
  .pricing-single{max-width:100%}
  .msg-grid{grid-template-columns:1fr 1fr}
  .pain-grid{grid-template-columns:1fr}
  .hp-footer-grid{grid-template-columns:1fr 1fr}
  .hp-section{padding:5rem 0}
}

/* 767px — full mobile layout */
@media(max-width:767px){
  .hp-section{padding:3.5rem 0}
  .hp-hero{padding-top:68px;min-height:auto}
  .hp-hero-inner{padding-top:3.5rem;padding-bottom:3.5rem;gap:2rem}
  .hp-hero-badge{font-size:.75rem}
  .hp-hero-title{font-size:clamp(2rem,9vw,3rem)}
  .hp-hero-sub{font-size:1rem;margin-bottom:2rem}
  .hp-hero-actions{gap:.75rem}
  .hp-btn{padding:.75rem 1.35rem;font-size:.9rem}
  .hp-section-title{font-size:clamp(1.5rem,6vw,2.25rem)}
  .hp-section-sub{font-size:1rem}
  .benefits-grid{grid-template-columns:1fr 1fr;gap:1rem}
  .analytics-stats-row{grid-template-columns:repeat(2,1fr)}
  .analytics-chart-area{flex-direction:column}
  .analytics-dashboard-mock{padding:1.25rem}
  .analytics-stat-val{font-size:1.25rem}
  .msg-grid{grid-template-columns:1fr}
  .feature-row{gap:2rem;margin-bottom:3.5rem;padding-bottom:3.5rem}
  .feature-h3{font-size:1.4rem}
  .pain-card{flex-direction:column;gap:.75rem}
  .pain-arrow{align-self:flex-start;padding-left:0}
  .hp-footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .hp-footer-bottom{flex-direction:column;text-align:center;gap:.75rem}
  .hp-cta-section{padding:5rem 0}
  .pricing-card-solo{padding:2rem 1.5rem}
}

/* 600px — benefits grid and general cleanups to prevent overflow/cramping */
@media(max-width:600px){
  .benefits-grid{grid-template-columns:1fr;gap:.875rem}
  .benefit-card{padding:1.5rem}
  .pricing-example-row{flex-direction:column;gap:.5rem}
  .pricing-example-divider{display:none}
}

/* 480px — compact single-column mobile */
@media(max-width:480px){
  .hp-container{padding:0 1.125rem}
  .hp-section{padding:3rem 0}
  .hp-hero-inner{padding-top:3rem;padding-bottom:3rem}
  .hp-hero-title{font-size:clamp(1.85rem,10vw,2.5rem)}
  .hp-hero-actions{flex-direction:column;align-items:stretch}
  .hp-btn{justify-content:center}
  .hp-hero-social-proof{flex-direction:column;gap:.625rem;align-items:center}
  .benefits-grid{grid-template-columns:1fr;gap:.875rem}
  .benefit-card{padding:1.25rem}
  .analytics-stats-row{grid-template-columns:1fr 1fr;gap:.625rem}
  .analytics-stat-val{font-size:1.1rem}
  .analytics-stat-card{padding:.875rem}
  .msg-grid{grid-template-columns:1fr}
  .hp-footer-grid{grid-template-columns:1fr;gap:2rem}
  .hp-footer-bottom{flex-direction:column;text-align:center}
  .pain-grid{grid-template-columns:1fr}
  .faq-q{font-size:.9rem;padding:1rem 1.25rem}
  .faq-a{padding:0 1.25rem 1rem}
  .hp-cta-section{padding:4rem 0}
  .pricing-example-row{flex-direction:column;gap:.5rem}
  .pricing-example-divider{display:none}
}
