/* ==========================================================================
   Die Schützenapp – Website Design System
   Version: 2.0

   Table of Contents:
   1.  CSS Custom Properties (Design Tokens)
   2.  CSS Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Buttons & CTAs
   6.  Navigation
   7.  Hero Section
   8.  Features Section
   9.  Benefits Section
   10. Screenshots Section
   11. Contact Section
   12. Download CTA Section
   13. Footer (Landing Page)
   14. Animations & Transitions
   15. Responsive Breakpoints
   16. Legacy: Page Header (legal pages, secondary pages)
   17. Legacy: Legal Content Styles
   18. Legacy: Site Footer (secondary pages)
   ========================================================================== */


/* ==========================================================================
   1. CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Brand Colors */
  --color-primary:          #1C5040;
  --color-primary-light:    #216550;
  --color-primary-dark:     #143D30;
  --color-accent:           #C5A55A;
  --color-accent-light:     #D4B878;
  --color-accent-dark:      #A88840;

  /* Text Colors */
  --color-text-heading:     #1a1a1a;
  --color-text-body:        #555555;
  --color-text-muted:       #888888;
  --color-text-on-dark:     #ffffff;
  --color-text-on-dark-muted: rgba(255, 255, 255, 0.72);

  /* Background Colors */
  --color-bg-white:         #ffffff;
  --color-bg-light:         #f7f8f6;
  --color-bg-dark:          #1C5040;
  --color-bg-card:          #ffffff;
  --color-bg-overlay:       rgba(28, 80, 64, 0.06);

  /* Border Colors */
  --color-border:           rgba(28, 80, 64, 0.12);
  --color-border-light:     rgba(28, 80, 64, 0.06);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl:  0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 8px 40px rgba(28, 80, 64, 0.22);

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;

  /* Border Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --max-width:        1200px;
  --max-width-narrow: 760px;
  --nav-height:       68px;
}


/* ==========================================================================
   2. CSS Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Accessibility focus ring */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-heading {
  font-size: clamp(1.875rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.section-subheading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-body);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Small gold label tag above headings */
.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(197, 165, 90, 0.12);
  border: 1px solid rgba(197, 165, 90, 0.30);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

/* Gold accent divider line */
.accent-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}


/* ==========================================================================
   4. Layout Utilities
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header .section-subheading {
  margin-top: var(--space-4);
}


/* ==========================================================================
   5. Buttons & CTAs
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

/* Primary – dark green */
.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(28, 80, 64, 0.28);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
  color: #ffffff;
  text-decoration: none;
}

/* Accent – gold */
.btn-accent {
  background: var(--color-accent);
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(197, 165, 90, 0.36);
}

.btn-accent:hover {
  background: var(--color-accent-light);
  box-shadow: 0 6px 24px rgba(197, 165, 90, 0.44);
  transform: translateY(-1px);
  color: #1a1a1a;
  text-decoration: none;
}

/* Sizes */
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1.0625rem;
}

/* ---- Store Buttons ---- */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: #111111;
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  min-width: 210px;
  text-decoration: none;
}

.store-btn:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  text-decoration: none;
}

.store-btn__icon {
  font-size: 1.9rem;
  line-height: 1;
  flex-shrink: 0;
}

.store-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn__label {
  font-size: 0.82rem;
  font-weight: 400;
  opacity: 0.78;
  letter-spacing: 0.02em;
}

.store-btn__name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}


/* ==========================================================================
   6. Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-slow),
              box-shadow var(--transition-slow),
              backdrop-filter var(--transition-slow);
}

/* Transparent state (top of page) */
.nav--transparent {
  background: transparent;
}

/* Scrolled state – JS adds this class */
.nav--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
}

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

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  transition: opacity var(--transition-fast);
  text-decoration: none;
}

.nav__logo:hover { opacity: 0.8; color: var(--color-primary); text-decoration: none; }

.nav__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

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

/* Transparent nav logo / links in white */
.nav--transparent .nav__logo { color: #ffffff; }
.nav--transparent .nav__logo:hover { color: #ffffff; }

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-body);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

.nav__link:hover {
  color: var(--color-primary);
  background: var(--color-bg-overlay);
  text-decoration: none;
}

.nav--transparent .nav__link { color: rgba(255, 255, 255, 0.88); }
.nav--transparent .nav__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

/* Scroll-Spy: currently-visible section */
.nav__link.is-active {
  color: var(--color-primary);
  font-weight: 600;
}
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: 2px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav--transparent .nav__link.is-active {
  color: #ffffff;
}

.nav__cta { margin-left: var(--space-4); }

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  background: none;
  border: none;
}

