:root {
  --navy: #0A1F44;
  --blue: #347EBE;
  --teal: #00C1C1;
  --white: #FFFFFF;
  --light: #F5F7FA;
  --gray: #6B7280;
  --dark-gray: #374151;
  --shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 31, 68, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--navy);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: skewX(-20deg);
  opacity: 0;
  transition: none;
  pointer-events: none;
}

.btn-primary.shimmer::after {
  opacity: 1;
  animation: shimmerSweep 0.6s ease-in-out forwards;
}

@keyframes shimmerSweep {
  0% { left: -75%; }
  100% { left: 125%; }
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(10, 31, 68, 0.9);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(10, 31, 68, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.15em;
  transition: color var(--transition);
}

.logo-tagline {
  font-weight: 500;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
  transition: color var(--transition);
}

.navbar.scrolled .logo-name {
  color: var(--navy);
}

.navbar.scrolled .logo-tagline {
  color: var(--gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  transition: color var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.navbar.scrolled .nav-links a {
  color: var(--navy);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
}

.navbar.scrolled .nav-cta {
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 58% 42%;
  }
}

@media (min-width: 1440px) {
  .hero {
    grid-template-columns: 55% 45%;
  }
}

.hero-col-content {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 140px 40px 80px;
}

@media (min-width: 1024px) {
  .hero-col-content {
    padding: 140px 80px 80px 100px;
  }
}

.hero-content-inner {
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 193, 193, 0.15);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 193, 193, 0.3);
}

.hero-content-inner h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-dark:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.hero-accent-dots {
  display: none;
}

@media (min-width: 1024px) {
  .hero-accent-dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 60px;
    left: 100px;
  }

  .hero-accent-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.6;
  }

  .hero-accent-dots span:nth-child(1) { background: var(--teal); }
  .hero-accent-dots span:nth-child(2) { background: var(--blue); }
  .hero-accent-dots span:nth-child(3) { background: #FBBF24; }
  .hero-accent-dots span:nth-child(4) { background: var(--teal); }
  .hero-accent-dots span:nth-child(5) { background: var(--blue); }
}

