/* Loyal Growth — preview site (IT) */
:root{
  --bg:#070816;
  --panel:#0d0f24;
  --text:#f0f3ff;
  --muted:#b8c0e0;
  --line:rgba(255,255,255,.10);
  --accent:#7c5cff;
  --accent2:#8a6bff;
  --good:#2ee9a6;
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(124,92,255,.38), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(46,233,166,.16), transparent 60%),
    linear-gradient(180deg, var(--bg), #040512);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(13, 15, 36, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.2);
  transition: all 0.3s ease;
  margin: 0 auto;
  padding: 0 20px;
  width: min(1120px, 92vw);
  box-sizing: border-box;
}
.site-header:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 4px 12px rgba(0,0,0,.3);
}

/* When navbar can't fit anymore, switch to mobile */
@media (max-width: 1000px) {
  .menu-btn {
    display: block !important;
  }
  
  .nav {
    display: none !important;
  }
  
  .header-cta {
    display: none !important;
  }
  
  .site-header {
    width: calc(100% - 2rem);
    padding: 0 1rem;
  }
}

/* Responsive adjustments */
@media (min-width: 1200px) {
  .site-header {
    /* Keep the same width as .container */
    width: min(1120px, 92vw);
  }
  .site-header:hover {
    transform: translate(-50%, -2px);
  }
}

/* Tablet and below */
@media (max-width: 768px) {
  .site-header {
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 1.5rem);
    padding: 0 16px;
    border-radius: 16px;
  }
  
  .header-row {
    padding: 10px 0;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .site-header {
    left: 0.5rem;
    right: 0.5rem;
    transform: none;
    border-radius: 14px;
  }
  
  .site-header:hover {
    transform: translateY(-2px);
  }
  
  .brand-logo {
    max-height: 24px;
  }
  
  .menu-btn {
    width: 40px;
    height: 40px;
  }
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: nowrap; /* Prevent wrapping of header elements */
  position: relative;
}
.brand{display:flex; align-items:center; flex-shrink: 0}
.brand-logo{max-height:30px; width:auto; display:block}

.nav{display:flex; gap:10px; align-items:center; color:var(--muted); flex-shrink: 1}
.nav a{padding:8px 10px; border-radius:12px; transition: all 0.3s ease; white-space: nowrap}
.nav:hover a:not(:hover) {
  filter: blur(1px);
  opacity: 0.6;
}
.nav a:hover {
  filter: blur(0) !important;
  opacity: 1 !important;
  transform: scale(1.05);
}

.nav a[href="#case"]:hover {
  color: var(--good);
  text-shadow: 0 0 8px rgba(46, 233, 166, 0.6);
  transition: all 0.3s ease;
}

/* Prevent scale transform on small screens to avoid layout reflow */
@media (max-width: 768px) {
  .nav a:hover {
    transform: none;
  }
}

.nav-links a[href="#case"]:hover {
  color: var(--good);
  text-shadow: 0 0 8px rgba(46, 233, 166, 0.6);
  transition: all 0.3s ease;
}

.footer-links a[href="#case"]:hover {
  color: var(--good);
  text-shadow: 0 0 8px rgba(46, 233, 166, 0.6);
  transition: all 0.3s ease;
}

.btn[href="#case"]:hover {
  box-shadow: 0 0 20px rgba(46, 233, 166, 0.4);
  border-color: rgba(46, 233, 166, 0.6);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.header-cta{display:flex; gap:8px; align-items:center; flex-shrink: 0}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-left: auto;
  margin-right: 8px; /* Add right margin for spacing */
  flex-shrink: 0;
}
.menu-btn:hover{
  background:rgba(255,255,255,.1);
  border-color: rgba(124,92,255,.4);
  transform: scale(1.05);
}
.menu-btn:active{
  transform: scale(0.95);
}