.nav__hamburger:hover { background: var(--color-bg-overlay); }

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-heading);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav--transparent .nav__hamburger span { background: #ffffff; }

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) var(--space-6);
  flex-direction: column;
  gap: var(--space-1);
  z-index: 999;
}

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

.nav__mobile-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-body);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.nav__mobile-link.is-active {
  color: var(--color-primary);
  background: var(--color-bg-overlay);
  font-weight: 600;
  border-left: 3px solid var(--color-primary);
}

.nav__mobile-link:hover {
  color: var(--color-primary);
  background: var(--color-bg-overlay);
  text-decoration: none;
}

.nav__mobile-cta {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}


/* ==========================================================================
   7. Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-20);
  overflow: hidden;
  background: linear-gradient(150deg,
    var(--color-primary-dark) 0%,
    var(--color-primary)      45%,
    var(--color-primary-light) 100%);
}

/* Subtle dot-pattern + radial glow overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 78%, rgba(197, 165, 90, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Gold accent bottom line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.6;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  width: 100%;
}

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

/* Small badge above heading */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(197, 165, 90, 0.18);
  border: 1px solid rgba(197, 165, 90, 0.40);
  color: var(--color-accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.hero__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.hero__heading {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: var(--space-6);
}

.hero__heading mark {
  background: none;
  color: var(--color-accent-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--color-text-on-dark-muted);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}

.hero__store-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

/* ---- Phone Mockup ---- */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Decorative glow behind phone */
.hero__visual::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.36));
  animation: float 6s ease-in-out infinite;
}

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

.phone-mockup__frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: #111111;
  border-radius: 44px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Dynamic Island simulation */
.phone-mockup__frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg,
    var(--color-primary-dark) 0%,
    var(--color-primary)      60%,
    rgba(28, 80, 64, 0.7)    100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.phone-mockup__app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.phone-mockup__app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup__app-name {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}

.phone-mockup__app-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-align: center;
}

/* Simulated UI elements inside phone screen */
.phone-mockup__ui-rows {
  width: 76%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--space-3);
}

.phone-mockup__ui-row {
  height: 36px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}

.phone-mockup__ui-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.phone-mockup__ui-line {
  height: 4px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.16);
  flex: 1;
}

.phone-mockup__ui-line--short { flex: 0.6; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  pointer-events: none;
}

.hero__scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.36);
  border-bottom: 2px solid rgba(255, 255, 255, 0.36);
  transform: rotate(45deg);
  margin-top: 2px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* ==========================================================================
   8. Features Section
   ========================================================================== */

.features {
  background: var(--color-bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: var(--space-5);
}

.feature-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  /* Reveal animation – starts hidden */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 80, 64, 0.20);
}

/* Icon circle – initials-based, no emoji */
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(28, 80, 64, 0.25);
  letter-spacing: -0.02em;
  user-select: none;
}

.feature-card__icon--accent {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  box-shadow: 0 4px 12px rgba(197, 165, 90, 0.30);
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-body);
  line-height: 1.65;
}


/* ==========================================================================
   8b. Contract Spotlight Section
   ========================================================================== */

.contract-spotlight {
  background: var(--color-bg-white);
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.contract-spotlight__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Full-width card with split layout */
.contract-spotlight__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  /* Offset vertically to bridge the features / benefits gap */
  margin-top: calc(-1 * var(--space-12));
  margin-bottom: var(--space-20);
  position: relative;
  z-index: 2;
}

/* Left panel – dark green brand side */
.contract-spotlight__left {
  background: linear-gradient(150deg,
    var(--color-primary-dark)  0%,
    var(--color-primary)       55%,
    var(--color-primary-light) 100%);
  position: relative;
  padding: var(--space-16) var(--space-12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
}

/* Subtle dot-grid overlay matching the hero */
.contract-spotlight__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 80%, rgba(197, 165, 90, 0.14) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Gold bottom accent line */
.contract-spotlight__left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.55;
}

