/* ============================================================
   AUDITCOMPASS.CZ — STYLES
   Navy institutional aesthetic, "Approachable Expert" direction
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --navy: #002060;
  --navy-light: #003399;
  --navy-dark: #001540;
  --navy-ultra: #000d2b;
  --gold: #D4A853;
  --gold-dark: #C49643;
  --gold-glow: rgba(212, 168, 83, 0.25);
  --blue-light: #D6E4F0;
  --blue-pale: #EBF1F7;
  --off-white: #F5F7FA;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #5A5A7A;
  --text-inverse: #FFFFFF;
  --border: #D8DDE6;
  --success: #2E7D32;
  --shadow-sm: 0 2px 8px rgba(0, 20, 60, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 20, 60, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 20, 60, 0.18);
  --shadow-glow: 0 0 40px rgba(212, 168, 83, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-w: 1200px;
  --header-h: 72px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection {
  background: var(--gold);
  color: var(--navy);
}

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 16px;
  color: var(--text);
}

.section__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--white { background: var(--white); }
.section--blue { background: var(--blue-pale); }
.section--light { background: var(--off-white); }
.section__header {
  text-align: center;
  margin-bottom: 64px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  min-width: 160px;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.4);
}
.btn--gold:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--text-inverse);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
  min-width: auto;
}

.btn--icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(0, 32, 96, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s var(--ease-out);
}

.header--scrolled {
  height: 60px;
  background: rgba(0, 21, 64, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-inverse);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.header__logo svg {
  width: 32px;
  height: 32px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
}
.header__nav a:hover { color: var(--text-inverse); }
.header__nav a:hover::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.2s;
}
.header__lang:hover {
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.5);
}

.header__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.header__menu span {
  display: block;
  height: 2px;
  background: var(--text-inverse);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* Mobile menu open */
.menu-open .header__menu span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-open .header__menu span:nth-child(2) { opacity: 0; }
.menu-open .header__menu span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-ultra) 0%, var(--navy) 35%, var(--navy-light) 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black, transparent);
}

