/* ===================================================
   SZÉCHENYI HITELEK 2026 – Global Styles
   Mobile-first | Plus Jakarta Sans | Navy + Gold
   =================================================== */

/* === ROOT VARIABLES === */
:root {
  --primary: #0b1f4a;
  --primary-light: #163069;
  --secondary: #1d4ed8;
  --secondary-light: #3b82f6;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --success: #10b981;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --text-light: #64748b;

  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.1),  0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: .15s ease;

  --nav-h: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

.section      { padding: 4.5rem 0; }
.section-sm   { padding: 3rem 0; }
@media (min-width: 768px) {
  .section    { padding: 6rem 0; }
  .section-sm { padding: 3.5rem 0; }
}

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.15; letter-spacing: -.025em; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); margin-bottom: .875rem;
}
.section-label::before {
  content: ''; display: block;
  width: 18px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.section-title {
  font-size: clamp(1.65rem, 4.5vw, 2.8rem);
  color: var(--primary); margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--secondary); }
.section-desc {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 580px; line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: .875rem 1.75rem; border-radius: 50px;
  font-size: .92rem; font-weight: 700; font-family: var(--font);
  transition: all var(--transition); cursor: pointer; white-space: nowrap;
  border: 2px solid transparent;
}
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(29,78,216,.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(29,78,216,.5); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(245,158,11,.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,158,11,.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(29,78,216,.08);
  color: var(--secondary);
  border-color: rgba(29,78,216,.15);
}
.btn-ghost:hover { background: rgba(29,78,216,.14); transform: translateY(-2px); }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar:not(.scrolled) { background: transparent; }
.navbar.scrolled {
  background: rgba(11,31,74,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 2; }
.nav-logo-text {
  font-size: 1rem; font-weight: 800; color: var(--white);
  letter-spacing: -.03em; line-height: 1.1;
}
.nav-logo-text small {
  display: block; font-size: .65rem; font-weight: 500;
  opacity: .65; letter-spacing: .04em; text-transform: uppercase;
}

/* Desktop nav links */
.nav-links { display: none; align-items: center; gap: .25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links > li > a,
.nav-links .dropdown-toggle {
  color: rgba(255,255,255,.82); font-size: .875rem; font-weight: 600;
  padding: .5rem .75rem; border-radius: 8px;
  transition: all var(--transition-fast); display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.nav-links > li > a:hover,
.nav-links .dropdown-toggle:hover {
  color: var(--white); background: rgba(255,255,255,.1);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-xl); min-width: 252px;
  padding: .5rem; opacity: 0; pointer-events: none;
  transition: all var(--transition); z-index: 200;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: .6rem .875rem; color: var(--text);
  font-size: .845rem; font-weight: 600; border-radius: 8px;
  transition: all var(--transition-fast);
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--secondary); }
.menu-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.dropdown-caret { transition: transform var(--transition-fast); }
.dropdown:hover .dropdown-caret { transform: rotate(180deg); }

/* Nav CTA */
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--primary);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2.5rem;
  transform: translateX(100%); transition: transform var(--transition);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-links { display: flex; flex-direction: column; flex: 1; }
.mobile-nav-links li a {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,.85); font-size: 1.15rem; font-weight: 700;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition-fast);
}
.mobile-nav-links li a:hover { color: var(--accent); }
.mobile-products-label {
  display: block;
  color: rgba(255,255,255,.45); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 1rem 0 .4rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-sub { display: block; padding: .25rem 0 .75rem 1rem; }
.mobile-sub li a {
  font-size: .95rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: .75rem 0;
}
.mobile-nav-footer { padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* === HERO === */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,74,.93) 0%,
    rgba(11,31,74,.78) 55%,
    rgba(29,78,216,.35) 100%
  );
}
/* Animated grid pattern on hero */
.hero-grid {
  position: absolute; inset: 0; opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift { 0% { background-position: 0 0; } 100% { background-position: 60px 60px; } }

.hero-glow {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  padding-top: calc(var(--nav-h) + 5.5rem);
  padding-bottom: 5rem;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.18); border: 1px solid rgba(245,158,11,.45);
  color: var(--accent); padding: .4rem 1.1rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }

