/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Noto+Sans:wght@400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --dark-bg: #0F1B2D;
  --navy: #1f3a5f;
  --blue: #0967c7;
  --sky-blue: #43b0f1;
  --ice-blue: #a5e2ff;
  --teal: #4fa8b1;
  --green: #88d191;
  --card-bg: #F4F8FC;
  --text-dark: #1A2B45;
  --text-mid: #4A5568;
  --text-light: #8896A6;
  --white: #FFFFFF;
  --warm-bg: #FAF8F5;
  --light-gray: #c5c8c8;
  --gray: #808080;
  --font-heading: 'DM Sans', 'Segoe UI', sans-serif;
  --font-body: 'Noto Sans', 'DM Sans', 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-dark: 0 4px 20px rgba(0,0,0,0.25);
  --navbar-h: 96px;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 58px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
p { line-height: 1.7; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px;
  transition: all var(--transition); cursor: pointer; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px rgba(9,103,199,0.3); }
.btn-primary:hover { background: #075bb5; box-shadow: 0 6px 30px rgba(9,103,199,0.5); transform: translateY(-2px); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-large { padding: 18px 40px; font-size: 18px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }
.btn-glow { box-shadow: 0 0 30px rgba(9,103,199,0.4); }
.btn-glow:hover { box-shadow: 0 0 50px rgba(9,103,199,0.6); }

/* === NAVIGATION === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0;
  background: transparent;
  transition: padding 0.3s ease;
}
.navbar.scrolled {
  padding: 8px 0;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.navbar-logo {
  display: flex; align-items: center;
  transition: opacity var(--transition);
}
.navbar-logo:hover { opacity: 0.85; }
.navbar-logo-img {
  height: 72px; width: auto; display: block;
  filter: none;
  transition: height 0.3s ease, filter 0.45s ease;
}
.navbar.scrolled .navbar-logo-img {
  height: 56px;
  filter: none;
}
.logo-icon { display: none; }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a {
  color: rgba(255,255,255,0.88); font-weight: 500; font-size: 15px;
  transition: color var(--transition); position: relative;
}
.navbar.scrolled .navbar-links a { color: var(--text-mid); }
.navbar-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: rgba(255,255,255,0.7); transition: width var(--transition);
}
.navbar.scrolled .navbar-links a::after { background: var(--blue); }
.navbar-links a:hover::after, .navbar-links a.active::after { width: 100%; }
.navbar-links a:hover { color: rgba(255,255,255,1); }
.navbar.scrolled .navbar-links a:hover { color: var(--blue); }
.navbar-cta {
  background: var(--blue) !important; color: var(--white) !important;
  padding: 10px 20px; border-radius: 8px; font-weight: 600 !important;
  transition: all var(--transition) !important;
}
.navbar-cta::after { display: none !important; }
.navbar-cta:hover { background: #075bb5 !important; transform: translateY(-1px); color: var(--white) !important; box-shadow: 0 4px 15px rgba(9,103,199,0.4); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.88); transition: all var(--transition); border-radius: 2px; }
.navbar.scrolled .mobile-menu-btn span { background: var(--navy); }
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-bg); z-index: 999;
  padding: 80px 24px 40px; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white); font-size: 22px; font-weight: 600;
  font-family: var(--font-heading); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); display: block;
}
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer;
}

/* === HERO DARK SECTIONS === */
.hero-dark {
  background-color: var(--dark-bg);
  background-image:
    linear-gradient(rgba(67,176,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,176,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  position: relative; overflow: hidden;
}
.hero-dark::before {
  content: ''; position: absolute; top: -40%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(9,103,199,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Smart City Background Illustration */
.hero-city-bg {
  position: absolute;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - var(--navbar-h));
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* HOME HERO */
.home-hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: var(--navbar-h); }
.home-hero > .container { position: relative; z-index: 1; min-width: 0; width: 100%; }

/* Pass pointer events through the entire hero overlay so SVG hotspots underneath are reachable.
   The container div (z-index:1) would otherwise absorb all events over the SVG (z-index:0). */
.home-hero > .container,
.home-hero-inner,
.hero-text,
.hero-visual,
.hero-text .hero-badge,
.hero-text .hero-headline,
.hero-text .hero-subheadline,
.hero-text .trust-bar,
.hero-text .trust-item { pointer-events: none; }

/* Restore pointer events only for interactive elements */
.hero-ctas,
.hero-ctas a,
.hero-ctas .btn,
.dashboard-mockup,
.dashboard-mockup * { pointer-events: auto; }
.home-hero-inner {
  display: grid; grid-template-columns: 55fr 45fr;
  gap: 48px; align-items: center; padding: 60px 0 40px;
  min-width: 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(9,103,199,0.15); border: 1px solid rgba(9,103,199,0.3);
  color: var(--sky-blue); padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-top: 130px; margin-bottom: 24px; font-family: var(--font-heading);
}
.hero-headline { font-size: clamp(20px, 3.8vw, 44px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 20px; overflow-wrap: break-word; hyphens: none; }
.hero-headline span { color: var(--sky-blue); }
.hero-subheadline { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.trust-bar { display: flex; gap: 24px; margin-top: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; overflow-wrap: break-word; min-width: 0; flex-shrink: 1; }
.trust-item i { color: var(--green); font-size: 12px; }

/* PAGE HERO (non-home) */
.page-hero { padding: var(--navbar-h) 0 28px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; overflow-wrap: break-word; hyphens: none; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; }
.page-hero .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.page-hero .hero-badge { margin-top: 0; }

/* LEGAL PAGE HERO – pages with static (position:relative) navbar */
.legal-page-hero { padding: 44px 0 28px; text-align: center; }
.legal-page-hero h1 { color: var(--white); margin-bottom: 12px; overflow-wrap: break-word; }
.legal-page-hero p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 600px; margin: 0 auto; }
.legal-page-hero .hero-badge { margin-bottom: 16px; }

/* Contact page hero – taller so background image is clearly visible */
.contact-page-hero { min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; }
@media (max-width: 767px) {
  .contact-page-hero { min-height: 220px; }
}

/* === DASHBOARD MOCKUP === */
.dashboard-mockup {
  background: rgba(31,58,95,0.6);
  border: 1px solid rgba(67,176,241,0.2);
  border-radius: 16px; padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 60px rgba(9,103,199,0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.dashboard-mockup:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.dashboard-mockup.qloud-active {
  box-shadow: 0 0 0 2px rgba(67,176,241,0.75), 0 0 70px rgba(67,176,241,0.30), 0 12px 50px rgba(0,0,0,0.45);
  border-color: rgba(67,176,241,0.65);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-6px) scale(1.012) !important;
  animation: dashboard-qloud-pulse 1.6s ease-in-out infinite;
}
@keyframes dashboard-qloud-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(67,176,241,0.75), 0 0 70px rgba(67,176,241,0.30), 0 12px 50px rgba(0,0,0,0.45); }
  50%       { box-shadow: 0 0 0 3px rgba(67,176,241,0.95), 0 0 100px rgba(67,176,241,0.45), 0 12px 50px rgba(0,0,0,0.45); }
}
.dashboard-mockup.qloud-active .dash-header {
  background: rgba(67,176,241,0.10);
  border-bottom-color: rgba(67,176,241,0.28);
}
.dashboard-mockup.qloud-active .dash-title::after {
  content: ' · Sync aktiv';
  font-size: 9px;
  font-weight: 400;
  color: rgba(67,176,241,0.85);
  animation: sync-blink 1s step-end infinite;
}
@keyframes sync-blink { 0%,100%{opacity:1} 50%{opacity:0} }
.dashboard-mockup.qloud-active .dash-status::before {
  content: '↑ ';
  font-size: 10px;
  color: var(--sky-blue);
}
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dash-title { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--white); }
.dash-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--green); font-weight: 500; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.dash-stat { background: rgba(9,103,199,0.1); border: 1px solid rgba(9,103,199,0.2); border-radius: 8px; padding: 10px; text-align: center; }
.dash-stat-value { font-size: 20px; font-weight: 800; font-family: var(--font-heading); color: var(--white); line-height: 1; }
.dash-stat-value.green { color: var(--green); }
.dash-stat-label { font-size: 9px; color: var(--text-light); margin-top: 3px; }
.dash-list-header { font-size: 10px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 7px; }
.dash-row { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; background: rgba(255,255,255,0.03); margin-bottom: 3px; }
.dash-check { width: 16px; height: 16px; border-radius: 50%; background: rgba(136,209,145,0.2); display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--green); flex-shrink: 0; }
.dash-row-text { font-size: 11px; color: rgba(255,255,255,0.7); flex: 1; }
.dash-badge { font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 100px; background: rgba(136,209,145,0.15); color: var(--green); border: 1px solid rgba(136,209,145,0.3); }
.dash-badge.warn { background: rgba(255,193,7,0.15); color: #ffc107; border-color: rgba(255,193,7,0.3); }
.dash-cert { display: flex; align-items: center; gap: 10px; background: rgba(9,103,199,0.12); border: 1px solid rgba(9,103,199,0.25); border-radius: 8px; padding: 10px 12px; margin-top: 12px; }
.dash-cert-icon { width: 30px; height: 30px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: white; flex-shrink: 0; }
.dash-cert-title { font-size: 11px; font-weight: 600; color: var(--white); }
.dash-cert-sub { font-size: 9px; color: var(--sky-blue); }
.dash-cert-btn { margin-left: auto; background: var(--blue); color: white; border: none; padding: 4px 10px; border-radius: 5px; font-size: 10px; font-weight: 600; cursor: pointer; font-family: var(--font-heading); }

/* === SECTION HEADERS === */
.section-tag { display: inline-block; background: rgba(9,103,199,0.1); color: var(--blue); padding: 5px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 16px; font-family: var(--font-heading); }
.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; color: var(--text-dark); }
.section-header p { font-size: 18px; color: var(--text-mid); max-width: 620px; margin: 0 auto; }
.section-header.dark h2 { color: var(--white); }
.section-header.dark p { color: rgba(255,255,255,0.65); }

/* === PROBLEM CARDS === */
.problem-section { background: var(--warm-bg); }
.problem-intro { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.problem-intro h2 { margin-bottom: 16px; }
.problem-intro p { font-size: 17px; color: var(--text-mid); }
.problem-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.problem-card { background: var(--card-bg); border-radius: var(--border-radius); padding: 28px 24px; transition: all var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.problem-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; background: rgba(229,62,62,0.1); color: #e53e3e; }
.problem-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--text-dark); }
.problem-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* === TRANSITION SECTION === */
.transition-section { background: var(--navy); padding: 32px 0 18px; text-align: center; }
.transition-section h2 { font-size: clamp(30px, 4vw, 46px); color: var(--white); margin-bottom: 20px; }
.transition-section p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.road-divider { background: var(--navy); line-height: 0; margin: 0; padding: 0; }
.road-divider svg { width: 100%; height: 90px; display: block; }

/* === BRIDGE STRIP === */
.bridge-strip {
  background: rgba(9,103,199,0.18);
  border-top: 1px solid rgba(67,176,241,0.18);
  border-bottom: 1px solid rgba(67,176,241,0.18);
  padding: 20px 0;
  backdrop-filter: blur(4px);
}
.bridge-items {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.bridge-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 28px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.2px;
}
.bridge-item i { color: var(--sky); font-size: 15px; }
.bridge-divider {
  width: 1px; height: 28px;
  background: rgba(67,176,241,0.3);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .bridge-items { flex-direction: column; gap: 4px; }
  .bridge-divider { width: 40px; height: 1px; }
  .bridge-item { padding: 6px 16px; }
}

/* Visual variant with background image */
.transition-visual { position: relative; overflow: hidden; padding: 100px 0; }
.transition-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.transition-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,28,60,0.82) 0%, rgba(9,103,199,0.55) 100%);
}
.transition-eyebrow {
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--sky) !important;
  margin-bottom: 16px !important;
  max-width: none !important;
}
@media (max-width: 767px) {
  .transition-visual { padding: 72px 0; }
}

