/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* Luxury Premium Design Variables */
:root {
  --primary: #1E5A8E;
  --secondary: #2C8ABD;
  --accent: #F0F8FF;
  --gold: #D4AF37;
  --gold-dark: #B8941F;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0e0;
  --shadow: rgba(30, 90, 142, 0.15);
  --shadow-gold: rgba(212, 175, 55, 0.2);
}

/* Typography - Luxury Premium Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--primary);
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary);
}

p {
  margin-bottom: 16px;
  color: var(--text);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

ul {
  list-style: none;
}

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

/* Header - Luxury Premium Style */
header {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  box-shadow: 0 4px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-gold);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 1999;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--gold);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: white;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 10px;
  border-bottom-color: var(--gold);
}

/* Buttons - Luxury Premium Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px var(--shadow);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-gold);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Hero Section - Luxury Premium Style */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 14px;
}

/* Hero Inner Pages */
.hero-inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 20px 40px;
  position: relative;
}

.hero-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-inner h1 {
  color: white;
  font-size: 42px;
}

.hero-inner p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumbs a,
.breadcrumbs span {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span::before {
  content: '/';
  margin-right: 12px;
  color: rgba(255,255,255,0.5);
}

/* Sections */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.benefits,
.services-overview,
.testimonials,
.services-detailed,
.guarantees,
.pricing-tables,
.about-intro,
.values,
.stats,
.testimonials-detailed,
.trust-indicators,
.contact-info,
.service-area,
.legal-content {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Card Grids - Using Flexbox */
.benefits-grid,
.services-grid,
.guarantees-grid,
.values-grid,
.stats-grid,
.testimonials-grid,
.indicators-grid,
.contact-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Cards - Luxury Premium Style */
.benefit-card,
.service-card,
.guarantee-card,
.value-card,
.stat-card,
.testimonial-card,
.indicator-card,
.contact-card,
.link-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.benefit-card::before,
.service-card::before,
.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 12px 0 0 12px;
}

.benefit-card:hover,
.service-card:hover,
.guarantee-card:hover,
.value-card:hover,
.indicator-card:hover,
.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-gold);
  border-color: var(--gold);
}

.benefit-card h3,
.service-card h3,
.guarantee-card h3,
.value-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-card h3::before,
.service-card h3::before {
  content: '✦';
  color: var(--gold);
  font-size: 20px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
}

/* Testimonials - Luxury Premium Style */
.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  border-left: 4px solid var(--gold);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-author strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.testimonial-header strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.testimonial-header span {
  color: var(--text-light);
  font-size: 14px;
}

.rating {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

/* Stats */
.stat-card {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 40px 32px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pricing Tables */
.price-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  gap: 20px;
  flex-wrap: wrap;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: var(--accent);
  padding-left: 40px;
}

.price-row span:first-child {
  color: var(--text);
  font-weight: 500;
}

.price-row span:last-child {
  color: var(--gold);
  font-weight: 700;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
}

/* Service Detail */
.service-detail {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 32px;
  border-left: 4px solid var(--gold);
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 20px;
}

.service-detail h2::after {
  display: none;
}

.service-detail ul {
  margin-top: 24px;
}

.service-detail li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text);
  line-height: 1.6;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
}

/* Rating Overview */
.rating-overview {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.rating-box {
  margin-bottom: 32px;
}

.overall-rating {
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.total-reviews {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
}

.stats-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 16px 32px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Contact Cards */
.contact-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card h3::before {
  content: '●';
  color: var(--gold);
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-card .note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Form Wrapper */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
}

.form-note {
  text-align: center;
}

.form-note p {
  margin-bottom: 20px;
}

.form-note ul {
  text-align: left;
  margin: 20px 0;
}

.form-note li {
  padding: 8px 0 8px 32px;
  position: relative;
}

.form-note li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Service Area */
.areas-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.area-item {
  background: var(--accent);
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--primary);
}

/* Company Details */
.details-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
}

.detail-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

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

.detail-item strong {
  color: var(--primary);
  margin-right: 8px;
}

/* Legal Content */
.legal-section {
  background: white;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 2px 10px var(--shadow);
  border-left: 4px solid var(--gold);
}

.legal-section h2 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 16px;
}

.legal-section h2::after {
  display: none;
}

.legal-section p {
  margin-bottom: 12px;
  line-height: 1.8;
}

.last-update {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.checkmark {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px var(--shadow-gold);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: white;
}

.thank-you-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}

.thank-you-message {
  padding: 60px 20px;
}

.message-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.steps-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: 'Montserrat', sans-serif;
}

.step p {
  color: var(--text);
  font-size: 14px;
}

.quick-links {
  padding: 60px 20px;
  background: var(--accent);
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  min-height: 120px;
  transition: all 0.3s ease;
}

.contact-reminder {
  padding: 60px 20px;
  text-align: center;
}

.contact-options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.contact-option {
  background: white;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
}

.contact-option strong {
  color: var(--primary);
}

/* CTA Sections */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-final h2,
.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-final h2::after,
.cta-section h2::after {
  background: var(--gold);
  left: 50%;
  transform: translateX(-50%);
}

.cta-final p,
.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-info {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.note {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 20px;
}

.pricing-note {
  background: var(--accent);
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-note h2 {
  margin-bottom: 20px;
}

.price-guarantee {
  padding: 60px 20px;
  background: var(--accent);
}

/* Footer - Luxury Premium Style */
footer {
  background: linear-gradient(180deg, var(--dark) 0%, #000000 100%);
  color: rgba(255,255,255,0.8);
  padding: 60px 20px 20px;
  border-top: 3px solid var(--gold);
}

.footer-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: var(--gold);
  padding-left: 10px;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--dark) 0%, #000000 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid var(--gold);
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#accept-all {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

#accept-all:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

#reject-all {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}

#reject-all:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

#cookie-settings {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

#cookie-settings:hover {
  background: var(--gold);
  color: white;
}

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}

.modal-header h3 {
  color: var(--primary);
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.modal-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 16px;
}

.category-header h4 {
  color: var(--primary);
  margin: 0;
  font-size: 16px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--border);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--gold);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.modal-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.modal-footer button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#save-preferences {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

#save-preferences:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-inner h1 {
    font-size: 28px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-content {
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .benefits-grid,
  .services-grid,
  .guarantees-grid,
  .values-grid,
  .stats-grid,
  .testimonials-grid,
  .indicators-grid,
  .contact-grid,
  .links-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .guarantee-card,
  .value-card,
  .stat-card,
  .testimonial-card,
  .indicator-card,
  .contact-card,
  .link-card {
    flex: 1 1 100%;
  }

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

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .step {
    flex: 1 1 100%;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .guarantee-card,
  .value-card,
  .indicator-card,
  .contact-card,
  .link-card {
    flex: 1 1 calc(50% - 12px);
  }

  .stat-card {
    flex: 1 1 calc(50% - 12px);
  }

  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .hero-cta,
  .cta-section,
  .cta-final {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}