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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A1A1A;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #8338EC;
  transform: translateY(-2px);
}

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

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

/* Header */
header {
  background: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.tagline {
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 500;
  opacity: 0.9;
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.main-nav a.active {
  background: #FFBE0B;
  color: #1A1A1A;
  box-shadow: 0 4px 12px rgba(255, 190, 11, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.phone:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #FF006E;
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FF006E 0%, #8338EC 100%);
  z-index: 1002;
  padding: 80px 40px 40px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: #FFBE0B;
  transform: translateX(8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FF006E 0%, #8338EC 50%, #FFBE0B 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
  opacity: 0.3;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-indicator {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  display: inline-block;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #FFBE0B;
  color: #1A1A1A;
}

.btn-primary:hover {
  background: #FFA500;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 190, 11, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  color: #FF006E;
  border: 2px solid #FFFFFF;
}

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

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

.services,
.features,
.testimonials,
.products,
.categories,
.about-story,
.brand-values,
.stats,
.inspiration-categories,
.featured-articles,
.tips-tricks,
.contact-info {
  padding: 80px 20px;
  position: relative;
}

.services {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F8 100%);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  text-align: center;
  color: #1A1A1A;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  width: 100%;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF006E, #8338EC, #FFBE0B);
  border-radius: 2px;
}

/* Grid Layouts with Flexbox */
.services-grid,
.features-grid,
.category-grid,
.values-grid,
.stats-grid,
.categories-grid,
.articles-grid,
.tips-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

/* Cards */
.service-card,
.category-tile,
.value-item,
.article-card,
.tip-card,
.contact-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 400px;
  margin-bottom: 20px;
}

.service-card::before,
.category-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF006E, #8338EC, #FFBE0B);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before,
.category-tile:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.category-tile:hover,
.value-item:hover,
.article-card:hover,
.tip-card:hover,
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 0, 110, 0.2);
}

.service-card h3,
.category-tile h3 {
  color: #FF006E;
  font-size: 22px;
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #8338EC;
  margin-top: auto;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, #8338EC 0%, #FF006E 100%);
  color: #FFFFFF;
}

.features h2,
.features .section-subtitle {
  color: #FFFFFF;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.feature-item h4 {
  color: #FFBE0B;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-item p {
  color: #FFFFFF;
  font-size: 15px;
}

/* Testimonials */
.testimonials {
  background: #FFF5F8;
  padding: 80px 20px;
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  position: relative;
  border-left: 4px solid #FF006E;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #1A1A1A;
  font-style: normal;
  font-size: 15px;
  margin-top: auto;
}

/* CTA Banner */
.cta-banner,
.cta-section,
.cta-contact {
  background: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 190, 11, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-banner h2,
.cta-section h2,
.cta-contact h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-banner h2::after,
.cta-section h2::after,
.cta-contact h2::after {
  background: #FFBE0B;
}

.cta-banner p,
.cta-section p,
.cta-contact p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.cta-banner .btn,
.cta-section .btn,
.cta-contact .btn {
  position: relative;
  z-index: 2;
  margin: 0 10px;
}

.phone-display {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
  padding: 60px 20px;
  color: #FFFFFF;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

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

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

.page-hero p {
  font-size: 18px;
  opacity: 0.95;
}

/* Category Showcase */
.category-showcase {
  margin-bottom: 60px;
}

.features-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  padding: 32px;
  background: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
  border-radius: 20px;
}

.features-bar .feature-item {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15);
  padding: 16px 32px;
  border-radius: 24px;
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
}

/* Service Blocks */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-block {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 6px solid #FF006E;
  transition: all 0.3s ease;
}

.service-block:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(255, 0, 110, 0.2);
}

.service-block h3 {
  color: #FF006E;
  font-size: 26px;
}

.service-block .price {
  font-size: 28px;
  color: #8338EC;
}

.service-block .btn {
  align-self: flex-start;
  margin-top: 16px;
}

/* About & Stats */
.about-story {
  background: #FFFFFF;
  max-width: 900px;
  margin: 0 auto;
}

.about-story p {
  font-size: 18px;
  line-height: 1.9;
  color: #2D2D2D;
  margin-bottom: 24px;
}

.brand-values {
  background: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 100%);
}