/* === STEPS === */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--sky-blue)); pointer-events: none;
}
.step-item { text-align: center; position: relative; }
.step-number { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.step-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px; color: white;
  box-shadow: 0 8px 25px rgba(9,103,199,0.3); position: relative; z-index: 1;
}
.step-item h3 { font-size: 20px; margin-bottom: 12px; color: var(--text-dark); }
.step-item p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* === FEATURES GRID === */
.features-section { background: var(--card-bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--border-radius); padding: 32px 28px; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(9,103,199,0.1); }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; background: rgba(9,103,199,0.1); color: var(--blue); }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--text-dark); }
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* === STATS === */
.stats-section { background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(0,0,0,0.06); }
.stat-item:last-child { border-right: none; }
.stat-value { font-size: clamp(40px, 5vw, 62px); font-weight: 800; color: var(--blue); font-family: var(--font-heading); line-height: 1; margin-bottom: 12px; }
.stat-divider { width: 40px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--sky-blue)); margin: 0 auto 12px; border-radius: 2px; }
.stat-label { font-size: 14px; color: var(--text-mid); font-weight: 500; max-width: 140px; margin: 0 auto; }

/* === CTA SECTION === */
.cta-section {
  background:
    linear-gradient(135deg, rgba(30,77,140,0.52) 0%, rgba(15,27,45,0.45) 50%, rgba(13,31,60,0.58) 100%),
    url('uploads/holzwuerfel.png') center 60% / cover no-repeat;
  padding: 100px 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(22px, 3vw, 32px); color: var(--white); margin-bottom: 16px; }
