/**
 * Pro2-4You — Main Stylesheet
 * Converted from React/Tailwind design system
 */

/* ── CSS Variables ── */
:root {
  --background: hsl(45, 22%, 97%);
  --foreground: hsl(215, 26%, 7%);
  --dark: hsl(215, 26%, 7%);
  --primary: hsl(350, 79%, 44%);
  --primary-dark: hsl(350, 84%, 35%);
  --primary-foreground: #fff;
  --secondary: hsl(210, 73%, 41%);
  --muted-foreground: hsl(218, 14%, 34%);
  --border: hsl(220, 13%, 91%);
  --radius: 1.25rem;
  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-ui: 'Montserrat', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-card-hover: 0 18px 40px rgba(0, 0, 0, 0.14);
  --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.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;
}

/* ── Layout ── */
.container-max {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 4rem 0;
}

.section-pad-sm {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 6rem 0;
  }
}

@media (min-width: 768px) {
  .section-pad-sm {
    padding: 4rem 0;
  }
}

.bg-background {
  background: var(--background);
}

.bg-white {
  background: #fff;
}

.bg-dark {
  background: var(--dark);
  color: #fff;
}

/* ── Typography ── */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.14em;
}

.heading-underline {
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--primary);
}

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

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

.text-muted {
  color: var(--muted-foreground);
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn-primary,
.btn-outline-red,
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0.75rem;
  padding: 1rem 2.25rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  transform: scale(1.03);
  background: var(--primary-dark);
}

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

.btn-outline-red:hover {
  transform: scale(1.03);
  background: var(--primary);
  color: #fff;
}

.btn-outline-white {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  transform: scale(1.03);
  background: #fff;
  color: var(--dark);
}

.btn-nav-cta {
  border-radius: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}

.btn-nav-cta:hover {
  transform: scale(1.03);
  background: var(--primary-dark);
}

.w-full {
  width: 100%;
}

/* ── Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 120px;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: var(--shadow-nav);
}

.site-header .container-max {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo img {
  height: 6rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.site-logo:hover img {
  transform: scale(1.03);
}

@media (min-width: 640px) {
  .site-logo img {
    height: 7rem;
  }
}

@media (min-width: 1024px) {
  .site-logo img {
    height: 9rem;
  }
}

.pro24u-nav-desktop {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 1024px) {
  .pro24u-nav-desktop {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--foreground);
  transition: color 0.2s;
}

.site-header:not(.is-scrolled) .nav-link {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--primary);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
  }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-header:not(.is-scrolled) .nav-phone {
  color: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .nav-phone {
  color: var(--muted-foreground);
}

.nav-phone:hover {
  color: var(--primary);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--dark);
}

.site-header:not(.is-scrolled) .menu-toggle {
  color: #fff;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  flex-direction: column;
  background: var(--dark);
  color: #fff;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu .container-max {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.mobile-menu-footer {
  padding-bottom: 2.5rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero--home .hero__content {
  padding-top: 10.5rem;
}

@media (min-width: 768px) {
  .hero--home .hero__content {
    padding-top: 8.5rem;
  }
}

@media (min-width: 1024px) {
  .hero--home .hero__content {
    padding-top: 7.5rem;
  }
}

.hero--home .hero__eyebrow {
  margin-bottom: 2rem;
}

.hero--home .hero__eyebrow .eyebrow {
  font-size: 1.125rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero--home .hero__eyebrow .eyebrow {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .hero--home .hero__eyebrow .eyebrow {
    font-size: 1.5rem;
  }
}

.hero--home .hero__title {
  font-size: 58px;
}

@media (min-width: 768px) {
  .hero--home .hero__title {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero--home .hero__title {
    font-size: 6.25rem;
  }
}

.hero--home .hero__sub {
  max-width: 560px;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .hero--home .hero__sub {
    font-size: 1.25rem;
  }
}

.hero--inner {
  min-height: 560px;
}

.hero--ttpage {
  min-height: 680px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__overlay--home {
  background: linear-gradient(135deg, hsla(215, 26%, 7%, 0.92) 0%, hsla(215, 26%, 7%, 0.70) 50%, hsla(215, 26%, 7%, 0.40) 100%);
}

.hero__overlay--about {
  background: linear-gradient(135deg, hsla(215, 26%, 7%, 0.95) 0%, hsla(215, 26%, 7%, 0.82) 60%, hsla(350, 79%, 30%, 0.55) 100%);
}

.hero__overlay--ttpage {
  background: linear-gradient(135deg, hsla(215, 26%, 7%, 0.94) 0%, hsla(350, 79%, 20%, 0.78) 55%, hsla(215, 26%, 7%, 0.55) 100%);
}

.hero__stripes {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: repeating-linear-gradient(0deg, #fff 0 2px, transparent 2px 18px);
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .hero__content {
    padding-top: 6rem;
    padding-bottom: 0;
  }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__eyebrow-line {
  width: 1.5rem;
  height: 2px;
  background: var(--primary);
}

.hero__title {
  font-size: 52px;
  color: #fff;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 5.5rem;
  }
}

.hero__title--ttpage {
  font-size: 44px;
}

@media (min-width: 768px) {
  .hero__title--ttpage {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero__title--ttpage {
    font-size: 5rem;
  }
}

.hero__title .accent {
  display: block;
  color: var(--primary);
}

.hero__sub {
  margin-top: 1.5rem;
  max-width: 520px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero__sub {
    font-size: 1.125rem;
    max-width: 600px;
  }
}

.hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__ctas {
    flex-direction: row;
  }
}

.hero__stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
}

@media (min-width: 768px) {
  .hero__stat-num {
    font-size: 3rem;
  }
}

.hero__stat-label {
  margin-top: 0.25rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.hero__stat-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 1.5rem;
}

.hero__divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 4px;
  background: var(--primary);
}

/* ── Marquee ── */
.marquee {
  height: 3.5rem;
  overflow: hidden;
  background: var(--dark);
}

