/* Font Faces */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #EA580C;
  --color-primary-light: #FB923C;
  --color-primary-dark: #C2410C;
  --color-secondary: #3F3F46;
  --color-secondary-dark: #27272A;
  --color-text: #18181B;
  --color-text-light: #71717A;
  --color-bg-light: #F4F4F5;
  --color-bg-lighter: #FAFAFA;
  --color-white: #FFFFFF;
  --color-gray-100: #F4F4F5;
  --color-gray-200: #E4E4E7;
  --color-gray-300: #D4D4D8;
  --color-gray-400: #A1A1AA;
  --color-gray-500: #71717A;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-lighter);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Icon System */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 40px;
  height: 40px;
}

.icon-xl {
  width: 56px;
  height: 56px;
}

/* Glassmorphism Utilities */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-dark {
  background: rgba(63, 63, 70, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-orange {
  background: rgba(234, 88, 12, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(234, 88, 12, 0.3);
}

/* Slogan Ticker */
.slogan-ticker {
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  background: var(--color-primary);
}


.slogan-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}

.slogan-ticker-track:hover {
  animation-play-state: paused;
}

.slogan-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  padding: 0 2.5rem;
  line-height: 40px;
}

.slogan-ticker-item .ticker-dot {
  display: none;
}

.ticker-sep {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin: 0 0.4rem;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 0 0;
}

header.scrolled {
  background: white;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 0.4rem 0 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem 0.75rem;
  max-width: 1280px;
  margin: 0 auto;
}

header.scrolled .header-content {
  padding-bottom: 0.4rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  height: 85px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(234, 88, 12, 0.25));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .logo-img {
  height: 70px;
  filter: drop-shadow(0 4px 12px rgba(234, 88, 12, 0.2));
}

.logo:hover .logo-img {
  filter: drop-shadow(0 12px 24px rgba(234, 88, 12, 0.35));
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-secondary);
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 14rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes heroZoom {
  0%   { transform: scale(1.05); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.3);
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

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

.hero-logo-container {
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(234, 88, 12, 0.4)) drop-shadow(0 0 60px rgba(234, 88, 12, 0.3));
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.hero-logo-container::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

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

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  font-weight: 400;
  text-shadow: none;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-small {
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  padding: 14rem 2rem 6rem;
}

.hero-small h1 {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
}

.hero-small p {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.125rem 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: white;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-secondary));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, white, var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Section */
.section {
  padding: 6rem 0;
}

.section + .section {
  margin-top: 2rem;
}

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

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title p {
  color: var(--color-text-light);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.section-line {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  margin: 1.5rem auto;
  border-radius: 3px;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Card */
.card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2rem;
  border: 1px solid var(--color-gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  overflow-wrap: normal;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
  border-color: var(--color-primary-light);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.25);
  position: relative;
  z-index: 1;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.35);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary-dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card p {
  color: var(--color-text-light);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.card-accent {
  border-left: 4px solid var(--color-primary);
}

/* Table */
.table-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-gray-200);
}

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

thead {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
}

th {
  padding: 1.5rem 2rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
}

td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-gray-200);
  font-weight: 500;
}

tbody tr {
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: var(--color-gray-100);
  transform: scale(1.01);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta-banner h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-shadow: none;
}

.cta-banner p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-secondary));
  color: white;
  padding: 4rem 0 1.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary-light);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 1rem;
}

.footer-section a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--color-primary-light);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--color-primary-light);
}

/* Form */
.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-secondary-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-gray-300);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
  transform: translateY(-2px);
}

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

.success-message {
  padding: 1.5rem;
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid #22C55E;
  color: #166534;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-gray-100);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-info:hover {
  background: white;
  border-color: var(--color-primary-light);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.contact-details h4 {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.contact-details a,
.contact-details p {
  color: var(--color-secondary-dark);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.1rem;
}

.contact-details a:hover {
  color: var(--color-primary);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--color-primary);
  padding: 2rem;
  z-index: 1000;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary-dark);
  margin-bottom: 0.75rem;
}

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

.btn-decline {
  background: white;
  color: var(--color-text);
  border: 2px solid var(--color-gray-300);
}

.btn-decline:hover {
  background: var(--color-gray-100);
  border-color: var(--color-gray-400);
}

.hidden {
  display: none;
}

/* Animations */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  animation: shimmer 3s infinite linear;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-size: 1000px 100%;
}

/* Accordion */
.accordion {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.accordion:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
}

.accordion-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.accordion.active .accordion-header::before {
  transform: scaleY(1);
}

.accordion-header:hover {
  background: transparent;
}

.accordion-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
  margin: 0;
  padding-right: 1rem;
  line-height: 1.4;
}

.accordion-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 88, 12, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.accordion.active .accordion-icon {
  background: var(--color-primary);
  transform: rotate(180deg);
}

.accordion-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  transition: stroke 0.3s ease;
}

.accordion.active .accordion-icon svg {
  stroke: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion.active .accordion-content {
  max-height: 1000px;
}

.accordion-body {
  padding: 0 2rem 2rem 2rem;
  color: var(--color-gray-700);
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.accordion.active .accordion-body {
  opacity: 1;
  transform: translateY(0);
}

.accordion-body p {
  margin: 0;
}

.accordion-body ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.accordion-body li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    gap: 0.5rem;
  }

  nav ul.active {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
  }

  .hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .hero-small h1 {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }

  .hero-small p {
    font-size: clamp(0.95rem, 3.5vw, 1.4rem);
  }

  .section-title h2 {
    font-size: 2.25rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Masonry Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 140px;
}

.masonry-item {
  grid-row: span 2;
}

.masonry-item-tall {
  grid-row: span 3;
}

@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .masonry-item,
  .masonry-item-tall {
    grid-row: span 1;
  }
}

/* Accordion Styles */
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary-light);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
  transition: color 0.3s ease;
  text-align: left;
}

.accordion-header:hover {
  color: var(--color-primary);
  background: white;
}

.accordion-header span {
  flex: 1;
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: var(--color-primary);
  flex-shrink: 0;
}

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

.accordion-item.active .accordion-header {
  color: var(--color-primary);
  background: var(--color-bg-lighter);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.accordion-content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-top: 0.5rem;
}

/* Utility Classes */
.bg-white { background: white; }
.bg-gray { background: var(--color-bg-light); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.p-4 { padding: 2rem; }

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