.contract-spotlight__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(197, 165, 90, 0.20);
  border: 1.5px solid rgba(197, 165, 90, 0.44);
  color: var(--color-accent-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  width: fit-content;
  position: relative;
  z-index: 1;
}

.contract-spotlight__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-spot 2.4s ease-in-out infinite;
}

@keyframes pulse-spot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.65); }
}

.contract-spotlight__heading {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  position: relative;
  z-index: 1;
}

.contract-spotlight__subheading {
  font-size: clamp(1rem, 1.3vw, 1.0625rem);
  color: var(--color-accent-light);
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.contract-spotlight__desc {
  font-size: 0.9375rem;
  color: var(--color-text-on-dark-muted);
  line-height: 1.8;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

/* The "beer" quote callout */
.contract-spotlight__quote {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  background: rgba(197, 165, 90, 0.12);
  border: 1px solid rgba(197, 165, 90, 0.28);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-top: var(--space-2);
}

.contract-spotlight__quote-text {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

/* Right panel – light, feature-points side */
.contract-spotlight__right {
  background: var(--color-bg-light);
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-8);
  border-left: 1px solid var(--color-border-light);
}

.contract-spotlight__points-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contract-spotlight__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contract-spotlight__point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  transition: box-shadow var(--transition-base), border-color var(--transition-base),
              transform var(--transition-base);
}

.contract-spotlight__point:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 80, 64, 0.18);
  transform: translateX(3px);
}

.contract-spotlight__point-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(197, 165, 90, 0.32);
}

.contract-spotlight__point-text {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.55;
}

.contract-spotlight__point-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-heading);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 960px) {
  .contract-spotlight__card {
    grid-template-columns: 1fr;
    margin-top: var(--space-8);
    margin-bottom: var(--space-16);
  }

  .contract-spotlight__left {
    padding: var(--space-12) var(--space-8);
  }

  .contract-spotlight__right {
    padding: var(--space-10) var(--space-8);
    border-left: none;
    border-top: 1px solid var(--color-border-light);
  }
}

@media (max-width: 640px) {
  .contract-spotlight__left {
    padding: var(--space-10) var(--space-6);
  }

  .contract-spotlight__right {
    padding: var(--space-8) var(--space-6);
  }

  .contract-spotlight__point {
    padding: var(--space-4) var(--space-4);
  }
}


/* ==========================================================================
   8c. Spotlight Sections (Communication, Shooting Groups, and future spotlights)
   ========================================================================== */

/* Wrapper – same outer structure as .contract-spotlight */
.feature-spotlight {
  background: var(--color-bg-white);
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.feature-spotlight__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Two-column card – dark text side left, light side right by default */
.feature-spotlight__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: var(--space-20);
  position: relative;
  z-index: 2;
}

/* Modifier: flip column order so the light panel is on the left */
.feature-spotlight__card--reversed {
  direction: rtl; /* flips column order visually */
}

/* Restore normal text direction inside children */
.feature-spotlight__card--reversed > * {
  direction: ltr;
}

/* Dark (brand-green) panel */
.feature-spotlight__dark {
  background: linear-gradient(150deg,
    var(--color-primary-dark)  0%,
    var(--color-primary)       55%,
    var(--color-primary-light) 100%);
  position: relative;
  padding: var(--space-16) var(--space-12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
}

/* Dot-grid overlay matching the hero / contract spotlight */
.feature-spotlight__dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 80%, rgba(197, 165, 90, 0.14) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Gold accent bottom line */
.feature-spotlight__dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.55;
}

/* Badge – identical treatment to .contract-spotlight__badge */
.feature-spotlight__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(197, 165, 90, 0.20);
  border: 1.5px solid rgba(197, 165, 90, 0.44);
  color: var(--color-accent-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  width: fit-content;
  position: relative;
  z-index: 1;
}

.feature-spotlight__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-spot 2.4s ease-in-out infinite;
}

.feature-spotlight__heading {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  position: relative;
  z-index: 1;
}

.feature-spotlight__subheading {
  font-size: clamp(1rem, 1.3vw, 1.0625rem);
  color: var(--color-accent-light);
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
}

.feature-spotlight__desc {
  font-size: 0.9375rem;
  color: var(--color-text-on-dark-muted);
  line-height: 1.8;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

/* Light (right) panel */
.feature-spotlight__light {
  background: var(--color-bg-light);
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-8);
  border-left: 1px solid var(--color-border-light);
}

