@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================
   DESIGN TOKENS
======================================== */
:root {
  --yellow: #FFC400;
  --yellow-soft: #FFD633;
  --yellow-dark: #E6B200;
  --yellow-glow: rgba(255, 196, 0, 0.15);
  --yellow-glow-strong: rgba(255, 196, 0, 0.3);
  --black: #0A0A0A;
  --black-pure: #000000;
  --dark-gray: #111111;
  --dark-card: #161616;
  --dark-card-hover: #1C1C1C;
  --dark-border: rgba(255, 255, 255, 0.06);
  --dark-border-hover: rgba(255, 255, 255, 0.12);
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-text: #A0A0A0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-yellow: 0 8px 32px rgba(255, 196, 0, 0.25);
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #3a3a3a 0%, #111111 45%, #000000 100%);
  background-attachment: fixed;
  color: var(--white);
  line-height: 1.7;
  font-weight: 400;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section {
  padding: clamp(80px, 12vw, 160px) 0;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section__accent {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-soft));
  margin: 0 auto;
  border-radius: var(--radius-full);
  position: relative;
}

.section__accent::after {
  content: '';
  position: absolute;
  inset: -4px 16px;
  background: var(--yellow);
  opacity: 0.2;
  border-radius: var(--radius-full);
  filter: blur(8px);
}

/* ========================================
   BUTTONS
======================================== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-pill--primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-pill--primary:hover {
  background: var(--yellow-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

.btn-pill--primary:active {
  transform: translateY(0);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  background: var(--yellow);
  color: var(--black);
  letter-spacing: 0.3px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 600ms var(--ease-out);
}

.btn-primary:hover {
  background: var(--yellow-soft);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-yellow), 0 0 60px rgba(255, 196, 0, 0.15);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

.btn-primary--lg {
  padding: 20px 52px;
  font-size: 16px;
}

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition-base);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.header__link:hover {
  color: var(--white);
}

.header__link:hover::after {
  width: 100%;
}

.header__link.active {
  color: var(--yellow);
}

.header__link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero__bg-wrapper {
  position: absolute;
  inset: 0;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: linear-gradient(180deg, #3a3a3a 0%, #111111 45%, #000000 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.06) translate(-1%, -0.5%);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(100px, 8vw, 200px) 0 clamp(24px, 4vw, 300px);
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 900px;
  width: 100%;
}

.hero--page {
  justify-content: center;
}

.hero--page .hero__content {
  padding-left: clamp(24px, 4vw, 48px);
  padding-right: clamp(24px, 4vw, 48px);
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.hero--page .hero__content p {
  margin-inline: auto;
  color: #ffffff;
}

.hero__logo {
  margin-bottom: clamp(32px, 5vw, 64px);
}

.hero__logo img {
  height: clamp(44px, 6vw, 72px);
  width: auto;
}

.hero__list {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
}

.hero__list li {
  font-size: clamp(14px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  line-height: 1.3;
}

.hero__list li::before {
  content: '';
  width: clamp(6px, 0.8vw, 10px);
  height: clamp(6px, 0.8vw, 10px);
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 196, 0, 0.4);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--yellow) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Home hero — conversion layout over original background */
.hero--home {
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(96px, 10vh, 128px) 0 clamp(64px, 8vh, 96px);
  align-items: center;
}

.hero--home .hero__overlay {
  background: rgba(0, 0, 0, 0.5);
}

.hero--home .hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  width: 100%;
}

.hero--home .hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 540px;
}

.hero--home .hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  margin-bottom: clamp(18px, 2.5vw, 24px);
  border-radius: var(--radius-full);
  background: rgba(255, 196, 0, 0.1);
  border: 1px solid rgba(255, 196, 0, 0.24);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero--home .hero__title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: clamp(16px, 2vw, 22px);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero--home .hero__subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: clamp(24px, 3.5vw, 36px);
  max-width: 480px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.3);
}

.hero--home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero--home .hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  letter-spacing: 0.2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.hero--home .hero__btn-secondary:hover {
  background: rgba(0, 0, 0, 0.48);
  border-color: rgba(255, 196, 0, 0.28);
  transform: translateY(-2px);
}

