/* AInsteinWP Theme Supreme — Main Stylesheet v1.0.0 */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2c2c2c;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── DESIGN TOKENS ─── */
:root {
  --navy: #18405d;
  --navy-light: #1e5070;
  --navy-muted: #2a6080;
  --gold: #cb8732;
  --gold-light: #e7bd33;
  --gold-hover: #b5762b;
  --white: #ffffff;
  --off-white: #faf9f6;
  --gray-50: #faf9f6;
  --gray-100: #f0eeea;
  --gray-200: #d8d5cf;
  --gray-400: #8e8a82;
  --gray-600: #6b6360;
  --text: #2c2c2c;
  --text-muted: #6b6360;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(24,64,93,0.06);
  --shadow-md: 0 4px 20px rgba(24,64,93,0.08);
  --shadow-lg: 0 8px 40px rgba(24,64,93,0.12);
  --shadow-card: 0 2px 12px rgba(24,64,93,0.06), 0 0 0 1px rgba(24,64,93,0.04);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --container: min(1200px, 90vw);
}

/* ─── UTILITIES ─── */
.container { width: var(--container); margin: 0 auto; }
.section-pad { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-pad-lg { padding: clamp(4rem, 10vw, 8rem) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; padding: 12px 24px; border-radius: var(--radius-sm);
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* ─── SECTION HEADINGS ─── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--gold); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15; color: var(--navy); margin-bottom: 1rem;
}
.section-intro {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--text-muted);
  max-width: 680px; line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600; padding: 14px 28px;
  border-radius: var(--radius-sm); transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 2px 8px rgba(203,135,50,0.3);
}
.btn-primary:hover { background: var(--gold-hover); box-shadow: 0 4px 16px rgba(203,135,50,0.4); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline {
  background: transparent; color: var(--navy); border: 2px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--navy); background: rgba(24,64,93,0.03); }