.marquee__track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee__row {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  flex-shrink: 0;
}

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

.marquee__star {
  color: var(--primary);
  font-size: 1rem;
}

.marquee__text {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ── Two-column sections ── */
.grid-2 {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.grid-2--5-3 {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .grid-2--5-3 {
    grid-template-columns: 2fr 3fr;
    gap: 5rem;
  }
}

.grid-2--3-2 {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2--3-2 {
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
  }
}

.section-heading {
  font-size: 2.25rem;
  color: var(--dark);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-heading {
    font-size: 3.25rem;
  }
}

.section-heading--lg {
  font-size: 2.25rem;
}

@media (min-width: 1024px) {
  .section-heading--lg {
    font-size: 3.5rem;
  }
}

.section-body {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.section-body+.section-body {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .section-body {
    font-size: 17px;
  }
}

/* Image blocks */
.img-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-card--square {
  aspect-ratio: 1;
}

.img-card--43 {
  aspect-ratio: 4/3;
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem 1rem 1rem;
  box-shadow: var(--shadow-float);
}

.float-badge--bl {
  bottom: -1.25rem;
  left: -1rem;
}

.float-badge--br {
  bottom: -1.25rem;
  right: -0.5rem;
}

@media (min-width: 768px) {
  .float-badge--br {
    right: -1.5rem;
  }
}

.float-badge__title {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.float-badge__sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Feature list inline */
.feature-list {
  margin-top: 2rem;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.feature-list__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
}

.feature-list__icon--lg {
  width: 2.5rem;
  height: 2.5rem;
}

.feature-list__title {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.feature-list__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .cards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .cards-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.card--center {
  padding: 2rem;
  text-align: center;
}

.card__icon-wrap {
  margin: 0 auto;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  transition: background 0.2s;
}

.card:hover .card__icon-wrap {
  background: var(--primary);
}
.card:hover .collection-cta__text strong{
	color:var(--primary);
}
.card__title {
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
}

.card__desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.collection-cta .card {
  border-left: 0.5rem solid var(--primary);
}

.collection-cta__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

.collection-cta .card__icon-wrap {
  margin: 0;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  min-height: 4rem;
  background: var(--secondary);
  flex-shrink: 0;
}

.collection-cta__text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark);
}

.collection-cta__text strong {
  font-weight: 700;
}

/* Category card */
.cat-card {
  overflow: hidden;
}

.cat-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.cat-card__img-wrap img,
.cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.cat-card__img--center {
  object-position: center center;
}

.cat-card__img--top {
  object-position: center top;
}

.cat-card__img--mantle {
  object-position: center 42%;
}

.cat-card:hover .cat-card__img-wrap img {
  transform: scale(1.05);
}

.cat-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
}

.cat-card__badge-tri {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 48px solid transparent;
  border-bottom: 48px solid var(--primary);
}

.cat-card__badge-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  color: #fff;
}

.cat-card__body {
  padding: 1.5rem;
}

.cat-card__title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.cat-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: transform 0.2s;
}