.hero--home .hero__btn-secondary:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.hero--home .hero__services {
  width: 100%;
}

.hero--home .hero__bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
}

.hero--home .hero__service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(14px, 1.6vw, 18px);
  border-radius: var(--radius-md);
  background: rgba(8, 8, 8, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.hero--home .hero__service-card:hover {
  transform: translateY(-4px);
  background: rgba(12, 12, 12, 0.52);
  border-color: rgba(255, 196, 0, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 196, 0, 0.05);
}

.hero--home .hero__service-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.18);
  color: var(--yellow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero--home .hero__service-card:hover .hero__service-icon {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 196, 0, 0.1);
}

.hero--home .hero__service-name {
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: 0.05px;
}

.hero--home .anim-hero {
  transform: translateY(20px);
}

.hero--home .anim-hero.visible {
  transform: translateY(0);
}

/* ========================================
   ABOUT
======================================== */
.about {
  background: transparent;
}

.about__body {
  max-width: 880px;
  margin: 0 auto clamp(60px, 8vw, 100px);
  text-align: center;
}

.about__body p {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  color: var(--gray-text);
  line-height: 2;
  margin-bottom: 20px;
}

.about__body p:last-child {
  margin-bottom: 0;
}

/* Legal page — formal document layout */
.legal-page .container {
  max-width: 920px;
}

.legal-page__content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4.5vw, 52px);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  background: rgba(12, 12, 12, 0.4);
}

.legal-page__updated {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: clamp(36px, 5vw, 52px);
  padding-bottom: clamp(20px, 3vw, 28px);
  text-align: center;
  border-bottom: 1px solid var(--dark-border);
}

.legal-page__section {
  margin-bottom: 0;
  padding-bottom: clamp(28px, 4vw, 40px);
  margin-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--dark-border);
}

.legal-page__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-page__heading {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: clamp(16px, 2.5vw, 22px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page__section p {
  font-size: clamp(15px, 1.35vw, 16px);
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.95;
  margin-bottom: 16px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.legal-page__section p:last-child {
  margin-bottom: 0;
}

.legal-page__list {
  list-style: disc;
  padding-left: 1.6em;
  margin: 0 0 16px;
}

.legal-page__list li {
  font-size: clamp(15px, 1.35vw, 16px);
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.95;
  margin-bottom: 10px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.legal-page__list li:last-child {
  margin-bottom: 0;
}

.legal-page__list a,
.legal-page__section a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.legal-page__list a:hover,
.legal-page__section a:hover {
  color: var(--yellow-soft);
}

@media (max-width: 768px) {
  .legal-page__content {
    padding: clamp(24px, 6vw, 32px) clamp(20px, 5vw, 24px);
  }

  .legal-page__section p,
  .legal-page__list li {
    line-height: 1.85;
    text-align: left;
  }
}

/* Benefits Three */
.benefits-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-three__card {
  text-align: center;
  padding: clamp(32px, 4vw, 48px) clamp(20px, 3vw, 32px);
  border-radius: var(--radius-xl);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefits-three__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.benefits-three__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 196, 0, 0.15);
}

.benefits-three__card:hover::before {
  opacity: 1;
}

.benefits-three__icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--black);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefits-three__card:hover .benefits-three__icon-wrap {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-yellow);
}

.benefits-three__title {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.benefits-three__desc {
  font-size: clamp(13px, 1.1vw, 14px);
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.75;
}

/* ========================================
   CTA BANNER
======================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 14vw, 180px) 0;
  background: #000000;
}

.cta-banner__bg-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: transform 8s var(--ease-out);
}

.cta-banner:hover .cta-banner__bg {
  transform: scale(1.05);
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      #000000 0%,
      #000000 5%,
      rgba(0, 0, 0, 0.65) 15%,
      rgba(0, 0, 0, 0.3) 25%,
      rgba(0, 0, 0, 0.05) 35%,
      transparent 45%,
      transparent 55%,
      rgba(0, 0, 0, 0.05) 65%,
      rgba(0, 0, 0, 0.3) 75%,
      rgba(0, 0, 0, 0.65) 85%,
      #000000 95%,
      #000000 100%
    );
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* ========================================
   BENEFITS DETAIL
======================================== */
.benefits-detail {
  background: transparent;
}

.benefits-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.benefits-detail__col {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
}

.benefits-detail__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-detail__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.benefits-detail__img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Detail Cards */
.detail-card {
  display: flex;
  gap: 16px;
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: var(--radius-lg);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: all var(--transition-base);
}

.detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 196, 0, 0.15);
  box-shadow: var(--shadow-lg);
}

