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

body {
  font-family:
    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background-color 0.3s,
    color 0.3s;
}

/* Light theme styles */
body.light-theme {
  background: #ffffff;
  color: #1e293b;
}

/* Dark theme styles */
body.dark-theme {
  background: #0f172a;
  color: #f8fafc;
}

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

/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

body.light-theme .theme-toggle {
  background: rgba(248, 250, 252, 0.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body.dark-theme .theme-toggle {
  background: rgba(30, 41, 59, 0.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.theme-toggle:hover {
  transform: scale(1.1);
}

body.light-theme .theme-toggle:hover {
  background: rgba(248, 250, 252, 0.95);
}

body.dark-theme .theme-toggle:hover {
  background: rgba(30, 41, 59, 0.95);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
}

body.light-theme .theme-toggle svg {
  stroke: #1e293b;
}

body.dark-theme .theme-toggle svg {
  stroke: #f8fafc;
}

/* Language Toggle Button */
.lang-toggle {
  position: fixed;
  top: 2rem;
  right: 6.5rem; /* Posunuté doľava od theme toggle */
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-weight: bold;
  font-family: inherit;
}

body.light-theme .lang-toggle {
  background: rgba(248, 250, 252, 0.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #1e293b;
}

body.dark-theme .lang-toggle {
  background: rgba(30, 41, 59, 0.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  color: #f8fafc;
}

.lang-toggle:hover {
  transform: scale(1.1);
}

body.light-theme .lang-toggle:hover {
  background: rgba(248, 250, 252, 0.95);
}

body.dark-theme .lang-toggle:hover {
  background: rgba(30, 41, 59, 0.95);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Ambient Glow Effect for Hero */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 159, 232, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
}

@keyframes animated-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body.dark-theme .hero::before {
  background: radial-gradient(circle, rgba(74, 159, 232, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

body.light-theme .hero::before {
  background: radial-gradient(circle, rgba(74, 159, 232, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
}

body.light-theme .hero {
  background: linear-gradient(to bottom right, #f8fafc 0%, #dbeafe 50%, #ffffff 100%);
  background-size: 200% 200%;
  animation: animated-gradient 15s ease infinite;
}

body.dark-theme .hero {
  background: linear-gradient(to bottom right, #020617 0%, #0f172a 50%, #020617 100%);
  background-size: 200% 200%;
  animation: animated-gradient 15s ease infinite;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.logo {
  height: auto;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1.25rem;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo {
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .logo {
    max-width: 500px;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

body.light-theme .hero h1 {
  color: #1e293b;
}

body.dark-theme .hero h1 {
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(to right, #4a9fe8, #5b6fb5, #4a9fe8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

body.light-theme .hero p {
  color: #475569;
}

body.dark-theme .hero p {
  color: #94a3b8;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(to right, #4a9fe8, #5b6fb5);
  color: white;
  box-shadow: 0 20px 25px -5px rgba(74, 159, 232, 0.3);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(74, 159, 232, 0.4);
}

.btn-secondary {
  border: 2px solid;
  background: transparent;
  transition: all 0.3s;
}

body.light-theme .btn-secondary {
  border-color: #cbd5e1;
  background: white;
  color: #1e293b;
}

body.light-theme .btn-secondary:hover {
  border-color: #4a9fe8;
  background: rgba(74, 159, 232, 0.05);
}

body.dark-theme .btn-secondary {
  border-color: #475569;
  background: rgba(30, 41, 59, 0.5);
  color: white;
}

body.dark-theme .btn-secondary:hover {
  border-color: #4a9fe8;
  background: rgba(74, 159, 232, 0.1);
}

.stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #4a9fe8, #5b6fb5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat p {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

body.light-theme .stat p {
  color: #64748b;
}

body.dark-theme .stat p {
  color: #64748b;
}

/* Section Styles */
section {
  padding: 8rem 0;
  position: relative;
}

body.light-theme section {
  background: white;
}

body.dark-theme section {
  background: #0f172a;
}

body.light-theme section:nth-child(even) {
  background: #f8fafc;
}

body.dark-theme section:nth-child(even) {
  background: #020617;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

body.light-theme .section-badge {
  background: rgba(74, 159, 232, 0.1);
  color: #4a9fe8;
}

body.dark-theme .section-badge {
  background: rgba(74, 159, 232, 0.2);
  color: #93c5fd;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

body.light-theme .section-title {
  color: #1e293b;
}

body.dark-theme .section-title {
  color: white;
}

.section-description {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

body.light-theme .section-description {
  color: #64748b;
}

body.dark-theme .section-description {
  color: #94a3b8;
}

/* Card Grid */
.card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  padding: 2.5rem;
  border-radius: 1.5rem;
  transition: all 0.3s;
  height: 100%;
}

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.light-theme .card-badge {
  background: #e0f2fe; /* Light blue background */
  color: #0c4a6e; /* Dark blue text */
}

body.dark-theme .card-badge {
  background: #1e3a8a; /* Darker blue background */
  color: #bfdbfe; /* Lighter blue text */
}

body.light-theme .card {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

body.dark-theme .card {
  background: #1e293b;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid #334155;
}

.card:hover {
  transform: translateY(-8px);
}

body.light-theme .card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

body.dark-theme .card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom right, #4a9fe8, #5b6fb5);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

body.light-theme .card-title {
  color: #1e293b;
}

body.dark-theme .card-title {
  color: white;
}

.card-description {
  font-size: 1rem;
  line-height: 1.7;
}

body.light-theme .card-description {
  color: #64748b;
}

body.dark-theme .card-description {
  color: #94a3b8;
}

/* Tech Carousel (Marquee) */
.tech-scroller {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0; /* Priestor pre tiene */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  display: flex;
  gap: 2rem;
}

.tech-group {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
  min-width: 100%;
  animation: scroll 40s linear infinite;
}

.tech-scroller:hover .tech-group {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem)); /* Posun o celú šírku skupiny + medzeru */
  }
}

/* Adjust Tech Card for Carousel */
.tech-scroller .tech-card {
  width: 320px; /* Fixná šírka pre karty v karuseli */
  flex-shrink: 0;
  margin: 0; /* Reset marginov */
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  margin-top: 4rem;
}

/* Dashed line connecting steps - for desktop */
@media (min-width: 768px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 5%;
    right: 5%;
    height: 2px;
    background-image: linear-gradient(to right, #334155 50%, transparent 50%);
    background-size: 16px 2px;
    background-repeat: repeat-x;
    z-index: 0;
  }
}

.process-step {
  text-align: center;
  padding: 3.25rem 2rem 2rem;
  position: relative;
}

.process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  border: 2px solid;
  z-index: 1;
  position: relative;
}

body.light-theme .process-number {
  background: #f8fafc;
  border-color: #4a9fe8;
  color: #4a9fe8;
}

body.dark-theme .process-number {
  background: #020617;
  border-color: #4a9fe8;
  color: #4a9fe8;
}

.process-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Tech Cards */
.tech-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s;
  align-items: flex-start;
  height: 100%; /* Aby boli rovnako vysoké */
}

body.light-theme .tech-card {
  background: white;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

body.dark-theme .tech-card {
  background: #1e293b;
  border: 1px solid #334155;
}

.tech-card:hover {
  transform: translateY(-5px); /* V karuseli je lepší vertikálny pohyb */
}

body.light-theme .tech-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: #4a9fe8;
}

body.dark-theme .tech-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border-color: #4a9fe8;
}

/* Honeypot Spam Protection */
.honeypot-field {
  position: absolute;
  left: -5000px;
  visibility: hidden;
}

.tech-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

body.light-theme .tech-icon {
  background: #f1f5f9; /* Mierne tmavšie pozadie pre lepší kontrast */
}

body.dark-theme .tech-icon {
  background: #0f172a;
}

.tech-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Zvýraznenie ikon v light mode */
body.light-theme .tech-icon img {
  filter: grayscale(20%) opacity(0.85);
}

.tech-info h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

body.light-theme .tech-info h4 {
  color: #1e293b;
}

body.dark-theme .tech-info h4 {
  color: white;
}

.tech-years {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #4a9fe8;
}

.tech-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: #4a9fe8;
}

.tech-description {
  font-size: 0.9rem;
}

body.light-theme .tech-description {
  color: #64748b;
}

body.dark-theme .tech-description {
  color: #94a3b8;
}

body.dark-theme .process-description {
  color: #94a3b8;
}

.tech-card:hover .tech-icon img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-card {
  padding: 3rem;
  border-radius: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

body.light-theme .testimonial-card {
  background: white;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

body.dark-theme .testimonial-card {
  background: #1e293b;
  border: 1px solid #334155;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #fbbf24;
  stroke: #fbbf24;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

body.light-theme .testimonial-text {
  color: #334155;
}

body.dark-theme .testimonial-text {
  color: #e2e8f0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #4a9fe8, #5b6fb5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
}

.author-name {
  font-weight: bold;
}

body.light-theme .author-name {
  color: #1e293b;
}

body.dark-theme .author-name {
  color: white;
}

.author-role {
  font-size: 0.875rem;
}

body.light-theme .author-role {
  color: #64748b;
}

body.dark-theme .author-role {
  color: #64748b;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
  margin: 0;
}

body.light-theme .testimonial-dot {
  background: #cbd5e1;
}

body.dark-theme .testimonial-dot {
  background: #475569;
}

body.light-theme .testimonial-dot.active {
  background: #4A9FE8;
  width: 2rem;
  border-radius: 9999px;
}

body.dark-theme .testimonial-dot.active {
  background: #4A9FE8;
  width: 2rem;
  border-radius: 9999px;
}

.testimonial-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

body.light-theme .testimonial-nav-btn {
  border-color: #cbd5e1;
  color: #475569;
}

body.light-theme .testimonial-nav-btn:hover {
  border-color: #4a9fe8;
  background: rgba(74, 159, 232, 0.1);
}

body.dark-theme .testimonial-nav-btn {
  border-color: #475569;
  color: #94a3b8;
}

body.dark-theme .testimonial-nav-btn:hover {
  border-color: #4a9fe8;
  background: rgba(74, 159, 232, 0.1);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

body.light-theme .faq-item {
  background: white;
  border: 1px solid #e2e8f0;
}

body.dark-theme .faq-item {
  background: #1e293b;
  border: 1px solid #334155;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.3s;
}

body.light-theme .faq-question {
  color: #1e293b;
}

body.dark-theme .faq-question {
  color: white;
}

.faq-question:hover {
  background: rgba(74, 159, 232, 0.05);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

body.light-theme .faq-icon {
  stroke: #64748b;
}

body.dark-theme .faq-icon {
  stroke: #94a3b8;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem 2rem;
  line-height: 1.7;
}

body.light-theme .faq-answer-content {
  color: #64748b;
}

body.dark-theme .faq-answer-content {
  color: #94a3b8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Contact Section */
.contact-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 1.5rem;
}

body.light-theme .contact-card {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.dark-theme .contact-card {
  background: #1e293b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-card h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

body.light-theme .contact-card h3 {
  color: #1e293b;
}

body.dark-theme .contact-card h3 {
  color: white;
}

.contact-card > p {
  text-align: center;
  margin-bottom: 2rem;
}

body.light-theme .contact-card > p {
  color: #64748b;
}

body.dark-theme .contact-card > p {
  color: #94a3b8;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

body.light-theme .form-group label {
  color: #334155;
}

body.dark-theme .form-group label {
  color: #cbd5e1;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  appearance: none; /* Remove default arrow */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
}

body.light-theme .form-group input,
body.light-theme .form-group textarea,
body.light-theme .form-group select {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
}

body.dark-theme .form-group input,
body.dark-theme .form-group textarea,
body.dark-theme .form-group select {
  background: #0f172a;
  border-color: #334155;
  color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #4a9fe8;
  box-shadow: 0 0 0 3px rgba(74, 159, 232, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  background: linear-gradient(to right, #4a9fe8, #5b6fb5);
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(74, 159, 232, 0.3);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 6rem 0;
}

body.light-theme .cta-section {
  background: linear-gradient(
    to bottom right,
    #f8fafc 0%,
    #dbeafe 50%,
    #ffffff 100%
  );
}

body.dark-theme .cta-section {
  background: linear-gradient(
    to bottom right,
    #020617 0%,
    #0f172a 50%,
    #020617 100%
  );
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

body.light-theme .cta-section h2 {
  color: #1e293b;
}

body.dark-theme .cta-section h2 {
  color: white;
}

.cta-section p {
  font-size: 1.25rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

body.light-theme .cta-section p {
  color: #64748b;
}

body.dark-theme .cta-section p {
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }
  .stats {
    gap: 2rem;
  }
  .btn {
    padding: 1rem 1.5rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .contact-card,
  .testimonial-card {
    padding: 2rem;
  }

  /* Compact toggles on mobile */
  .theme-toggle,
  .lang-toggle {
    width: 42px;
    height: 42px;
    top: 1rem;
  }

  .theme-toggle {
    right: 1rem;
  }

  .lang-toggle {
    right: 4.5rem;
  }

  /* Optimize Tech Carousel for Mobile */
  .tech-scroller .tech-card {
    width: 260px;
    padding: 1.5rem;
  }
}

/* Stats & Testimonials Clean Classes */
.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #4a9fe8, #5b6fb5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testimonial-badge {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.2);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: calc(100% - 4rem);
  max-width: 400px;
  padding: 1.5rem;
  border-radius: 1rem;
  z-index: 2000;
  backdrop-filter: blur(12px);
  display: none; /* Hidden by default */
  flex-direction: column;
  gap: 1rem;
  animation: slideUp 0.5s ease-out;
  border: 1px solid;
}

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

body.light-theme .cookie-banner {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: #1e293b;
}

body.dark-theme .cookie-banner {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: #f8fafc;
}

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
  border: none;
  transition: transform 0.2s;
}

.cookie-btn:hover {
  transform: scale(1.03);
}

/* Footer */
footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: auto;
}

body.light-theme footer {
  background: #f8fafc;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

body.dark-theme footer {
  background: #020617;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-link {
  color: inherit;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  color: #4a9fe8;
  transform: translateY(-3px);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s;
}

body.light-theme #preloader {
  background-color: #ffffff;
}

body.dark-theme #preloader {
  background-color: #0f172a;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(74, 159, 232, 0.2);
  border-radius: 50%;
  border-top-color: #4a9fe8;
  animation: spin 1s ease-in-out infinite;
}

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

/* Scroll Animations */
.hidden-el {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show-el {
  opacity: 1;
  transform: translateY(0);
}