/* =====================================================
   TUKIO PRO v2 — Home Page Styles
   ===================================================== */

/* ── ALL SHARED STYLES INLINED BELOW ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #fffdf5;
  color: #1a1a0f;
  line-height: 1.65;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid #bca402;
  outline-offset: 3px;
  border-radius: 2px;
}

@font-face {
  font-family: "Posterama";
  src: local("Posterama 1913 SemiBold"), local("Posterama1913-SemiBold");
  font-weight: 600;
  font-display: swap;
}

h1,
h2,
h3,
h4 {
  font-family: "Posterama", "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(188, 164, 2, 0.14);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-image {
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-text-alt {
  font-family: "Posterama", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a0f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: none;
}

@media (min-width: 768px) {
  .nav-logo .logo-text-alt {
    display: inline;
  }
}

.footer-logo .logo-text-alt {
  display: inline;
}

.logo-text-alt em {
  font-style: normal;
  color: #bca402;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: #bca402;
  color: #fff;
  font-family: "Posterama", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo-text {
  font-family: "Posterama", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a0f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text em {
  font-style: normal;
  color: #bca402;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 1.25rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-sep {
  color: rgba(188, 164, 2, 0.35);
  font-size: 0.75rem;
  padding: 0 0.25rem;
  user-select: none;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 0.375rem 0.875rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: #1a1a0f;
  background: rgba(188, 164, 2, 0.08);
}

.nav-link.active {
  color: #bca402;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .nav-actions .btn-nav-pro,
  .nav-actions .btn-nav-login {
    display: none;
  }
}

.btn-nav-pro {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #bca402;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn-nav-pro:hover {
  background: #a89200;
  transform: translateY(-1px);
}

.btn-nav-login {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: #1a1a0f;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  border: 1.5px solid #1a1a0f;
  transition:
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.btn-nav-login:hover {
  border-color: #bca402;
  color: #bca402;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}

.hamburger-line {
  width: 22px;
  height: 1.5px;
  background: #1a1a0f;
  transition:
    transform 0.25s,
    opacity 0.2s;
  transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fffdf5;
  border-bottom: 1px solid rgba(188, 164, 2, 0.15);
  padding: 1rem 1.5rem 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s,
    opacity 0.25s;
  z-index: 99;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(188, 164, 2, 0.1);
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #bca402;
}

.mobile-nav-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fffdf5 0%, #fdf8e0 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(188, 164, 2, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 164, 2, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bca402;
  background: rgba(188, 164, 2, 0.1);
  border: 1px solid rgba(188, 164, 2, 0.25);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.6s ease both;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #bca402;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  color: #1a1a0f;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-accent {
  color: #bca402;
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  color: #777;
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-hero-primary {
  display: inline-block;
  padding: 0.9375rem 2.25rem;
  background: #bca402;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(188, 164, 2, 0.3);
}

.btn-hero-primary:hover {
  background: #a89200;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(188, 164, 2, 0.4);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.75rem;
  color: #1a1a0f;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1.5px solid rgba(26, 26, 15, 0.2);
  border-radius: 6px;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-hero-secondary:hover {
  border-color: #bca402;
  color: #bca402;
}

.btn-play {
  width: 20px;
  height: 20px;
  background: #bca402;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-play svg {
  width: 8px;
  height: 8px;
  fill: white;
  margin-left: 1px;
}

/* Trust bar */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.trust-item strong {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a0f;
  font-family: "Posterama", "Montserrat", sans-serif;
}

.trust-item span {
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 0.03em;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(188, 164, 2, 0.2);
}

/* Hero image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 16px;
}

/* ── CONSTAT SECTION ── */
.constat-section {
  padding: 5rem 1.5rem;
  background: #f8f5e8;
}

.constat-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.constat-intro {
  font-size: 1.0625rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.constat-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.constat-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.constat-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.constat-point-icon--red {
  background: rgba(224, 80, 80, 0.1);
}

.constat-point-icon--red svg {
  color: #e05050;
}

.constat-point-icon--gold {
  background: rgba(188, 164, 2, 0.12);
}

.constat-point-icon--gold svg {
  color: #bca402;
}

.constat-point-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2a2a1a;
  margin-bottom: 0.25rem;
}

.constat-point-text p {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.7;
}

.constat-image {
  display: flex;
  justify-content: center;
}

.constat-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
}

/* ── SERVICES ── */
.services-section {
  padding: 6rem 1.5rem;
}

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

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bca402;
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  color: #1a1a0f;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: #888;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: white;
  border: 1.5px solid rgba(188, 164, 2, 0.12);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #bca402;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(188, 164, 2, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(188, 164, 2, 0.12);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card--featured {
  border-color: rgba(188, 164, 2, 0.35);
  background: #fffdf0;
  box-shadow: 0 4px 24px rgba(188, 164, 2, 0.1);
}

.service-card--featured::after {
  opacity: 0.6;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(188, 164, 2, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bca402;
}

.service-title {
  font-size: 1.125rem;
  color: #1a1a0f;
}

.service-desc {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.75;
  flex: 1;
}

.service-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #bca402;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.625rem;
}

