/* =================================
   ELEGANT WHEELS STYLE - CSS
   Geometric Structured Design
   ================================= */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C3E50;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
}

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

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

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-primary {
  background-color: #2C3E50;
  color: #FFFFFF;
  border-color: #2C3E50;
}

.btn-primary:hover {
  background-color: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 24px;
  font-size: 14px;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 3px solid #2C3E50;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2C3E50;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C0A080;
  transition: width 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1002;
  background-color: #2C3E50;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #C0A080;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #2C3E50;
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: #FFFFFF;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C0A080;
  padding-left: 10px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E8DED2 0%, #FFFFFF 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-color: #C0A080;
  opacity: 0.1;
  clip-path: polygon(50% 0, 100% 0, 100% 100%);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #2C3E50;
  line-height: 1.6;
}

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

.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  padding: 8px 16px;
  background-color: #FFFFFF;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 60px 20px 40px;
  color: #FFFFFF;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 16px;
  color: #C0A080;
}

.breadcrumbs a {
  color: #C0A080;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #E8DED2;
  max-width: 700px;
}

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

.value-proposition,
.services-preview,
.testimonials,
.cta-section {
  padding: 60px 20px;
}

.value-proposition {
  background-color: #FFFFFF;
}

.services-preview {
  background-color: #F8F9FA;
}

.value-proposition h2,
.services-preview h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 48px;
}

/* FLEXBOX GRIDS */
.benefits-grid,
.services-grid,
.testimonials-grid,
.reviews-grid,
.trends-grid,
.values-grid,
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* CARDS */
.benefit-card,
.service-card,
.testimonial-card,
.review-card,
.trend-card,
.value-card,
.blog-card {
  background-color: #FFFFFF;
  padding: 32px;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover,
.service-card:hover,
.review-card:hover,
.trend-card:hover,
.value-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.benefit-card h3,
.service-card h3,
.review-card h3,
.trend-card h3,
.value-card h3,
.blog-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.benefit-card p,
.service-card p,
.review-card p,
.trend-card p,
.value-card p {
  color: #555;
  line-height: 1.6;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #C0A080;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #E8DED2 0%, #F8F9FA 100%);
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2C3E50;
  font-style: normal;
  font-size: 14px;
}

.testimonial-card .rating {
  color: #C0A080;
  font-size: 20px;
}

.trust-indicator {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: #2C3E50;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #FFFFFF;
  text-align: center;
}

.cta-content h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: #E8DED2;
  margin-bottom: 32px;
}

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

.contact-info {
  margin-top: 32px;
}

.contact-info p {
  margin-bottom: 8px;
}

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

/* FILTERS */
.filter-section {
  margin-bottom: 40px;
}

.category-filters,
.blog-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn,
.category-btn {
  padding: 10px 20px;
  background-color: #FFFFFF;
  border: 2px solid #2C3E50;
  color: #2C3E50;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.filter-btn:hover,
.category-btn:hover,
.filter-btn.active,
.category-btn.active {
  background-color: #2C3E50;
  color: #FFFFFF;
}

/* REVIEW CARD */
.review-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 16px 0;
  flex-wrap: wrap;
}

.review-meta .rating {
  color: #C0A080;
  font-size: 18px;
}

.review-meta .date {
  font-size: 14px;
  color: #666;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 20px;
}

.service-card-detailed {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-card-detailed h2 {
  margin-bottom: 16px;
}

.service-card-detailed .price {
  font-size: 36px;
  font-weight: 700;
  color: #C0A080;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

.features-list {
  list-style: none;
  margin: 24px 0;
}

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #555;
}

.features-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #C0A080;
  font-size: 20px;
}

/* TRENDS */
.current-trends,
.color-trends,
.how-to-wear {
  padding: 60px 20px;
}

.current-trends {
  background-color: #FFFFFF;
}

.color-trends {
  background-color: #F8F9FA;
}