/* Prevent scale transform on small screens to avoid layout reflow */
@media (max-width: 768px) {
  .menu-btn:hover {
    transform: none;
  }
  .menu-btn:active {
    transform: none;
  }
}
.menu-btn span{
  display:block; height:2px; width:18px;
  background:var(--text); margin:4px auto;
  border-radius:20px;
  transition: all 0.3s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 6px;
}
.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  top: -6px;
}
/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 75px;
  left: 0px;
  right: 0px;
  z-index: 9998;
  background-color: rgba(13, 15, 36, 0.75);
  backdrop-filter: blur(0.3rem) saturate(180%);
  -webkit-backdrop-filter: blur(0.3rem) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav .nav-links {
  margin-bottom: 16px;
}

/* Blur effect for non-hovered navigation links using class-based approach */
.mobile-nav.nav-link-hovered .nav-links > a:not(:hover) {
  filter: blur(2px);
  opacity: 0.7;
  transform: none;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Base styles for navigation links */
.mobile-nav .nav-links > a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 4px 0;
  padding: 14px 16px;
  border-radius: 8px;
  position: relative;
}

/* Hover state for navigation links - subtle transform effect */
.mobile-nav .nav-links > a:hover {
  color: #ffffff;
  transform: translateX(4px) scale(1.02) !important;
  z-index: 2;
  position: relative;
  background: transparent;
  box-shadow: none;
  padding-left: 16px;
}

/* Button styles - not affected by blur */
.mobile-nav .btn {
  margin: 16px 0 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 20px !important;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Ensure buttons are never blurred */
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

/* Mobile nav primary buttons */
.mobile-nav .btn-primary {
  background: transparent !important;
  border: 1px solid rgba(163, 123, 242, 0.3) !important;
  color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-image: linear-gradient(135deg, #A37BF2, #7861E6) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: all 0.3s ease;
}

.mobile-nav .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(163, 123, 242, 0.1), rgba(120, 97, 230, 0.1));
  z-index: -1;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav .btn-primary:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(163, 123, 242, 0.6) !important;
  box-shadow: 0 4px 12px rgba(120, 97, 230, 0.15) !important;
  background-image: linear-gradient(135deg, #A37BF2, #7861E6) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.mobile-nav .btn-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 6px rgba(120, 97, 230, 0.2) !important;
}

/* Smooth scroll offset for anchor links */
html {
  scroll-behavior: smooth;
}

/* Offset for anchor links to account for fixed header */
[id] {
  scroll-margin-top: 80px;
}

/* Smooth Text Animations - Scroll Triggered */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial hidden state */
.animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(6px);
  transition:
    opacity 700ms cubic-bezier(.2, .8, .2, 1),
    transform 700ms cubic-bezier(.2, .8, .2, 1),
    filter 700ms cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform, filter;
}

/* Animation classes when scrolled into view */
.animate-fade-in-up {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(7px);
  transition:
    opacity 700ms cubic-bezier(.2, .8, .2, 1),
    transform 700ms cubic-bezier(.2, .8, .2, 1),
    filter 700ms cubic-bezier(.2, .8, .2, 1);
}

.animate-fade-in-left {
  opacity: 0;
  transform: translate3d(-22px, 0, 0);
  filter: blur(7px);
  transition:
    opacity 700ms cubic-bezier(.2, .8, .2, 1),
    transform 700ms cubic-bezier(.2, .8, .2, 1),
    filter 700ms cubic-bezier(.2, .8, .2, 1);
}

.animate-fade-in-right {
  opacity: 0;
  transform: translate3d(22px, 0, 0);
  filter: blur(7px);
  transition:
    opacity 700ms cubic-bezier(.2, .8, .2, 1),
    transform 700ms cubic-bezier(.2, .8, .2, 1),
    filter 700ms cubic-bezier(.2, .8, .2, 1);
}

/* Active state - when element is in view */
.animate-on-scroll.active,
.animate-fade-in-up.active,
.animate-fade-in-left.active,
.animate-fade-in-right.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-fade-in-up,
  .animate-fade-in-left,
  .animate-fade-in-right {
    transition: none;
    transform: none;
    filter: none;
    opacity: 1;
  }
}

/* Hover effects for feature cards */
.feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Green hover effects for cosa vendiamo chips only */
#include .grid-5 .chip:hover {
  border-color: rgba(46, 233, 166, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(46, 233, 166, 0.2);
  transition: all 0.3s ease;
}

