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

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

:root {
  --primary: #2D5F8D;
  --secondary: #1A3A52;
  --accent: #00D9FF;
  --text-dark: #1A1A1A;
  --text-light: #4A4A4A;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E0E0E0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ========================================
   GEOMETRIC STRUCTURED DESIGN SYSTEM
   ======================================== */

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

/* Typography with geometric precision */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 32px;
  font-weight: 800;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: var(--transition);
}

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

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

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 2000;
  background: var(--primary);
  color: var(--bg-white);
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.mobile-menu-toggle:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--secondary);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--accent);
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

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

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

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-white);
  padding: 16px 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: var(--transition);
}

.mobile-nav a:hover::before {
  height: 100%;
}

.mobile-nav a:hover {
  background: rgba(0, 217, 255, 0.1);
  padding-left: 28px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

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

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 90% 100%, 0 100%);
  margin: 8px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 3px solid var(--primary);
}

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

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

.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--bg-white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--accent);
  opacity: 0.1;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: rotate 20s linear infinite;
}

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

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

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

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 300;
}

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

.trust-indicators {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-indicators span {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

/* ========================================
   SECTIONS - STRUCTURED GRID LAYOUT
   ======================================== */

section {
  padding: 80px 20px;
  position: relative;
}

section:nth-child(even) {
  background: var(--bg-light);
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

/* ========================================
   FEATURES GRID - GEOMETRIC CARDS
   ======================================== */

.features-grid,
.product-grid,
.benefits-grid,
.health-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-card,
.product-card,
.benefit-card,
.health-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--bg-white);
  padding: 32px;
  border: 3px solid var(--border-color);
  position: relative;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
  margin-bottom: 24px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before,
.product-card:hover::before,
.benefit-card:hover::before,
.health-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover,
.product-card:hover,
.benefit-card:hover,
.health-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-card img,
.benefit-card img,
.health-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(29%) saturate(1847%) hue-rotate(177deg) brightness(92%) contrast(91%);
}

.feature-card h3,
.product-card h3,
.benefit-card h3,
.health-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.product-card .price {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  margin: 16px 0;
}

/* ========================================
   TESTIMONIALS - HIGH CONTRAST
   ======================================== */

.testimonials {
  background: var(--bg-light);
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: var(--bg-white);
  padding: 32px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
  position: relative;
  margin-bottom: 24px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  font-family: var(--font-display);
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

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

.testimonial-card .author {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg-white);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.cta-section h2 {
  color: var(--bg-white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
}

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

/* ========================================
   PAGE HERO (SUBPAGES)
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--bg-white);
  padding: 60px 20px 40px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--accent);
}

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

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

.page-hero p {
  font-size: 18px;
  margin-bottom: 0;
}

/* ========================================
   PRODUCT DETAILS
   ======================================== */

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

.product-detail {
  background: var(--bg-white);
  padding: 40px;
  margin-bottom: 40px;
  border: 3px solid var(--border-color);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 98% 100%, 0 100%);
}

.product-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.product-detail h2 {
  text-align: left;
  margin-bottom: 16px;
  color: var(--primary);
}

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

.product-detail .price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin: 16px 0;
  display: block;
}

.product-detail ul {
  list-style: none;
  margin: 24px 0;
}

.product-detail ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.product-detail ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   TECHNOLOGY & INFO SECTIONS
   ======================================== */

.tech-grid,
.info-grid,
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.tech-card,
.info-card,
.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--bg-white);
  padding: 32px;
  border: 3px solid var(--border-color);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  margin-bottom: 24px;
}

.tech-card::after,
.info-card::after,
.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  opacity: 0.1;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.tech-card h3,
.info-card h3,
.category-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */

.contact-grid,
.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card,
.department-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: var(--bg-white);
  padding: 32px;
  text-align: center;
  border: 3px solid var(--border-color);
  position: relative;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
  margin-bottom: 24px;
}

.contact-card:hover,
.department-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(29%) saturate(1847%) hue-rotate(177deg) brightness(92%) contrast(91%);
}

.contact-card h3,
.department-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

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

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

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

.faq-item {
  background: var(--bg-white);
  padding: 24px;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
  clip-path: polygon(0 0, 100% 0, 99% 100%, 0 100%);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

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

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

.legal-content h2 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

.legal-content h3 {
  color: var(--secondary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  margin-left: 24px;
}

.legal-content ul li {
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
}

.legal-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
}

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

.thank-you-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--bg-white);
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--bg-white);
  font-size: 48px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: pulse 2s ease-in-out infinite;
}

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

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.thank-you-hero .lead {
  font-size: 18px;
  margin-bottom: 0;
}

.next-steps,
.suggested-content {
  padding: 60px 20px;
}

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

.step-card,
.content-link {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: var(--bg-white);
  padding: 32px;
  text-align: center;
  border: 3px solid var(--border-color);
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
  margin-bottom: 24px;
}

.step-card:hover,
.content-link:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.step-card h3,
.content-link h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* ========================================
   SPORTS LIST
   ======================================== */

.sports-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.sports-list span {
  padding: 8px 16px;
  background: var(--primary);
  color: var(--bg-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

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

.site-footer {
  background: var(--secondary);
  color: var(--bg-white);
  padding: 60px 20px 24px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

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

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

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--bg-white);
  font-size: 14px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

.footer-legal a {
  font-size: 14px;
  color: var(--bg-white);
  padding: 4px 8px;
  border-left: 2px solid var(--accent);
}

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

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: var(--bg-white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

#cookie-consent.active {
  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;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
}

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

.cookie-accept:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.cookie-reject:hover {
  background: var(--bg-white);
  color: var(--secondary);
}

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

.cookie-settings:hover {
  background: var(--accent);
  color: var(--text-dark);
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--bg-white);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 98% 100%, 0 100%);
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.cookie-modal-content h2 {
  color: var(--primary);
  margin-bottom: 24px;
  text-align: left;
}

.cookie-modal-content h2::after {
  display: none;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
}

.cookie-category h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 16px;
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background: var(--accent);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--bg-white);
  transition: var(--transition);
}

.toggle-switch.active::after {
  left: 28px;
}

.cookie-save {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--bg-white);
  border: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 24px;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 95% 100%, 0 100%);
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
  }
  
  .feature-card,
  .product-card,
  .benefit-card,
  .health-card,
  .tech-card,
  .info-card,
  .category-card,
  .contact-card,
  .department-card,
  .testimonial-card,
  .step-card,
  .content-link {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 12px;
  }
  
  section {
    padding: 40px 20px;
  }
  
  .product-detail {
    padding: 24px;
  }
}

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

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

.mb-24 {
  margin-bottom: 24px;
}

.mt-24 {
  margin-top: 24px;
}

.hidden {
  display: none;
}

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


/* ========================================
   ACCESSIBILITY
   ======================================== */

:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}