.hero-title {
  font-size: clamp(2.2rem, 7vw, 5rem);
  color: var(--white); font-weight: 800;
  line-height: 1.08; letter-spacing: -.04em;
  margin-bottom: 1.5rem;
}
.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--accent), #f9c74f);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(.95rem, 2.5vw, 1.18rem);
  color: rgba(255,255,255,.78); max-width: 560px;
  line-height: 1.75; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; }
.hero-stat-value {
  font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; display: block;
}
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 4px; display: block; }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 1;
}
.scroll-hint span { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; }
.scroll-hint-dot {
  width: 28px; height: 46px; border: 2px solid rgba(255,255,255,.25); border-radius: 14px;
  display: flex; align-items: flex-start; justify-content: center; padding: 6px;
}
.scroll-hint-dot::after {
  content: ''; width: 4px; height: 8px; border-radius: 2px;
  background: rgba(255,255,255,.5); animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0%,100% { opacity: 1; transform: translateY(0); } 50% { opacity: .3; transform: translateY(10px); } }

/* === PRODUCT CARDS (index hero products grid) === */
.products-section { background: var(--gray-50); }
.products-section .container { max-width: 1440px; }
.products-header { text-align: center; margin-bottom: 3rem; }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 580px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) {
  .products-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .products-grid .product-card-img { height: 160px; }
  .products-grid .product-card { min-height: 360px; }
  .products-grid .product-card-title { font-size: .98rem; }
  .products-grid .product-amount strong { font-size: 1.2rem; }
}

.product-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
  box-shadow: var(--shadow); transition: all var(--transition);
  display: flex; flex-direction: column; min-height: 420px;
  text-decoration: none; color: inherit;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.product-card-img {
  height: 210px; position: relative; overflow: hidden; flex-shrink: 0;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(11,31,74,.75) 100%);
}
.product-chip {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent); color: var(--primary);
  font-size: .66rem; font-weight: 800; padding: 4px 10px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: .05em;
}

.product-card-body {
  padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .75rem;
}
.product-cat {
  font-size: .72rem; font-weight: 700; color: var(--secondary);
  text-transform: uppercase; letter-spacing: .08em;
}
.product-card-title {
  font-size: 1.15rem; font-weight: 800; color: var(--primary); line-height: 1.25;
}
.product-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--gray-100); color: var(--text);
  font-size: .73rem; font-weight: 600; padding: 3px 9px; border-radius: 50px;
}
.chip.blue { background: rgba(29,78,216,.1); color: var(--secondary); }
.chip.gold { background: rgba(245,158,11,.12); color: #b45309; }

.product-card-footer {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
}
.product-amount { line-height: 1; }
.product-amount strong { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.product-amount small { display: block; font-size: .72rem; color: var(--text-light); margin-top: 2px; }
.card-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0; transition: transform var(--transition);
}
.product-card:hover .card-arrow { transform: translateX(5px); }

/* === WHY US === */
.why-section { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-features-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem;
}
@media (min-width: 480px) { .why-features-grid { grid-template-columns: 1fr 1fr; } }

.why-feature {
  display: flex; gap: 1rem; padding: 1.25rem; border-radius: var(--radius);
  background: var(--gray-50); border: 1px solid transparent;
  transition: all var(--transition);
}
.why-feature:hover { border-color: rgba(29,78,216,.2); background: rgba(29,78,216,.03); transform: translateY(-2px); }
.why-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0; color: var(--white);
}
.why-feature h4 { font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.why-feature p { font-size: .8rem; color: var(--text-light); line-height: 1.55; }

.why-visual { position: relative; }
.why-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.why-img img { width: 100%; height: 420px; object-fit: cover; }
.why-float {
  position: absolute; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: .875rem; animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.why-float.f1 { bottom: -1.5rem; left: -1.5rem; }
.why-float.f2 { top: 2.5rem; right: -1.5rem; animation-delay: 2s; }
@media (max-width: 1023px) { .why-float { display: none; } }
.float-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary);
}
.float-val { font-size: 1.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.float-lbl { font-size: .72rem; color: var(--text-light); }

/* === STATS BAR === */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem 0; position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; position: relative;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1;
}
.stat-num em { font-style: normal; color: var(--accent); }
.stat-lbl { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .5rem; }