.cat-card:hover .cat-card__link {
  transform: translateX(4px);
}

/* Tactical Traps dark section */
.tt-section .section-heading {
  color: #fff;
}

.tt-section .section-body {
  color: rgba(255, 255, 255, 0.75);
}

.tt-image-stack {
  position: relative;
}

.tt-image-stack .img-card--main {
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-float);
}

.tt-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  width: 40%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-float);
}

@media (min-width: 768px) {
  .tt-image-accent {
    right: -1.5rem;
  }
}

.tt-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.tt-tag {
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: hsla(350, 79%, 44%, 0.15);
}

/* Featured product badge */
.fp-badge {
  display: inline-block;
  margin-left: 0.75rem;
  vertical-align: middle;
  border-radius: 0.375rem;
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 0.625rem;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 8rem 0;
  }
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(hsla(215, 26%, 7%, 0.88), hsla(215, 26%, 7%, 0.88));
}

.cta-banner__content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-banner__title {
  font-size: 3rem;
  color: #fff;
}

@media (min-width: 768px) {
  .cta-banner__title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .cta-banner__title {
    font-size: 4.5rem;
  }
}

.cta-banner__sub {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-banner__sub {
    font-size: 1.125rem;
  }
}

.cta-banner__btns {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-banner__btns {
    flex-direction: row;
  }
}

.qr_code {
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
}

.qr_code img {
  display: block;
  width: 12rem;
  height: auto;
  border-radius: 1rem;
}

.qr_code p {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.cta-banner__contact {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 640px) {
  .cta-banner__contact {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
}

.cta-banner__contact a:hover {
  color: #fff;
}

.cta-banner__dot {
  display: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
  .cta-banner__dot {
    display: block;
  }
}

.cta-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Callout box */
.callout-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-float);
}

@media (min-width: 768px) {
  .callout-box {
    padding: 3rem;
  }
}

.callout-box__stripes {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(0deg, #fff 0 2px, transparent 2px 18px);
}

.callout-box__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .callout-box__inner {
    flex-direction: row;
    align-items: center;
  }
}

.callout-box__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
}

/* Disclosure box */
.disclosure-box {
  margin-top: 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--dark);
}

/* Features strip */
.features-strip {
  padding: 3.5rem 0;
  background: #fff;
}

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

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

.features-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features-strip__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
}

.features-strip__label {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: 0.1em;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 5fr 3fr 2fr 2fr;
  }
}

