/* VANGUARD FURNISHINGS LLC — Home page styles */

:root {
  --brand-primary: #5b4dff;
  --brand-secondary: #7c3aed;
  --brand-accent: #22d3ee;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --bg-dark: #0b0f1a;
  --bg-card: #ffffff;
  --hero-overlay: rgba(11, 15, 26, 0.72);
  --radius: 12px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

/* —— Navbar —— */
.site-nav {
  transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: rgba(11, 15, 26, 0.95) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
}

.brand-lockup:hover {
  color: #fff;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(91, 77, 255, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.brand-lockup:hover .brand-logo {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

.brand-logo--footer {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.brand-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand-text span {
  color: var(--brand-accent);
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-accent) !important;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 5rem;
  background-color: var(--bg-dark);
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--hero-overlay) 0%,
    rgba(91, 77, 255, 0.35) 50%,
    rgba(11, 15, 26, 0.88) 100%
  );
  z-index: 0;
}

.hero-anim-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: hero-orb-float 14s ease-in-out infinite;
}

.hero-orb--1 {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -5%;
  background: rgba(91, 77, 255, 0.5);
}

.hero-orb--2 {
  width: 280px;
  height: 280px;
  top: 35%;
  right: -8%;
  background: rgba(34, 211, 238, 0.35);
  animation-delay: -4s;
}

.hero-orb--3 {
  width: 220px;
  height: 220px;
  bottom: 15%;
  left: 30%;
  background: rgba(124, 58, 237, 0.4);
  animation-delay: -8s;
}

@keyframes hero-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(24px, -18px) scale(1.08);
  }
}

.hero-float {
  position: absolute;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  animation: hero-icon-float 6s ease-in-out infinite;
}

.hero-float--1 { top: 18%; left: 12%; animation-delay: 0s; }
.hero-float--2 { top: 22%; right: 14%; animation-delay: -1.5s; }
.hero-float--3 { bottom: 28%; left: 8%; animation-delay: -3s; }
.hero-float--4 { bottom: 32%; right: 10%; animation-delay: -4.5s; }

@keyframes hero-icon-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

.hero-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}

.hero-banner-viewport {
  position: relative;
  height: clamp(160px, 22vw, 220px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.hero-banner-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.hero-banner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.hero-banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 14px,
    rgba(255, 255, 255, 0.03) 14px,
    rgba(255, 255, 255, 0.03) 15px
  );
  animation: hero-shine 8s linear infinite;
}

@keyframes hero-shine {
  to {
    background-position: 200px 0;
  }
}

.hero-banner-card i {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  animation: hero-card-pulse 3s ease-in-out infinite;
}

.hero-banner-card strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  position: relative;
  z-index: 1;
}

.hero-banner-card span {
  font-size: 0.9rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

@keyframes hero-card-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.hero-banner-card--app {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 45%, #0891b2 100%);
}

.hero-banner-card--biz {
  background: linear-gradient(135deg, #312e81 0%, #5b4dff 50%, #7c3aed 100%);
}

.hero-banner-card--game {
  background: linear-gradient(135deg, #831843 0%, #be185d 45%, #7c3aed 100%);
}

.hero-banner-card--tech {
  background: linear-gradient(135deg, #0f766e 0%, #059669 45%, #22d3ee 100%);
}

.hero-banner-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-banner-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-banner-dots button.is-active {
  background: var(--brand-accent);
  transform: scale(1.25);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-accent);
  border: 1px solid rgba(34, 211, 238, 0.4);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91, 77, 255, 0.45);
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.75rem;
  border-radius: 999px;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 3rem;
}

/* —— About —— */
.about-section {
  padding: 0;
  background: #f8fafc;
  overflow: hidden;
}

.about-hero-band {
  position: relative;
  padding: 6rem 0 5rem;
  text-align: center;
  background-color: #0b0f1a;
  background-image: url("../img/about-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 15, 26, 0.88) 0%,
    rgba(30, 27, 75, 0.82) 45%,
    rgba(49, 46, 129, 0.78) 100%
  );
  z-index: 0;
}

.about-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91, 77, 255, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(34, 211, 238, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.about-eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.about-headline {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42rem;
  margin: 0 auto;
}

.about-lead--second {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
}

.btn-about-more {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-about-more:hover {
  color: #fff;
  background: rgba(91, 77, 255, 0.45);
  border-color: var(--brand-accent);
  transform: translateY(-2px);
}

.about-body {
  padding: 0 0 5rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.about-stats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 2rem;
  margin-bottom: 3.5rem;
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(91, 77, 255, 0.1);
}

.about-stat-item {
  flex: 1 1 160px;
  text-align: center;
  padding: 0.5rem 1.25rem;
}

.about-stat-item strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.35rem;
}

.about-stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-stat-divider {
  width: 1px;
  align-self: stretch;
  min-height: 48px;
  background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
}

.about-pillars {
  margin-top: 0;
}

.about-pillar {
  height: 100%;
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(91, 77, 255, 0.12);
  border-color: rgba(91, 77, 255, 0.2);
}

.about-pillar-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 14px;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 10px 28px rgba(91, 77, 255, 0.3);
}

.about-pillar h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.about-pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* —— Product showcase —— */
.products-block {
  margin-bottom: 3.5rem;
}

.products-block:last-child {
  margin-bottom: 0;
}

.products-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.products-block-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(91, 77, 255, 0.25);
}

.products-block-icon--game {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.products-block-icon--app {
  background: linear-gradient(135deg, #2563eb, #22d3ee);
}

.products-block-header h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}

.products-block-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.product-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  position: relative;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.18);
}

