/* =============================================
   Falcon Digital Marketing - Styles
   ============================================= */

:root {
  --gold: #F6B800;
  --gold-dark: #E5A600;
  --black: #0a0a0a;
  --hero-bg: #050505;
  --white: #ffffff;
  --muted: #D6D6D6;
  --hairline: rgba(255, 255, 255, 0.12);
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-600: #666;
  --gray-800: #333;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Oswald', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 72px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--hero-bg);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gold { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: rgba(255, 184, 0, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.2);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn svg {
  flex-shrink: 0;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header--dark {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 184, 0, 0.15);
}

.header--dark.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header.scrolled:not(.header--dark) {
  box-shadow: var(--shadow);
}

.header .container {
  max-width: 1440px;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "logo nav actions";
  align-items: center;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  grid-area: logo;
  justify-self: start;
  flex-shrink: 0;
}

.logo__img {
  height: 48px;
  width: auto;
  display: block;
}

.logo__img--desktop {
  height: 44px;
}

.logo__img--mobile {
  display: none;
}

.logo__text {
  display: none;
}

.logo__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
}

.logo__text span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.header--dark .logo__img {
  filter: brightness(1.15);
}

.nav {
  grid-area: nav;
  justify-self: center;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold);
}

.nav__link--active::after,
.nav__link:hover::after {
  width: 100%;
}

.header--dark .nav__link {
  color: rgba(255, 255, 255, 0.85);
}

.header--dark .nav__link:hover,
.header--dark .nav__link--active {
  color: var(--gold);
}

.header__cta {
  grid-area: actions;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.header__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.35);
}

.header__cta span {
  font-size: 1.1rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  grid-area: actions;
  justify-self: end;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.header--dark .menu-toggle span {
  background: var(--white);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 0 0 0;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--hero-bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 28%, rgba(5, 5, 5, 0.8) 52%, rgba(5, 5, 5, 0.72) 75%, rgba(5, 5, 5, 0.85) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.6) 0%, transparent 30%, rgba(5, 5, 5, 0.7) 100%);
}

.hero .container {
  max-width: 1440px;
}

.hero__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.5rem 1rem;
  align-items: center;
  min-height: 90vh;
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: 2.5rem;
  overflow: visible;
}

.hero__main > * {
  min-width: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin-right: auto;
  text-align: left;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__label-bar {
  width: 3px;
  height: 16px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 1px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
}

.hero__title .text-gold {
  color: var(--gold);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 480px;
}

.hero__desc .text-gold {
  display: block;
  margin-top: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  white-space: nowrap;
}

.hero__trust li:first-child {
  padding-left: 0;
}

.hero__trust li:not(:last-child) {
  border-right: 1px solid var(--hairline);
}

.hero__trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__trust-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--black);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__actions .btn--hero {
  border-radius: 50px;
  padding: 0.95rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__actions .btn--gold {
  background: linear-gradient(180deg, #FFD054 0%, #FFB800 45%, #E5A000 100%);
  color: var(--black);
  border-color: #FFB800;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
}

.hero__actions .btn--gold:hover {
  background: linear-gradient(180deg, #FFE082 0%, #FFC933 45%, #FFB800 100%);
  box-shadow: 0 6px 24px rgba(255, 184, 0, 0.45);
}

.hero__actions .btn--outline-white {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.hero__actions .btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.75);
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  overflow: visible;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 120%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(246, 184, 0, 0.38) 0%, rgba(246, 184, 0, 0.16) 35%, rgba(246, 184, 0, 0) 66%);
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}

.hero__visual img {
  position: relative;
  width: 125%;
  max-width: 860px;
  height: auto;
  display: block;
  margin-left: -14%;
  margin-right: -2%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

.hero__features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid rgba(246, 184, 0, 0.4);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-feature {
  padding: 1.35rem 1rem 1.35rem 1.15rem;
  text-align: left;
  border-right: 1px solid rgba(255, 184, 0, 0.18);
  transition: background var(--transition);
}

.hero-feature:last-child {
  border-right: none;
}

.hero-feature:hover {
  background: rgba(255, 184, 0, 0.05);
}

.hero-feature__icon {
  width: 36px;
  height: 36px;
  margin: 0 0 0.65rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-feature__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.hero-feature h3 {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.hero-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  line-height: 1.4;
}

/* ---- Shared section styles (hero-inspired) ---- */
.section-dark {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label__bar {
  width: 3px;
  height: 16px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 1px;
}

.section-header {
  margin-bottom: 3rem;
  text-align: left;
}

.section-header--center {
  text-align: left;
}

.section-header--center .section-label {
  justify-content: flex-start;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 560px;
}

.section-desc strong {
  color: var(--white);
  font-weight: 700;
}

.section-desc--center {
  margin-left: 0;
  margin-right: 0;
}

.section-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
}

.section-glow--about {
  top: 50%;
  right: -5%;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(246, 184, 0, 0.16) 0%, transparent 70%);
}

.section-glow--cta {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(246, 184, 0, 0.12) 0%, transparent 70%);
}

.glass-card {
  border: 1px solid rgba(246, 184, 0, 0.35);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition);
}