/* Restore border side when reversed */
.feature-spotlight__card--reversed .feature-spotlight__light {
  border-left: none;
  border-right: 1px solid var(--color-border-light);
}

.feature-spotlight__points-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.feature-spotlight__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-spotlight__point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  transition: box-shadow var(--transition-base), border-color var(--transition-base),
              transform var(--transition-base);
}

.feature-spotlight__point:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 80, 64, 0.18);
  transform: translateX(3px);
}

/* Reversed card: translate in opposite direction on hover */
.feature-spotlight__card--reversed .feature-spotlight__point:hover {
  transform: translateX(-3px);
}

.feature-spotlight__point-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(197, 165, 90, 0.32);
}

/* Green icon variant for shooting groups */
.feature-spotlight__point-icon--green {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  box-shadow: 0 3px 10px rgba(28, 80, 64, 0.28);
}

.feature-spotlight__point-text {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.55;
}

.feature-spotlight__point-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-heading);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

/* Responsive: stack columns on tablet/mobile */
@media (max-width: 960px) {
  .feature-spotlight__card {
    grid-template-columns: 1fr;
    margin-bottom: var(--space-16);
  }

  /* Undo direction trick so stacked order is always dark-on-top */
  .feature-spotlight__card--reversed {
    direction: ltr;
  }

  .feature-spotlight__dark {
    padding: var(--space-12) var(--space-8);
  }

  .feature-spotlight__light {
    padding: var(--space-10) var(--space-8);
    border-left: none;
    border-top: 1px solid var(--color-border-light);
  }

  .feature-spotlight__card--reversed .feature-spotlight__light {
    border-right: none;
    border-top: 1px solid var(--color-border-light);
  }
}

@media (max-width: 640px) {
  .feature-spotlight__dark {
    padding: var(--space-10) var(--space-6);
  }

  .feature-spotlight__light {
    padding: var(--space-8) var(--space-6);
  }

  .feature-spotlight__point {
    padding: var(--space-4);
  }
}


/* ==========================================================================
   9. Benefits Section
   ========================================================================== */

.benefits { background: var(--color-bg-white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.benefit-card {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-8);
  background: var(--color-bg-light);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base), border-color var(--transition-base),
              opacity 0.55s ease, transform 0.55s ease;
  opacity: 0;
  transform: translateY(20px);
}

.benefit-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 80, 64, 0.16);
}

.benefit-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(28, 80, 64, 0.22);
  font-size: 1.5rem;
}

.benefit-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
  letter-spacing: -0.015em;
}

.benefit-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-body);
  line-height: 1.75;
}


/* ==========================================================================
   10. Screenshots Section
   ========================================================================== */

.screenshots { background: var(--color-bg-light); overflow: hidden; }

/* Horizontally scrollable track */
.screenshots__scroll-container {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-left: calc(-1 * var(--space-6));
  margin-right: calc(-1 * var(--space-6));
  padding-left: var(--space-6);
  padding-right: var(--space-6);
  padding-bottom: var(--space-4);
}

.screenshots__scroll-container::-webkit-scrollbar { display: none; }

.screenshots__track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.screenshot-phone {
  width: 180px;
  height: 370px;
  background: #111111;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

/* Mini Dynamic Island */
.screenshot-phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 17px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.screenshot-phone__inner {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
}

/* Gradient placeholder screens */
.screenshot-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-4) var(--space-3);
}

