:root {
  --crystal-aqua: #F0FDFA;
  --pale-cyan: #CFFAFE;
  --light-sky: #A5F3FC;
  --flow-cyan: #06B6D4;
  --deep-cyan: #0891B2;
  --deep-teal: #0E7490;
  --water-blue: #164E63;
  --muted-aqua: #155E75;
  --white: #FFFFFF;
  --font-editorial: 'EB Garamond', serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  --font-crimson: 'Crimson Text', serif;
  --font-ibm: 'IBM Plex Serif', serif;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Crimson+Text:wght@400;600;700&family=EB+Garamond:ital,wght@0,400;0,700;1,400;1,700&family=IBM+Plex+Serif:wght@400;700&display=swap');

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

strong, p, b {
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-crimson);
  background-color: var(--crystal-aqua);
  color: var(--water-blue);
  line-height: 1.78;
  font-size: 16px;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--flow-cyan), var(--deep-cyan));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.85;
}

.container-fluid {
  padding-left: 44px;
  padding-right: 44px;
}

.section-padding {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-pale-cyan {
  background-color: var(--pale-cyan);
}

.section-light-sky {
  background-color: var(--light-sky);
}

.section-white {
  background-color: var(--white);
}

.text-deep-teal {
  color: var(--deep-teal);
}

.text-water-blue {
  color: var(--water-blue);
}

.text-flow-cyan {
  color: var(--flow-cyan);
}

.text-deep-cyan {
  color: var(--deep-cyan);
}

.font-editorial {
  font-family: var(--font-editorial);
}

.font-cormorant {
  font-family: var(--font-cormorant);
}

.font-crimson {
  font-family: var(--font-crimson);
}

.font-ibm {
  font-family: var(--font-ibm);
}

.diagonal-clip {
  clip-path: polygon(0 6%, 104% 0, 100% 100%, 0 100%);
}

.skew-hover {
  transform: skewX(-4deg) skewY(1.5deg);
  transition: transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.skew-hover:hover {
  transform: skewX(-2deg) skewY(0.75deg) scale(1.1);
}

.glass-effect {
  background: rgba(236, 254, 255, 0.96);
  backdrop-filter: blur(48px) saturate(140%);
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.cyan-glow {
  box-shadow: 0 0 44px rgba(6, 182, 212, 0.42);
  filter: brightness(1.06);
}

.gradient-cyan {
  background: linear-gradient(135deg, var(--flow-cyan), var(--deep-cyan));
}

.diagonal-underline {
  height: 5px;
  width: 200px;
  background: linear-gradient(90deg, var(--flow-cyan), var(--deep-cyan));
  margin-top: 20px;
  transform: skewX(-6deg);
}

.btn-primary {
  padding: 22px 48px;
  background: linear-gradient(135deg, var(--flow-cyan), var(--deep-cyan));
  color: var(--white);
  font-family: var(--font-crimson);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  box-shadow: 0 14px 56px rgba(6, 182, 212, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  box-shadow: 0 18px 72px rgba(6, 182, 212, 0.5);
  transform: translateY(-3px) scale(1.04);
}

.btn-secondary {
  padding: 20px 40px;
  background: transparent;
  border: 2px solid var(--deep-teal);
  color: var(--deep-teal);
  font-family: var(--font-crimson);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--flow-cyan);
  color: var(--flow-cyan);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

.cyan-dot {
  width: 7px;
  height: 7px;
  background: var(--flow-cyan);
  border-radius: 50%;
  border: 2px solid var(--white);
  display: inline-block;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes mesh-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(70px, 70px) rotate(0.22deg); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { transform: translateY(26px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-in-left {
  from { transform: translateX(-26px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes scale-reveal {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.reveal-fade {
  opacity: 0;
  animation: fade-in 0.7s ease-out forwards;
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  animation: slide-up 0.75s ease-out forwards;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-26px);
  animation: slide-in-left 0.7s ease-out forwards;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  animation: scale-reveal 0.7s ease-out forwards;
}

.reveal-pulse {
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.mesh-gradient-bg {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--crystal-aqua) 0%, var(--pale-cyan) 20%, var(--light-sky) 35%, #67E8F9 50%, var(--pale-cyan) 65%, var(--crystal-aqua) 80%, var(--crystal-aqua) 100%);
  filter: blur(160px);
  opacity: 0.28;
  pointer-events: none;
}

.mesh-layer-1 {
  top: -200px;
  left: -200px;
  animation: mesh-drift 45s ease-in-out infinite alternate;
}

.mesh-layer-2 {
  top: -150px;
  right: -150px;
  animation: mesh-drift 45s ease-in-out infinite alternate-reverse;
}

.mesh-layer-3 {
  bottom: -200px;
  left: 20%;
  animation: mesh-drift 45s ease-in-out infinite alternate;
}

.mesh-layer-4 {
  bottom: -150px;
  right: -200px;
  animation: mesh-drift 45s ease-in-out infinite alternate-reverse;
}

.glow-torch-cursor {
  position: fixed;
  width: 180px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.06) 40%, transparent 70%);
  blur: 10px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.14s ease-out;
}

.card-diagonal {
  background: rgba(236, 254, 255, 0.97);
  backdrop-filter: blur(48px);
  border: 2px solid rgba(6, 182, 212, 0.15);
  padding: 22px;
  transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 28px 112px rgba(6, 182, 212, 0.15);
}

.card-diagonal:hover {
  box-shadow: 0 56px 224px rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.35);
  transform: translateY(-2px) scale(1.08);
  z-index: 78;
}

.icon-svg {
  width: 44px;
  height: 44px;
  stroke: var(--flow-cyan);
  stroke-width: 2.5px;
  fill: none;
  margin-bottom: 12px;
}

.icon-svg-small {
  width: 36px;
  height: 36px;
  stroke: var(--flow-cyan);
  stroke-width: 2.5px;
  fill: none;
  margin-bottom: 8px;
}

.title-editorial {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.025em;
  line-height: 0.88;
  color: var(--deep-teal);
}

.title-cormorant {
  font-family: var(--font-cormorant);
  font-weight: 700;
  line-height: 0.9;
  color: var(--deep-teal);
}

.subtitle-cormorant {
  font-family: var(--font-cormorant);
  font-weight: 700;
  font-size: 44px;
  line-height: 0.9;
  color: var(--flow-cyan);
}

.text-crimson {
  font-family: var(--font-crimson);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.78;
  color: var(--water-blue);
}

.text-crimson-small {
  font-family: var(--font-crimson);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--water-blue);
}

.text-ibm {
  font-family: var(--font-ibm);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.58;
  color: var(--deep-cyan);
}

.count-number {
  font-family: var(--font-cormorant);
  font-weight: 700;
  font-size: 44px;
  color: var(--flow-cyan);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border: 2px solid var(--flow-cyan);
  padding: 20px 24px;
  max-width: 420px;
  z-index: 9999;
  box-shadow: 0 20px 80px rgba(6, 182, 212, 0.25);
  display: block;
}

.cookie-title {
  font-family: var(--font-cormorant);
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-teal);
  margin-bottom: 12px;
}

.cookie-text {
  font-family: var(--font-crimson);
  font-size: 14px;
  color: var(--water-blue);
  margin-bottom: 16px;
  line-height: 1.55;
}

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

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

.cookie-btn-accept {
  background: var(--flow-cyan);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--deep-cyan);
}

.cookie-btn-decline {
  background: transparent;
  border: 2px solid var(--flow-cyan);
  color: var(--flow-cyan);
}

.cookie-btn-decline:hover {
  background: var(--pale-cyan);
}

.cookie-link {
  color: var(--flow-cyan);
  text-decoration: underline;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .btn-primary {
    padding: 18px 36px;
    font-size: 14px;
  }

  .btn-secondary {
    padding: 16px 32px;
    font-size: 13px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .title-editorial {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .text-crimson {
    font-size: 16px;
  }

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

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

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
.mobile-menu-overlay {
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.is-active {
  display: flex !important;
  transform: translateX(0);
}

@keyframes menu-slide-in {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-item.is-open {
  border-color: rgba(6, 182, 212, 0.4);
}