.btn-dark {
  background: var(--navy); color: var(--white);
  box-shadow: 0 2px 8px rgba(24,64,93,0.2);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ─── TOP STRIPE ─── */
.top-stripe {
  background: var(--navy-light, #1a2744); border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.top-stripe-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: var(--container); margin: 0 auto; height: 36px;
}
.top-stripe-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.top-stripe-links li { list-style: none; }
.top-stripe-links a {
  color: rgba(255,255,255,0.7); text-decoration: none; padding: 4px 10px;
  transition: color 0.2s;
}
.top-stripe-links a:hover { color: #fff; }
.top-stripe-links li:not(:last-child) a::after {
  content: '|'; margin-left: 8px; color: rgba(255,255,255,0.2);
}
.top-stripe-right { display: flex; align-items: center; gap: 16px; }
.top-stripe-phone {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500;
}
.top-stripe-phone:hover { color: var(--gold); }
.top-stripe-social { display: flex; align-items: center; gap: 8px; }
.top-stripe-social a {
  color: rgba(255,255,255,0.6); transition: color 0.2s;
  display: flex; align-items: center;
}
.top-stripe-social a:hover { color: #fff; }
@media (max-width: 960px) {
  .top-stripe { display: none; }
}

/* ─── NAVIGATION ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; width: var(--container); margin: 0 auto;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0; height: 100%; }
.nav-item {
  position: relative; height: 72px; display: flex; align-items: center;
}
.nav-item > a {
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color var(--transition); padding: 0 1rem; height: 100%;
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.nav-item > a:hover, .nav-item > a.active { color: #fff; }
.nav-item > a .nav-chevron {
  width: 12px; height: 12px; transition: transform var(--transition);
}
.nav-item:hover > a .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--navy-light); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  padding: 8px 0; z-index: 200;
}
.nav-item:hover > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 9px 20px; font-size: 0.84rem; font-weight: 400;
  color: rgba(255,255,255,0.65); transition: var(--transition);
  white-space: nowrap;
}
.nav-dropdown a:hover {
  color: #fff; background: rgba(255,255,255,0.05);
  padding-left: 24px;
}
.nav-dropdown-divider {
  height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0;
}

/* Nav CTA */
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 9px 20px !important; border-radius: var(--radius-sm) !important;
  font-weight: 600 !important; font-size: 0.85rem !important;
  margin-left: 0.75rem !important;
}
.nav-cta:hover { background: var(--gold-hover) !important; }

/* Mobile nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0;
    width: 100vw; height: calc(100vh - 72px);
    flex-direction: column; background: var(--navy);
    padding: 1.5rem; gap: 0; transform: translateX(100%);
    transition: transform 0.35s ease; overflow-y: auto;
    align-items: stretch; z-index: 9999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-item { height: auto; flex-direction: column; align-items: stretch; }
  .nav-item > a { height: auto; padding: 12px 0; font-size: 1.05rem; color: rgba(255,255,255,0.85); }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; box-shadow: none; padding: 0 0 8px 16px;
    display: none; min-width: auto;
  }
  .nav-item.mob-open > .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 8px 0; font-size: 0.92rem; }
  .nav-dropdown a:hover { padding-left: 0; background: none; }
  .nav-cta { margin: 12px 0 0 0 !important; text-align: center; justify-content: center; }
}

/* ─── HERO ─── */
.hero {
  position: relative; color: #fff;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden; min-height: 520px;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-content {
  background: rgba(24,64,93,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255,255,255,0.06);
  animation: slideInPanel 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  will-change: transform;
}
@keyframes slideInPanel {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; }
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  position: relative; z-index: 1;
  width: 100%; margin: 0; padding-left: clamp(1.5rem, 5vw, 60px);
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; max-width: 720px; margin: 0; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12; margin-bottom: 1rem;
  color: var(--white);
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.5rem;
}

/* Branch chips in hero */
.hero-branches {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.75rem;
}
.hero-branches span {
  font-size: 18px; font-weight: 500;
  color: rgb(255, 255, 255);
}
.hero-branches a {
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 5px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.hero-branches a:hover {
  background: rgba(203,135,50,0.15); border-color: rgba(203,135,50,0.3);
  color: var(--gold-light);
}

/* Benefit list */
.hero-benefits {
  display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 2rem;
}
@media (min-width: 520px) { .hero-benefits { grid-template-columns: 1fr 1fr; } }
.hero-benefits li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.85);
}
.hero-benefits svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }


/* ─── CUSTOMER LOGOS STRIP ─── */
.logos-strip {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem 0; overflow: hidden;
}
.logos-strip-inner {
  display: flex; align-items: center; gap: 2.5rem;
  animation: logoscroll 30s linear infinite;
  width: max-content;
}
.logos-strip-inner img {
  height: 76px; width: auto; max-width: none; object-fit: contain;
  opacity: 0.45; filter: grayscale(1); transition: var(--transition);
}
.logos-strip-inner img:hover { opacity: 0.8; filter: grayscale(0); }
@keyframes logoscroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── BRANCH SECTION ─── */
.branches { background: var(--white); }
.branch-scroller {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 1rem 0 1.5rem;
  scrollbar-width: none;
}
.branch-scroller::-webkit-scrollbar { display: none; }
.branch-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.branch-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.branch-card:hover::before { transform: scaleX(1); }
.branch-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-200); transform: translateY(-2px); }
.branch-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(24,64,93,0.04); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1rem;
}
.branch-card-icon svg { width: 24px; height: 24px; color: var(--navy); }
.branch-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem; line-height: 1.3;
}
.branch-card p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 1rem;
}
.branch-card-link {
  font-size: 0.85rem; font-weight: 600; color: var(--gold-hover);
  display: inline-flex; align-items: center; gap: 6px;
}
.branch-card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.branch-card:hover .branch-card-link svg { transform: translateX(4px); }