.cta-section p:not(.cta-note) { font-size: 18px; color: #e8f0fb; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-note { font-size: 13px; color: var(--text-light); margin-top: 16px; display: block; }
.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.cta-benefits li {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-benefits li i {
  color: var(--sky-blue);
  font-size: 16px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cta-benefits { gap: 10px; }
  .cta-benefits li { font-size: 14px; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #0d1e35;
  border-top: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  padding: 20px 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-banner-content { flex: 1; min-width: 280px; }
.cookie-banner-content h3 {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin: 0 0 6px; font-family: var(--font-heading);
}
.cookie-banner-content > p {
  font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.6; margin: 0;
}
.cookie-banner-content a { color: var(--sky-blue); }
.cookie-categories { display: none; margin-top: 14px; gap: 12px; flex-direction: column; }
.cookie-categories.open { display: flex; }
.cookie-category-item { display: flex; align-items: flex-start; gap: 12px; }
.cookie-category-info strong {
  display: block; font-size: 13px; color: var(--white);
  font-family: var(--font-heading); font-weight: 600; margin-bottom: 2px;
}
.cookie-category-info span { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.cookie-toggle-switch {
  position: relative; width: 40px; height: 22px; flex-shrink: 0; margin-top: 1px;
}
.cookie-toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); border-radius: 22px;
  cursor: pointer; transition: background 0.2s;
}
.cookie-toggle-slider::before {
  content: ''; position: absolute;
  width: 16px; height: 16px; left: 3px; top: 3px;
  background: white; border-radius: 50%; transition: transform 0.2s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider { background: var(--blue); }
.cookie-toggle-switch input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle-switch input:disabled + .cookie-toggle-slider { background: var(--green); opacity: 0.8; cursor: not-allowed; }
.cookie-banner-actions {
  display: flex; gap: 10px; align-items: center;
  flex-shrink: 0; flex-wrap: wrap; padding-top: 2px;
}
.cookie-btn-primary {
  background: var(--blue); color: var(--white); border: none;
  padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 700;
  font-family: var(--font-heading); cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.cookie-btn-primary:hover { background: #0757a8; }
.cookie-btn-secondary {
  background: transparent; color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px;
  border-radius: 8px; font-size: 13px; font-weight: 500;
  font-family: var(--font-heading); cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.cookie-btn-secondary:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }
.cookie-btn-link {
  background: none; border: none; color: var(--sky-blue);
  font-size: 12px; cursor: pointer; font-family: var(--font-heading);
  padding: 4px 0; text-decoration: underline; white-space: nowrap;
}
@media (max-width: 767px) {
  .cookie-banner-inner { flex-direction: column; gap: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-primary, .cookie-btn-secondary { flex: 1; text-align: center; justify-content: center; }
}

/* === FOOTER === */
footer { background: var(--dark-bg); padding: 48px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto auto; gap: 48px 56px; padding-bottom: 36px; }
.footer-brand-name { font-size: 22px; color: var(--white); margin-bottom: 12px; font-family: var(--font-heading); font-weight: 800; display: flex; align-items: center; gap: 10px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-top: 6px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--sky-blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.3); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 15px; transition: all var(--transition); }
.social-link[aria-label="LinkedIn"]     { color: #0a66c2; background: rgba(10,102,194,0.15); }
.social-link[aria-label="LinkedIn"]:hover { background: #0a66c2; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(10,102,194,0.4); }
.social-link[aria-label="Facebook"]    { color: #1877f2; background: rgba(24,119,242,0.15); }
.social-link[aria-label="Facebook"]:hover { background: #1877f2; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(24,119,242,0.4); }
.social-link[aria-label="Instagram"]   { color: #e1306c; background: rgba(225,48,108,0.12); }
.social-link[aria-label="Instagram"]:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(220,39,67,0.4); }
.social-link[aria-label="WhatsApp"]    { color: #25d366; background: rgba(37,211,102,0.12); }
.social-link[aria-label="WhatsApp"]:hover { background: #25d366; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
.social-link[aria-label="YouTube"]     { color: #ff0000; background: rgba(255,0,0,0.10); }
.social-link[aria-label="YouTube"]:hover { background: #ff0000; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(255,0,0,0.4); }
.footer-logo-wrap { display: inline-block; margin-bottom: 14px; background: #ffffff; border-radius: 10px; padding: 10px 16px; }
.footer-logo-img { height: 68px; width: auto; display: block; }

/* === SCROLL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.hero-text { animation: slideInLeft 0.8s ease forwards; min-width: 0; }
.hero-visual { animation: slideInRight 0.8s ease 0.25s both; min-width: 0; }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-24px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; } to { opacity:1; } }

/* === SCROLL PROGRESS & BACK TO TOP === */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--sky-blue)); z-index: 9999; width: 0%; transition: width 0.1s linear; }
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; opacity: 0; transform: translateY(20px); transition: all var(--transition); z-index: 100; box-shadow: 0 4px 15px rgba(9,103,199,0.4); border: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #075bb5; transform: translateY(-3px); }

/* === PHOTO TRUST SPLIT SECTION === */
.photo-trust-section { background: var(--navy); padding: 8px 0 72px; }
.photo-trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.photo-trust-content .section-tag { margin-bottom: 16px; }
.photo-trust-content h2 { color: var(--white); font-size: clamp(24px, 3vw, 38px); margin-bottom: 20px; }
.photo-trust-content p { color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.7; margin-bottom: 28px; }
.photo-trust-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.photo-trust-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.5; }
.photo-trust-list li i { color: var(--sky-blue); margin-top: 3px; flex-shrink: 0; font-size: 16px; }
.photo-trust-image { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.40); }
.photo-trust-image img { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; }

/* === PHOTO CITY BANNER === */
.photo-city-section { position: relative; min-height: 380px; display: flex; align-items: center; overflow: hidden;
  background: url('uploads/istockphoto-655103978-1024x1024.jpg') center/cover no-repeat; }
.photo-city-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,20,45,0.88) 0%, rgba(9,103,199,0.55) 100%); }
.photo-city-section .container { position: relative; z-index: 1; }
.photo-city-content { text-align: center; max-width: 680px; margin: 0 auto; padding: 80px 0; }
.photo-city-content h2 { color: var(--white); font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 18px; }
.photo-city-content p { color: rgba(255,255,255,0.78); font-size: 18px; line-height: 1.7; }

/* === PHOTO STRIP === */
.photo-strip-section { background: #f4f7fc; padding: 64px 0; }
.photo-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.photo-strip-item { border-radius: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.10); position: relative; }
.photo-strip-item img { width: 100%; height: 260px; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s ease; }
.photo-strip-item:hover img { transform: scale(1.03); }
.photo-strip-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px;
  background: linear-gradient(0deg, rgba(10,20,45,0.82) 0%, transparent 100%);
  color: var(--white); font-size: 14px; font-weight: 600; font-family: var(--font-heading); }

/* === SOLUTION PAGE === */
.zigzag-item { display: flex; align-items: center; gap: 64px; padding: 80px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.zigzag-item:last-child { border-bottom: none; }
.zigzag-item.reverse { flex-direction: row-reverse; }
.zigzag-text { flex: 1; }
.zigzag-text .section-tag { margin-bottom: 12px; }
.zigzag-text h3 { font-size: clamp(22px, 3vw, 30px); color: var(--text-dark); margin-bottom: 16px; }
.zigzag-text p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.zigzag-visual { flex: 1; }
.feature-check-list { list-style: none; margin-top: 4px; }
.feature-check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 15px; color: var(--text-mid); }
.feature-check-list li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; margin-top: 2px; flex-shrink: 0; }

/* Mock UIs */
.mock-ui { background: var(--dark-bg); border-radius: 14px; overflow: hidden; border: 1px solid rgba(67,176,241,0.15); box-shadow: var(--shadow-dark); }
.mock-ui-header { background: rgba(31,58,95,0.8); padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #ff5f57; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green { background: #28ca41; }
.mock-url { flex: 1; background: rgba(255,255,255,0.05); border-radius: 4px; padding: 4px 10px; font-size: 10px; color: rgba(255,255,255,0.35); margin-left: 8px; }
.mock-body { padding: 16px; }
.mock-section-title { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.mock-table-row { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 6px; margin-bottom: 4px; background: rgba(255,255,255,0.03); }
.mock-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-status-dot.green { background: var(--green); }
.mock-status-dot.red { background: #e53e3e; }
.mock-status-dot.yellow { background: #f6c90e; }
.mock-row-text { font-size: 11px; color: rgba(255,255,255,0.7); flex: 1; }
.mock-row-badge { font-size: 9px; padding: 2px 8px; border-radius: 100px; font-weight: 600; }
.mock-row-badge.green { background: rgba(136,209,145,0.15); color: var(--green); }
.mock-row-badge.red { background: rgba(229,62,62,0.15); color: #ff7070; }
.mock-row-badge.yellow { background: rgba(246,201,14,0.15); color: #f6c90e; }

/* Certificate mockup */
.cert-mockup { background: var(--dark-bg); border-radius: 14px; border: 1px solid rgba(67,176,241,0.2); box-shadow: var(--shadow-dark); overflow: hidden; }
.cert-header { background: var(--navy); padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
.cert-logo-badge { background: var(--blue); color: white; font-family: var(--font-heading); font-weight: 800; font-size: 14px; padding: 8px 14px; border-radius: 8px; }
.cert-title-wrap { flex: 1; }
.cert-title-text { font-size: 16px; font-weight: 700; color: var(--white); font-family: var(--font-heading); }
.cert-subtitle { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.cert-seal { width: 40px; height: 40px; border-radius: 50%; background: rgba(136,209,145,0.2); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--green); }
.cert-body { padding: 20px 24px; }
.cert-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.cert-row span:first-child { color: rgba(255,255,255,0.5); }
.cert-row span:last-child { color: var(--white); font-weight: 600; }
.cert-row .cert-ok { color: var(--green); }
.cert-footer { padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; background: rgba(9,103,199,0.08); border-top: 1px solid rgba(9,103,199,0.2); }
.cert-pdf-btn { background: var(--blue); color: white; padding: 7px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; font-family: var(--font-heading); cursor: pointer; }
.cert-verified { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Notification mockup */
.notif-card { background: var(--dark-bg); border-radius: 14px; padding: 20px; border: 1px solid rgba(67,176,241,0.15); box-shadow: var(--shadow-dark); }
.notif-header { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.notif-item { display: flex; gap: 12px; padding: 12px; border-radius: 10px; background: rgba(255,255,255,0.03); margin-bottom: 8px; border: 1px solid rgba(255,255,255,0.05); }
.notif-icon-wrap { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.notif-icon-wrap.warn { background: rgba(229,62,62,0.15); color: #ff7070; }
.notif-icon-wrap.ok { background: rgba(136,209,145,0.15); color: var(--green); }
.notif-icon-wrap.info { background: rgba(9,103,199,0.15); color: var(--sky-blue); }
.notif-content-title { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.notif-content-text { font-size: 11px; color: rgba(255,255,255,0.5); }
.notif-time { font-size: 10px; color: rgba(255,255,255,0.25); margin-top: 4px; }

/* Integration graphic */
.integration-graphic { background: var(--dark-bg); border-radius: 14px; padding: 28px; border: 1px solid rgba(67,176,241,0.15); box-shadow: var(--shadow-dark); }
.integration-center-logo { background: rgba(9,103,199,0.2); border: 2px solid var(--blue); border-radius: 12px; padding: 14px 20px; font-size: 17px; font-weight: 800; color: var(--white); font-family: var(--font-heading); text-align: center; margin-bottom: 20px; }
.integration-arrows { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
.integration-systems { display: flex; flex-direction: column; gap: 8px; }
.integration-system { background: rgba(31,58,95,0.6); border: 1px solid rgba(67,176,241,0.2); border-radius: 7px; padding: 8px 14px; font-size: 12px; color: rgba(255,255,255,0.65); text-align: center; }
.integration-connector { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.connector-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky-blue); animation: pulse-blue 2s infinite; }
.connector-line { width: 2px; height: 24px; background: linear-gradient(180deg, var(--sky-blue), rgba(67,176,241,0.2)); }
@keyframes pulse-blue { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.8); } }

/* === ABOUT PAGE === */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card { background: var(--white); border-radius: var(--border-radius); padding: 40px 36px; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.04); border-top: 4px solid var(--blue); }
.vm-card.navy-top { border-top-color: var(--navy); }
.vm-card-icon { font-size: 36px; margin-bottom: 20px; }
.vm-card h3 { font-size: 22px; color: var(--text-dark); margin-bottom: 14px; }
.vm-card p { font-size: 16px; color: var(--text-mid); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 40px 28px; border-radius: var(--border-radius); background: var(--white); box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(9,103,199,0.1); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--blue); margin: 0 auto 20px; }
.value-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--text-dark); }
.value-card p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.company-bar { background: var(--navy); padding: 60px 0; }
.company-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.company-bar-value { font-size: 38px; font-weight: 800; color: var(--sky-blue); font-family: var(--font-heading); margin-bottom: 8px; }
.company-bar-label { font-size: 14px; color: rgba(255,255,255,0.6); }

/* === PRICING PAGE === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { background: var(--white); border-radius: 16px; padding: 36px 28px; box-shadow: var(--shadow); border: 2px solid transparent; transition: all var(--transition); position: relative; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-card.featured { border-color: var(--blue); box-shadow: 0 8px 40px rgba(9,103,199,0.2); transform: scale(1.03); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; padding: 5px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; white-space: nowrap; font-family: var(--font-heading); }
.pricing-tier { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 8px; }
.pricing-card h3 { font-size: 24px; color: var(--text-dark); margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--text-light); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--light-gray); line-height: 1.5; }
.pricing-price { margin-bottom: 24px; }
.price-main { font-size: 34px; font-weight: 800; color: var(--text-dark); font-family: var(--font-heading); }
.price-note { font-size: 14px; color: var(--text-light); margin-top: 6px; }
.pricing-features { margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.pricing-feature-icon { color: var(--green); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.pricing-feature-text { font-size: 14px; color: var(--text-mid); }

/* ROI Calculator */
.roi-calc-wrap { background: var(--card-bg); border-radius: var(--border-radius); padding: 48px 40px; max-width: 700px; margin: 0 auto; }
.roi-calc-wrap h3 { font-size: 24px; color: var(--text-dark); margin-bottom: 8px; text-align: center; }
.roi-calc-wrap > p { text-align: center; color: var(--text-mid); margin-bottom: 36px; font-size: 15px; }
.roi-slider-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.roi-slider-label span:first-child { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.roi-value-display { font-size: 24px; font-weight: 800; color: var(--blue); font-family: var(--font-heading); }
input[type="range"] { width: 100%; -webkit-appearance: none; height: 6px; background: linear-gradient(90deg, var(--blue) var(--pct, 26%), var(--light-gray) var(--pct, 26%)); border-radius: 3px; outline: none; margin-bottom: 32px; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); cursor: pointer; box-shadow: 0 2px 8px rgba(9,103,199,0.4); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); cursor: pointer; border: none; }
.roi-result { background: var(--white); border-radius: 12px; padding: 32px; text-align: center; border: 2px solid rgba(9,103,199,0.15); }
.roi-savings-label { font-size: 14px; color: var(--text-mid); margin-bottom: 8px; }
.roi-savings-value { font-size: 56px; font-weight: 800; color: var(--green); font-family: var(--font-heading); line-height: 1; margin-bottom: 8px; }
.roi-savings-period { font-size: 14px; color: var(--text-light); }
.roi-detail { font-size: 13px; color: var(--text-light); margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.06); }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--light-gray); border-radius: var(--border-radius-sm); margin-bottom: 8px; overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--sky-blue); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--text-dark); font-family: var(--font-heading); background: var(--white); transition: background var(--transition); min-height: 44px; gap: 16px; }
.faq-question:hover { background: var(--card-bg); }
.faq-icon { color: var(--blue); font-size: 20px; transition: transform var(--transition); flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 15px; color: var(--text-mid); line-height: 1.7; background: var(--white); }
.faq-item.open .faq-answer { display: block; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-card { background: var(--white); border-radius: var(--border-radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form-card h2 { font-size: 26px; margin-bottom: 28px; color: var(--text-dark); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--light-gray); border-radius: 8px;
  font-family: var(--font-body); font-size: 15px; color: var(--text-dark);
  background: var(--white); transition: border-color var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.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='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238896A6' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 52px; color: var(--green); margin-bottom: 16px; }
.form-success h3 { font-size: 22px; color: var(--text-dark); margin-bottom: 8px; }
.form-success p { color: var(--text-mid); }
.contact-info h3 { font-size: 22px; color: var(--text-dark); margin-bottom: 24px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(9,103,199,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--blue); flex-shrink: 0; }
.contact-detail-label { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-detail-value { font-size: 15px; color: var(--text-dark); font-weight: 500; }
.trust-badges { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--light-gray); }
.trust-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.trust-badge-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(136,209,145,0.12); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--green); flex-shrink: 0; }
.trust-badge-text { font-size: 14px; color: var(--text-mid); font-weight: 500; }

/* iOS zoom prevention */
@media (max-width: 1023px) {
  input:not([type='button']):not([type='submit']):not([type='reset']):not([type='checkbox']):not([type='radio']):not([type='file']):not([type='range']):not([type='color']):not([type='image']),
  textarea, select { font-size: 16px !important; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .home-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .trust-bar { justify-content: center; }
  .hero-subheadline { margin: 0 auto 36px; }
  .dashboard-mockup { max-width: 480px; width: 100%; margin: 0 auto; transform: none; }
  .dashboard-mockup:hover { transform: none; }
  .problem-cards { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .stat-item:nth-child(3), .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .zigzag-item, .zigzag-item.reverse { flex-direction: column; }
  .zigzag-visual { width: 100%; }
  .cert-row { flex-wrap: wrap; gap: 2px 0; }
  .cert-row span:last-child { flex-basis: 100%; }
  .company-bar-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 76px; }
  .section-padding { padding: 70px 0; }
  .navbar-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .navbar-logo-img { height: 52px; }
  .navbar.scrolled .navbar-logo-img { height: 44px; }
  .problem-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; max-width: min(320px, 100%); margin: 0 auto; }
  .hero-ctas .btn { justify-content: center; white-space: normal; }
  .dashboard-mockup { max-width: 100%; }
  .page-hero { padding: var(--navbar-h) 0 48px; }
  .page-hero h1 { font-size: clamp(24px, 6.5vw, 34px); }
  .btn-full { white-space: normal; }
  .contact-hero-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .contact-hero-grid .reveal { text-align: center; }
  .contact-hero-img { max-height: 220px !important; }
  .roi-calc-wrap { padding: 32px 24px; }
  .contact-form-card { padding: 28px 24px; }
  .back-to-top { bottom: 20px; right: 20px; }
  .photo-trust-inner { grid-template-columns: 1fr; gap: 40px; }
  .photo-trust-image img { height: 300px; }
  .photo-strip-grid { grid-template-columns: 1fr; gap: 16px; }
  .photo-strip-item img { height: 220px; }
  .photo-city-content { padding: 60px 0; }
  .cert-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
}

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

/* === TOWER HOTSPOT RING PULSE === */
.tower-hotspot-ring {
  opacity: 0.42;
  animation: tower-ring-idle 2.4s ease-in-out infinite;
  transition: opacity 0.2s ease;
}
.tower-hotspot:hover .tower-hotspot-ring,
.tower-hotspot.active .tower-hotspot-ring {
  opacity: 1;
  animation: none;
}
@keyframes tower-ring-idle {
  0%, 100% { opacity: 0.42; }
  50% { opacity: 0.72; }
}
/* Tower tip hover label (legacy – kept for safety) */
.tower-tip-label {
  fill: rgba(67,176,241,0);
  transition: fill 0.25s ease;
  pointer-events: none;
}
.tower-hotspot:hover .tower-tip-label {
  fill: rgba(67,176,241,0.90);
}
.tower-hotspot:hover .bldg-badge,
.tower-hotspot.active .bldg-badge {
  animation: none;
  opacity: 1;
}
.tower-hotspot:hover .bldg-badge rect:first-child,
.tower-hotspot.active .bldg-badge rect:first-child {
  fill: rgba(9,103,199,0.97) !important;
  stroke: rgba(67,176,241,0.90) !important;
}
/* Tower hotspot: badge highlights when hovered */
.tower-hotspot:hover .bldg-badge rect:first-child {
  fill: rgba(9,103,199,0.97) !important;
  stroke: rgba(67,176,241,0.90) !important;
}

/* === TOWER POPUP === */
.tower-popup-backdrop {
  position: fixed; inset: 0; z-index: 1900;
  background: rgba(10,18,32,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.tower-popup {
  position: fixed; z-index: 2000;
  width: 340px; max-width: calc(100vw - 32px);
  background: rgba(8,18,36,0.97);
  border: 1px solid rgba(67,176,241,0.28);
  border-radius: 14px;
  padding: 20px 20px 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(67,176,241,0.08) inset;
  color: #fff;
  font-family: var(--font-body);
  transform-origin: top center;
  animation: tower-popup-in 0.22s ease forwards;
}
@keyframes tower-popup-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.tower-popup[hidden] { display: none; }
.tower-popup-backdrop[hidden] { display: none; }

.tower-popup-close {
  position: absolute; top: 12px; right: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55); font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; transition: background 0.2s ease, color 0.2s ease;
  font-family: inherit; padding: 0;
}
.tower-popup-close:hover { background: rgba(255,255,255,0.16); color: #fff; }

.tower-popup-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; padding-right: 28px;
}
.tower-popup-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(9,103,199,0.25);
  border: 1px solid rgba(67,176,241,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--sky-blue);
}
.tower-popup-header-text { flex: 1; min-width: 0; }
.tower-popup-title { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--sky-blue); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 2px; }
.tower-popup-address { font-size: 13px; color: rgba(255,255,255,0.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tower-popup-online { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--green); font-weight: 600; white-space: nowrap; margin-left: auto; padding-left: 4px; }
.tower-popup-online .status-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px var(--green); animation: pulse-green 2s ease infinite; }
@keyframes pulse-green { 0%,100% { opacity:1; } 50% { opacity:0.55; } }

.tower-popup-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(67,176,241,0.12);
  border-radius: 10px; padding: 12px 8px;
}
.tower-popup-stat { text-align: center; }
.tower-popup-stat-val { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: #fff; line-height: 1.1; }
.tower-popup-stat-lbl { display: block; font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.4px; }

.tower-popup-section-label {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 8px;
}
.tower-popup-units { display: flex; flex-direction: column; gap: 6px; max-height: 230px; overflow-y: auto; padding-right: 2px; }
.tower-popup-units::-webkit-scrollbar { width: 4px; }
.tower-popup-units::-webkit-scrollbar-track { background: transparent; }
.tower-popup-units::-webkit-scrollbar-thumb { background: rgba(67,176,241,0.25); border-radius: 2px; }

.tp-unit { background: rgba(255,255,255,0.04); border: 1px solid rgba(67,176,241,0.10); border-radius: 8px; padding: 8px 10px; }
.tp-unit-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.80); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.tp-unit-name i { color: var(--sky-blue); font-size: 10px; }
.tp-sensors { display: flex; flex-direction: column; gap: 3px; }
.tp-sensor { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.tp-sensor-room { font-size: 11px; color: rgba(255,255,255,0.50); }
.tp-sensor-badge {
  font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 4px;
  white-space: nowrap;
}
.tp-sensor-badge.ok { background: rgba(136,209,145,0.15); color: var(--green); }
.tp-sensor-badge.warn { background: rgba(255,183,77,0.15); color: #ffb74d; }
.tp-sensor-badge.error { background: rgba(255,90,90,0.15); color: #ff7070; }

/* === BUILDING HOTSPOT (SVG hover glow) === */
.bh-highlight {
  transition: fill 0.15s ease, stroke 0.15s ease;
}
.building-hotspot:hover .bh-highlight,
.building-hotspot.active .bh-highlight {
  fill: rgba(67,176,241,0.20) !important;
  stroke: rgba(67,176,241,0.70) !important;
}

/* Building data badges */
@keyframes bldgBadgePulse {
  0%, 100% { opacity: 0.62; }
  50%       { opacity: 0.88; }
}
.bldg-badge {
  animation: bldgBadgePulse 3.2s ease-in-out infinite;
  pointer-events: none;
}
.building-hotspot:hover .bldg-badge,
.building-hotspot.active .bldg-badge {
  animation: none;
  opacity: 1;
}
.bldg-badge rect:first-child {
  transition: fill 0.18s ease, stroke 0.18s ease;
}
.building-hotspot:hover .bldg-badge rect:first-child,
.building-hotspot.active .bldg-badge rect:first-child {
  fill: rgba(9,103,199,0.97) !important;
  stroke: rgba(67,176,241,0.90) !important;
}

/* === BUILDING POPUP (mini dashboard) === */
.building-popup {
  position: fixed; z-index: 1950;
  width: 285px; max-width: calc(100vw - 24px);
  background: rgba(7,15,32,0.97);
  border: 1px solid rgba(67,176,241,0.28);
  border-radius: 14px;
  padding: 15px 15px 12px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.65), 0 0 0 1px rgba(67,176,241,0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-family: var(--font-body);
  animation: bpopup-in 0.18s ease forwards;
}
@keyframes bpopup-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.building-popup[hidden] { display: none; }

.building-popup-close {
  position: absolute; top: 10px; right: 11px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: none; cursor: pointer;
  color: rgba(255,255,255,0.50);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-family: inherit; padding: 0;
}
.building-popup-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.bp-header {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 11px; padding-right: 22px;
}
.bp-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: rgba(9,103,199,0.22); border: 1px solid rgba(67,176,241,0.24);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--sky-blue);
}
.bp-header-info { flex: 1; min-width: 0; }
.bp-address { font-family: var(--font-heading); font-weight: 600; font-size: 12px; color: #fff; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bp-status-row { display: flex; align-items: center; gap: 5px; font-size: 10.5px; color: var(--green); font-weight: 600; }
.bp-status-row .status-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 5px var(--green); animation: pulse-green 2s ease infinite; }
.bp-status-row.warn { color: #ffb74d; }
.bp-status-row.warn .status-dot { background: #ffb74d; box-shadow: 0 0 5px #ffb74d; animation: none; }

.bp-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 5px; margin-bottom: 11px;
  background: rgba(255,255,255,0.04); border-radius: 9px; padding: 9px 5px;
}
.bp-stat-item { text-align: center; }
.bp-stat-val { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: #fff; line-height: 1.1; }
.bp-stat-val.green { color: var(--green); }
.bp-stat-val.warn { color: #ffb74d; }
.bp-stat-lbl { display: block; font-size: 9px; color: rgba(255,255,255,0.38); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.4px; }

.bp-sensors-label { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 5px; }
.bp-sensors-list { display: flex; flex-direction: column; gap: 2px; max-height: 110px; overflow-y: auto; margin-bottom: 10px; padding-right: 2px; }
.bp-sensors-list::-webkit-scrollbar { width: 3px; }
.bp-sensors-list::-webkit-scrollbar-thumb { background: rgba(67,176,241,0.25); border-radius: 2px; }
.bp-sensor-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.bp-sensor-room { font-size: 10.5px; color: rgba(255,255,255,0.52); }
.bp-sensor-badge { font-size: 9.5px; font-weight: 600; padding: 1px 6px; border-radius: 4px; white-space: nowrap; }
.bp-sensor-badge.ok   { background: rgba(136,209,145,0.14); color: var(--green); }
.bp-sensor-badge.warn { background: rgba(255,183,77,0.14);  color: #ffb74d; }

.bp-footer { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 9px; display: flex; flex-direction: column; gap: 5px; }
.bp-cert { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: rgba(255,255,255,0.52); }
.bp-cert i { color: var(--sky-blue); font-size: 11px; }
.bp-cert-valid { margin-left: auto; font-size: 9.5px; font-weight: 700; color: var(--green); background: rgba(136,209,145,0.11); padding: 1px 7px; border-radius: 4px; }
.bp-last-check { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: rgba(255,255,255,0.32); }
.bp-last-check i { color: rgba(67,176,241,0.50); font-size: 10px; }

/* QLOUD cloud halo pulse */
.qloud-halo { animation: qloud-pulse 3.5s ease infinite; }
@keyframes qloud-pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }


/* Qloud cloud mist / fog */
@keyframes mist-breathe {
  0%, 100% { opacity: 0.72; transform: scale(1); }
  50%       { opacity: 0.92; transform: scale(1.05); }
}
.qloud-mist {
  animation: mist-breathe 5.5s ease-in-out infinite;
  transform-origin: 700px 54px;
  transition: opacity 0.4s;
}
.qloud-group:hover .qloud-mist,
.qloud-group.active .qloud-mist {
  opacity: 1;
  animation: mist-breathe 2.8s ease-in-out infinite;
}


/* Qloud logo – hover/active glow and scale */
.qloud-cloud-body { transition: opacity 0.25s; }
.qloud-group:hover .qloud-cloud-body,
.qloud-group.active .qloud-cloud-body { opacity: 1.0 !important; }
.qloud-group svg { transition: opacity 0.2s, filter 0.2s; }
.qloud-group:hover svg { opacity: 1 !important; filter: url(#f-remove-white) drop-shadow(0 0 8px rgba(67,176,241,0.7)); }
.qloud-group.active svg { opacity: 1 !important; filter: url(#f-remove-white) drop-shadow(0 0 12px rgba(67,176,241,0.9)); }
.qloud-halo { animation: qloud-pulse 3.5s ease infinite; }
.qloud-group:hover .qloud-halo,
.qloud-group.active .qloud-halo { animation: none; opacity: 1; }

/* Uplink glow lines – normally hidden, activated when Qloud is hovered */
.uplink-glow { opacity: 0; transition: opacity 0.45s ease; }
.qloud-hero-active .uplink-glow { opacity: 1; }

/* Dashboard row cascade on Qloud activation */
@keyframes dash-row-flash { 0% { background:rgba(67,176,241,0.18); } 100% { background:transparent; } }
.dashboard-mockup.qloud-active .dash-row { animation: dash-row-flash 0.6s ease-out both; }
.dashboard-mockup.qloud-active .dash-row:nth-child(1) { animation-delay: 0.05s; }
.dashboard-mockup.qloud-active .dash-row:nth-child(2) { animation-delay: 0.20s; }
.dashboard-mockup.qloud-active .dash-row:nth-child(3) { animation-delay: 0.35s; }
.dashboard-mockup.qloud-active .dash-row:nth-child(4) { animation-delay: 0.50s; }

/* ===== LEGAL CALLOUT BOXES ===== */
.legal-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(9,103,199,0.10) 0%, rgba(67,176,241,0.06) 100%);
  border: 1px solid rgba(67,176,241,0.25);
  border-left: 3px solid var(--sky-blue);
  border-radius: 8px;
}
.legal-callout > i {
  font-size: 16px;
  color: var(--sky-blue);
  margin-top: 2px;
  flex-shrink: 0;
}
.legal-callout > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-callout strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--sky-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-callout span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.legal-callout span strong {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  text-transform: none;
  letter-spacing: 0;
}

/* ===== LAW SECTION ===== */
.law-section {
  background: var(--navy);
}
.law-section .section-header h2 { color: var(--white); }
.law-section .section-header p { color: rgba(255,255,255,0.72); }
.law-section .section-tag { background: rgba(67,176,241,0.15); color: var(--sky-blue); border: 1px solid rgba(67,176,241,0.25); }
.law-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.law-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.law-card:hover {
  border-color: rgba(67,176,241,0.35);
  transform: translateY(-3px);
}
.law-icon {
  width: 44px;
  height: 44px;
  background: rgba(9,103,199,0.20);
  border: 1px solid rgba(67,176,241,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--sky-blue);
  margin-bottom: 14px;
}
.law-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sky-blue);
  background: rgba(9,103,199,0.18);
  border: 1px solid rgba(67,176,241,0.22);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}
.law-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.law-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
  margin-bottom: 16px;
}
.law-refs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.law-refs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.law-refs a { text-decoration: none; }
.law-refs a:hover .law-tag { background: rgba(9,103,199,0.30); border-color: rgba(67,176,241,0.55); color: var(--white); }
.law-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--sky-blue);
  background: rgba(9,103,199,0.15);
  border: 1px solid rgba(67,176,241,0.20);
  border-radius: 4px;
  padding: 1px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.law-disclaimer {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  cursor: pointer;
}
.law-disclaimer summary {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  user-select: none;
}
.law-disclaimer summary::-webkit-details-marker { display: none; }
.law-disclaimer summary strong { color: rgba(255,255,255,0.55); }
.law-disclaimer-toggle {
  margin-left: auto;
  font-size: 11px;
  color: var(--sky-blue);
  opacity: 0.7;
}
.law-disclaimer[open] .law-disclaimer-toggle { display: none; }
.law-disclaimer i {
  color: rgba(67,176,241,0.55);
  font-size: 14px;
  flex-shrink: 0;
}
.law-disclaimer p {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin: 0;
}

/* Responsive: law grid on mobile */
@media (max-width: 767px) {
  .law-grid {
    grid-template-columns: 1fr;
  }
}

/* Law Accordion */
.law-accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.law-acc-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.law-acc-item:has(.law-acc-trigger[aria-expanded="true"]) {
  border-color: rgba(67,176,241,0.35);
}
.law-acc-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  min-height: 44px;
}
.law-acc-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.law-icon-sm {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(9,103,199,0.20);
  border: 1px solid rgba(67,176,241,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--sky-blue);
}
.law-badge-sm {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sky-blue);
  background: rgba(9,103,199,0.18);
  border: 1px solid rgba(67,176,241,0.22);
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
}
.law-acc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.law-acc-chevron {
  flex-shrink: 0;
  color: var(--sky-blue);
  font-size: 13px;
  transition: transform 0.3s ease;
}
.law-acc-trigger[aria-expanded="true"] .law-acc-chevron {
  transform: rotate(180deg);
}
.law-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.law-acc-body.is-open {
  grid-template-rows: 1fr;
}
.law-acc-body > * {
  overflow: hidden;
}
.law-acc-body-inner {
  padding: 0 24px 20px;
}
.law-acc-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* CHALLENGE QUESTION */
.challenge-question-section {
  background:
    linear-gradient(to bottom, rgba(10,20,40,0.82) 0%, rgba(10,20,40,0.75) 100%),
    url('uploads/challenge-bg-fire.jpg?v=2') center center / cover no-repeat;
  padding: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.challenge-question-section .container {
  width: 100%;
  padding-top: 72px;
  padding-bottom: 72px;
}
.challenge-question-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: rgba(9, 103, 199, 0.07);
  border: 1px solid rgba(67, 176, 241, 0.18);
  border-top: 1px solid rgba(67, 176, 241, 0.18);
  border-radius: 16px;
  padding: 40px 56px 48px;
}
.challenge-quote-mark {
  font-size: 72px;
  line-height: 0.5;
  color: var(--sky-blue);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 12px;
  display: block;
  user-select: none;
}
.challenge-question-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.challenge-question-sub {
  font-size: 0.95rem;
  color: var(--sky-blue);
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .challenge-question-section {
    padding: 48px 0;
    min-height: auto;
  }
  .challenge-question-inner {
    padding: 32px 20px 36px;
    border-radius: 12px;
  }
  .challenge-quote-mark {
    font-size: 52px;
    margin-bottom: 20px;
  }
}