.footer-tagline {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-stripe {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-stripe span {
  height: 4px;
  width: 1.75rem;
}

.footer-stripe .red {
  background: var(--primary);
}

.footer-stripe .white {
  background: #fff;
}

.footer-stripe .blue {
  background: var(--secondary);
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

.footer-links {
  margin-top: 1.25rem;
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-badge-text {
  font-size: 13px;
  color: var(--primary);
}

/* Contact links in about team */
.contact-links {
  margin-top: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--dark);
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-link__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
}

/* ── Animations ── */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes wordIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes navDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.animate-nav-down {
  animation: navDown 0.5s ease-out both;
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out both;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out both;
}

.word-in {
  display: inline-block;
  opacity: 0;
  animation: wordIn 0.6s ease-out forwards;
  margin-right: 0.75rem;
}

.word-in--accent {
  color: var(--primary);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.menu-close {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #fff;
}

/* Utility spacing */
.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.gap-3 {
  gap: 0.75rem;
}

.gap-6 {
  gap: 1.5rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.rounded-full {
  border-radius: 9999px;
}

.bg-white {
  background: #fff;
}

.text-center {
  text-align: center;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-680 {
  max-width: 680px;
}

.max-w-760 {
  max-width: 760px;
}

.pb-16 {
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .pb-16-md {
    padding-bottom: 6rem;
  }
}

.relative {
  position: relative;
}

.min-h-screen {
  min-height: 100vh;
}

/* ── Contact Page ── */
.hero__overlay--contact {
  background: linear-gradient(135deg, hsla(215, 26%, 7%, 0.94) 0%, hsla(350, 79%, 25%, 0.65) 55%, hsla(215, 26%, 7%, 0.88) 100%);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.contact-form-wrap {
  max-width: 100%;
}

.contact-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.contact-notice.is-success {
  background: hsla(145, 60%, 40%, 0.12);
  border: 1px solid hsla(145, 60%, 40%, 0.35);
  color: hsl(145, 50%, 28%);
}

.contact-notice.is-error {
  background: hsla(350, 79%, 44%, 0.1);
  border: 1px solid hsla(350, 79%, 44%, 0.35);
  color: hsl(350, 70%, 35%);
}

.contact-form {
  margin-top: 2rem;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-form__row {
  margin-bottom: 1.25rem;
}

.contact-form__row--2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .contact-form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
}

.contact-form__label .required {
  color: var(--primary);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(350, 79%, 44%, 0.15);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit {
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .contact-form__submit {
    width: auto;
  }
}

.contact-sidebar__card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-float);
}

@media (min-width: 768px) {
  .contact-sidebar__card {
    padding: 2.5rem;
  }
}

.contact-sidebar__heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
}

.contact-sidebar__text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.contact-sidebar__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(350, 79%, 44%, 0.2);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-info-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-list__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
}

.contact-info-list__title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.contact-info-list__link,
.contact-info-list__text {
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  color: #fff;
}

.contact-info-list__link {
  transition: color 0.2s;
}

.contact-info-list__link:hover {
  color: var(--primary);
}

.contact-sidebar__stripe {
  display: flex;
  gap: 0.375rem;
  margin-top: 1.25rem;
}

.contact-sidebar__stripe span {
  height: 4px;
  flex: 1;
  border-radius: 2px;
}

.contact-sidebar__stripe .red {
  background: var(--primary);
  max-width: 2.5rem;
}

.contact-sidebar__stripe .white {
  background: #fff;
  max-width: 2.5rem;
}

.contact-sidebar__stripe .blue {
  background: var(--secondary);
  max-width: 2.5rem;
}

/* ── Contact page extended sections ── */
.contact-trust__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .contact-trust__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.contact-trust__card {
  background: var(--background);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.75rem;
  padding: 1.75rem;
  text-align: center;
}

.contact-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(178, 34, 34, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-trust__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-trust__desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-topics__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .contact-topics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.contact-topics__card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.contact-topics__icon {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.contact-topics__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.contact-topics__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.contact-faq__inner {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-faq__inner {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.contact-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-faq__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  list-style: none;
}

.contact-faq__question::-webkit-details-marker {
  display: none;
}

.contact-faq__chevron {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.25s;
  transform: rotate(90deg);
}

.contact-faq__item[open] .contact-faq__chevron {
  transform: rotate(-45deg);
}

.contact-faq__answer {
  padding: 0 0 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.contact-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.75));
}

.contact-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 42rem;
  margin: 0 auto;
}

.contact-cta__heading {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-cta__sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}