/* Scroll indicators */
.scroll-hint {
  display: flex; align-items: center; gap: 8px; margin-top: 0.75rem;
}
.scroll-hint-text { font-size: 0.78rem; color: var(--gray-400); }
.scroll-hint-dots { display: flex; gap: 6px; }
.scroll-hint-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200);
  transition: var(--transition);
}
.scroll-hint-dot.active { background: var(--gold); width: 20px; border-radius: 4px; }

@media (min-width: 768px) {
  .branch-card { flex: 0 0 340px; }
}

/* ─── Slider: arrows + drag ─── */
.gs-slider-wrap { position: relative; }
.branch-scroller { cursor: grab; }
.branch-scroller.dragging { cursor: grabbing; scroll-snap-type: none; }
.gs-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: rgba(240,242,244,0.96); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.13);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.gs-slider-arrow:hover {
  background: #fff; transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 22px rgba(0,0,0,0.18);
}
.gs-slider-arrow:disabled { opacity: 0.2; cursor: default; pointer-events: none; }
.gs-slider-arrow svg { width: 22px; height: 22px; color: #333; flex-shrink: 0; }
.gs-slider-arrow--prev { left: -26px; }
.gs-slider-arrow--next { right: -26px; }
@media (max-width: 767px) {
  .gs-slider-arrow { display: none; }
}

/* ─── Section dark navy ─── */
.section-navy { background: #022a3a !important; }
.section-navy .section-eyebrow { color: var(--gold-light, #f0c060); }
.section-navy .section-title  { color: #fff; }
.section-navy .section-intro  { color: rgba(255,255,255,0.78); }
.section-navy p               { color: rgba(255,255,255,0.78); }

/* ─── Pagination ─── */
.gs-pagination { display: flex; align-items: center; gap: 6px; padding: 1.5rem 0; flex-wrap: wrap; }
.gs-pagination a, .gs-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; text-decoration: none;
  background: var(--surface); color: var(--navy);
  border: 1px solid var(--gray-100); transition: var(--transition);
}
.gs-pagination a:hover { background: var(--gray-100); border-color: var(--gray-200); }
.gs-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.gs-pagination .dots { background: none; border: none; color: var(--gray-400); pointer-events: none; }

/* ─── INTEGRATIONS ─── */
.integrations { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.integrations::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(203,135,50,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.integrations .section-eyebrow { color: var(--gold-light); }
.integrations .section-eyebrow::before { background: var(--gold-light); }
.integrations .section-title { color: #fff; }
.integrations .section-intro { color: rgba(255,255,255,0.6); }

.integration-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 2.5rem; position: relative; z-index: 1;
}
@media (min-width: 600px) { .integration-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .integration-grid { grid-template-columns: repeat(6, 1fr); } }

.integration-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 1.5rem 1rem; text-align: center;
  transition: var(--transition);
}
.integration-item:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(203,135,50,0.3);
  transform: translateY(-2px);
}
.integration-item svg { width: 80px; height: 80px; margin: 0 auto 0.75rem; }
.integration-item-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.integration-item-type { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

.integration-flow {
  margin-top: 2.5rem; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 1.75rem; position: relative; z-index: 1;
}
.integration-flow p {
  font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7;
}
.integration-flow strong { color: #fff; }
.integration-links {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.25rem;
}

/* ─── FEATURES ─── */
.features { background: var(--off-white); }
.feature-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem;
}
@media (min-width: 600px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: var(--transition); position: relative;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gray-200); }
.feature-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-muted));
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.feature-card-icon svg { width: 22px; height: 22px; color: var(--gold); }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.feature-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; justify-content: center; }

/* ─── PRICING ─── */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  padding: 2rem; transition: var(--transition); position: relative;
  background: var(--white);
}
.pricing-card.featured {
  border-color: var(--gold); box-shadow: 0 4px 24px rgba(203,135,50,0.12);
}
.pricing-card.featured::before {
  content: 'Populärast'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-name {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--font-display); font-size: 2.5rem; color: var(--navy);
  line-height: 1;
}
.pricing-price span { font-size: 1rem; color: var(--gray-400); font-family: 'Inter', sans-serif; }
.pricing-desc {
  font-size: 0.88rem; color: var(--text-muted); margin: 1rem 0 1.5rem;
  line-height: 1.5; min-height: 44px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ─── TRUST ─── */
.trust { background: var(--off-white); }
.trust-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem;
}
@media (min-width: 600px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }

.trust-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 1.25rem;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}
.trust-item svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.trust-item-text { font-size: 0.9rem; font-weight: 500; color: var(--navy); line-height: 1.4; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(203,135,50,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-eyebrow::before { background: var(--gold-light); }
.testimonials .section-title { color: #fff; }

.testimonial-intro {
  font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem;
  max-width: 540px;
}

.testimonial-scroller {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 0.5rem 0 1.5rem;
  scrollbar-width: none; position: relative; z-index: 1;
}
.testimonial-scroller::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: var(--transition); position: relative;
}
@media (min-width: 768px) { .testimonial-card { flex: 0 0 380px; } }
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 12px; left: 20px;
  font-family: var(--font-display); font-size: 4rem; color: var(--gold);
  opacity: 0.2; line-height: 1;
}
.testimonial-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.65;
  margin-bottom: 1.25rem; font-style: italic; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--navy);
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.testimonial-company { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.testimonial-branch {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  color: var(--gold-light); background: rgba(203,135,50,0.1);
  padding: 2px 10px; border-radius: 100px; margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.testimonial-cta {
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.testimonial-cta p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem;
}
.testimonial-cta strong { color: #fff; }

/* ─── SEO CONTENT ─── */
.seo-content { background: var(--white); }
.seo-grid {
  display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 2rem;
}
@media (min-width: 768px) { .seo-grid { grid-template-columns: 1fr 1fr; } }
.seo-block {
  padding: 1.5rem 0; border-bottom: 1px solid var(--gray-100);
}
@media (min-width: 768px) {
  .seo-block { padding: 1.5rem 2rem; }
  .seo-block:nth-child(odd) { border-right: 1px solid var(--gray-100); }
}
.seo-block h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.6rem; display: flex; align-items: flex-start; gap: 10px;
}
.seo-block h3 svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.seo-block p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.seo-block ul { margin-top: 0.5rem; }
.seo-block ul li {
  font-size: 0.85rem; color: var(--text-muted); padding: 3px 0 3px 18px;
  position: relative;
}
.seo-block ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.seo-lead {
  font-size: 1rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 1rem; max-width: 800px;
}

/* ─── FAQ ─── */
.faq { background: var(--off-white); }
.faq-list { max-width: 800px; margin: 2rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-100); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; font-size: 1rem; font-weight: 600; color: var(--navy);
  text-align: left; cursor: pointer; gap: 1rem;
  background: none; border: none; font-family: inherit;
}
.faq-question svg {
  width: 20px; height: 20px; color: var(--gray-400); flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.25rem; font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--navy); color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(203,135,50,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .section-title { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.final-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 1; }
/* Outline/secondary buttons on dark backgrounds */
.final-cta .btn-outline,
.cta-banner .btn-outline {
  color: #fff; border-color: rgba(255,255,255,0.35);
}
.final-cta .btn-outline:hover,
.cta-banner .btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,0.08); color: #fff;
}