.trend-status {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 12px;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.trend-status.hot {
  background-color: #C0A080;
  color: #FFFFFF;
}

.trend-status.emerging {
  background-color: #E8DED2;
  color: #2C3E50;
}

.trend-status.classic {
  background-color: #2C3E50;
  color: #FFFFFF;
}

.colors-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.color-item {
  text-align: center;
  flex: 0 1 200px;
}

.color-swatch {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-name {
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
}

.color-desc {
  font-size: 14px;
  color: #666;
}

.styling-guides {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.guide-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ABOUT PAGE */
.our-story,
.values,
.methodology,
.achievements {
  padding: 60px 20px;
}

.our-story {
  background-color: #FFFFFF;
}

.values {
  background-color: #F8F9FA;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.step-card {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  text-align: center;
  background-color: #FFFFFF;
  padding: 32px 20px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background-color: #2C3E50;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.quality-badges {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #666;
}

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

.stat-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  background-color: #FFFFFF;
  padding: 40px 24px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-card h3 {
  font-size: 48px;
  color: #C0A080;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 16px;
  color: #555;
}

/* BLOG */
.featured-post {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8DED2 0%, #F8F9FA 100%);
}

.featured-card {
  background-color: #FFFFFF;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: #C0A080;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.post-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #666;
  margin: 16px 0;
  flex-wrap: wrap;
}

.blog-content {
  padding: 60px 20px;
}

.newsletter-section {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.newsletter-form {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid #2C3E50;
  font-size: 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.frequency-info {
  font-size: 14px;
  color: #666;
}

/* CONTACT PAGE */
.contact-info {
  padding: 40px 20px;
}

.info-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2C3E50;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E8DED2;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.input-field:focus {
  outline: none;
  border-color: #2C3E50;
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: normal;
}

.checkbox-field input[type="checkbox"] {
  margin-top: 4px;
}

.response-info {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

.faq-section {
  padding: 60px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 32px;
  margin-bottom: 20px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  margin-bottom: 12px;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #E8DED2;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper a {
  color: #C0A080;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #2C3E50;
}

.rights-summary,
.cookies-table {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.rights-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.right-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.table-wrapper {
  overflow-x: auto;
  background-color: #FFFFFF;
  padding: 32px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

thead {
  background-color: #2C3E50;
  color: #FFFFFF;
}

thead th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
}

tbody tr {
  border-bottom: 1px solid #E8DED2;
}

tbody tr:hover {
  background-color: #F8F9FA;
}

tbody td {
  padding: 16px;
  color: #2C3E50;
}

.key-points {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.points-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.point-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 24px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.point-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #C0A080;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #E8DED2 0%, #F8F9FA 100%);
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: #4CAF50;
  color: #FFFFFF;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.lead {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.next-steps,
.while-waiting,
.explore-more {
  padding: 60px 20px;
}

.next-steps {
  background-color: #FFFFFF;
}

.steps-list {
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background-color: #F8F9FA;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.step-item .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.step-content h3 {
  margin-bottom: 8px;
}

.suggestions-grid,
.cards-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.suggestion-card,
.content-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-section {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.testimonial-single {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  text-align: center;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.quote {
  font-size: 20px;
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 24px;
  line-height: 1.8;
}

.return-navigation {
  padding: 60px 20px;
}

.quick-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.link-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C3E50;
}

.link-card p {
  font-size: 14px;
  color: #666;
}

.cta-banner {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  text-align: center;
}

.cta-banner .cta-content h2 {
  color: #FFFFFF;
}

.cta-banner .cta-content p {
  color: #E8DED2;
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee {
  font-size: 14px;
  color: #E8DED2;
  margin-top: 24px;
}

/* FOOTER */
footer {
  background-color: #2C3E50;
  color: #E8DED2;
  padding: 60px 20px 20px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #E8DED2;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-nav a {
  color: #E8DED2;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C0A080;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 222, 210, 0.2);
}

.footer-bottom p {
  font-size: 14px;
  color: #E8DED2;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #E8DED2;
  line-height: 1.6;
}

.cookie-text a {
  color: #C0A080;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cookie-btn.accept {
  background-color: #C0A080;
  color: #FFFFFF;
}

.cookie-btn.accept:hover {
  background-color: #a88d6b;
}

.cookie-btn.reject {
  background-color: transparent;
  color: #E8DED2;
  border: 2px solid #E8DED2;
}

.cookie-btn.reject:hover {
  background-color: rgba(232, 222, 210, 0.1);
}

.cookie-btn.settings {
  background-color: transparent;
  color: #C0A080;
  border: 2px solid #C0A080;
}

.cookie-btn.settings:hover {
  background-color: rgba(192, 160, 128, 0.1);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #2C3E50;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F9FA;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

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

.category-header h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  clip-path: polygon(2px 0, 100% 0, 100% calc(100% - 2px), calc(100% - 2px) 100%, 0 100%, 0 2px);
}

input:checked + .slider {
  background-color: #C0A080;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

input:disabled + .slider {
  background-color: #2C3E50;
  cursor: not-allowed;
}

.category-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .review-card,
  .trend-card,
  .value-card,
  .blog-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .form-wrapper {
    padding: 32px 24px;
  }
  
  .modal-content {
    padding: 32px 24px;
  }
  
  .step-card {
    flex: 1 1 100%;
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .guide-card {
    flex: 1 1 100%;
  }
  
  .info-card {
    flex: 1 1 100%;
  }
  
  .right-card {
    flex: 1 1 100%;
  }
  
  .point-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .link-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .suggestion-card,
  .content-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card-detailed {
    padding: 24px;
  }
  
  .featured-card {
    padding: 32px 24px;
  }
  
  .stat-card {
    flex: 1 1 100%;
  }
  
  .point-card {
    flex: 1 1 100%;
  }
  
  .link-card {
    flex: 1 1 100%;
  }
  
  .form-wrapper {
    padding: 24px 16px;
  }
}

/* SMOOTH TRANSITIONS */
* {
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .btn,
  .cta-section {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}