.service-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.service-card:hover .service-arrow {
  transform: translateX(3px);
}

/* ── STATS ── */
.stats-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
  background: #1a1a0f;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: none;
}

.stat-card:nth-child(2n) {
  border: none;
}

.stat-number {
  display: block;
  font-family: "Posterama", "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #bca402;
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #bca402;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.625rem;
}

.stat-change {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4caf50;
  letter-spacing: 0.04em;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 6rem 1.5rem;
  background: #f8f5e8;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(188, 164, 2, 0.12);
}

.step-item:last-child {
  border-bottom: none;
}

.step-number-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #bca402;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  font-family: "Posterama", "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.step-title {
  font-size: 1.125rem;
  color: #1a1a0f;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: #888;
  line-height: 1.75;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 6rem 1.5rem;
  background: #fffdf5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  background: white;
  border: 1.5px solid rgba(188, 164, 2, 0.1);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(188, 164, 2, 0.1);
  transform: translateY(-3px);
}

.testimonial-card--featured {
  border-color: #bca402;
  background: #fffdf0;
  box-shadow: 0 4px 24px rgba(188, 164, 2, 0.12);
}

.testimonial-stars {
  color: #bca402;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  background: rgba(188, 164, 2, 0.1);
  border: 1.5px solid rgba(188, 164, 2, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #bca402;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a0f;
  font-style: normal;
}

.author-role {
  display: block;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 0.125rem;
}

/* ── FAQ ── */
.faq-section {
  padding: 6rem 1.5rem;
  background: #f8f5e8;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(188, 164, 2, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.375rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2a2a1a;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #bca402;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(188, 164, 2, 0.1);
  border: 1px solid rgba(188, 164, 2, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #bca402;
  font-weight: 300;
  flex-shrink: 0;
  transition:
    transform 0.25s,
    background 0.2s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: #bca402;
  color: white;
}

.faq-answer {
  padding: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: #777;
  line-height: 1.8;
}

.faq-answer[hidden] {
  display: none;
}

/* ── CTA ── */
.cta-section {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  background: #1a1a0f;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
      rgba(188, 164, 2, 0.1) 0%,
      transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bca402;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta-form {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto 1rem;
}

.cta-input {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.cta-input:focus {
  outline: none;
  border-color: #bca402;
}

.cta-submit {
  width: auto;
  padding: 0.9375rem 2rem;
  background: #bca402;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 20px rgba(188, 164, 2, 0.3);
}

.cta-submit:hover {
  background: #a89200;
  transform: translateY(-1px);
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
.footer {
  background: #111008;
  border-top: 1px solid rgba(188, 164, 2, 0.1);
  padding: 4.5rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-bottom: 0.875rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(188, 164, 2, 0.15);
  border-color: rgba(188, 164, 2, 0.3);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.4);
  transition: fill 0.2s;
}

.social-link:hover svg {
  fill: #bca402;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-col-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #bca402;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

/* ── RESPONSIVE 768px+ ── */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
  }

  .constat-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-card:nth-child(2n) {
    border: none;
  }

  .stat-card:nth-child(4n) {
    border: none;
  }

  .steps-grid {
    flex-direction: row;
  }

  .step-item {
    flex-direction: column;
    border-bottom: none;
    border-right: 1px solid rgba(188, 164, 2, 0.12);
    padding: 0 2rem;
    flex: 1;
  }

  .step-item:last-child {
    border-right: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-form {
    flex-direction: row;
  }

  .cta-input {
    flex: 1;
  }

  .cta-submit {
    width: auto;
    padding: 0.9375rem 1.75rem;
    flex-shrink: 0;
  }

  .footer-container {
    grid-template-columns: 1.2fr 2fr;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =====================================================
   ANIMATIONS — Tukio PRO v2
   ===================================================== */

/* ── Keyframes ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

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

/* ── Hero image float ── */
.hero-image img {
  animation: floatY 5s ease-in-out infinite;
}

/* ── Service icon zoom on hover ── */
.service-card:hover .service-icon {
  transform: scale(1.12);
  transition: transform 0.3s ease;
}

.service-icon {
  transition: transform 0.3s ease;
}

/* ── Stat card lift on hover ── */
.stat-card {
  transition: transform 0.3s ease;
}

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

/* ── Step number pulse on hover ── */
.step-item:hover .step-number-wrap {
  transform: scale(1.08);
  transition: transform 0.25s ease;
}

.step-number-wrap {
  transition: transform 0.25s ease;
}

/* ── Constat illustration soft scale ── */
.constat-image img {
  transition: transform 0.4s ease;
}

.constat-image img:hover {
  transform: scale(1.025);
}

/* ── Author avatar rotate-in on card hover ── */
.testimonial-card:hover .author-avatar {
  transform: rotate(-4deg) scale(1.1);
  transition: transform 0.3s ease;
}

.author-avatar {
  transition: transform 0.3s ease;
}

/* ── FAQ question chevron smooth rotation ── */
.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}