.glass-card:hover {
  background: rgba(255, 184, 0, 0.04);
  border-color: rgba(246, 184, 0, 0.5);
}

/* ---- About ---- */
.about {
  padding: 6rem 0;
  background: var(--hero-bg);
  border-top: 1px solid var(--hairline);
}

.about .container {
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3rem 4rem;
  align-items: center;
}

.about__grid > * {
  min-width: 0;
}

.about__content {
  max-width: 560px;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__content .section-desc:last-of-type {
  margin-bottom: 0;
}

.about__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--hairline);
}

.about__trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
  border-radius: 50px;
}

.about__trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__trust-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--black);
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  aspect-ratio: 4 / 3;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(246, 184, 0, 0.22) 0%, rgba(246, 184, 0, 0.06) 45%, transparent 72%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.about__figure {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 32px 64px -16px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.about__figure::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(246, 184, 0, 0.85) 0%,
    rgba(246, 184, 0, 0.15) 28%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(246, 184, 0, 0.1) 72%,
    rgba(246, 184, 0, 0.55) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.about__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 18%);
  pointer-events: none;
  z-index: 2;
}

.about__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  background: var(--black);
}

.glass-card--accent {
  padding: 2.5rem 2rem;
  text-align: left;
  width: 100%;
}

.glass-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 0 1.25rem;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--black);
}

.glass-card__headline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* ---- Services ---- */
.services {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--hero-bg) 0%, #0a0a0a 100%);
  border-top: 1px solid var(--hairline);
}