.screenshot-placeholder--home    { background: linear-gradient(160deg, var(--color-primary-dark), var(--color-primary)); }
.screenshot-placeholder--events  { background: linear-gradient(160deg, #1a3d55, #2a6080); }
.screenshot-placeholder--members { background: linear-gradient(160deg, #3d2a1a, #6b4a2a); }
.screenshot-placeholder--king    { background: linear-gradient(160deg, var(--color-accent-dark), #a07820); }
.screenshot-placeholder--stats   { background: linear-gradient(160deg, #1a2d45, #2a4070); }
.screenshot-placeholder--fines   { background: linear-gradient(160deg, #2a1a3d, #4a2a6b); }

/* Simulated app UI elements */
.screenshot-ui-header {
  width: 88%;
  height: 28px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  margin-bottom: var(--space-2);
}

.screenshot-ui-rows {
  width: 88%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.screenshot-ui-row {
  height: 28px;
  background: rgba(255,255,255,0.09);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 6px;
}

.screenshot-ui-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.26);
  flex-shrink: 0;
}

.screenshot-ui-line {
  height: 4px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.14);
  flex: 1;
}

.screenshot-ui-line--short { flex: 0.55; }

.screenshot-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-body);
}


/* ==========================================================================
   11. Contact Section
   ========================================================================== */

.contact { background: var(--color-bg-white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
}

.contact__info-heading {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-heading);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}

.contact__info-text {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.contact__email-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-overlay);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.contact__email-link:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  text-decoration: none;
}

/* Contact form card */
.contact__form-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-heading);
  letter-spacing: -0.01em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  color: var(--color-text-heading);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-muted); }

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(28, 80, 64, 0.10);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  margin-top: var(--space-2);
}


/* ==========================================================================
   12. Download CTA Section
   ========================================================================== */

.download-cta {
  background: linear-gradient(135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary)      60%,
    var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(197, 165, 90, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* Decorative ring */
.download-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.download-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.download-cta__icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.30),
              0 4px 12px rgba(0, 0, 0, 0.20);
}

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

.download-cta__heading {
  font-size: clamp(1.875rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 540px;
  margin: 0 auto;
}

.download-cta__sub {
  font-size: 1rem;
  color: var(--color-text-on-dark-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
}

.download-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* Store buttons on dark background */
.download-cta .store-btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.download-cta .store-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.44);
  color: #ffffff;
}

.download-cta__note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.34);
  letter-spacing: 0.04em;
}


/* ==========================================================================
   13. Footer (Landing Page)
   ========================================================================== */

.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.68);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-bottom: var(--space-4);
}

.footer__logo:hover { color: #ffffff; text-decoration: none; opacity: 0.85; }

.footer__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

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

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover { color: #ffffff; text-decoration: none; }

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.footer__social-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  text-decoration: none;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-6);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.32);
}

.footer__made-with {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.26);
}


/* ==========================================================================
   14. Animations & Transitions
   ========================================================================== */

/* Scroll reveal base state – managed by IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }


/* ==========================================================================
   15. Responsive Breakpoints
   ========================================================================== */

/* Tablet – ≤ 960px */
@media (max-width: 960px) {

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
  }

  .hero__content { order: 1; }
  .hero__visual   { order: 0; }

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

  .hero__actions { align-items: center; }

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

  .phone-mockup__frame {
    width: 230px;
    height: 476px;
    border-radius: 38px;
  }

  .benefits-grid { grid-template-columns: 1fr; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8) var(--space-10);
  }

  .footer__brand { grid-column: 1 / -1; }
  .footer__tagline { max-width: 100%; }
}

/* Mobile – ≤ 640px */
@media (max-width: 640px) {

  :root {
    --nav-height: 60px;
  }

  .section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  /* Nav: hide desktop links */
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-height) + var(--space-10));
    padding-bottom: var(--space-12);
  }

  .hero__heading { font-size: 2rem; }

  .phone-mockup__frame {
    width: 200px;
    height: 414px;
    border-radius: 34px;
  }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Contact form */
  .contact__form-card { padding: var(--space-6); }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__brand { grid-column: 1; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  /* Screenshots */
  .screenshot-phone {
    width: 148px;
    height: 304px;
  }
}

/* Large screens – ≥ 1280px */
@media (min-width: 1280px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ==========================================================================
   16. Legacy: Page Header (legal pages, secondary pages)
   Preserved for /impressum, /datenschutz, /help/* and other secondary pages.
   ========================================================================== */

.page-header {
  background: var(--color-primary);
  padding: 56px 24px 48px;
  text-align: center;
}

.page-header__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.page-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-header__subtitle {
  margin-top: 14px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.70);
}


/* ==========================================================================
   17. Legacy: Legal Content Styles
   Preserved for /impressum, /datenschutz pages.
   ========================================================================== */

.legal-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f0ec;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.legal-meta::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-left: 3px solid var(--color-accent);
  padding-left: 12px;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin: 20px 0 8px;
}