/* Mobile nav ghost button hover effect */
.mobile-nav .btn-ghost:hover {
  transform: translateY(-2px) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.hero{padding:225px 0 120px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:start;
}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
}
.pill .dot{
  width:10px; height:10px; border-radius:999px;
  background:var(--good);
  box-shadow: 0 0 0 6px rgba(46,233,166,.12);
}
.gradient-text {
  background: linear-gradient(135deg, #A37BF2, #7861E6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.nav a.nav-active {
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(163, 123, 242, 0.2), rgba(120, 97, 230, 0.2));
}

.nav-links a.nav-active {
  padding: 8px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(163, 123, 242, 0.2), rgba(120, 97, 230, 0.2));
}

.footer-links a.nav-active {
  padding: 4px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(163, 123, 242, 0.2), rgba(120, 97, 230, 0.2));
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height:1.05;
  letter-spacing:-1.2px;
}
.lead{
  margin:0 0 20px;
  font-size: 18px;
  line-height:1.55;
  color:var(--muted);
  max-width: 60ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 20px}

.trust-row{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:10px;
}
.trust-item{
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  min-width: 160px;
}
.trust-number{font-weight:900; font-size:16px}
.trust-label{color:var(--muted); font-size:13px; margin-top:2px}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-card .card{position:relative; top:auto}
.card-top{display:flex; gap:12px; align-items:center; margin-bottom:10px}
.avatar{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(124,92,255,.18);
  border:1px solid rgba(124,92,255,.35);
  font-weight:900;
}
.card-title{font-weight:800}
.card-sub{color:var(--muted); font-size:13px; margin-top:2px}