.services .section-desc {
  max-width: 640px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(246, 184, 0, 0.4);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.service-card {
  padding: 2rem 1.5rem 1.75rem;
  text-align: left;
  border-right: 1px solid rgba(255, 184, 0, 0.18);
  border-bottom: 1px solid rgba(255, 184, 0, 0.18);
  transition: background var(--transition);
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-child(n+4) {
  border-bottom: none;
}

.service-card:hover {
  background: rgba(255, 184, 0, 0.05);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(246, 184, 0, 0.12);
  border: 1px solid rgba(246, 184, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Process ---- */
.process {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, var(--hero-bg) 100%);
  border-top: 1px solid var(--hairline);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(246, 184, 0, 0.4);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.process-step {
  position: relative;
  padding: 2rem 1.25rem 1.75rem 1.15rem;
  text-align: left;
  border-right: 1px solid rgba(255, 184, 0, 0.18);
  transition: background var(--transition);
}

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

.process-step:hover {
  background: rgba(255, 184, 0, 0.05);
}

.process-step__num {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(246, 184, 0, 0.55);
}

.process-step__icon {
  width: 36px;
  height: 36px;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.process-step__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.process-step h3 {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* ---- CTA / Contact ---- */
.cta {
  padding: 5.5rem 0 6rem;
  background: var(--hero-bg);
  border-top: 1px solid var(--hairline);
}

.cta .container {
  position: relative;
  z-index: 1;
}

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

.cta__panel {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.cta__panel p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta__panel .btn--hero {
  align-self: flex-start;
  border-radius: 50px;
  padding: 0.95rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #FFD054 0%, #FFB800 45%, #E5A000 100%);
  color: var(--black);
  border-color: #FFB800;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
}

.cta__panel .btn--hero:hover {
  background: linear-gradient(180deg, #FFE082 0%, #FFC933 45%, #FFB800 100%);
  box-shadow: 0 6px 24px rgba(255, 184, 0, 0.45);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.25rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-list__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(246, 184, 0, 0.12);
  border: 1px solid rgba(246, 184, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.contact-list a {
  transition: color var(--transition);
  word-break: break-all;
  color: var(--white);
}

.contact-list a:hover {
  color: var(--gold);
}

/* ---- Footer ---- */
.footer {
  background: #000000;
  color: var(--white);
}

.footer__main {
  padding: 4rem 0 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem 2rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #a0a0a0;
  max-width: 22rem;
}

.footer__heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.35rem;
}

.footer__links,
.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__links a,
.footer__contact a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__contact li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a0a0a0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 0 2rem;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.footer__copyright {
  font-size: 0.82rem;
  color: #a0a0a0;
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #a0a0a0;
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer__credit-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 1280px) {
  .hero__main {
    gap: 1.25rem 0.75rem;
  }

  .hero__visual img {
    width: 118%;
    max-width: 760px;
    margin-left: -10%;
    margin-right: 0;
  }

  .hero__glow {
    width: 110%;
    left: 48%;
  }
}

@media (max-width: 1100px) {
  .header__inner {
    gap: 1rem;
  }

  .nav__list {
    gap: 1rem;
  }

  .nav__link {
    font-size: 0.68rem;
  }

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

  .hero-feature:nth-child(3) {
    border-right: none;
  }

  .hero-feature:nth-child(4),
  .hero-feature:nth-child(5) {
    border-top: 1px solid rgba(255, 184, 0, 0.15);
  }

  .hero__main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 2rem;
  }

  .hero__content {
    max-width: 620px;
  }

  .hero__title {
    font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  }

  .hero__visual img {
    width: 108%;
    max-width: 640px;
    margin-left: -6%;
    margin-right: 0;
  }

  .hero__glow {
    width: 100%;
    left: 50%;
  }

  .about__grid {
    gap: 2.5rem 2.5rem;
  }
}

@media (max-width: 1024px) {
  .hero__bg-img {
    object-position: center 40%;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.75) 0%, rgba(5, 5, 5, 0.55) 40%, rgba(5, 5, 5, 0.85) 100%);
  }

  .hero__main {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 1.5rem;
    text-align: left;
  }

  .hero__content {
    max-width: 720px;
    margin: 0;
    text-align: left;
  }

  .hero__label {
    justify-content: flex-start;
  }

  .hero__desc {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__trust {
    justify-content: flex-start;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__visual {
    max-width: 100%;
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  .hero__visual img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
  }

  .hero__glow {
    width: 85%;
    left: 50%;
  }
}

@media (max-width: 900px) {
  .hero__features {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    border-right: none;
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
  }

  .hero-feature:last-child {
    border-bottom: none;
  }

  .hero-feature:nth-child(4),
  .hero-feature:nth-child(5) {
    border-top: none;
  }

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

  .process-step:nth-child(2) {
    border-right: none;
  }

  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
  }

  .process-step:nth-child(3) {
    border-right: 1px solid rgba(255, 184, 0, 0.18);
  }

  .process-step:nth-child(4) {
    border-bottom: none;
  }

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

  .service-card {
    border-right: 1px solid rgba(255, 184, 0, 0.18);
    border-bottom: 1px solid rgba(255, 184, 0, 0.18);
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 184, 0, 0.18);
  }

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

  .service-card:nth-child(n+4) {
    border-bottom: 1px solid rgba(255, 184, 0, 0.18);
  }

  .service-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .menu-toggle { display: flex; }

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
  }

  .logo {
    grid-area: unset;
    min-width: 0;
    flex: 1;
    gap: 0.65rem;
  }

  .logo__img--desktop {
    display: none;
  }

  .logo__img--mobile {
    display: block;
    height: 38px;
    width: auto;
    flex-shrink: 0;
  }

  .logo__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .logo__text strong {
    font-size: 0.82rem;
  }

  .logo__text span {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 1001;
    flex: none;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    padding: 1.5rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    box-shadow: var(--shadow);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .header--dark .nav__link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.65) 45%, rgba(5, 5, 5, 0.9) 100%);
  }

  .hero__main {
    gap: 1.5rem;
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 1.5rem;
    min-height: auto;
  }

  .hero__content {
    max-width: none;
    width: 100%;
  }

  .hero__title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 1.02;
  }

  .hero__label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }

  .hero__desc {
    font-size: 1rem;
    max-width: none;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hero__trust li {
    padding: 0;
    border-right: none;
    white-space: normal;
  }

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

  .hero__actions .btn--hero {
    width: 100%;
  }

  .hero__visual {
    max-width: 100%;
    width: 100%;
    padding: 0;
    justify-content: center;
  }

  .hero__visual img {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .hero__glow {
    width: 90%;
    left: 50%;
  }

  .hero__features {
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-feature {
    padding: 1.25rem 1rem;
  }

  .about,
  .services,
  .process,
  .cta {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .section-desc {
    font-size: 1rem;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .about__content {
    max-width: none;
  }

  .about__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .about__visual {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .section-header .section-label {
    justify-content: flex-start;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
  }

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

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 184, 0, 0.18);
  }

  .service-card:last-child {
    border-bottom: none;
  }

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

  .cta__panel {
    padding: 2rem 1.5rem;
  }

  .cta__panel .btn--hero {
    align-self: stretch;
    width: 100%;
  }

  .footer__main {
    padding: 3rem 0 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__brand {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer__desc {
    max-width: none;
  }

  .footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__links,
  .footer__contact {
    align-items: center;
  }

  .footer__bottom-inner {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero__main {
    gap: 1.25rem;
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: 1.25rem;
  }

  .hero__title {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
  }

  .hero__label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero__desc {
    font-size: 0.95rem;
  }

  .hero__glow {
    width: 80%;
  }

  .about,
  .services,
  .process,
  .cta {
    padding: 2.75rem 0;
  }

  .glass-card--accent {
    padding: 1.75rem 1.25rem;
  }

  .glass-card__headline {
    font-size: 1.05rem;
  }

  .cta__panel {
    padding: 1.75rem 1.25rem;
  }

  .contact-list a {
    font-size: 0.85rem;
  }
}
