/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ===================================
   GEOMETRIC STRUCTURED TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a5563;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

strong {
  font-weight: 600;
  color: #1a5563;
}

/* ===================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   =================================== */

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, #1a5563 0%, #2E7D8F 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-bottom: 4px solid #c66b1f;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  padding: 8px 16px;
  margin: 0 4px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.main-nav a:hover {
  border: 2px solid #c66b1f;
  background-color: rgba(198, 107, 31, 0.1);
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #c66b1f;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

.mobile-menu-toggle:hover {
  background: #a85717;
  transform: rotate(90deg) scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a5563 0%, #2E7D8F 100%);
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 20px 20px;
  border-left: 4px solid #c66b1f;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c66b1f;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

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

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

.mobile-nav a {
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.05);
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  border: 2px solid #c66b1f;
  background: rgba(198, 107, 31, 0.2);
  transform: translateX(8px);
}

/* ===================================
   BUTTONS - GEOMETRIC STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.btn-primary {
  background: #c66b1f;
  color: #ffffff;
  border-color: #c66b1f;
  box-shadow: 0 4px 12px rgba(198, 107, 31, 0.3);
}

.btn-primary:hover {
  background: #a85717;
  border-color: #a85717;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(198, 107, 31, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1a5563;
  border-color: #1a5563;
}

.btn-secondary:hover {
  background: #1a5563;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(26, 85, 99, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

/* ===================================
   HERO SECTION - GEOMETRIC LAYOUT
   =================================== */

.hero {
  background: linear-gradient(135deg, #1a5563 0%, #2E7D8F 50%, #5BA89D 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #c66b1f;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.05) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.05) 50%, transparent 52%);
  background-size: 40px 40px;
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  color: #ffffff;
}

.trust-badge {
  display: inline-block;
  background: rgba(198, 107, 31, 0.9);
  padding: 12px 24px;
  margin-bottom: 32px;
  font-weight: 600;
  border: 3px solid #ffffff;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===================================
   HERO INTERNAL PAGES
   =================================== */

.hero-internal {
  background: linear-gradient(135deg, #1a5563 0%, #2E7D8F 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  border-bottom: 4px solid #c66b1f;
}

.hero-internal h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #c66b1f;
}

/* ===================================
   SECTIONS - GEOMETRIC SPACING
   =================================== */

section {
  padding: 60px 20px;
  margin-bottom: 0;
}

section:nth-child(even) {
  background: #ffffff;
}

section:nth-child(odd) {
  background: #f8f9fa;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   PROBLEM-SOLUTION SECTION
   =================================== */

.problem-solution {
  text-align: center;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.problem-list li {
  background: #ffffff;
  padding: 16px 20px;
  border-left: 4px solid #c66b1f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 18px;
  font-weight: 600;
  color: #1a5563;
  clip-path: polygon(0% 0%, 100% 0%, 98% 100%, 0% 100%);
}

.solution-statement {
  font-size: 20px;
  font-weight: 600;
  color: #1a5563;
  margin: 32px 0;
  padding: 24px;
  background: #ffffff;
  border: 3px solid #c66b1f;
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
}

.reassurance {
  font-size: 18px;
  font-style: italic;
  color: #5BA89D;
  font-weight: 600;
}

/* ===================================
   BENEFITS GRID - FLEXBOX LAYOUT
   =================================== */

.benefits {
  background: #ffffff;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: #f8f9fa;
  padding: 32px 24px;
  border: 3px solid #2E7D8F;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(46, 125, 143, 0.2);
  border-color: #c66b1f;
}

.benefit-card img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(49%) saturate(1089%) hue-rotate(147deg) brightness(91%) contrast(88%);
}

.benefit-card h3 {
  color: #1a5563;
  margin-bottom: 8px;
}

.benefit-card p {
  color: #2c3e50;
  margin-bottom: 0;
}

/* ===================================
   SERVICES PREVIEW & CARDS
   =================================== */

.services-preview,
.service-category {
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  border: 3px solid #2E7D8F;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  clip-path: polygon(0% 5%, 5% 0%, 100% 0%, 100% 95%, 95% 100%, 0% 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(46, 125, 143, 0.25);
  border-color: #c66b1f;
}

.service-card h3 {
  color: #1a5563;
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #c66b1f;
  margin-top: auto;
  padding-top: 16px;
  border-top: 2px solid #e0e0e0;
  width: 100%;
}

.service-card .highlight {
  background: #c66b1f;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.service-card.best-value {
  border: 4px solid #c66b1f;
  background: linear-gradient(135deg, #ffffff 0%, #fff5ec 100%);
  position: relative;
}

.service-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #c66b1f;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.price-compare {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 18px;
}

.new-price {
  font-size: 28px;
  font-weight: 700;
  color: #c66b1f;
}

.savings {
  background: #c66b1f;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.highlight-box {
  background: linear-gradient(135deg, #1a5563 0%, #2E7D8F 100%);
  color: #ffffff;
  padding: 24px;
  margin: 32px 0;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border: 4px solid #c66b1f;
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
}

/* ===================================
   HOW IT WORKS - STEP TIMELINE
   =================================== */

.step-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border-left: 6px solid #c66b1f;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a5563 0%, #2E7D8F 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

.step h3 {
  color: #1a5563;
  margin-bottom: 8px;
}

.step p {
  color: #2c3e50;
  margin-bottom: 0;
}

.step-visual-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: center;
}

.step-visual {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border: 3px solid #2E7D8F;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  clip-path: polygon(0% 8%, 8% 0%, 100% 0%, 100% 92%, 92% 100%, 0% 100%);
}

.step-visual .step-number {
  margin-bottom: 16px;
}

.step-visual img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(27%) sepia(49%) saturate(1089%) hue-rotate(147deg) brightness(91%) contrast(88%);
}

.step-number-large {
  font-size: 120px;
  font-weight: 700;
  color: rgba(198, 107, 31, 0.1);
  position: absolute;
  top: -20px;
  left: 20px;
  z-index: 0;
}

.step-header {
  position: relative;
  margin-bottom: 32px;
}

.step-header h2 {
  position: relative;
  z-index: 1;
}

.step-detailed {
  margin-bottom: 60px;
}

.substeps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.substep {
  padding: 24px;
  background: #ffffff;
  border-left: 4px solid #5BA89D;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.substep h4 {
  color: #1a5563;
  margin-bottom: 8px;
}

/* ===================================
   TESTIMONIALS - READABLE DESIGN
   =================================== */

.testimonials {
  background: #f8f9fa;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  border: 3px solid #2E7D8F;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  clip-path: polygon(0% 0%, 98% 0%, 100% 2%, 100% 100%, 2% 100%, 0% 98%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 60px;
  color: rgba(198, 107, 31, 0.2);
  font-weight: 700;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.testimonial-author {
  font-weight: 700;
  color: #1a5563;
  font-style: normal;
  margin-bottom: 4px;
}

.testimonial-course {
  font-size: 14px;
  color: #5BA89D;
  font-weight: 600;
  font-style: normal;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.trust-indicator {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #c66b1f;
  margin-top: 32px;
  padding: 16px;
  background: #ffffff;
  border: 2px solid #c66b1f;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

/* ===================================
   AUDIENCE & TARGET SECTIONS
   =================================== */

.audience-cards,
.audience-segment {
  margin: 40px 0;
}

.audience-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 3px solid #2E7D8F;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%);
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(46, 125, 143, 0.25);
  border-color: #c66b1f;
}

.audience-card img {
  width: 80px;
  height: 80px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(49%) saturate(1089%) hue-rotate(147deg) brightness(91%) contrast(88%);
}

.audience-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.audience-checklist li {
  padding: 12px 16px;
  background: #ffffff;
  border-left: 4px solid #5BA89D;
  font-weight: 500;
}

.success-story {
  background: linear-gradient(135deg, #fff5ec 0%, #ffffff 100%);
  padding: 24px;
  margin: 32px 0;
  border-left: 6px solid #c66b1f;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.success-story p {
  color: #2c3e50;
  font-style: italic;
  margin-bottom: 8px;
}

.success-story strong {
  color: #1a5563;
  font-style: normal;
}

/* ===================================
   STATS & MILESTONES
   =================================== */

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

.stat {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border: 3px solid #c66b1f;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1a5563;
  line-height: 1;
  margin-bottom: 8px;
}

.stat p {
  font-size: 14px;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  max-width: 600px;
}

.milestone {
  padding: 16px 24px;
  background: #ffffff;
  border-left: 6px solid #c66b1f;
  font-weight: 600;
  color: #1a5563;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===================================
   GUARANTEES & FEATURES
   =================================== */

.guarantee-grid,
.flexibility-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.guarantee-card,
.flexibility-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 3px solid #5BA89D;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  clip-path: polygon(0% 5%, 5% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.guarantee-card img,
.flexibility-card img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(50%) sepia(56%) saturate(457%) hue-rotate(123deg) brightness(92%) contrast(90%);
}

.guarantee-badge {
  background: #c66b1f;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 24px 0;
  display: inline-block;
  border: 3px solid #1a5563;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.reassurance-box {
  background: #fff5ec;
  padding: 20px 24px;
  margin: 24px 0;
  border: 2px solid #c66b1f;
  border-left-width: 6px;
}

.reassurance-box p {
  color: #1a5563;
  font-weight: 600;
  margin-bottom: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-grid,
.contact-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.contact-option,
.contact-detail-block {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 3px solid #2E7D8F;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 95% 100%, 0% 100%);
}

.contact-option img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(49%) saturate(1089%) hue-rotate(147deg) brightness(91%) contrast(88%);
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #1a5563;
}

.contact-form {
  background: #ffffff;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px 32px;
  border: 3px solid #2E7D8F;
  clip-path: polygon(0% 2%, 2% 0%, 100% 0%, 100% 98%, 98% 100%, 0% 100%);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #1a5563;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-placeholder {
  padding: 12px 16px;
  background: #ffffff;
  border: 2px solid #2E7D8F;
  color: #999;
  font-style: italic;
}

.form-button {
  margin-top: 16px;
  text-align: center;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
  margin: 24px 0;
  border: 3px solid #2E7D8F;
}

.directions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0;
}

.direction {
  flex: 1 1 calc(25% - 15px);
  min-width: 200px;
  padding: 20px;
  background: #ffffff;
  border-left: 4px solid #5BA89D;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.direction h4 {
  color: #1a5563;
  margin-bottom: 8px;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-left: 4px solid #c66b1f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item h4 {
  color: #1a5563;
  margin-bottom: 12px;
}

.faq-item p {
  color: #2c3e50;
  margin-bottom: 0;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  background: #ffffff;
}

.text-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e0e0e0;
}

.text-section:last-child {
  border-bottom: none;
}

.text-section h2 {
  color: #1a5563;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid #c66b1f;
  display: inline-block;
}

.text-section h3 {
  color: #2E7D8F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.text-section ul,
.text-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.text-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #1a5563 0%, #2E7D8F 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #c66b1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.thank-you-hero h1 {
  color: #ffffff;
}

.suggestion-grid,
.reassurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.suggestion-card,
.reassurance-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 3px solid #2E7D8F;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%);
}

.suggestion-card img,
.reassurance-card img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(49%) saturate(1089%) hue-rotate(147deg) brightness(91%) contrast(88%);
}

.testimonial-quote {
  background: #fff5ec;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
  border-left: 6px solid #c66b1f;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: rgba(198, 107, 31, 0.3);
  font-weight: 700;
}

.testimonial-quote p {
  font-style: italic;
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.testimonial-quote .author {
  font-weight: 700;
  color: #1a5563;
  font-style: normal;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-final,
.cta-about,
.cta-services,
.cta-how-it-works,
.cta-audience,
.cta-contact,
.cta-thank-you {
  background: linear-gradient(135deg, #1a5563 0%, #2E7D8F 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-top: 8px solid #c66b1f;
  border-bottom: 8px solid #c66b1f;
}

.cta-final h2,
.cta-about h2,
.cta-services h2,
.cta-how-it-works h2,
.cta-audience h2,
.cta-contact h2,
.cta-thank-you h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-final p,
.cta-about p,
.cta-services p,
.cta-how-it-works p,
.cta-audience p,
.cta-contact p,
.cta-thank-you p {
  color: #ffffff;
  font-size: 18px;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
  list-style: none;
}

.benefit-list li {
  background: rgba(255,255,255,0.2);
  padding: 12px 24px;
  border: 2px solid #ffffff;
  font-weight: 600;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.trust-statement,
.trust-badges,
.closing-message {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-top: 24px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: #1a5563;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 4px solid #c66b1f;
}

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

.footer-info,
.footer-links {
  flex: 1 1 300px;
}

.footer-info img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-info p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 3px solid transparent;
}

.footer-links a:hover {
  color: #c66b1f;
  padding-left: 12px;
  border-left-color: #c66b1f;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a5563 0%, #2E7D8F 100%);
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 4px solid #c66b1f;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.cookie-btn:hover {
  background: #ffffff;
  color: #1a5563;
}

.cookie-btn.accept-all {
  background: #c66b1f;
  border-color: #c66b1f;
}

.cookie-btn.accept-all:hover {
  background: #a85717;
  border-color: #a85717;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border: 4px solid #2E7D8F;
  clip-path: polygon(0% 2%, 2% 0%, 100% 0%, 100% 98%, 98% 100%, 0% 100%);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c66b1f;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

.cookie-modal-close:hover {
  background: #a85717;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  color: #1a5563;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-left: 4px solid #2E7D8F;
}

.cookie-category h3 {
  color: #1a5563;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.cookie-toggle label {
  font-weight: 600;
  color: #2c3e50;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

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

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

  .step-timeline {
    flex-direction: row;
    align-items: stretch;
  }

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

@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 48px;
  }

  .benefit-card {
    flex: 1 1 calc(25% - 18px);
  }

  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }

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

  section {
    padding: 80px 20px;
  }

  .hero {
    padding: 120px 20px;
  }
}

@media (max-width: 767px) {
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .benefit-card,
  .service-card,
  .audience-card,
  .testimonial-card,
  .contact-option,
  .stat,
  .guarantee-card,
  .flexibility-card,
  .suggestion-card,
  .reassurance-card {
    flex: 1 1 100%;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .step-number-large {
    font-size: 80px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

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

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

  .cookie-btn {
    width: 100%;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ===================================
   ANIMATIONS
   =================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-buttons,
  .btn {
    display: none !important;
  }

  body {
    background: #ffffff;
  }

  section {
    page-break-inside: avoid;
  }
}