:root {
  --color-primary: #059669;
  --color-primary-light: #10B981;
  --color-primary-dark: #047857;
  --color-accent: #0D9488;
  --color-gray-900: #111827;
  --color-gray-800: #1F2937;
  --color-gray-700: #374151;
  --color-gray-600: #4B5563;
  --color-gray-500: #6B7280;
  --color-gray-400: #9CA3AF;
  --color-gray-300: #D1D5DB;
  --color-gray-200: #E5E7EB;
  --color-gray-100: #F3F4F6;
  --color-gray-50: #F9FAFB;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-gray-900);
  line-height: 1.6;
  background: white;
}

a { text-decoration: none; color: inherit; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--color-gray-700);
  color: white;
}

.btn-outline-light:hover {
  border-color: var(--color-gray-500);
}

.btn-text {
  background: none;
  color: var(--color-gray-700);
  padding: 0.625rem 1rem;
}

.btn-text:hover {
  color: var(--color-primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-gray-100);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.navbar-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
}

.navbar-links a {
  color: var(--color-gray-600);
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--color-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-cta {
  display: none;
}

@media (min-width: 768px) {
  .navbar-cta { display: inline-flex; }
}

.navbar-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--color-gray-700);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}

.navbar-hamburger:hover {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .navbar-hamburger { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 320px;
  background: white;
  box-shadow: -10px 0 40px -10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.mobile-menu.open .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--color-gray-700);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}

.mobile-menu-close:hover {
  color: var(--color-primary);
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  overflow-y: auto;
}

.mobile-menu-link {
  padding: 1rem 1.5rem;
  color: var(--color-gray-700);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: var(--color-gray-50);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
}

.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-gray-100);
}

.mobile-menu-cta {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, white 50%, rgba(13, 148, 136, 0.05) 100%);
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary-dark);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
}

.hero-title span {
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.hero-stat-label {
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Loss Callout */
.loss-callout {
  background: var(--color-gray-900);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.loss-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loss-content p {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  margin-bottom: 0.25rem;
}

.loss-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #14B8A6;
}

.loss-calculation {
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

/* Signup Form Card */
.signup-form-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .signup-form-card { padding: 2.5rem; }
}

.signup-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.signup-form-title span {
  color: var(--color-primary);
}

.signup-form-subtitle {
  color: var(--color-gray-500);
  margin-bottom: 1.5rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-700);
}

.form-input-wrapper {
  position: relative;
}

.form-input-wrapper svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-gray-400);
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.75rem;
  outline: none;
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus {
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-input::placeholder {
  color: var(--color-gray-400);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-terms {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  margin-top: 0.5rem;
}

.form-terms a {
  color: var(--color-primary);
}

/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-primary);
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
  border: 1px solid #EF4444;
}

/* Trust Section */
.trust-section {
  padding: 3rem 0;
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.trust-text {
  text-align: center;
  color: var(--color-gray-500);
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-logos { gap: 3rem; }
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-500);
}

.trust-logo img {
  height: 32px;
  width: auto;
}

/* Section Styles */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-title-light {
  color: white;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-500);
  max-width: 40rem;
  margin: 0 auto;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.7);
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .benefits-section { padding: 7rem 0; }
}

.benefits-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon.emerald { background: rgba(5, 150, 105, 0.1); color: var(--color-primary); }
.benefit-icon.amber { background: rgba(13, 148, 136, 0.1); color: #0D9488; }
.benefit-icon.blue { background: rgba(59, 130, 246, 0.1); color: #2563EB; }
.benefit-icon.purple { background: rgba(139, 92, 246, 0.1); color: #7C3AED; }
.benefit-icon.rose { background: rgba(244, 63, 94, 0.1); color: #E11D48; }
.benefit-icon.teal { background: rgba(20, 184, 166, 0.1); color: #0D9488; }

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
}

.benefit-desc {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* How It Works Section */
.how-section {
  padding: 5rem 0;
  background: var(--color-gray-50);
}

@media (min-width: 1024px) {
  .how-section { padding: 7rem 0; }
}

.how-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); }
}

.how-step {
  position: relative;
}

.how-step-number {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(5, 150, 105, 0.1);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  line-height: 1;
  z-index: 0;
}

.how-step-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.how-step-icon {
  width: 4rem;
  height: 4rem;
  background: var(--color-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.how-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
}

.how-step-desc {
  color: var(--color-gray-600);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .pricing-section { padding: 7rem 0; }
}

.pricing-single {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card-single {
  background: white;
  border: 2px solid var(--color-primary);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 40px -5px rgba(5, 150, 105, 0.15);
}

.pricing-highlight {
  margin-bottom: 0.5rem;
}

.pricing-amount-large {
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.pricing-label {
  display: block;
  font-size: 1.25rem;
  color: var(--color-gray-600);
  margin-top: 0.5rem;
}

.pricing-tagline {
  font-size: 1.125rem;
  color: var(--color-gray-500);
  margin-bottom: 2rem;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .pricing-features-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gray-700);
}

.pricing-feature-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* Quote Section */
.quote-section {
  padding: 5rem 0;
  background: var(--color-primary);
}

@media (min-width: 1024px) {
  .quote-section { padding: 7rem 0; }
}

.quote-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.quote-icon {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
}

.quote-text {
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

@media (min-width: 640px) {
  .quote-text { font-size: 1.75rem; }
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.quote-author-info {
  text-align: left;
}

.quote-author-name {
  color: white;
  font-weight: 600;
}

.quote-author-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .faq-section { padding: 7rem 0; }
}

.faq-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray-900);
  padding-right: 1rem;
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-gray-400);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--color-gray-900);
}

@media (min-width: 1024px) {
  .cta-section { padding: 7rem 0; }
}

.cta-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .cta-title { font-size: 3rem; }
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-400);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background: #030712;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: var(--color-gray-400);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

/* Video Testimonials Section */
.video-testimonials {
  padding: 5rem 0;
  background: var(--color-gray-50);
}

@media (min-width: 1024px) {
  .video-testimonials { padding: 7rem 0; }
}

.video-testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.video-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.video-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}