/* Ambient glow */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-inverse);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title--accent {
  background: linear-gradient(135deg, var(--gold), #E8C97A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

/* Hero visual — floating dashboard mockup */
.hero__visual {
  position: relative;
  animation: fadeInUp 0.9s var(--ease-out) 0.4s both;
}

.app-window {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: float 6s ease-in-out infinite;
}

.app-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-window__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.app-window__dot--red { background: #FF6058; }
.app-window__dot--yellow { background: #FFBD2E; }
.app-window__dot--green { background: #27CA40; }

.app-window__title {
  margin-left: 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
}

.app-window__body {
  padding: 24px;
}

/* Mini dashboard cards */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.mini-card {
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.mini-card--a { background: rgba(46, 125, 50, 0.2); border: 1px solid rgba(46, 125, 50, 0.3); }
.mini-card--b { background: rgba(33, 150, 243, 0.15); border: 1px solid rgba(33, 150, 243, 0.25); }
.mini-card--c { background: rgba(212, 168, 83, 0.15); border: 1px solid rgba(212, 168, 83, 0.25); }
.mini-card--m { background: rgba(156, 39, 176, 0.15); border: 1px solid rgba(156, 39, 176, 0.25); }

.mini-card__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mini-card__count {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-inverse);
}

/* Mini progress bar */
.mini-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin-bottom: 18px;
  overflow: hidden;
}

.mini-progress__fill {
  height: 100%;
  width: 87%;
  background: linear-gradient(90deg, var(--gold), #E8C97A);
  border-radius: 3px;
  animation: progressGrow 2s var(--ease-out) 1s both;
}

/* Mini file grid */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}

.mini-tile {
  aspect-ratio: 1;
  border-radius: 3px;
  opacity: 0.5;
  animation: propagate 3s ease-in-out infinite;
}
.mini-tile--a { background: #4CAF50; }
.mini-tile--b { background: #2196F3; }
.mini-tile--c { background: var(--gold); }
.mini-tile--m { background: #9C27B0; }

/* Stagger propagation animation */
.mini-tile:nth-child(1) { animation-delay: 0s; }
.mini-tile:nth-child(2) { animation-delay: 0.1s; }
.mini-tile:nth-child(3) { animation-delay: 0.2s; }
.mini-tile:nth-child(4) { animation-delay: 0.3s; }
.mini-tile:nth-child(5) { animation-delay: 0.4s; }
.mini-tile:nth-child(6) { animation-delay: 0.5s; }
.mini-tile:nth-child(7) { animation-delay: 0.6s; }
.mini-tile:nth-child(8) { animation-delay: 0.7s; }
.mini-tile:nth-child(9) { animation-delay: 0.15s; }
.mini-tile:nth-child(10) { animation-delay: 0.25s; }
.mini-tile:nth-child(11) { animation-delay: 0.35s; }
.mini-tile:nth-child(12) { animation-delay: 0.45s; }
.mini-tile:nth-child(13) { animation-delay: 0.55s; }
.mini-tile:nth-child(14) { animation-delay: 0.65s; }
.mini-tile:nth-child(15) { animation-delay: 0.75s; }
.mini-tile:nth-child(16) { animation-delay: 0.85s; }

/* Floating badges */
.floating-badge {
  position: absolute;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-inverse);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.floating-badge--1 {
  bottom: -20px;
  left: -30px;
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both, floatBadge 5s ease-in-out 1.8s infinite;
}
.floating-badge--2 {
  top: 40px;
  right: -20px;
  animation: fadeInUp 0.8s var(--ease-out) 1s both, floatBadge 5s ease-in-out 2.3s infinite;
}
.floating-badge__icon {
  color: var(--gold);
  margin-right: 6px;
}

/* --- FEATURES --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy-light));
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--navy);
}
.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-card__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- PRODUCTS (Dual Product) --- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.product-card {
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.35s var(--ease-out);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
}
.product-card__badge--desktop {
  background: rgba(0, 32, 96, 0.08);
  color: var(--navy);
}
.product-card__badge--gpt {
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold-dark);
}

.product-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: var(--white);
}
.product-card__icon--desktop { background: var(--navy); }
.product-card__icon--gpt { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.product-card__icon svg { width: 36px; height: 36px; }

.product-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-card__features {
  text-align: left;
  margin-bottom: 32px;
}
.product-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-muted);
}
.product-card__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--success);
  margin-top: 2px;
}

/* --- TRUST --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.trust-badge {
  text-align: center;
  padding: 32px 16px;
}

.trust-badge__number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.trust-badge__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.trust-badge__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  position: relative;
}
.trust-quote::before {
  content: '\201E';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  position: absolute;
  top: 16px;
  left: 32px;
  line-height: 1;
  opacity: 0.4;
}
.trust-quote__text {
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.trust-quote__attr {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- PRICING --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px 32px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.35s var(--ease-out);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 40px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text);
}
.pricing-card__features .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--success);
  margin-top: 2px;
}

.pricing-card .btn { width: 100%; }

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.contact-form__group {
  margin-bottom: 20px;
}
.contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form__submit {
  margin-top: 8px;
}
.contact-form__status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.contact-form__status--success {
  display: block;
  background: rgba(46, 125, 50, 0.08);
  color: var(--success);
  border: 1px solid rgba(46, 125, 50, 0.2);
}
.contact-form__status--error {
  display: block;
  background: rgba(211, 47, 47, 0.08);
  color: #d32f2f;
  border: 1px solid rgba(211, 47, 47, 0.2);
}

.contact-info {
  padding: 40px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
}
.contact-info__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 32, 96, 0.06);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--navy);
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.contact-info__value a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
}
.contact-info__value a:hover { color: var(--gold-dark); }

/* --- CTA BANNER --- */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-inverse);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  position: relative;
}

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* --- FOOTER --- */
.footer {
  background: var(--navy-ultra);
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.footer__brand {
  max-width: 320px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: 16px;
}
.footer__logo svg { width: 28px; height: 28px; }
.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-inverse);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes progressGrow {
  from { width: 0; }
  to { width: 87%; }
}

@keyframes propagate {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }

/* --- RESPONSIVE: TABLET --- */
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { max-width: 520px; margin: 0 auto; }
  .floating-badge--1 { left: 0; }
  .floating-badge--2 { right: 0; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .features-grid > :last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}

/* --- RESPONSIVE: MOBILE --- */
@media (max-width: 767px) {
  :root { --header-h: 64px; }
  body { font-size: 16px; }

  .section { padding: 72px 0; }
  .section__subtitle { font-size: 16px; }

  .header__nav { display: none; }
  .header__menu { display: flex; }

  /* Mobile menu overlay */
  .header__nav--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--navy-dark);
    padding: 40px 24px;
    gap: 0;
    z-index: 999;
    animation: fadeInUp 0.3s var(--ease-out);
  }
  .header__nav--open a {
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-inverse);
  }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero__title { font-size: 36px; }
  .hero__subtitle { font-size: 17px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }

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

  .features-grid { grid-template-columns: 1fr; }
  .features-grid > :last-child { max-width: none; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card { padding: 32px 24px; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-badge { padding: 20px 8px; }
  .trust-badge__number { font-size: 40px; }

  .pricing-grid { max-width: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .floating-badge { display: none; }
}

/* --- RESPONSIVE: SMALL MOBILE --- */
@media (max-width: 374px) {
  .hero__title { font-size: 30px; }
  .mini-cards { grid-template-columns: 1fr 1fr; gap: 6px; }
  .mini-card { padding: 10px 8px; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- PRINT --- */
@media print {
  .header, .footer, .cta-banner, .hero__visual, .floating-badge { display: none; }
  .hero { min-height: auto; background: white; color: black; padding: 40px 0; }
  .hero__title, .hero__title--accent { color: black; -webkit-text-fill-color: black; }
  .hero__subtitle { color: #333; }
  .section { padding: 32px 0; }
  body { font-size: 12pt; }
}
