:root {
  --color-accent: #f08a17;
  --color-bg: #f08a17;
  --color-text: #111111;
  --color-button-bg: #111111;
  --color-button-text: #f08a17;
  --color-surface: rgba(17, 17, 17, 0.03);
  --color-border: rgba(17, 17, 17, 0.1);
  --color-muted: rgba(17, 17, 17, 0.65);
  --shadow-card: 0 18px 40px rgba(17, 17, 17, 0.18);
  --radius-small: 16px;
  --radius-large: 24px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --color-bg: #050505;
  --color-text: #f08a17;
  --color-button-bg: #f08a17;
  --color-button-text: #050505;
  --color-surface: rgba(240, 138, 23, 0.06);
  --color-border: rgba(240, 138, 23, 0.24);
  --color-muted: rgba(240, 138, 23, 0.7);
  --shadow-card: 0 18px 40px rgba(240, 138, 23, 0.12);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  padding: 1.5rem;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.4;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

/* Motion */

.reveal-item.reveal-item {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.reveal-card {
  transform: translateY(34px) scale(0.975);
}

.reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.container {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
}

#hero,
#portfolio,
#vertical-portfolio,
#faq,
#about {
  scroll-margin-top: 110px;
}

/* Navigation */

.navbar {
  position: sticky;
  z-index: 100;
  top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: 1120px;
  margin: 0.5rem auto 3rem;
  padding: 0.6rem 0;
  border: 1px solid transparent;
  border-radius: 0;
  transition:
    max-width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.35s ease,
    border-radius 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.navbar.is-compact {
  max-width: 760px;
  padding: 0.7rem 1rem;
  border-color: var(--color-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  box-shadow: 0 14px 45px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(18px);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  gap: 0.5rem;
}

.nav-right {
  justify-content: flex-end;
  gap: 1rem;
}

.nav-logo {
  display: block;
  width: auto;
  height: 32px;
  border-radius: 8px;
  transition:
    height 0.35s ease,
    transform 0.2s ease;
}

.nav-home {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 9px;
  color: var(--color-text);
  text-decoration: none;
}

.nav-home:hover .nav-logo {
  transform: scale(0.92);
}

.nav-brand {
  display: none;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-home:focus-visible {
  outline: 3px solid var(--color-text);
  outline-offset: 4px;
}

.navbar.is-compact .nav-logo {
  height: 28px;
}

.nav-center {
  display: flex;
  gap: 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-center a {
  color: var(--color-text);
  text-decoration: none;
}

.nav-center a {
  transition: opacity 0.15s ease;
}

.nav-center a:hover {
  opacity: 0.6;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.navbar.menu-open .menu-toggle span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.navbar.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

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

.theme-toggle:focus-visible {
  outline: 3px solid var(--color-text);
  outline-offset: 3px;
}

.theme-toggle-icon {
  font-size: 1.15rem;
  line-height: 1;
}

/* Shared typography and buttons */

.section-label,
.hero-label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.45;
}

.section-label {
  margin-bottom: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.section-header h2 {
  margin-bottom: 34px;
  font-size: 2.4rem;
  font-weight: 800;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 220px;
  height: 56px;
  padding: 0 34px;
  border: 0;
  border-radius: var(--radius-small);
  background: var(--color-button-bg);
  color: var(--color-button-text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.button-icon {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: center;
  gap: 110px;
  min-height: 92vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.hero-label {
  margin-bottom: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.hero-title {
  margin-bottom: 34px;
  font-size: clamp(77px, 7.25vw, 138px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-description {
  max-width: 420px;
  margin-bottom: 52px;
  font-size: 1.12rem;
  line-height: 1.75;
  opacity: 0.72;
}

.hero-description span {
  display: block;
}

.hero-description-audience {
  white-space: nowrap;
}

.hero-stats {
  display: flex;
  gap: 42px;
  margin-bottom: 45px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.number {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.text {
  margin-top: 6px;
  font-size: 0.78rem;
  opacity: 0.45;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 720px;
  min-width: 0;
}

.hero-right.bear-animated {
  opacity: 0;
  transform: translateX(90px) rotate(7deg) scale(0.92);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-right.bear-animated.is-visible {
  opacity: 1;
  transform: translateX(0) rotate(0) scale(1);
}

.hero-bg-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: max-content;
  font-size: 500px;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.08em;
  opacity: 0.03;
  pointer-events: none;
  transform: translateX(calc(-50% - 90px));
  user-select: none;
}

:root[data-theme="dark"] .hero-bg-text {
  color: var(--color-accent);
  opacity: 0.1;
}

:root[data-theme="light"] .hero-bg-text {
  opacity: 0.1;
}

.hero-bear {
  --bear-offset-x: 95px;
  position: relative;
  z-index: 2;
  width: 600px;
  transform: translateX(var(--bear-offset-x));
  will-change: transform;
}

.hero-right.is-visible .hero-bear {
  animation: bear-float 4.8s ease-in-out 1s infinite;
}

@keyframes bear-float {
  0%,
  100% {
    transform: translateX(var(--bear-offset-x)) translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateX(var(--bear-offset-x)) translateY(-14px) rotate(1.2deg);
  }
}

/* Portfolio */

.portfolio-section {
  margin: 0;
}

.section-margin {
  margin-top: 120px;
}

.horizontal-grid,
.vertical-grid {
    display: grid;
}

[data-carousel]:not(.is-loaded) > * {
    display: none;
}

.portfolio-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 42px 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    color: var(--muted);
    text-align: center;
}

.horizontal-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vertical-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.horizontal-video.carousel-item-hidden,
.vertical-video.carousel-item-hidden {
  display: none;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1.25rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.carousel-arrow:hover:not(:disabled) {
  transform: scale(1.08);
  background: var(--color-button-bg);
  color: var(--color-button-text);
}

.carousel-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 18px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-text);
  opacity: 0.28;
  cursor: pointer;
  transition:
    width 0.25s ease,
    border-radius 0.25s ease,
    opacity 0.25s ease;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  opacity: 1;
}

.carousel-dot:focus-visible,
.carousel-arrow:focus-visible {
  outline: 3px solid var(--color-text);
  outline-offset: 3px;
}

.horizontal-video,
.vertical-video {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #111111;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.horizontal-video {
  aspect-ratio: 16 / 9;
}

.vertical-video {
  aspect-ratio: 9 / 16;
}

.horizontal-video:hover,
.vertical-video:hover {
  transform: translateY(-6px);
}

.horizontal-video video,
.horizontal-video > img,
.vertical-video video,
.vertical-video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-video > img {
  display: block;
  transition: transform 0.45s ease;
}

.youtube-video:hover > img {
  transform: scale(1.035);
}

.youtube-video .video-time {
  opacity: 1;
}

.video-ui {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  pointer-events: none;
}

.video-ui::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.08) 45%,
    rgba(0, 0, 0, 0.15)
  );
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.horizontal-video:hover .video-ui::before,
.vertical-video:hover .video-ui::before {
  opacity: 1;
}

.video-top {
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.video-time {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.horizontal-video:hover .video-time,
.vertical-video:hover .video-time {
  opacity: 1;
}

.video-play {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(14px);
  color: #ffffff;
  font-size: 30px;
  pointer-events: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.horizontal-video:hover .video-play,
.vertical-video:hover .video-play {
  transform: scale(0.88);
  background: rgba(20, 20, 20, 0.75);
}

.video-play.hide {
  opacity: 0;
}

.video-progress {
  z-index: 2;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.video-progress-fill {
  width: 0;
  height: 100%;
  background: var(--color-accent);
  transition: width 0.08s linear;
}

/* FAQ */

.faq-section {
  margin: 160px 0;
}

.faq-item {
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-surface);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

:root[data-theme="light"] .faq-item {
  border-color: rgba(17, 17, 17, 0.3);
  background: rgba(17, 17, 17, 0.11);
}

:root[data-theme="light"] .faq-answer p {
  color: rgba(17, 17, 17, 0.88);
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 138, 23, 0.6);
}

.faq-item.active {
  border-color: var(--color-accent);
  box-shadow:
    0 0 0 1px rgba(240, 138, 23, 0.2),
    0 20px 60px rgba(240, 138, 23, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 34px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 1.45rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 300;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 34px;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.3s ease,
    padding 0.45s ease;
}

.faq-item.active .faq-answer {
  max-height: 420px;
  padding: 0 34px 34px;
  opacity: 1;
}

.faq-answer p {
  max-width: 900px;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

/* About */

.about-section {
  margin: 180px 0 0;
}

.about-title {
  max-width: 720px;
  margin-bottom: 48px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 760px;
}

.about-content p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.9;
  opacity: 0.82;
}

.about-social-title {
  margin-top: 72px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.about-buttons a {
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.about-buttons a:active {
  transform: translateY(-1px);
}

/* Call to action */

.cta-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin: 5rem 0 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}

.cta-left {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 9rem;
}

.cta-left h2 {
  max-width: none;
  font-size: clamp(2.25rem, 2.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cta-left h2 span {
  display: block;
  white-space: nowrap;
}

.cta-arrow {
  position: absolute;
  right: 1rem;
  bottom: -0.35rem;
  font-size: 7rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.1em;
  opacity: 0.3;
  transform: rotate(-4deg);
}

/* Video player */

.player {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.player.active {
  display: flex;
}

.player-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
}

.player-window {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 95vw;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: #111111;
}

.player video {
  display: block;
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 80vh;
  object-fit: contain;
}

#youtubePlayer {
  display: none;
  width: min(95vw, 1280px);
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player.youtube-mode #youtubePlayer {
  display: block;
}

.player.youtube-mode #videoPlayer {
  display: none;
}

#youtubePlayer iframe,
iframe#youtubePlayer {
  width: min(95vw, 1280px);
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
}

.player video:not(.vertical) {
  width: 95vw;
  max-height: 90vh;
}

.player video.vertical {
  width: auto;
  height: 90vh;
  max-width: 50vw;
}

.controls {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #181818;
}

.controls button {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

#progress {
  flex: 1;
}

.player-close {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 96px;
  }

  .nav-brand {
    display: inline;
  }

  .hero-title {
    font-size: 100px;
  }

  .hero-right {
    display: none;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-wrap: nowrap;
    margin-bottom: 3rem;
    padding: 0.7rem 0.8rem;
    border-color: var(--color-border);
    border-radius: 18px;
    background: color-mix(in srgb, var(--color-bg) 88%, transparent);
    backdrop-filter: blur(18px);
  }

  .nav-center {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0.55rem;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: color-mix(in srgb, var(--color-bg) 94%, transparent);
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.15);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

  .navbar.menu-open .nav-center {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-center a {
    padding: 0.85rem 1rem;
    border-radius: 11px;
  }

  .nav-center a:hover {
    background: var(--color-surface);
    opacity: 1;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar.is-compact {
    max-width: 430px;
    padding: 0.6rem 0.75rem;
  }

}

@media (max-width: 700px) {
  body {
    padding: 1rem;
  }

  .container {
    width: 100%;
  }

  .navbar {
    margin-bottom: 2.5rem;
  }

  .nav-right {
    gap: 0.55rem;
  }

  .theme-toggle-text {
    display: none;
  }

  .theme-toggle {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .hero-title {
    margin-bottom: 24px;
    font-size: clamp(54px, 18vw, 70px);
  }

  .hero {
    padding-bottom: 0;
  }

  .portfolio-section {
    margin-top: 72px;
  }

  .hero-left {
    position: relative;
    z-index: 2;
  }

  .hero-label {
    margin-bottom: 16px;
  }

  .hero-description {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-stats {
    flex-wrap: nowrap;
    gap: clamp(20px, 8vw, 38px);
    margin-bottom: 30px;
  }

  .horizontal-grid,
  .vertical-grid {
    grid-template-columns: 1fr;
  }

  .player-window:has(video.vertical) {
    max-height: 88dvh;
  }

  .player video.vertical {
    width: min(82vw, 420px);
    height: min(72dvh, 680px);
    max-width: none;
    max-height: none;
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }

  .player-window:has(video.vertical) .controls {
    padding: 16px;
  }

  .carousel-nav {
    gap: 14px;
    margin-top: 22px;
  }

  .section-margin {
    margin-top: 90px;
  }

  .faq-section {
    margin: 110px 0;
  }

  .faq-question {
    gap: 1rem;
    padding: 22px;
    font-size: 1.15rem;
  }

  .faq-answer,
  .faq-item.active .faq-answer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .about-section {
    margin-top: 120px;
  }

  .about-title {
    margin-bottom: 32px;
    font-size: 42px;
  }

  .about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .about-buttons {
    flex-direction: column;
    margin-top: 20px;
  }

  .about-social-title {
    margin-top: 48px;
  }

  .about-buttons a {
    width: 100%;
    max-width: 320px;
  }

  .cta-left h2 {
    width: calc(100% - 46px);
    padding-right: 0;
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .cta-left {
    width: 100%;
    padding-right: 0;
  }

  .cta-section {
    position: relative;
  }

  .cta-left h2 span {
    white-space: nowrap;
  }

  .cta-arrow {
    position: absolute;
    top: 2.65rem;
    right: 0;
    bottom: auto;
    display: block;
    font-size: 2.7rem;
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-item,
  .hero-right.bear-animated {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
