:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #c9a959;
  --accent-hover: #b8944d;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --bg-light: #f8f7f4;
  --bg-alt: #eeeae3;
  --border: #d4d0c8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  z-index: 1000;
  padding: 15px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

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

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease;
}

/* Split Section */
.split-section {
  display: flex;
  min-height: 100vh;
  padding-top: 60px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
}

.split-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image-placeholder svg {
  width: 120px;
  height: 120px;
  opacity: 0.3;
}

/* Hero Specific */
.hero-content {
  background: var(--bg-light);
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 450px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--secondary);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Section Styles */
.section {
  padding: 100px 0;
}

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

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-desc {
  color: rgba(255,255,255,0.7);
}

/* Problem Section */
.problem-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.problem-item {
  flex: 1;
  min-width: 280px;
  padding: 40px;
  background: var(--white);
  border-left: 4px solid var(--accent);
}

.problem-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  color: var(--accent);
}

.problem-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.problem-text {
  color: var(--text-light);
  line-height: 1.7;
}

/* Story Split */
.story-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.story-split.reverse {
  flex-direction: row-reverse;
}

.story-content {
  flex: 1;
}

.story-image {
  flex: 1;
  position: relative;
}

.story-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(45deg, var(--bg-alt), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 25px;
  margin: 30px 0;
}

.story-list {
  list-style: none;
  margin-top: 25px;
}

.story-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.story-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Trust Section */
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.trust-item {
  flex: 0 0 200px;
}

.trust-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.trust-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
}

/* Testimonials */
.testimonial-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 40px;
  position: relative;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Services */
.services-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 320px;
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-image {
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image svg {
  width: 60px;
  height: 60px;
  color: var(--accent);
}

.service-body {
  padding: 30px;
}

.service-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.service-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Benefits */
.benefits-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.benefits-list {
  flex: 1;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.benefit-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.benefit-content p {
  color: var(--text-light);
}

.benefits-image {
  flex: 1;
}

.benefits-image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, var(--bg-alt), var(--border));
}

/* Urgency Banner */
.urgency-banner {
  background: var(--accent);
  color: var(--primary);
  padding: 20px;
  text-align: center;
}

.urgency-text {
  font-size: 1.1rem;
  font-weight: 600;
}

.urgency-countdown {
  font-size: 1.3rem;
  font-weight: 700;
  margin-left: 15px;
}

/* Form Section */
.form-split {
  display: flex;
  min-height: 80vh;
}

.form-content {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-wrapper {
  flex: 1;
  background: var(--bg-light);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-desc {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.form-benefits {
  list-style: none;
}

.form-benefits li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
}

.form-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Form Styles */
.contact-form {
  max-width: 500px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  border: 2px solid var(--border);
  background: var(--white);
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  color: var(--white);
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--accent);
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

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

.footer-contact p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--white);
  padding: 25px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 10000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-text {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 25px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--accent);
  color: var(--primary);
}

.cookie-reject {
  background: var(--bg-alt);
  color: var(--text);
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-light);
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  color: var(--primary);
}

.thanks-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.thanks-message {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* About Page */
.page-hero {
  padding: 140px 0 80px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 80px 0;
}

.content-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.content-main {
  flex: 2;
}

.content-sidebar {
  flex: 1;
  background: var(--bg-alt);
  padding: 30px;
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

.content-text p {
  margin-bottom: 20px;
}

.content-text h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 40px 0 20px;
}

/* Contact Page */
.contact-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-value {
  color: var(--text-light);
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 40px;
  padding-top: 80px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 40px 0 20px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text);
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .split-image {
    min-height: 50vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .story-split,
  .story-split.reverse,
  .benefits-split {
    flex-direction: column;
  }

  .form-split {
    flex-direction: column;
  }

  .content-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .split-content {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-content,
  .form-wrapper {
    padding: 40px 20px;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 10px;
  }
}