/* === PROCESS === */
.process-section { background: var(--gray-50); }
.process-header { text-align: center; margin-bottom: 3.5rem; }
.process-steps {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative;
}
@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .process-steps::before {
    content: ''; position: absolute; top: 34px;
    left: calc(12.5% + 18px); right: calc(12.5% + 18px);
    height: 2px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    z-index: 0;
  }
}
.step { position: relative; z-index: 1; text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white); font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 28px rgba(29,78,216,.35);
  border: 4px solid var(--gray-50);
}
.step h3 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: .4rem; }
.step p { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

/* === PARTNERS === */
.partners-section { background: var(--white); padding: 3.5rem 0; }
.partners-label {
  text-align: center; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--gray-400); margin-bottom: 2rem;
}
.partners-logos {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1.75rem 2.75rem;
}
.partner-logo {
  height: 32px; width: auto; object-fit: contain;
  opacity: .4; filter: grayscale(100%);
  transition: all var(--transition); cursor: pointer;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }

/* === TEAM === */
.team-section { background: var(--gray-50); }
.team-header { text-align: center; margin-bottom: 3rem; }
.team-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 760px; margin: 0 auto;
}
@media (min-width: 580px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); transition: all var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; color: var(--white);
  margin: 0 auto 1.1rem; border: 4px solid var(--gray-100);
}
.team-name { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: .25rem; }
.team-role { font-size: .78rem; color: var(--text-light); margin-bottom: 1.4rem; text-transform: uppercase; letter-spacing: .06em; }
.team-contacts { display: flex; flex-direction: column; gap: .5rem; }
.team-link {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: .65rem; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; color: var(--text);
  transition: all var(--transition-fast); text-decoration: none;
}
.team-link:hover { background: var(--gray-50); color: var(--secondary); }
.team-link-icon { font-size: 1rem; }

/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.contact-section .section-label,
.contact-section .section-title,
.contact-section .section-desc { color: var(--white); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-desc { opacity: .78; }

.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  margin-top: 3rem; position: relative;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.6fr; } }

.contact-info { color: var(--white); }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); backdrop-filter: blur(8px);
  text-decoration: none; color: var(--white); transition: background var(--transition);
}
.contact-item:hover { background: rgba(255,255,255,.14); }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--primary);
}
.contact-item-info label { display: block; font-size: .7rem; opacity: .6; margin-bottom: 2px; }
.contact-item-info strong { font-size: .95rem; font-weight: 700; }