.detail-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: transform var(--transition-base);
}

.detail-card:hover .detail-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.detail-card__title {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.detail-card__desc {
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
  background: transparent;
  overflow: hidden;
}

.testimonial-swiper {
  padding: 20px 0 80px;
  width: 100%;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

.testimonial-swiper .swiper-slide-next,
.testimonial-swiper .swiper-slide-prev {
  opacity: 0.5;
  transition: opacity var(--transition-base);
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 40px);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 72px;
  font-weight: 800;
  color: var(--yellow);
  opacity: 0.08;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  border-color: rgba(255, 196, 0, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__quote {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card__role {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--yellow);
  margin-top: 2px;
}

/* Swiper Overrides */
.swiper-button-prev,
.swiper-button-next {
  color: var(--yellow) !important;
  width: 44px !important;
  height: 44px !important;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 50% !important;
  transition: all var(--transition-base) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--yellow) !important;
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: var(--black) !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
  transition: all var(--transition-base) !important;
}

.swiper-pagination-bullet-active {
  background: var(--yellow) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ========================================
   CTA FINAL
======================================== */
.cta-final {
  position: relative;
  background: transparent;
  overflow: hidden;
  padding-top: clamp(40px, 6vw, 60px);
  padding-bottom: clamp(16px, 3vw, 32px);
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(255, 196, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-final__title {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: clamp(16px, 2vw, 24px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.cta-final__text {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 400;
  color: var(--gray-text);
  margin-bottom: 12px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__text--accent {
  font-weight: 600;
  color: var(--white);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cta-final__media-row {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.cta-final__logos-col {
  width: 100%;
}

.cta-final__logos-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cta-final__video-col {
  width: 100%;
}

.cta-final__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cta-final__video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.cta-final__btn-wrap {
  text-align: center;
}

.cta-final__subtitle {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: clamp(20px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--black-pure);
  border-top: 1px solid var(--dark-border);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 56px) clamp(20px, 5vw, 48px) clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__brand {
  margin-bottom: 4px;
}

.footer__logo {
  height: 56px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition-base);
}

.footer__logo:hover {
  opacity: 1;
}

.footer__tagline {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  color: var(--gray-500);
  text-align: center;
  letter-spacing: 0.3px;
}

.footer__social {
  display: flex;
  gap: 14px;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255, 196, 0, 0.3);
}

.footer__divider {
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
  margin: 4px 0;
}

.footer__bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__copy {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-500);
}

.footer__policy a {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__policy a:hover {
  color: var(--yellow);
}

/* ========================================
   ANIMATIONS
======================================== */
/* Reveal from bottom */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Reveal from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Reveal from right */
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Stagger children */
.reveal-stagger {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Hero animations */
.anim-hero {
  opacity: 0;
  transform: translateY(30px) translateX(-10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.anim-hero.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ========================================
   DEMO MODAL
======================================== */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.demo-modal.active {
  opacity: 1;
  visibility: visible;
}

.demo-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.demo-modal__container {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: 40px auto;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92) translateY(12px);
  transition: transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.demo-modal.active .demo-modal__container {
  transform: scale(1) translateY(0);
}

.demo-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--dark-border);
  flex-shrink: 0;
}

.demo-modal__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
}

.demo-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-border);
  color: var(--gray-text);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
  flex-shrink: 0;
}

.demo-modal__close:hover {
  background: rgba(255, 196, 0, 0.15);
  border-color: rgba(255, 196, 0, 0.25);
  color: var(--white);
}

/* Body: flex centering container for the phone-shaped iframe */
.demo-modal__body {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #000;
}

/* Phone-shaped iframe: 1:2 aspect ratio */
.demo-modal__iframe {
  width: 100%;
  aspect-ratio: 1 / 2;
  border: none;
  border-radius: 20px;
  display: block;
  background: var(--dark-card);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.demo-modal__loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--dark-card);
  z-index: 2;
  transition: opacity 250ms ease;
}

.demo-modal__loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.demo-modal__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.demo-modal__loader p {
  font-size: 13px;
  color: var(--gray-text);
  letter-spacing: 0.3px;
}

.demo-modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid var(--dark-border);
  flex-shrink: 0;
}

.demo-modal__hint {
  font-size: 12px;
  color: var(--gray-500);
}

.demo-modal__fallback-btn {
  padding: 8px 20px;
  font-size: 12px;
  white-space: nowrap;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: whatsapp-enter 400ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 1s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes whatsapp-enter {
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

@media (min-width: 1025px) {
  .whatsapp-float {
    animation: whatsapp-enter 400ms cubic-bezier(0.34, 1.56, 0.64, 1) both,
               whatsapp-pulse 3s ease-in-out 2s infinite;
  }
}

/* ========================================
   RESPONSIVE: LARGE MONITORS (1440px+)
======================================== */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }

  .header__inner {
    max-width: 1320px;
  }

  .hero__content {
    max-width: 1000px;
  }

  .benefits-three {
    max-width: 1200px;
  }

  .footer__inner {
    max-width: 1320px;
  }
}

/* ========================================
   RESPONSIVE: TABLET (max-width: 1024px)
======================================== */
@media (max-width: 1024px) {
  .section {
    padding: clamp(60px, 10vw, 120px) 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__list li {
    font-size: clamp(16px, 2.8vw, 24px);
  }

  .hero--home .hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
    text-align: center;
  }

  .hero--home .hero__copy {
    align-items: center;
    max-width: 620px;
    margin-inline: auto;
  }

  .hero--home .hero__subtitle {
    margin-inline: auto;
  }

  .hero--home .hero__actions {
    justify-content: center;
  }

  .hero--home .hero__bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 720px;
    margin-inline: auto;
  }

  .benefits-three {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-three__card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
  }

  .benefits-detail__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefits-detail__col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .benefits-detail__center {
    order: -1;
  }

  .benefits-detail__img-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }

  .cta-final__media-row {
    gap: clamp(16px, 2.5vw, 32px);
  }

  .swiper-button-prev { left: 8px !important; }
  .swiper-button-next { right: 8px !important; }

  .demo-modal__container {
    max-width: 560px;
  }
}

/* ========================================
   RESPONSIVE: MOBILE (max-width: 768px)
======================================== */
@media (max-width: 768px) {
  .section {
    padding: clamp(48px, 8vw, 80px) 0;
  }

  .container {
    padding: 0 clamp(16px, 4vw, 24px);
  }

  /* --- HEADER --- */
  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 8px 0;
  }

  .header__logo img {
    height: 44px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: transform var(--transition-base);
    border-left: 1px solid var(--dark-border);
  }

  .header__nav.active {
    transform: translateX(0);
  }

  .header__link {
    font-size: 17px;
    padding: 8px 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .btn-pill--primary {
    padding: 14px 32px;
    font-size: 15px;
    width: auto;
  }

  /* --- HERO --- */
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__bg {
    object-fit: cover;
    object-position: right 30%;
    max-height: 700px;
  }

  .hero__content {
    height: auto;
    padding: clamp(80px, 16vw, 110px) clamp(20px, 5vw, 32px) clamp(60px, 12vw, 80px);
  }

  .hero--home {
    min-height: clamp(560px, 88vh, 720px);
    padding: clamp(92px, 13vw, 108px) 0 clamp(52px, 8vw, 72px);
  }

  .hero--home .hero__bg-wrapper,
  .hero--home .hero__overlay {
    min-height: 100%;
  }

  .hero--home .hero__bg {
    max-height: none;
    min-height: 100%;
    object-position: center 30%;
  }

  .hero--home .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.42) 45%,
      rgba(0, 0, 0, 0.52) 100%
    );
  }

  .hero--home .hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 32px);
    text-align: center;
  }

  .hero--home .hero__copy {
    align-items: center;
    max-width: 100%;
  }

  .hero--home .hero__badge {
    margin-bottom: 14px;
    font-size: 10px;
    padding: 6px 14px;
  }

  .hero--home .hero__title {
    font-size: clamp(26px, 6.8vw, 34px);
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .hero--home .hero__subtitle {
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 36ch;
    margin-inline: auto;
  }

  .hero--home .hero__actions {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .hero--home .hero__actions .btn-primary--lg {
    width: 100%;
    max-width: 320px;
    padding: 16px 28px;
    font-size: 15px;
  }

  .hero--home .hero__btn-secondary {
    width: 100%;
    max-width: 320px;
    padding: 16px 28px;
    font-size: 14px;
  }

  .hero--home .hero__bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
  }

  .hero--home .hero__service-card {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .hero--home .hero__service-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .hero--home .hero__service-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero--home .hero__service-name {
    font-size: 11px;
    line-height: 1.35;
    text-align: left;
  }

  .hero--page .hero__content {
    padding-left: clamp(20px, 5vw, 32px);
    padding-right: clamp(20px, 5vw, 32px);
    align-items: center;
    text-align: center;
  }

  .hero__list {
    gap: clamp(8px, 1.5vw, 14px);
  }

  .hero__list li {
    font-size: clamp(18px, 5vw, 26px);
    letter-spacing: 0.8px;
    gap: 12px;
  }

  .hero__list li::before {
    width: clamp(6px, 1.5vw, 10px);
    height: clamp(6px, 1.5vw, 10px);
  }

  .hero__scroll-hint {
    bottom: 24px;
  }

  .hero__scroll-line {
    height: 36px;
  }

  /* --- ABOUT --- */
  .about__body {
    margin-bottom: clamp(40px, 6vw, 60px);
  }

  .about__body p {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  /* --- BENEFITS THREE --- */
  .benefits-three {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .benefits-three__card {
    padding: clamp(24px, 5vw, 32px) clamp(20px, 4vw, 28px);
    text-align: center;
  }

  .benefits-three__card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .benefits-three__icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }

  .benefits-three__title {
    font-size: clamp(13px, 3.2vw, 15px);
    margin-bottom: 10px;
  }

  .benefits-three__desc {
    font-size: clamp(13px, 3vw, 14px);
    line-height: 1.65;
  }

  .benefits-three__card .btn-primary {
    padding: 12px 28px;
    font-size: 14px;
    margin-top: 16px;
  }

  /* --- CTA BANNER --- */
  .cta-banner {
    padding: clamp(64px, 12vw, 120px) 0;
  }

  .cta-banner__title {
    font-size: clamp(22px, 5.5vw, 32px);
    margin-bottom: clamp(20px, 4vw, 32px);
  }

  .cta-banner .btn-primary {
    display: block;
    width: 60%;
    max-width: 340px;
    margin: 0 auto;
  }

  /* --- BENEFITS DETAIL --- */
  .benefits-detail__grid {
    gap: 24px;
  }

  .benefits-detail__col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefits-detail__center {
    order: -1;
  }

  .benefits-detail__img-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }

  .detail-card {
    padding: 16px;
    gap: 12px;
  }

  .detail-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .detail-card__title {
    font-size: clamp(12px, 3vw, 14px);
  }

  .detail-card__desc {
    font-size: clamp(12px, 2.8vw, 13px);
  }

  /* --- TESTIMONIALS --- */
  .testimonial-swiper {
    padding: 16px 16px 56px;
  }

  .testimonial-card {
    padding: clamp(20px, 4vw, 28px);
  }

  .testimonial-card__quote {
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .testimonial-card__stars {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .testimonial-card__author {
    gap: 10px;
    padding-top: 16px;
  }

  .testimonial-card__avatar {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .testimonial-card__name {
    font-size: 13px;
  }

  .testimonial-card__role {
    font-size: 11px;
  }

  .swiper-button-prev { display: none !important; }
  .swiper-button-next { display: none !important; }

  .swiper-pagination {
    bottom: 20px !important;
  }

  /* --- BUTTONS --- */
  .btn-primary {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    padding: 16px 28px;
    font-size: 15px;
  }

  .btn-primary--lg {
    padding: 18px 32px;
    font-size: 15px;
  }

  /* --- CTA FINAL --- */
  .cta-final {
    padding-top: clamp(32px, 6vw, 48px);
    padding-bottom: clamp(12px, 3vw, 24px);
  }

  .cta-final__title {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .cta-final__text {
    font-size: clamp(13px, 3vw, 15px);
  }

  .cta-final__media-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: clamp(20px, 4vw, 32px);
  }

  .cta-final__logos-col {
    order: 1;
  }

  .cta-final__video-col {
    order: 2;
  }

  .cta-final__logos-img {
    border-radius: 12px;
  }

  .cta-final__video-wrapper {
    border-radius: 12px;
  }

  .cta-final__subtitle {
    font-size: clamp(13px, 3vw, 15px);
    margin-bottom: clamp(16px, 3vw, 24px);
  }

  /* --- FOOTER --- */
  .footer__inner {
    padding: clamp(32px, 6vw, 48px) clamp(16px, 4vw, 24px) clamp(16px, 3vw, 24px);
    gap: 16px;
  }

  .footer__logo {
    height: 44px;
  }

  .footer__tagline {
    font-size: clamp(12px, 2.8vw, 14px);
  }

  .footer__social {
    gap: 12px;
  }

  .footer__social-link {
    width: 38px;
    height: 38px;
  }

  .footer__social-link svg {
    width: 16px;
    height: 16px;
  }

  .footer__divider {
    margin: 2px 0;
  }

  .demo-modal__container {
    width: 95vw;
    max-width: none;
  }

  .demo-modal__body {
    padding: 16px;
  }

  .demo-modal__footer {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }
}

/* ========================================
   RESPONSIVE: SMALL PHONES (max-width: 480px)
======================================== */
@media (max-width: 480px) {
  .section {
    padding: clamp(40px, 7vw, 56px) 0;
  }

  /* --- HEADER --- */
  .header__logo img {
    height: 38px;
  }

  .header__link {
    font-size: 16px;
  }

  /* --- HERO --- */
  .hero__content {
    padding: clamp(100px, 10vw, 64px) 20px;
  }

  .hero--home {
    min-height: clamp(520px, 86vh, 640px);
    padding: clamp(84px, 11vw, 96px) 0 clamp(44px, 7vw, 56px);
  }

  .hero--home .hero__title {
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .hero--home .hero__subtitle {
    font-size: 13px;
    max-width: 34ch;
    margin-bottom: 18px;
  }

  .hero--home .hero__actions .btn-primary--lg,
  .hero--home .hero__btn-secondary {
    max-width: 100%;
  }

  .hero--home .hero__bento {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero--home .hero__service-card {
    padding: 9px 12px;
  }

  .hero--home .hero__service-name {
    font-size: 12px;
  }

  .hero--page .hero__content {
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    text-align: center;
  }

  .hero__list {
    gap: clamp(6px, 1.2vw, 10px);
  }

  .hero__list li {
    font-size: clamp(16px, 4.5vw, 22px);
    letter-spacing: 0.5px;
    gap: 10px;
  }

  .hero__list li::before {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 8px rgba(255, 196, 0, 0.3);
  }

  .hero__scroll-hint {
    bottom: 16px;
  }

  .hero__scroll-line {
    height: 28px;
  }

  /* --- CTA BANNER BUTTON --- */
  .cta-banner .btn-primary--lg {
    padding: 14px 28px;
  }

  /* --- SECTION HEADERS --- */
  .section__header {
    margin-bottom: clamp(28px, 5vw, 48px);
  }

  .section__title {
    font-size: clamp(22px, 5.5vw, 30px);
    margin-bottom: 14px;
  }

  .section__accent {
    width: 48px;
    height: 3px;
  }

  /* --- ABOUT --- */
  .about__body p {
    font-size: clamp(13px, 3.2vw, 15px);
    line-height: 1.75;
    margin-bottom: 12px;
  }

  /* --- BENEFITS THREE --- */
  .benefits-three__card {
    padding: 22px 18px;
  }

  .benefits-three__icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .benefits-three__icon-wrap svg {
    width: 22px;
    height: 22px;
  }

  .benefits-three__card .btn-primary {
    padding: 10px 24px;
    font-size: 13px;
    margin-top: 14px;
  }

  /* --- CTA BANNER --- */
  .cta-banner {
    padding: clamp(52px, 10vw, 80px) 0;
  }

  .cta-banner__title {
    font-size: clamp(20px, 5vw, 26px);
  }

  /* --- BENEFITS DETAIL --- */
  .benefits-detail__img-wrapper {
    max-width: 220px;
  }

  .detail-card {
    padding: 14px;
    gap: 10px;
  }

  .detail-card__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .detail-card__icon svg {
    width: 18px;
    height: 18px;
  }

  /* --- TESTIMONIALS --- */
  .testimonial-swiper {
    padding: 12px 12px 48px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .testimonial-card__quote {
    font-size: clamp(12px, 3vw, 14px);
    margin-bottom: 14px;
  }

  .testimonial-card__stars {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .testimonial-card__author {
    gap: 8px;
    padding-top: 12px;
  }

  .testimonial-card__avatar {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .testimonial-card__name {
    font-size: 12px;
  }

  .testimonial-card__role {
    font-size: 10px;
  }

  /* --- CTA FINAL --- */
  .cta-final__title {
    font-size: clamp(18px, 5vw, 24px);
  }

  .cta-final__text {
    font-size: clamp(12px, 3vw, 14px);
    margin-bottom: 8px;
  }

  .cta-final__text--accent {
    margin-bottom: clamp(20px, 4vw, 28px);
  }

  .cta-final__media-row {
    gap: 16px;
    margin-bottom: clamp(16px, 3vw, 24px);
  }

  .cta-final__logos-img {
    border-radius: 10px;
  }

  .cta-final__video-wrapper {
    border-radius: 10px;
  }

  .cta-final__subtitle {
    font-size: clamp(12px, 3vw, 14px);
    letter-spacing: 0.8px;
    margin-bottom: clamp(14px, 3vw, 20px);
  }

  /* --- BUTTONS --- */
  .btn-primary {
    padding: 14px 24px;
    font-size: 14px;
    max-width: 300px;
  }

  .btn-primary--lg {
    padding: 16px 28px;
    font-size: 14px;
  }

  /* --- FOOTER --- */
  .footer__inner {
    padding: 28px 16px 20px;
    gap: 14px;
  }

  .footer__logo {
    height: 38px;
  }

  .footer__tagline {
    font-size: 12px;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
  }

  .footer__copy {
    font-size: 11px;
  }

  .footer__policy a {
    font-size: 10px;
  }

  .demo-modal__container {
    width: 95vw;
    max-width: none;
    border-radius: var(--radius-lg);
  }

  .demo-modal__body {
    padding: 12px;
  }

  .demo-modal__header {
    padding: 12px 14px;
  }

  .demo-modal__title {
    font-size: 13px;
  }

  .demo-modal__close {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* ========================================
   INDEX PAGE — SECTION VERTICAL PADDING
======================================== */
main:has(> .hero--home) > .section {
  padding-block: 10%;
}

/* ========================================
   PREFERS REDUCED MOTION
======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__bg {
    animation: none;
  }

  html { scroll-behavior: auto; }

  .reveal, .reveal-left, .reveal-right, .reveal-stagger, .anim-hero {
    opacity: 1;
    transform: none;
  }
}