.mini-note{
  margin-top:10px;
  padding:12px 14px;
  border:1px solid rgba(124,92,255,.25);
  background: rgba(124,92,255,.08);
  border-radius: 16px;
  color: var(--text);
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.spark{color:var(--accent2); font-weight:900}

.form{display:grid; gap:12px; margin-top:10px}
label{display:grid; gap:7px; color:var(--muted); font-size:13px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{
  color: var(--muted);
  opacity: 0.7;
}

/* Custom Dropdown */
.custom-dropdown{
  position: relative;
  width: 100%;
}
.dropdown-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  transform: none !important;
}
.dropdown-trigger:hover{
  border-color: rgba(124,92,255,.4);
  background: rgba(0,0,0,.25);
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.dropdown-trigger:focus{
  outline: none;
  border-color: rgba(124,92,255,.65);
  box-shadow: 0 0 0 6px rgba(124,92,255,.14), 0 4px 12px rgba(0,0,0,.3);
}
.dropdown-trigger:active{
  transform: translateY(0px) !important;
}
.dropdown-text{
  color: var(--muted);
  opacity: 0.7;
}
.dropdown-trigger.has-selection .dropdown-text{
color: var(--text);
opacity: 1;
}
.dropdown-arrow{
width: 16px;
height: 16px;
color: var(--muted);
transition: transform 0.2s ease;
}
.dropdown-trigger.active .dropdown-arrow{
transform: rotate(180deg);
}
.dropdown-menu{
position: absolute;
top: calc(100% + 8px);
left: 0;
right: 0;
background: linear-gradient(180deg, var(--panel), #0a0c1a);
border: 1px solid var(--line);
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,.4);
z-index: 100;
opacity: 0;
visibility: hidden;
transform: scale(0.95) translateY(-10px);
transition: all 0.15s ease;
pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--panel), #0a0c1a);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.4);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95) translateY(-10px);
  transition: all 0.15s ease;
  pointer-events: none;
}
.dropdown-menu.show{
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.dropdown-option{
  padding: 12px 16px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s ease;
  font-weight: 500;
}
.dropdown-option:first-child{
  border-radius: 12px 12px 0 0;
}
.dropdown-option:last-child{
  border-radius: 0 0 12px 12px;
}
.dropdown-option:hover{
  background: linear-gradient(180deg, rgba(124,92,255,.25), rgba(124,92,255,.15));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
/* Modern Pricing Section */
.pricing-hero{
  text-align: center;
  max-width: 64rem;
  margin: 0 auto 3rem;
}
.pricing-subtitle{
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pricing-title{
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.pricing-desc{
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto;
}

.pricing-modern{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 68rem;
  margin: 0 auto;
}

@media (min-width: 768px){
  .pricing-modern{
    max-width: 72rem;
  }
  .pricing-promise{
    max-width: 72rem;
  }
  .notice{
    max-width: 72rem;
  }
}

.pricing-card{
  border-radius: 1.5rem;
  padding: 48px 40px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
}
.pricing-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.pricing-card.standard{
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.pricing-card.featured{
  background: linear-gradient(135deg, rgba(124,92,255,.15), rgba(255,255,255,.03));
  border-color: rgba(124,92,255,.3);
}

.pricing-promise{
  background: linear-gradient(135deg, rgba(46,233,166,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(46,233,166,.2);
  border-radius: 1.5rem;
  padding: 24px 40px;
  text-align: center;
  margin: 3rem auto 0;
  max-width: 68rem;
  box-shadow: 0 0 20px rgba(46,233,166,.1);
}

.pricing-promise-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: left;
}

.pricing-promise-divider {
  width: 1px;
  height: 40px;
  background: rgba(46,233,166,.3);
  flex-shrink: 0;
}

.pricing-promise-left {
  flex-shrink: 0;
}

.pricing-promise-right {
  flex: 1;
  max-width: 500px;
}

.pricing-promise h4{
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
}

.pricing-promise p{
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.pricing-promise .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-top: 1.5rem;
  padding: 12px 24px;
  border: 1px solid rgba(46,233,166,.3);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.pricing-badge{
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(124,92,255,.2);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid rgba(124,92,255,.4);
}

.pricing-header{
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.pricing-tier{
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0;
}

.pricing-price-group {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-price{
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0;
}

.pricing-price.monthly{
  margin-bottom: 0;
}

.price-amount{
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
}

.price-period{
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-sub{
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-features-wrapper {
  position: relative;
  margin: 2rem 0;
}

.pricing-features-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
  transform: translateX(-50%);
}

.pricing-features{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  flex-grow: 1;
}

.feature-item{
display: flex;
align-items: center;
gap: 12px;
padding: 12px 0;
color: var(--text);
font-size: 0.95rem;
line-height: 1.5;
}

.feature-icon{
width: 1.25rem;
height: 1.25rem;
color: var(--accent);
flex-shrink: 0;
}

.pricing-btn{
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.08);
}

.btn{
display:inline-flex; align-items:center; justify-content:center;
gap:10px;
padding:10px 14px;
border-radius:14px;
border:1px solid var(--line);
background: rgba(255,255,255,.03);
color:var(--text);
font-weight:700;
cursor:pointer;
transition: transform .12s ease, opacity .12s ease;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, opacity .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn-lg{padding:12px 16px; border-radius:16px; font-size:15px}
.btn-primary {
  background: transparent !important;
  border: 1px solid rgba(163, 123, 242, 0.3) !important;
  color: transparent !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #A37BF2, #7861E6) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  transition: all 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(163, 123, 242, 0.1), rgba(120, 97, 230, 0.1));
  z-index: -1;
  border-radius: inherit;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(163, 123, 242, 0.6) !important;
  box-shadow: 0 4px 12px rgba(120, 97, 230, 0.15) !important;
  background: linear-gradient(135deg, #A37BF2, #7861E6) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.btn-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 6px rgba(120, 97, 230, 0.2) !important;
}
.btn-ghost{background: rgba(255,255,255,.03)}
.arrow{font-weight:900}

.section{padding:52px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{margin-bottom:18px}
h2{
  margin:0 0 8px;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing:-.7px;
}
.section-head p{margin:0; color:var(--muted); max-width: 72ch; line-height:1.55}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:22px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:22px;
}
.mt{margin-top:14px}

.feature{
  padding:18px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.feature .icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(124,92,255,.12);
  border:1px solid rgba(124,92,255,.25);
  margin-bottom:10px;
}
.feature h3{margin:0 0 6px}
.feature p{margin:0 0 10px; color:var(--muted); line-height:1.55}
.feature ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}

.grid-5{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.chip{
  padding:10px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  color: var(--text);
  font-weight:700;
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:22px;
}
.plan{
  padding:18px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  position:relative;
}
.plan.featured{
  background: linear-gradient(180deg, rgba(124,92,255,.16), rgba(255,255,255,.03));
  border-color: rgba(124,92,255,.35);
}
.badge{
  position:absolute; top:14px; right:14px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(124,92,255,.45);
  background: rgba(124,92,255,.18);
  font-size:12px;
  color:var(--text);
  font-weight:800;
}
.price{
  font-size:28px; font-weight:900; letter-spacing:-.6px;
  margin:10px 0 6px;
}
.price.small{font-size:20px; margin-top:0}
.price span{font-weight:700; font-size:12px; color:var(--muted); margin-left:6px}
.plan ul{margin:10px 0 14px; padding-left:18px; color:var(--muted); line-height:1.7}
.plan-sub{margin:0 0 8px; color:var(--muted); line-height:1.55}
.promise{
  margin:12px 0 14px;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(46,233,166,.22);
  background: rgba(46,233,166,.08);
  color: var(--text);
  line-height:1.55;
}

.notice{
  margin-top: 2rem;
  padding: 32px 40px;
  border: 1px solid rgba(46,233,166,.2);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(46,233,166,.08), rgba(255,255,255,.02));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 20px rgba(46,233,166,.1);
}
.notice-dot{width:10px; height:10px; border-radius:999px; background:var(--good)}

.case-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap:14px;
  margin-top:22px;
}
.card-lite{
  padding:18px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.case ul{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.7}

.stats{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
  margin-top:10px;
}
.stat{
  padding:12px;
  border:1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
}
.stat-big{font-size:18px; font-weight:900}
.stat-label{color:var(--muted); font-size:12px; margin-top:2px}

.quote{
  margin:12px 0 0;
  padding:14px;
  border-radius: 16px;
  border:1px solid rgba(124,92,255,.22);
  background: rgba(124,92,255,.08);
}
.quote blockquote{margin:0; line-height:1.6}
.quote figcaption{margin-top:8px; color:var(--muted); font-size:12px}

.script{
  margin-top:18px;
  display:grid;
  gap:10px;
}
.script-title{font-weight:900}
.script-text{margin:0; color:var(--muted); line-height:1.65}

.faq-item{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px 16px;
  background: rgba(255,255,255,.03);
  margin-top:10px;
}
.faq-item summary{cursor:pointer; font-weight:900}
.faq-item p{color:var(--muted); line-height:1.6; margin:10px 0 0}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contact-cards{display:grid; gap:10px; margin-top:16px}
.contact-card{
  display:flex; gap:12px; align-items:center;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.contact-title{font-weight:900}
.contact-sub{color:var(--muted); font-size:13px; margin-top:2px}

/* System Section */
.system-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.system-left {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 140px);
}

.system-right {
  min-height: 400px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* About Us Page Styles */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .lead {
  text-align: center !important;
  max-width: none !important;
  margin: 0 auto 20px !important;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.mission-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.mission-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.mission-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Mission Section */
.mission-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-top: 32px;
}

.mission-left {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 140px);
}

.mission-right {
  min-height: 400px;
}

.mission-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Why Section */
.why-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-top: 32px;
}

.why-left {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 140px);
}

.why-right {
  min-height: 400px;
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Values Section */
.values-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-top: 32px;
}

.values-left {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 140px);
}

.values-right {
  min-height: 400px;
}

.approach-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-top: 32px;
}

.approach-left {
  position: sticky;
  top: 120px; /* Account for header height + some spacing */
  align-self: start;
  max-height: calc(100vh - 140px); /* Prevent from going too low */
}

.approach-right {
  min-height: 400px; /* Ensure enough content for sticky effect */
}

.approach-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}

.timeline-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent !important;
  border: 1px solid rgba(163, 123, 242, 0.3) !important;
  color: transparent !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #A37BF2, #7861E6) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}

.timeline-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(163, 123, 242, 0.1), rgba(120, 97, 230, 0.1));
  z-index: -1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.timeline-number span {
  background: linear-gradient(135deg, #A37BF2, #7861E6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.timeline-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.value-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 92, 255, 0.3);
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.value-desc {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
  .system-section,
  .mission-section,
  .why-section,
  .values-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .system-left,
  .mission-left,
  .why-left,
  .values-left {
    position: static;
    max-height: none;
  }
  
  .system-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .mission-grid,
  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .approach-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .approach-left {
    position: static; /* Remove sticky on mobile */
    max-height: none;
  }
  
  .approach-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .timeline-item {
    text-align: left;
    gap: 12px;
  }
  
  .timeline-item .timeline-number {
    align-self: flex-start;
  }
  
  .timeline-content h3 {
    font-size: 16px;
  }
  
  .timeline-content p {
    font-size: 13px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .mission-card {
    padding: 24px;
  }
  
  .value-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .approach-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

/* Footer Styles */
.site-footer {
  background: #0a0a0a;
  color: white;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Left Column - Brand */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  object-fit: contain;
  align-self: flex-start;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-cta {
  margin-bottom: 24px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 92, 255, 0.4);
}

.footer-social {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

/* Middle Column - Navigation */
.footer-nav {
  align-items: flex-start;
}

.footer-label {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-links:hover a:not(:hover) {
  filter: blur(2px);
  opacity: 0.6;
}

.footer-links a:hover {
  transform: translateX(4px);
}

/* Right Column - Contact */
.footer-contact {
  align-items: flex-start;
}

.contact-section {
  margin-bottom: 24px;
}

.contact-info {
  color: white;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-logo {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer-tagline-small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
    align-items: center;
  }
  
  .footer-nav,
  .footer-contact {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-brand-logo {
    max-height: 48px;
  }
}

@media (max-width: 480px) {
  .footer-brand-logo {
    max-height: 40px;
  }
  
  .footer-tagline {
    font-size: 14px;
  }
  
  .footer-links a,
  .contact-info {
    font-size: 15px;
  }
}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0 26px;
  color:var(--muted);
}
.footer-row{
  display:flex; gap:14px; justify-content:space-between; align-items:center;
  flex-wrap:wrap;
}
.footer-logo{max-height:20px; width:auto; opacity:.95}
.footer-links{display:flex; gap:14px}
.footer-note{font-size:13px}

.toast{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(46,233,166,.35);
  background: rgba(46,233,166,.10);
  color: var(--text);
  font-size:13px;
}

/* Redesigned Offer Section */
.offer-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

/* Combined Header Box */
.offer-header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 32px;
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(46, 233, 166, 0.05));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  margin-bottom: 20px;
}

/* Bonus Grid Box */
.offer-header-box:last-child {
  margin-bottom: 0;
}

.offer-header-content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.limited-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
  animation: pulse 2s infinite;
  align-self: flex-start;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.offer-header-content h2 {
  font-size: clamp(32px, 4.5vw, 42px);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.offer-header-content p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
}

/* Compact CTA */
.cta-compact {
  flex-shrink: 0;
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.urgency-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ff6b7a;
  font-weight: 600;
  font-size: 14px;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b7a;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.cta-button {
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(124, 92, 255, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(124, 92, 255, 0.4);
}

.limited-spots {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* Bonus Grid 2x2 */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(124, 92, 255, 0.3);
}

.bonus-card:hover::before {
  opacity: 1;
}

/* Bonus Icons with Gradients */
.bonus-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: 0 auto 16px;
  position: relative;
  overflow: hidden;
}

.reviews-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: 2px solid rgba(102, 126, 234, 0.3);
}

.google-icon {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  border: 2px solid rgba(245, 87, 108, 0.3);
}

.support-icon {
  background: linear-gradient(135deg, #fa709a, #fee140);
  border: 2px solid rgba(250, 112, 154, 0.3);
}

.checklist-icon {
  background: linear-gradient(135deg, #30cfd0, #330867);
  border: 2px solid rgba(48, 207, 208, 0.3);
}

.bonus-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.bonus-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .offer-section {
    padding: 40px 0;
  }
  
  .offer-header-box {
    flex-direction: column;
    gap: 30px;
    padding: 24px;
    margin-bottom: 30px;
  }
  
  .offer-header-content {
    text-align: center;
    align-items: center;
  }
  
  .cta-compact {
    width: 100%;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bonus-card {
    padding: 20px;
  }
  
  .bonus-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  
  .cta-button {
    font-size: 15px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .limited-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .offer-header-content h2 {
    font-size: 26px;
  }
  
  .offer-header-content p {
    font-size: 16px;
  }
  
  .bonus-card {
    padding: 18px;
  }
  
  .bonus-card h3 {
    font-size: 16px;
  }
  
  .bonus-card p {
    font-size: 13px;
  }
}

/* Responsive */
@media (max-width: 768px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-card .card{position:relative; top:auto}
  .grid-3, .pricing{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .case-grid{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .menu-btn{display:block}
}

/* Pricing Comparison Table */
.comparison-table-wrapper {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(124, 92, 255, 0.08), 
    rgba(46, 233, 166, 0.05),
    rgba(138, 107, 255, 0.08)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.comparison-table th {
  background: rgba(13, 15, 36, 0.6);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  padding: 20px 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th.feature-col {
  width: 30%;
  border-radius: var(--radius) 0 0 0;
}

.comparison-table th.replaces-col {
  width: 35%;
}

.comparison-table th.price-col {
  width: 20%;
  text-align: left;
}

.comparison-table th.loyalgrowth-col {
  width: 15%;
  text-align: center;
  border-radius: 0 var(--radius) 0 0;
}

.comparison-table td {
  padding: 20px 24px;
  vertical-align: middle;
  line-height: 1.4;
  border: none;
}

.comparison-table .table-row {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table .table-row td {
  height: auto;
  min-height: 60px;
}

.comparison-table .table-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table .table-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-table .total-row {
  background: rgba(13, 15, 36, 0.4) !important;
  border-bottom: none;
}

.comparison-table .total-row td {
  padding: 24px;
  border-bottom: none;
}

.feature-name {
  font-weight: 400;
  color: var(--text);
  font-size: 15px;
}

.total-label {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
}

.competitor-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.comp-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.comp-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.price {
  font-weight: 400;
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}

.total-price {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.loyalgrowth-price {
  color: var(--good) !important;
  font-weight: 700;
}

.included {
  text-align: center;
}

.check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--good), #2ee9a6);
  border-radius: 50%;
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(46, 233, 166, 0.3);
  animation: checkPulse 2s infinite;
}

@keyframes checkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.loyalgrowth-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  .comparison-table-wrapper {
    margin: 1rem 0;
    border-radius: 12px;
    overflow-x: auto;
  }
  
  .comparison-table {
    font-size: 14px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 16px 12px;
  }
  
  .comparison-table th.feature-col,
  .comparison-table th.replaces-col,
  .comparison-table th.price-col,
  .comparison-table th.loyalgrowth-col {
    width: auto;
  }
  
  .competitor-logos {
    justify-content: center;
  }
  
  .comp-logo {
    height: 25px;
  }
  
  .feature-name {
    font-size: 14px;
  }
  
  .check-circle {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .loyalgrowth-logo {
    height: 30px;
  }
}

@media (max-width: 600px) {
  .comparison-table-wrapper {
    margin: 0.5rem 0;
    padding: 0;
    overflow-x: visible;
  }
  
  .comparison-table {
    display: block;
    width: 100%;
    min-width: auto;
    font-size: 11px;
    white-space: normal;
    table-layout: fixed;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 8px 4px;
    font-size: 11px;
    line-height: 1.2;
  }
  
  .comparison-table th.feature-col,
  .comparison-table td.feature-col {
    width: 40%;
  }
  
  .comparison-table th.replaces-col,
  .comparison-table td.replaces-col {
    width: 30%;
  }
  
  .comparison-table th.price-col,
  .comparison-table td.price-col {
    width: 18%;
  }
  
  .comparison-table th.loyalgrowth-col,
  .comparison-table td.loyalgrowth-col {
    width: 12%;
  }
  
  .comp-logo {
    height: 16px;
    max-width: 30px;
  }
  
  .feature-name {
    font-size: 10px;
    line-height: 1.1;
  }
  
  .price {
    font-size: 10px;
  }
  
  .total-price {
    font-size: 11px;
  }
  
  .check-circle {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  
  .loyalgrowth-logo {
    height: 18px;
  }
}