.hero-col-image {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-col-image {
    display: block;
  }
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-curved-edge {
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  width: 100px;
  background: var(--navy);
  border-radius: 0 60px 60px 0;
  z-index: 1;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-lead {
  color: var(--gray);
  font-size: 1.1rem;
}

.problem-section {
  background: var(--white);
}

.section-question {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 40px;
  font-style: italic;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.pain-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.pain-point:hover {
  transform: translateY(-2px);
}

.pain-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #DC2626;
}

.pain-icon svg {
  width: 100%;
  height: 100%;
}

.pain-point p {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.truth-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.truth-block p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.truth-highlight {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--navy) !important;
}

.solution-section {
  background: var(--light);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.solution-text h2 {
  margin-bottom: 24px;
}

.solution-text p {
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.brand-words {
  display: flex;
  gap: 16px;
  margin: 24px 0 28px;
}

.brand-words span {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.stat-card {
  background: var(--navy);
  color: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.2;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-text {
  font-size: 1.15rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.stat-subtext {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

.benefits-section {
  background: var(--white);
}

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

.benefit-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(10, 31, 68, 0.08);
  transition: all var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.testimonials-section {
  background: var(--navy);
  color: var(--white);
}

.testimonials-section .section-header h2 {
  color: var(--white);
}

.testimonials-section .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--white);
}

.author-business {
  font-size: 0.85rem;
  color: var(--teal);
}

.pricing-teaser-section {
  background: var(--light);
}

.pricing-teaser-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-teaser-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.15;
}

.pricing-teaser-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.1;
}

.pricing-teaser-content {
  position: relative;
  z-index: 1;
}

.pricing-teaser-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.pricing-teaser-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.pricing-teaser-highlight {
  margin-bottom: 36px;
}

.teaser-price {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 8px;
}

.teaser-note {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.urgency-section {
  background: var(--white);
}

.urgency-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.urgency-content h2 {
  margin-bottom: 20px;
}

.urgency-content p {
  color: var(--dark-gray);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.urgency-content .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
  margin-bottom: 16px;
}

.urgency-content .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.urgency-note {
  color: var(--gray) !important;
  font-size: 0.9rem !important;
  font-style: italic;
}

.cta-section {
  background: var(--light);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 60px;
}

.cta-text h2 {
  margin-bottom: 20px;
}

.cta-text p {
  color: var(--dark-gray);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.cta-pleasure {
  font-size: 1.2rem !important;
  font-weight: 700;
  color: var(--blue) !important;
  font-style: italic;
  margin-top: 24px !important;
}

.cta-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 28px;
  color: var(--navy);
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
}

.cta-secondary {
  text-align: center;
}

.cta-secondary .btn {
  color: var(--navy);
  border-color: var(--navy);
  margin-bottom: 16px;
}

.cta-secondary .btn:hover {
  background: var(--navy);
  color: var(--white);
}

.cta-note {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.6);
}

.footer-slogan {
  color: var(--teal);
  font-weight: 600;
  font-size: 1rem;
}

.footer-links h4,
.footer-info h4 {
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.pricing-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vegas-bg {
  background: var(--navy);
  overflow: hidden;
}

.vegas-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0;
  animation: vegasFlash ease-in-out infinite;
}

.light-1 { width: 6px; height: 6px; top: 15%; left: 8%; background: var(--teal); animation-duration: 1.8s; animation-delay: 0s; }
.light-2 { width: 4px; height: 4px; top: 40%; left: 22%; background: var(--blue); animation-duration: 2.4s; animation-delay: 0.3s; }
.light-3 { width: 5px; height: 5px; top: 70%; left: 12%; background: #FBBF24; animation-duration: 1.5s; animation-delay: 0.7s; }
.light-4 { width: 3px; height: 3px; top: 25%; left: 45%; background: var(--white); animation-duration: 2.1s; animation-delay: 0.1s; }
.light-5 { width: 7px; height: 7px; top: 60%; left: 55%; background: var(--teal); animation-duration: 1.6s; animation-delay: 0.5s; }
.light-6 { width: 4px; height: 4px; top: 80%; left: 38%; background: #FBBF24; animation-duration: 2.8s; animation-delay: 0.9s; }
.light-7 { width: 5px; height: 5px; top: 20%; left: 72%; background: var(--blue); animation-duration: 1.4s; animation-delay: 0.2s; }
.light-8 { width: 3px; height: 3px; top: 50%; left: 85%; background: var(--white); animation-duration: 2.2s; animation-delay: 0.6s; }
.light-9 { width: 6px; height: 6px; top: 75%; left: 78%; background: var(--teal); animation-duration: 1.9s; animation-delay: 1.1s; }
.light-10 { width: 4px; height: 4px; top: 35%; left: 92%; background: #FBBF24; animation-duration: 2.5s; animation-delay: 0.4s; }
.light-11 { width: 5px; height: 5px; top: 10%; left: 60%; background: var(--white); animation-duration: 1.7s; animation-delay: 0.8s; }
.light-12 { width: 3px; height: 3px; top: 55%; left: 30%; background: var(--blue); animation-duration: 2.0s; animation-delay: 1.3s; }

@keyframes vegasFlash {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  15% { opacity: 1; transform: scale(1.4); }
  30% { opacity: 0.3; transform: scale(1); }
  45% { opacity: 0.9; transform: scale(1.2); }
  60% { opacity: 0.1; transform: scale(0.9); }
  75% { opacity: 0.8; transform: scale(1.3); }
  90% { opacity: 0.2; transform: scale(1); }
}

.pricing-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pricing-hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
}

.pricing-hero-sub {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 8px;
}

.pricing-hero-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.1em;
}

.packages-section {
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.package-card {
  background: var(--white);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.package-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

.package-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-label {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.package-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.package-price {
  margin-bottom: 16px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}

.price-term {
  color: var(--gray);
  font-size: 0.85rem;
}

.package-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  padding: 0 8px;
}

.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.9rem;
  color: var(--dark-gray);
  padding-left: 28px;
  position: relative;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.addons-section {
  background: var(--light);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.addon-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 31, 68, 0.06);
  transition: all var(--transition);
}

.addon-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--blue);
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.addon-header h3 {
  font-size: 1.05rem;
  color: var(--navy);
}

.addon-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.addon-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
}

.addon-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

.addons-cta {
  text-align: center;
}

.addons-cta p {
  color: var(--gray);
  margin-bottom: 20px;
}

.alacarte-section {
  background: var(--white);
}

.alacarte-table-wrapper {
  overflow-x: auto;
}

.alacarte-table {
  width: 100%;
  border-collapse: collapse;
}

.alacarte-table th {
  text-align: left;
  padding: 16px 20px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.alacarte-table th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.alacarte-table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.alacarte-table td {
  padding: 20px;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.alacarte-table tr:hover td {
  background: var(--light);
}

.pricing-cta-section {
  background: var(--navy);
}

.pricing-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-cta-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.estimator-section {
  background: var(--white);
}

.estimator-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(10, 31, 68, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.estimator-progress {
  height: 5px;
  background: #E5E7EB;
}

.progress-bar {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 0 4px 4px 0;
  transition: width 0.4s ease;
}

.estimator-step {
  display: none;
  padding: 40px 36px;
  text-align: center;
}

.estimator-step.active {
  display: block;
}

.estimator-step h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.estimator-hint {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.estimator-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.estimator-option {
  padding: 16px 20px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}

.estimator-option:hover {
  border-color: var(--blue);
  background: rgba(52, 126, 190, 0.04);
}

.estimator-option.selected {
  border-color: var(--blue);
  background: rgba(52, 126, 190, 0.08);
  color: var(--blue);
  font-weight: 600;
}

.estimator-submit {
  margin-top: 28px;
  min-width: 220px;
}

.estimator-result {
  padding: 48px 36px;
  text-align: center;
}

.result-icon {
  width: 56px;
  height: 56px;
  color: var(--teal);
  margin: 0 auto 20px;
}

.result-icon svg {
  width: 100%;
  height: 100%;
}

.estimator-result h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.result-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 16px;
}

.result-description {
  color: var(--gray);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.result-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.result-ctas .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}

.result-ctas .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.estimator-restart {
  font-family: inherit;
}

.animate-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .solution-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .package-featured {
    transform: none;
  }

  .package-featured:hover {
    transform: translateY(-4px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--navy) !important;
    font-size: 1.1rem;
    padding: 12px 0;
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .pain-points {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    padding: 120px 24px 100px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 64px 0;
  }

  .pricing-hero {
    padding: 120px 0 60px;
    min-height: 300px;
  }

  .brand-words {
    flex-wrap: wrap;
  }

  .brand-words span {
    font-size: 1.3rem;
  }

  .cta-form-wrapper {
    padding: 28px 20px;
  }

  .pricing-teaser-card {
    padding: 40px 24px;
  }

  .estimator-options {
    grid-template-columns: 1fr;
  }

  .estimator-step {
    padding: 28px 20px;
  }

  .estimator-result {
    padding: 36px 20px;
  }

  .result-price {
    font-size: 1.8rem;
  }
}