.legal-section p {
  font-size: 0.96rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul,
.legal-section ol {
  margin: 10px 0 14px 20px;
  list-style: initial;
}

.legal-section li {
  font-size: 0.96rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 4px;
}

.legal-section a {
  color: var(--color-primary);
  text-decoration: underline;
  word-break: break-word;
}

.legal-section a:hover { color: var(--color-accent-dark); }

.legal-address {
  background: #f0f5f2;
  border-left: 3px solid var(--color-primary);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin: 14px 0;
}

.legal-notice {
  background: #fff9ee;
  border: 1px solid #e8d99a;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #5a4a1a;
  margin: 14px 0;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.back-to-top:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.back-to-top::before { content: '↑'; font-size: 1rem; }

@media (max-width: 600px) {
  .legal-wrapper { padding: 32px 16px 56px; }
  .page-header   { padding: 40px 16px 36px; }
}


/* ==========================================================================
   18. Legacy: Site Nav & Footer (secondary / legal pages)
   Preserved so that /impressum, /datenschutz still render correctly.
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  gap: 24px;
}

.site-nav__brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav__brand:hover { color: var(--color-accent); text-decoration: none; }
.site-nav__brand span  { color: var(--color-accent); }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.site-nav__links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__links a:hover { color: var(--color-accent); text-decoration: none; }

.site-nav__cta {
  background: var(--color-accent);
  color: var(--color-primary-dark) !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: 8px;
  transition: background 0.18s !important;
  white-space: nowrap;
}

.site-nav__cta:hover {
  background: var(--color-accent-light) !important;
  color: var(--color-primary-dark) !important;
}

.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 768px) {
  .site-nav__toggle { display: flex; }

  .site-nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-primary-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);
  }

  .site-nav__links.is-open { display: flex; }

  .site-nav__links li { width: 100%; }

  .site-nav__links a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .site-nav__cta {
    margin: 8px 24px 0;
    display: inline-block;
    border-radius: 8px;
  }
}

/* Secondary page footer */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.site-footer__brand span { color: var(--color-accent); }

.site-footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.50);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  list-style: none;
  align-items: center;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.18s;
  font-size: 0.875rem;
}

.site-footer__links a:hover { color: var(--color-accent); text-decoration: none; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 24px;
  }
}


/* =====================================================================
   DEMO / FREE TRIAL SECTION
   ===================================================================== */

.demo-trial {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary)      55%,
    var(--color-primary-light) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Decorative background circle */
.demo-trial::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.demo-trial__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* Badge label */
.demo-trial__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}

.demo-trial__header {
  margin-bottom: var(--space-8);
}

.demo-trial__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.demo-trial__desc {
  font-size: 1rem;
  color: var(--color-text-on-dark-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* Three-point row */
.demo-trial__points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.demo-trial__point {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.09);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  flex: 1 1 200px;
  max-width: 240px;
  text-align: left;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Icon circle – consistent with feature-card__icon style */
.demo-trial__point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(197, 165, 90, 0.20);
  border: 1.5px solid rgba(197, 165, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.demo-trial__point-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-trial__point-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.demo-trial__point-sub {
  font-size: 0.78rem;
  color: var(--color-text-on-dark-muted);
  line-height: 1.4;
}

/* CTA row */
.demo-trial__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.demo-trial__pricing-link {
  font-size: 0.9rem;
  color: var(--color-accent-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s, opacity 0.18s;
  letter-spacing: 0.01em;
}

.demo-trial__pricing-link:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

/* Download CTA trial note (below the sub-heading) */
.download-cta__trial-note {
  font-size: 0.88rem;
  color: var(--color-accent-light);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: calc(var(--space-2) * -1); /* pull up slightly under the sub text */
  margin-bottom: var(--space-2);
}

/* Responsive: stack points on mobile */
@media (max-width: 640px) {
  .demo-trial__points {
    flex-direction: column;
    align-items: center;
  }

  .demo-trial__point {
    max-width: 100%;
    width: 100%;
  }

  .demo-trial__cta {
    flex-direction: column;
  }
}


/* ==========================================================================
   UNIFIED GREEN LANDING (Override – durchgehend Schützengrün, Nav immer weiß)
   ========================================================================== */

/* Body und Sections durchgehend in Primärgrün */
body {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
}

.features,
.benefits,
.screenshots,
.contact,
.demo-trial,
.contract-spotlight,
.feature-spotlight,
.download-cta {
  background: var(--color-primary) !important;
}

/* Hero behält Gradient — wirkt aber organisch eingebunden */

/* Section-Überschriften und Texte auf Grün */
.section-heading,
.contract-spotlight__heading,
.feature-spotlight__heading,
.demo-trial__heading,
.download-cta__heading,
.contact__info-heading {
  color: var(--color-text-on-dark) !important;
}

.section-subheading,
.contract-spotlight__subheading,
.contract-spotlight__desc,
.feature-spotlight__subheading,
.feature-spotlight__desc,
.demo-trial__desc,
.download-cta__sub,
.contact__info-text,
.demo-trial__point-sub {
  color: var(--color-text-on-dark-muted) !important;
}

.label-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text-on-dark);
}

/* Cards heben sich dezent vom Hintergrund ab */
.feature-card,
.benefit-card,
.demo-trial__point,
.contract-spotlight__point,
.feature-spotlight__point,
.contact__form-card,
.contract-spotlight__card,
.feature-spotlight__card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--color-text-on-dark);
  box-shadow: none !important;
}