/* === FORM === */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-xl);
}
.form-head { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.span2 { grid-column: 1 / -1; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .9rem; color: var(--text);
  background: var(--gray-50); transition: border-color var(--transition-fast), background var(--transition-fast);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--secondary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-honeypot { display: none !important; }

.form-check { display: flex; align-items: flex-start; gap: 10px; grid-column: 1 / -1; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--secondary); }
.form-check label { font-size: .8rem; color: var(--text-light); line-height: 1.5; }
.form-check a { color: var(--secondary); text-decoration: underline; }

.form-btn { grid-column: 1 / -1; margin-top: .5rem; }
.form-btn .btn { width: 100%; }

.form-msg {
  display: none; grid-column: 1 / -1;
  padding: .875rem 1.25rem; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; text-align: center;
}
.form-msg.success { background: rgba(16,185,129,.1); color: #065f46; border: 1px solid rgba(16,185,129,.3); }
.form-msg.error   { background: rgba(239,68,68,.08); color: #7f1d1d; border: 1px solid rgba(239,68,68,.25); }

/* === FOOTER === */
footer {
  background: #060e1e; color: rgba(255,255,255,.65);
  padding: 4.5rem 0 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 960px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-brand-logo span { font-size: .95rem; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: .845rem; line-height: 1.75; max-width: 310px; }

.footer-col h4 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--white); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .845rem; transition: color var(--transition-fast); }
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem; display: flex;
  flex-direction: column; align-items: center; gap: .5rem;
  font-size: .78rem; text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom a:hover { color: var(--accent); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(11,31,74,.97); backdrop-filter: blur(20px);
  border-top: 2px solid rgba(245,158,11,.4);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto; padding: 1.25rem 2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner-inner p {
  flex: 1; min-width: 220px;
  color: rgba(255,255,255,.8); font-size: .875rem; line-height: 1.6;
}
.cookie-banner-inner a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: .75rem; align-items: center; flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-banner-inner { padding: 1.25rem; }
  .cookie-btns { width: 100%; }
  .cookie-btns .btn { flex: 1; }
}

/* ==========================================
   PRODUCT SUBPAGE STYLES
   ========================================== */

/* Product hero */
.product-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: flex-end; padding-bottom: 4.5rem; overflow: hidden;
}
.product-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.product-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,74,.97) 0%, rgba(11,31,74,.55) 60%, rgba(11,31,74,.25) 100%);
}
.product-hero-content { position: relative; z-index: 1; padding-top: calc(var(--nav-h) + 2rem); }

.product-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem;
}
.product-breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition-fast); }
.product-breadcrumb a:hover { color: var(--white); }
.product-breadcrumb span { color: rgba(255,255,255,.3); }

.product-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.18); border: 1px solid rgba(245,158,11,.4);
  color: var(--accent); padding: .35rem 1.1rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 1.1rem;
}
.product-hero-title {
  font-size: clamp(1.8rem, 5.5vw, 3.5rem); color: var(--white);
  font-weight: 800; margin-bottom: 1.1rem; line-height: 1.12;
}
.product-hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  max-width: 580px; line-height: 1.75; margin-bottom: 2.5rem;
}
.product-metrics {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
}
.metric-box {
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  padding: 1.1rem 1.6rem; text-align: center; min-width: 130px;
}
.metric-val { font-size: 1.7rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.metric-lbl { font-size: .72rem; color: rgba(255,255,255,.65); }

/* Product detail sections */
.prod-detail-section { background: var(--white); }
.detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem;
}
@media (min-width: 768px) { .detail-grid { grid-template-columns: 1fr 1fr; } }

.detail-card {
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 2rem;
}
.detail-card-head {
  font-size: 1rem; font-weight: 800; color: var(--primary);
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: 10px;
}
.detail-list { display: flex; flex-direction: column; gap: .75rem; }
.detail-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--text); line-height: 1.55;
}
.detail-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; color: var(--white); font-size: .65rem; font-weight: 900;
}

/* Benefits */
.benefits-section { background: var(--gray-50); }
.benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem;
}
@media (min-width: 580px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.benefit-card:hover { border-color: rgba(29,78,216,.25); box-shadow: var(--shadow); transform: translateY(-3px); }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; }
.benefit-card h3 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.benefit-card p { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl); padding: 3rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) {
  .cta-banner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-banner::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-banner h2 { font-size: 1.4rem; color: var(--white); font-weight: 800; max-width: 460px; line-height: 1.3; position: relative; }
.cta-banner p { font-size: .875rem; color: rgba(255,255,255,.75); margin-top: .5rem; }
.cta-banner-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; position: relative; }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .18s; }
.fade-up:nth-child(4) { transition-delay: .26s; }
.fade-up:nth-child(5) { transition-delay: .34s; }
.fade-up:nth-child(6) { transition-delay: .42s; }