.stats {
  background: linear-gradient(135deg, #8338EC 0%, #FF006E 100%);
  color: #FFFFFF;
}

.stats h2 {
  color: #FFFFFF;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FFBE0B;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #FFFFFF;
  display: block;
}

/* Inspiration & Articles */
.inspiration-categories {
  background: #FFF5F8;
}

.article-card {
  border-left: 4px solid #8338EC;
}

.read-time {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: auto;
}

.tip-card {
  background: linear-gradient(135deg, #FFBE0B 0%, #FFA500 100%);
  color: #1A1A1A;
}

.tip-card h4 {
  color: #1A1A1A;
}

/* Contact Page */
.contact-grid {
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  text-align: center;
}

.contact-card h3 {
  color: #FF006E;
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-card a {
  color: #FF006E;
  font-weight: 600;
  font-size: 18px;
}

.contact-form-section {
  background: #FFFFFF;
  padding: 80px 20px;
}

.form-intro {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  background: #F9F9F9;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-placeholder p {
  margin-bottom: 24px;
  font-size: 16px;
  color: #2D2D2D;
}

.form-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 32px;
  margin-bottom: 24px;
}

.faq-contact {
  background: #FFF5F8;
  padding: 80px 20px;
}

.faq-list {
  max-width: 900px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #8338EC;
}

.faq-item h4 {
  color: #FF006E;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #2D2D2D;
  line-height: 1.7;
}

/* Legal Pages */
.legal-page {
  padding: 80px 20px;
  background: #FFFFFF;
}

.legal-content {
  max-width: 900px;
  margin: 48px auto;
  line-height: 1.9;
}

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

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

.legal-content h3 {
  color: #8338EC;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 20px;
  color: #2D2D2D;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content ul li {
  margin-bottom: 12px;
}

.last-updated,
.intro {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

.key-points {
  background: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
  padding: 32px;
  border-radius: 20px;
  color: #FFFFFF;
  margin: 40px 0;
}

.key-points h3 {
  color: #FFBE0B;
  margin-bottom: 20px;
}

.key-points ul {
  list-style: none;
  padding: 0;
}

.key-points ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.key-points ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFBE0B;
  font-weight: 700;
  font-size: 20px;
}

.related-links {
  margin-top: 60px;
  padding: 32px;
  background: #FFF5F8;
  border-radius: 20px;
}

.related-links h3 {
  margin-bottom: 20px;
  color: #FF006E;
}

.related-links a {
  display: block;
  padding: 12px 0;
  color: #8338EC;
  font-weight: 600;
  transition: all 0.3s ease;
}

.related-links a:hover {
  transform: translateX(8px);
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
  padding: 100px 20px;
  text-align: center;
  color: #FFFFFF;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFBE0B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #1A1A1A;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease;
}

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

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
}

.message {
  font-size: 20px;
  margin-bottom: 12px;
}

.subheadline {
  font-size: 16px;
  opacity: 0.9;
}

.next-steps,
.contact-alternatives,
.while-waiting {
  padding: 80px 20px;
}

.steps-grid,
.alternatives-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step-item {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF006E, #8338EC);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
}

.alternative-item {
  background: #FFF5F8;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
}

.suggestion-card {
  background: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
  padding: 48px 32px;
  border-radius: 20px;
  color: #FFFFFF;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.suggestion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 0, 110, 0.3);
}

.suggestion-card h3 {
  color: #FFFFFF;
  font-size: 22px;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}

.footer-col h4 {
  color: #FFBE0B;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col a {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  opacity: 1;
  color: #FFBE0B;
  transform: translateX(5px);
}

.footer-col p {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.8;
}

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

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

.legal-links a {
  color: #FFFFFF;
  opacity: 0.7;
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  opacity: 1;
  color: #FFBE0B;
}

.footer-bottom p {
  color: #FFFFFF;
  opacity: 0.7;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

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

.cookie-accept {
  background: #FFBE0B;
  color: #1A1A1A;
}

.cookie-accept:hover {
  background: #FFA500;
  transform: translateY(-2px);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.cookie-settings:hover {
  background: rgba(255, 190, 11, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cookie-modal.active .modal-content {
  transform: scale(1);
}

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

.modal-header h3 {
  color: #FF006E;
  font-size: 24px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  background: #F9F9F9;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.category-header h4 {
  color: #1A1A1A;
  font-size: 18px;
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
  background: #CCC;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #8338EC;
}

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

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(28px);
}

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

.modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: flex-end;
}

.modal-btn {
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.modal-save {
  background: #FFBE0B;
  color: #1A1A1A;
}

.modal-save:hover {
  background: #FFA500;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  
  .service-card,
  .category-tile,
  .value-item {
    flex: 1 1 calc(50% - 32px);
  }
  
  .feature-item {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  /* Mobile menu visible */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop nav */
  .main-nav {
    display: none;
  }
  
  .header-actions .phone {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Grid adjustments - all cards full width on mobile */
  .service-card,
  .category-tile,
  .value-item,
  .feature-item,
  .stat-item,
  .testimonial-card,
  .article-card,
  .tip-card,
  .contact-card,
  .step-item,
  .alternative-item,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Section padding */
  .section,
  .services,
  .features,
  .products,
  .categories {
    padding: 60px 20px;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Modal mobile */
  .modal-content {
    padding: 24px;
    width: 95%;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-btn {
    width: 100%;
  }
  
  /* Text-image sections stack on mobile */
  .text-image-section {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  
  .btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .service-card,
  .category-tile,
  .contact-card {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cta-banner h2,
  .cta-section h2,
  .cta-contact h2 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .thank-you-hero h1 {
    font-size: 32px;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

/* Smooth scrolling for all anchor links */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: #FF006E;
  color: #FFFFFF;
}

::-moz-selection {
  background: #FF006E;
  color: #FFFFFF;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 3px solid #FFBE0B;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    color: #000;
    background: #FFF;
  }
}