/* ─── FOOTER ─── */
.footer {
  background: #0e0e2a; color: rgba(255,255,255,0.5);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; } }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.3); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.88rem; color: rgba(255,255,255,0.55);
  padding: 4px 0; transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-brand-name { font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-brand-info { font-size: 0.82rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { display: flex; }
.footer-social svg { width: 18px; height: 18px; }

/* Footer badges row (certifications, awards) */
.footer-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 2rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 12px 16px;
  height: 70px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.footer-badge img {
  height: 46px;
  width: auto;
  display: block;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .logos-strip-inner { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ─── PRINT ─── */
@media print {
  .nav, .logos-strip, .final-cta { display: none; }
  body { color: #000; }
  .hero { background: #fff; color: #000; }
}

/* ─── PRODUCT PAGE SPECIFIC ─── */

/* Gold outline button (kassasystem.html) */
.btn-gold-outline {
  background: transparent; color: var(--gold); border: 2px solid var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* Breadcrumb navigation — supports nav.breadcrumb + ol.breadcrumb-list AND nav.breadcrumb-nav + ol.breadcrumb */
nav.breadcrumb,
nav.breadcrumb-nav {
  background: #041d28; border-bottom: none;
  padding: 12px 0;
}
nav.breadcrumb .container,
nav.breadcrumb-nav .container { width: var(--container); margin: 0 auto; }
.breadcrumb-list,
nav.breadcrumb-nav ol {
  display: flex; align-items: center; gap: 0;
  font-size: 13px; color: var(--gray-400);
  list-style: none; margin: 0; padding: 0;
  background: none;
}
.breadcrumb-list li,
nav.breadcrumb-nav ol li { display: flex; align-items: center; }
.breadcrumb-list li:not(:last-child)::after,
nav.breadcrumb-nav ol li:not(:last-child)::after {
  content: '/'; margin: 0 8px; color: var(--gray-200); font-weight: 400;
}
.breadcrumb-list a,
nav.breadcrumb-nav ol a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb-list a:hover,
nav.breadcrumb-nav ol a:hover { color: var(--gold-hover); }
.breadcrumb-list span,
nav.breadcrumb-nav ol span { color: var(--gray-400); }
.breadcrumb-list svg,
nav.breadcrumb-nav ol svg { width: 14px; height: 14px; }

/* Content sections */
.content-section { background: var(--white); }
.content-section:nth-child(even) { background: var(--off-white); }

.content-block {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .content-block { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .content-block.reverse { direction: rtl; }
  .content-block.reverse > * { direction: ltr; }
}
.content-block.full { grid-template-columns: 1fr; max-width: 800px; }

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.2; color: var(--navy); margin-bottom: 0.75rem;
}
.content-block p {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 0.75rem;
}
.content-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}

/* Check list */
.check-list { margin: 1rem 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0; font-size: 0.92rem; color: var(--text);
}
.check-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Info card alongside content */
.content-card {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 2rem;
}
/* Product image wrapper */
.img-fade {
  border-radius: var(--radius-sm); margin-bottom: 1rem;
}
.img-fade img { display: block; width: 100%; height: auto; }
.content-card.dark {
  background: var(--navy); border-color: transparent; color: #fff;
}
.content-card.dark h3 { color: var(--gold); }
.content-card.dark p { color: rgba(255,255,255,0.7); }
.content-card.dark .check-list li { color: rgba(255,255,255,0.85); }

/* Difference section */
.diff-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
.diff-card {
  border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  padding: 1.75rem; background: var(--white);
}
.diff-card.highlight {
  border-color: var(--gold); background: linear-gradient(135deg, rgba(203,135,50,0.03), rgba(203,135,50,0.08));
}
.diff-card h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px;
}
.diff-card h3 svg { width: 22px; height: 22px; }
.diff-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Integration logos row */
.integration-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 1.25rem 0;
}
.integration-tag {
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  padding: 8px 16px; border-radius: 100px;
  background: var(--gray-50); border: 1px solid var(--gray-100);
}

/* Branch cards with list items (product page variant) */
.branch-card ul { margin-bottom: 1.25rem; }
.branch-card ul li {
  font-size: 0.84rem; color: var(--text-muted); padding: 3px 0 3px 18px;
  position: relative; line-height: 1.5;
}
.branch-card ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* Branch scroller margin variant (product page) */
.branch-scroller.mt { margin-top: 2rem; }

/* CTA Banner */
.cta-banner {
  background: var(--navy); color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(203,135,50,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .section-title { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-banner .check-list { display: inline-block; text-align: left; margin-bottom: 2rem; }
.cta-banner .check-list li { color: rgba(255,255,255,0.85); }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 1; }
