/* ========================================
   HIPOTEKAPORT - TECH FUTURISTIC DESIGN
   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', Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1419 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY - FUTURISTIC TECH STYLE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00C2FF 0%, #00FFD1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #00C2FF;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #00FFD1;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #00FFD1;
  text-shadow: 0 0 10px rgba(0, 255, 209, 0.5);
}

strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

/* ========================================
   HEADER - FUTURISTIC NAVIGATION
   ======================================== */

header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 194, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 194, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.5));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(0, 255, 209, 0.7));
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #B8B8B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #00FFD1;
  border-color: rgba(0, 255, 209, 0.5);
  background: rgba(0, 255, 209, 0.05);
  box-shadow: 0 0 15px rgba(0, 255, 209, 0.2);
}

/* ========================================
   MOBILE MENU - SLIDE-IN NAVIGATION
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #00C2FF 0%, #0088CC 100%);
  border: 2px solid rgba(0, 255, 209, 0.3);
  color: #FFFFFF;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 194, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #00FFD1 0%, #00C2FF 100%);
  box-shadow: 0 6px 30px rgba(0, 255, 209, 0.5);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  z-index: 2000;
  padding: 80px 30px 30px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 2px solid rgba(0, 194, 255, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 50, 50, 0.8);
  border: 2px solid rgba(255, 100, 100, 0.5);
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 50, 50, 1);
  box-shadow: 0 0 20px rgba(255, 50, 50, 0.5);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #B8B8B8;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 194, 255, 0.2);
  background: rgba(0, 194, 255, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  color: #00FFD1;
  background: rgba(0, 255, 209, 0.1);
  border-color: rgba(0, 255, 209, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 209, 0.2);
  transform: translateX(-5px);
}

/* ========================================
   BUTTONS - NEON FUTURISTIC STYLE
   ======================================== */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #00C2FF 0%, #0088CC 100%);
  color: #FFFFFF;
  border-color: rgba(0, 255, 209, 0.3);
  box-shadow: 0 4px 20px rgba(0, 194, 255, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00FFD1 0%, #00C2FF 100%);
  box-shadow: 0 6px 30px rgba(0, 255, 209, 0.6);
  transform: translateY(-2px);
  color: #0A0E27;
}

.btn-secondary {
  background: rgba(0, 194, 255, 0.1);
  color: #00C2FF;
  border-color: rgba(0, 194, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 194, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 255, 209, 0.15);
  color: #00FFD1;
  border-color: rgba(0, 255, 209, 0.7);
  box-shadow: 0 6px 25px rgba(0, 255, 209, 0.3);
  transform: translateY(-2px);
}

/* ========================================
   HERO SECTIONS - FUTURISTIC GRADIENT
   ======================================== */

.hero {
  padding: 80px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(0, 255, 209, 0.05) 100%);
  border-bottom: 2px solid rgba(0, 194, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

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

.hero-subtitle {
  font-size: 20px;
  color: #B8B8B8;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.trust-indicators span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #00FFD1;
  padding: 10px 20px;
  background: rgba(0, 255, 209, 0.1);
  border: 1px solid rgba(0, 255, 209, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 255, 209, 0.2);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-internal {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.08) 0%, rgba(0, 255, 209, 0.03) 100%);
  border-bottom: 1px solid rgba(0, 194, 255, 0.2);
  text-align: center;
}

.hero-internal .subtitle {
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 16px;
}

.hero-thank-you {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(0, 255, 209, 0.05) 100%);
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00FFD1 0%, #00C2FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #0A0E27;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(0, 255, 209, 0.6);
  animation: scaleIn 0.5s ease-out;
}

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

/* ========================================
   SECTIONS - CONSISTENT SPACING
   ======================================== */

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

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

/* ========================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ======================================== */

.benefits-grid,
.services-grid,
.stats-grid,
.testimonials-grid,
.contact-grid,
.value-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card,
.service-card,
.service-card-detailed,
.testimonial-card,
.stat,
.contact-method,
.value-card,
.action-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 194, 255, 0.3);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.service-card-detailed:hover,
.action-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 209, 0.6);
  box-shadow: 0 8px 40px rgba(0, 255, 209, 0.3);
  background: rgba(26, 31, 58, 0.8);
}

.benefit-card h3,
.service-card h3,
.service-card-detailed h3 {
  margin-bottom: 16px;
  color: #00FFD1;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.service-card-detailed p {
  color: #B8B8B8;
  line-height: 1.6;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #00C2FF;
  margin: 16px 0;
  text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

/* ========================================
   STATISTICS - CENTERED STATS
   ======================================== */

.stat {
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
}

.stat h3 {
  font-size: 48px;
  background: linear-gradient(135deg, #00C2FF 0%, #00FFD1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

/* ========================================
   TESTIMONIALS - READABLE CARDS
   ======================================== */

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 194, 255, 0.2);
  padding: 28px;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}

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

.testimonial-card .author {
  color: #00C2FF;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

/* ========================================
   STEPS & TIMELINE - HORIZONTAL FLOW
   ======================================== */

.steps,
.timeline,
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.step,
.timeline-step,
.process-step {
  flex: 1 1 220px;
  max-width: 280px;
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 194, 255, 0.3);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover,
.timeline-step:hover,
.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 209, 0.5);
  box-shadow: 0 6px 25px rgba(0, 255, 209, 0.2);
}