.feature-card *,
.benefit-card *,
.demo-trial__point *,
.contract-spotlight__point *,
.feature-spotlight__point * {
  color: inherit;
}

.feature-card h3,
.benefit-card h3,
.demo-trial__point-title,
.contract-spotlight__points-heading,
.feature-spotlight__points-heading,
.contract-spotlight__point-text strong,
.feature-spotlight__point-text strong {
  color: var(--color-text-on-dark) !important;
}

/* Feature-Spotlight: Dunkle und helle Hälfte sind jetzt einheitlich grün */
.feature-spotlight__dark,
.feature-spotlight__light,
.contract-spotlight__left,
.contract-spotlight__right {
  background: rgba(255, 255, 255, 0.04) !important;
}

/* Quotes und Zitate */
.contract-spotlight__quote {
  background: rgba(255, 255, 255, 0.08) !important;
  border-left-color: var(--color-accent) !important;
}
.contract-spotlight__quote-text {
  color: var(--color-text-on-dark) !important;
}

/* Kontaktformular-Felder lesbar auf Grün */
.contact__form-card input,
.contact__form-card textarea {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-text-on-dark) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.contact__form-card input::placeholder,
.contact__form-card textarea::placeholder {
  color: var(--color-text-on-dark-muted) !important;
}
.contact__form-card label {
  color: var(--color-text-on-dark) !important;
}

/* E-Mail-Link im Kontakt */
.contact__email-link {
  color: var(--color-accent) !important;
}

/* Pricing-Link unten in Demo-Section */
.demo-trial__pricing-link {
  color: var(--color-accent) !important;
}

/* ---- Nav: durchgehend weiß ---- */
.nav,
.nav--transparent {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav--scrolled {
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
}

/* Nav-Links: immer dunkel auf weißer Nav */
.nav--transparent .nav__link {
  color: var(--color-text-body) !important;
}
.nav--transparent .nav__link:hover,
.nav--transparent .nav__link.is-active {
  color: var(--color-primary) !important;
  background: var(--color-bg-overlay);
}
.nav--transparent .nav__hamburger span {
  background: var(--color-text-heading) !important;
}

/* Scroll-Spy unter Links */
.nav__link.is-active::after {
  background: var(--color-primary);
}

/* Footer dunkler Grün-Ton zur Abgrenzung */
.footer {
  background: var(--color-primary-dark) !important;
}

/* ---- Goldene horizontale Striche als Section-Trenner ---- */
.demo-trial,
.features,
.contract-spotlight,
.feature-spotlight,
.benefits,
.screenshots,
.contact {
  position: relative;
}

/* Horizontaler Goldstrich am oberen Rand jeder Section */
.features::before,
.contract-spotlight::before,
.feature-spotlight::before,
.benefits::before,
.screenshots::before,
.contact::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  z-index: 3;
  box-shadow: 0 0 16px rgba(197, 165, 90, 0.45);
}

/* Demo-Trial hat schon ein ::before — wir nutzen ::after dort */
.demo-trial::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  z-index: 3;
  box-shadow: 0 0 16px rgba(197, 165, 90, 0.45);
}