.product-card:hover::after {
  border-color: rgba(91, 77, 255, 0.2);
}

.product-card-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-visual--game {
  background: linear-gradient(160deg, #1e1b4b 0%, #4c1d95 45%, #831843 100%);
}

.product-card-visual--app {
  background: linear-gradient(160deg, #0c4a6e 0%, #1d4ed8 45%, #0891b2 100%);
}

.product-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(34, 211, 238, 0.15) 0%, transparent 35%);
}

.product-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.5) 8px,
    rgba(255, 255, 255, 0.5) 9px
  );
}

.product-icon-wrap {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform var(--transition);
}

.product-card:hover .product-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
}

.product-icon-wrap i {
  font-size: 2.5rem;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.product-icon-ring {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.product-card-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
}

.product-card-glow--game { background: #ec4899; top: 20%; left: 30%; }
.product-card-glow--app { background: #22d3ee; bottom: 20%; right: 25%; }

.product-card .card-body {
  padding: 1.5rem;
}

.product-card .card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-tag--game {
  background: linear-gradient(135deg, var(--brand-primary), #a855f7);
  color: #fff;
}

.product-tag--app {
  background: linear-gradient(135deg, #2563eb, var(--brand-accent));
  color: #fff;
}

.product-platform {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: #f1f5f9;
  color: var(--text-muted);
  border: 1px solid #e2e8f0;
}

.product-card .card-text {
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.footer-brand-row .brand-text {
  font-size: 1.25rem;
  color: #fff;
}

/* —— Features (Core Strengths) —— */
.section-features {
  position: relative;
  background-color: #0f172a;
  background-image: url("../img/features-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.section-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.85) 50%,
    rgba(11, 15, 26, 0.9) 100%
  );
  z-index: 0;
}

.section-features .container {
  position: relative;
  z-index: 1;
}

.section-features .section-title {
  color: #fff;
}

.section-features .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.feature-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  height: 100%;
  text-align: center;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* —— Footer —— */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.site-footer .brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.25rem;
}

@media (max-width: 991.98px) {
  .about-stat-divider {
    display: none;
  }

  .about-stats-bar {
    gap: 1.5rem;
    padding: 2rem 1.25rem;
  }

  .about-stat-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 575.98px) {
  .about-hero-band {
    padding: 5rem 0 4rem;
  }

  .about-stats-bar {
    flex-direction: column;
    gap: 1.75rem;
  }

  .about-stat-item {
    flex: 1 1 100%;
  }

  .products-block-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--brand-accent);
}

.footer-heading {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-heading--plain {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.footer-main-row {
  align-items: flex-start;
}

.footer-nav-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem 2.5rem;
}

.footer-nav-col {
  flex: 0 1 auto;
  min-width: 128px;
}

.footer-nav-col--contact {
  flex: 1 1 220px;
  max-width: 300px;
}

.footer-links--muted a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links--muted a:hover {
  color: var(--brand-accent);
}

@media (min-width: 992px) {
  .footer-nav-group {
    justify-content: space-between;
    gap: 2rem clamp(2.25rem, 5vw, 4.75rem);
    padding-left: 0.5rem;
  }

  .footer-brand-col {
    padding-right: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .footer-nav-group {
    padding-left: 2rem;
    max-width: 820px;
    margin-left: auto;
  }
}

@media (max-width: 575.98px) {
  .footer-nav-group {
    gap: 1.75rem 2rem;
  }

  .footer-nav-col {
    flex: 1 1 40%;
    min-width: 140px;
  }

  .footer-nav-col--contact {
    flex: 1 1 100%;
    max-width: none;
  }
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.footer-contact-item i {
  color: var(--brand-accent);
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
}

.footer-legal-bar {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.footer-legal-bar a {
  margin: 0 0.35rem;
}

.footer-legal-bar a:first-of-type {
  margin-left: 0;
}

.footer-google-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 0.5rem;
  transition: background var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff !important;
}

/* —— Cookie consent (Google / GDPR aligned) —— */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  padding: 1rem;
  transform: translateY(110%);
  transition: transform var(--transition);
}

.cookie-consent.is-visible {
  transform: translateY(0);
}

.cookie-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.2);
  border: 1px solid #e2e8f0;
}

.cookie-consent h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.cookie-consent p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-consent-actions .btn {
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
}

.btn-cookie-accept {
  background: var(--brand-primary);
  color: #fff;
  border: none;
}

.btn-cookie-accept:hover {
  background: var(--brand-secondary);
  color: #fff;
}

.btn-cookie-reject {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: var(--text-primary);
}

.btn-cookie-settings {
  background: transparent;
  border: none;
  color: var(--brand-primary);
  text-decoration: underline;
}

.cookie-settings-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.cookie-settings-panel.is-open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.cookie-toggle-row small {
  display: block;
  color: var(--text-muted);
  font-weight: 400;
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Responsive —— */
@media (max-width: 991.98px) {
  .hero {
    background-attachment: scroll;
    min-height: 90vh;
  }

  .about-hero-band,
  .section-features {
    background-attachment: scroll;
  }

  .hero-float {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .hero-float--1 { left: 4%; }
  .hero-float--2 { right: 4%; }
  .hero-float--3,
  .hero-float--4 {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-banner {
    margin-bottom: 1.75rem;
  }

  .hero-float {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .hero .btn + .btn {
    margin-left: 0 !important;
  }
}