.step h3,
.timeline-step h3,
.process-step h3 {
  color: #00FFD1;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p,
.timeline-step p,
.process-step p {
  color: #B8B8B8;
  font-size: 14px;
}

/* ========================================
   FORMS - FUTURISTIC PLACEHOLDERS
   ======================================== */

.form-container,
.calculator-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 194, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.form-note,
.calculator-note {
  background: rgba(0, 194, 255, 0.05);
  border-left: 4px solid #00C2FF;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.form-placeholder,
.calculator-placeholder {
  background: rgba(0, 255, 209, 0.05);
  border: 2px dashed rgba(0, 194, 255, 0.3);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}

.form-placeholder h3,
.calculator-placeholder h3 {
  color: #00FFD1;
  margin-bottom: 20px;
}

.form-placeholder p,
.calculator-placeholder p {
  margin-bottom: 16px;
  color: #B8B8B8;
}

.form-placeholder ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.form-placeholder ul li {
  color: #B8B8B8;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 194, 255, 0.1);
}

.security-note,
.privacy-note {
  font-size: 14px;
  color: #00FFD1;
  margin-top: 24px;
  text-align: center;
}

/* ========================================
   FAQ - ACCORDION STYLE
   ======================================== */

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

.faq-item,
.faq-category {
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover,
.faq-category:hover {
  border-color: rgba(0, 255, 209, 0.4);
  box-shadow: 0 4px 20px rgba(0, 255, 209, 0.1);
}

.faq-item h3,
.faq-category h3 {
  color: #00C2FF;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p,
.faq-category p {
  color: #B8B8B8;
}

/* ========================================
   LEGAL CONTENT - READABLE TEXT
   ======================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  background: rgba(26, 31, 58, 0.4);
  border-left: 4px solid #00C2FF;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 8px;
}

.text-section h2 {
  color: #00FFD1;
  font-size: 24px;
  margin-bottom: 16px;
  text-align: left;
}

.text-section p {
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ========================================
   ARTICLES & CATEGORIES
   ======================================== */

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

.category-card,
.article-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 194, 255, 0.3);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.category-card:hover,
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 209, 0.5);
  box-shadow: 0 8px 35px rgba(0, 255, 209, 0.25);
  background: rgba(26, 31, 58, 0.8);
}

.article-card h3 {
  color: #00FFD1;
  margin-bottom: 12px;
}

.article-card p {
  color: #B8B8B8;
}

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

.cta-final,
.cta-services,
.cta-about {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(0, 255, 209, 0.05) 100%);
  border-top: 2px solid rgba(0, 194, 255, 0.3);
  border-bottom: 2px solid rgba(0, 194, 255, 0.3);
  margin-bottom: 60px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

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

.guarantee,
.timeline {
  font-size: 14px;
  color: #B8B8B8;
  margin-top: 24px;
  text-align: center;
}

/* ========================================
   FOOTER - MODERN TECH STYLE
   ======================================== */

footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(0, 194, 255, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 250px;
  max-width: 350px;
}

.footer-section h4 {
  color: #00C2FF;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section p {
  color: #B8B8B8;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #B8B8B8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-nav a:hover {
  color: #00FFD1;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 194, 255, 0.2);
}

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

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  backdrop-filter: blur(15px);
  border-top: 2px solid rgba(0, 194, 255, 0.5);
  padding: 24px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #E0E0E0;
  font-size: 14px;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #00C2FF 0%, #0088CC 100%);
  color: #FFFFFF;
  border-color: rgba(0, 255, 209, 0.3);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #00FFD1 0%, #00C2FF 100%);
  box-shadow: 0 4px 20px rgba(0, 255, 209, 0.4);
}

.cookie-btn-reject {
  background: rgba(255, 50, 50, 0.2);
  color: #FF6B6B;
  border-color: rgba(255, 100, 100, 0.4);
}

.cookie-btn-reject:hover {
  background: rgba(255, 50, 50, 0.3);
  border-color: rgba(255, 100, 100, 0.6);
}

.cookie-btn-settings {
  background: rgba(0, 194, 255, 0.1);
  color: #00C2FF;
  border-color: rgba(0, 194, 255, 0.4);
}

.cookie-btn-settings:hover {
  background: rgba(0, 255, 209, 0.15);
  color: #00FFD1;
  border-color: rgba(0, 255, 209, 0.5);
}

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

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

.cookie-modal-content {
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  border: 2px solid rgba(0, 194, 255, 0.5);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 60px rgba(0, 194, 255, 0.3);
}

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

.cookie-category {
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #00C2FF;
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-category p {
  color: #B8B8B8;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.cookie-toggle label {
  color: #E0E0E0;
  font-size: 14px;
  cursor: pointer;
}

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

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@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; }
  
  .hero { padding: 60px 20px; }
  .hero-content h1 { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .benefits-grid,
  .services-grid,
  .stats-grid,
  .testimonials-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .service-card-detailed,
  .testimonial-card,
  .stat {
    max-width: 100%;
  }
  
  .steps,
  .timeline,
  .process-steps {
    flex-direction: column;
  }
  
  .step,
  .timeline-step,
  .process-step {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 { font-size: 40px; }
  
  .benefit-card,
  .service-card,
  .service-card-detailed {
    flex: 1 1 45%;
  }
}

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

.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

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

:focus-visible {
  outline: 2px solid #00FFD1;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-settings-modal,
  .hero::before {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6, p, a {
    color: black;
    text-shadow: none;
  }
}