:root{
  --bg: #f6f7f8;
  --surface: rgba(255,255,255,0.78);
  --surface-2: rgba(255,255,255,0.9);
  --stroke: rgba(10, 28, 38, 0.12);
  --text: #081a24;
  --muted: rgba(8, 26, 36, 0.70);

  /* Logo-inspiriert (dunkles Marineblau + kühles Blau) */
  --brand-950: #041a27;
  --brand-900: #072a3c;
  --brand-800: #083449;
  --brand-700: #0a4660;
  --brand-600: #0b5876;
  --brand-500: #0d6a8e;

  --ring: rgba(11, 88, 118, 0.35);
  --shadow: 0 18px 60px rgba(4, 26, 39, 0.18);
  --shadow-lg: 0 24px 80px rgba(4, 26, 39, 0.24);

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --container: 1120px;
  --pad: 24px;

  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --duration-fast: 180ms;
  --duration-base: 280ms;

  /* Fallback header offset for in-page anchors (overwritten by JS when available) */
  --header-offset: 90px;
}

*{box-sizing:border-box}
*:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}
html{
  scroll-behavior:smooth;
  scroll-padding-top: var(--header-offset, 90px);
}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 450px at 20% -10%, rgba(11, 88, 118, 0.12), transparent 70%),
    radial-gradient(800px 500px at 85% 10%, rgba(10, 70, 96, 0.10), transparent 65%),
    var(--bg);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{max-width:100%;height:auto}
a{color:inherit}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:var(--brand-900);
  color:white;
  padding:10px 14px;
  border-radius:999px;
  z-index:1000;
}
.skip-link:focus{left:12px; outline:3px solid var(--ring)}

.scroll-progress{
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-900), var(--brand-600), var(--brand-500));
  z-index: 1000;
  transition: none;
  box-shadow: 0 0 12px rgba(11, 88, 118, 0.4);
}

.container{
  width:min(var(--container), calc(100% - 2*var(--pad)));
  margin:0 auto;
}

.section{
  padding:84px 0;
}

/* Ensure anchors land below the sticky header across breakpoints */
.section[id],
#top,
[id]:not(html):not(body){
  scroll-margin-top: var(--header-offset, 90px);
}
.section.alt{
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(7, 42, 60, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.40));
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}

.section-divider{
  padding: 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-divider svg{
  max-width: var(--container);
  opacity: 0.8;
}

.section-head{max-width:740px}
.section-head h2{
  font-size: clamp(28px, 3.2vw, 40px);
  margin:0 0 12px;
  letter-spacing:-0.03em;
  line-height: 1.15;
}
.section-head p{
  margin:0;
  color:var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 2px;
}

h1{
  font-size: clamp(36px, 4.2vw, 56px);
  line-height:1.03;
  margin: 0 0 18px;
  letter-spacing:-0.03em;
}

h3{margin:0 0 12px; letter-spacing:-0.02em; font-size: 19px}
h4{margin:0; letter-spacing:-0.01em; font-size: 17px; font-weight: 700}
.lead{font-size: 18px; color: rgba(8, 26, 36, 0.82); line-height: 1.65; max-width: 640px; margin-top: 2px}
.muted{color: rgba(8, 26, 36, 0.68); line-height: 1.6}
.fine{font-size: 13px; color: rgba(8, 26, 36, 0.68); margin:0; line-height: 1.65}

.urgency-note{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 18px;
  background: rgba(255, 166, 0, 0.08);
  border: 1px solid rgba(255, 166, 0, 0.20);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(8, 26, 36, 0.88);
  line-height: 1.5;
}
.urgency-note svg{
  flex-shrink: 0;
  color: rgba(255, 140, 0, 0.85);
}

.gradient{
  background: linear-gradient(135deg, var(--brand-900), var(--brand-600));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.site-header{
  position: -webkit-sticky;
  position: sticky;
  top:0;
  z-index:1000;
  width: 100%;
  background: rgba(246, 247, 248, 0.97);
  border-bottom: 1px solid rgba(10, 28, 38, 0.10);
  isolation: isolate;
}
.site-header::after{
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(246, 247, 248, 0.98) 0%, rgba(246, 247, 248, 0.85) 40%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.site-header[data-elevate="true"]{
  box-shadow: 0 10px 30px rgba(4, 26, 39, 0.08);
  backdrop-filter: blur(20px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 16px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; border-radius: 8px; transition: opacity var(--duration-fast) var(--ease)}
.brand:hover{opacity: 0.85}
.brand:focus-visible{outline: 3px solid var(--ring); outline-offset: 4px}
.brand-logo{display:block; width:auto; height:88px}

.nav{display:flex; align-items:center; gap:16px}
.nav-link{
  text-decoration:none;
  color: rgba(8, 26, 36, 0.78);
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 999px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease);
}
.nav-link:hover{
  background: rgba(7, 42, 60, 0.06);
  color: var(--brand-800);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(10, 28, 38, 0.12);
  text-decoration:none;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: transform var(--duration-fast) var(--ease), 
              background var(--duration-base) var(--ease), 
              box-shadow var(--duration-base) var(--ease),
              border-color var(--duration-fast) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 44px;
}
.btn::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease);
  pointer-events: none;
}
.btn:hover::before{opacity: 1}

.btn::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s, opacity 0.35s;
  pointer-events: none;
}
.btn:active::after{
  width: 300px;
  height: 300px;
  opacity: 1;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 26, 39, 0.20);
}
.btn:active{transform: translateY(0); transition-duration: 80ms}
.btn:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}
.btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-primary{
  color:white;
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  box-shadow: 0 14px 34px rgba(4, 26, 39, 0.22), 0 0 0 0 rgba(11, 88, 118, 0);
}
.btn-primary:hover{
  box-shadow: 0 18px 44px rgba(4, 26, 39, 0.28), 0 0 0 4px rgba(11, 88, 118, 0.12);
}
.btn-ghost{
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.92);
  border-color: rgba(10, 28, 38, 0.20);
}
.btn-success{
  background: linear-gradient(135deg, rgba(11, 88, 118, 0.85), rgba(13, 106, 142, 0.85));
  color: white;
  border-color: rgba(11, 88, 118, 0.30);
}
.btn-success:hover{
  background: linear-gradient(135deg, rgba(11, 88, 118, 0.92), rgba(13, 106, 142, 0.92));
}
.btn-block{width:100%}

.nav-toggle{
  display:none;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(10, 28, 38, 0.12);
  border-radius: 999px;
  padding: 12px;
  cursor: pointer;
}
.nav-toggle-bars{
  display:block;
  width:22px;
  height:16px;
  position:relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: var(--brand-900);
  border-radius: 999px;
  transition: transform var(--duration-fast) var(--ease);
}
.nav-toggle-bars::before{top:0}
.nav-toggle-bars::after{bottom:0}
.nav-toggle-bars span{
  position:absolute;
  left:0;
  right:0;
  top:50%;
  transform:translateY(-50%);
  height:2px;
  background: var(--brand-900);
  border-radius: 999px;
  display:block;
  transition: opacity var(--duration-fast) var(--ease);
}

.mobile-nav{border-top:1px solid rgba(10, 28, 38, 0.10)}
.mobile-nav-inner{padding: 12px 0 20px; display:grid; gap:12px}
.mobile-link{
  text-decoration:none;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(10, 28, 38, 0.10);
  min-height: 48px;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: background var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
}
.mobile-link:active{
  background: rgba(255,255,255,0.9);
  border-color: rgba(11, 88, 118, 0.22);
}

.hero{position:relative; padding: 100px 0 84px; overflow: hidden}
.hero::before{
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(11, 88, 118, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid{display:grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items:start}
.hero-copy > *{animation: fade-slide-in 0.7s var(--ease) backwards}
.hero-copy .eyebrow{animation-delay: 0.1s}
.hero-copy h1{animation-delay: 0.2s}
.hero-copy .lead{animation-delay: 0.3s}
.hero-copy .hero-cta{animation-delay: 0.4s}
.hero-copy .trust-row{animation-delay: 0.5s}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow{
  margin:0 0 16px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-size: 13px;
  color: rgba(8, 26, 36, 0.70);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow svg{
  color: var(--brand-700);
  flex-shrink: 0;
}
.hero-cta{display:flex; gap:14px; margin-top: 20px; flex-wrap:wrap}

.trust-row{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:12px; margin-top: 36px}
.hero .trust-row{will-change: opacity, filter; transform: translateZ(0)}
.trust{
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(10, 28, 38, 0.10);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: transform var(--duration-base) var(--ease),
              background var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
}
.trust:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.88);
  border-color: rgba(11, 88, 118, 0.20);
}
.trust:first-child{
  background: linear-gradient(135deg, rgba(11, 88, 118, 0.12), rgba(11, 88, 118, 0.06));
  border-color: rgba(11, 88, 118, 0.20);
}
.trust:first-child .trust-v{
  color: var(--brand-800);
  font-size: 18px;
}
.trust-k{font-size: 12px; color: rgba(8, 26, 36, 0.62); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600}
.trust-v{font-weight: 700; letter-spacing:-0.01em; margin-top:2px}

.hero-panel{position:relative}
.panel{
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(10, 28, 38, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
}
.panel > * + *{margin-top: 14px}

.panel-top{display:flex; align-items:center; justify-content:space-between; gap:12px; padding-bottom: 12px; border-bottom: 1px solid rgba(10, 28, 38, 0.10)}
.panel-title{font-weight: 800; letter-spacing:-0.02em; font-size: 17px}
.panel-badge{
  font-size: 12px;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.panel-foot{margin-top: 16px; display:grid; gap:12px}
.panel-foot .btn-primary{
  box-shadow: 0 10px 28px rgba(4, 26, 39, 0.28);
}
.panel-foot .btn-primary:hover{
  box-shadow: 0 14px 36px rgba(4, 26, 39, 0.36);
  transform: translateY(-2px);
}

.checklist{list-style:none; padding: 18px 0 0; margin:0; display:grid; gap:14px}
.checklist li{display:flex; align-items:flex-start; gap:12px; color: rgba(8, 26, 36, 0.82); line-height: 1.5}
.check{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(11, 88, 118, 0.12);
  border: 1px solid rgba(11, 88, 118, 0.25);
  position:relative;
  flex: 0 0 auto;
  margin-top: 1px;
}
.check::after{
  content:"";
  position:absolute;
  left:4px;
  top:4px;
  width:8px;
  height:4px;
  border-left:2px solid var(--brand-700);
  border-bottom:2px solid var(--brand-700);
  transform: rotate(-45deg);
}

.hero-bg{position:absolute; inset:0; pointer-events:none}
.glow{
  position:absolute;
  width: 760px;
  height: 760px;
  left: -280px;
  top: -330px;
  background: radial-gradient(circle at 35% 35%, rgba(11, 88, 118, 0.22), transparent 60%);
  filter: blur(10px);
}
.gridlines{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(to right, rgba(7, 42, 60, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7, 42, 60, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 30% 25%, rgba(0,0,0,0.85), transparent 70%);
}

.cards{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:16px; margin-top: 36px}
.card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(10, 28, 38, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--duration-base) var(--ease), 
              box-shadow var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
}
.card:hover{
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 48px rgba(4, 26, 39, 0.16), 0 0 0 1px rgba(11, 88, 118, 0.10);
  border-color: rgba(11, 88, 118, 0.30);
}
.card h3{margin:0 0 12px; font-size: 18px}
.card p{margin: 0 0 12px; line-height: 1.65}

.bullets{margin: 10px 0 0; padding-left: 18px; color: rgba(8, 26, 36, 0.82)}
.bullets li{margin: 6px 0; line-height: 1.55}

.stats{padding: 64px 0; background: linear-gradient(180deg, rgba(7, 42, 60, 0.04), rgba(11, 88, 118, 0.06))}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.stat{
  text-align:center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(10, 28, 38, 0.10);
  transition: transform var(--duration-base) var(--ease),
              background var(--duration-base) var(--ease);
}
.stat:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 20px rgba(4, 26, 39, 0.10);
}
.stat-number{
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.stat-label{
  font-size: 13px;
  color: rgba(8, 26, 36, 0.70);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.stat-note{
  font-size: 12px;
  color: rgba(8, 26, 36, 0.58);
  margin: 6px 0 0;
  line-height: 1.5;
}

.timeline{display:grid; gap:14px; margin-top: 36px}
.step{
  display:grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 28, 38, 0.12);
  background: rgba(255,255,255,0.78);
  transition: transform var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
}
.step:hover{
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(4, 26, 39, 0.12);
  border-color: rgba(11, 88, 118, 0.22);
}
.step-week{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step-title{margin-top: 12px; font-weight: 800; letter-spacing:-0.02em; font-size: 17px}
.step-body p{margin: 0; color: rgba(8, 26, 36, 0.82); line-height: 1.6}

.note{
  margin-top: 28px;
  display:flex;
  gap: 16px;
  align-items:flex-start;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(7, 42, 60, 0.06);
  border: 1px solid rgba(7, 42, 60, 0.10);
}
.note-icon{
  color: var(--brand-700);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.note-strong{font-weight: 700; margin-bottom: 4px; font-size: 14px}
.note-text{color: rgba(8, 26, 36, 0.78); line-height: 1.6}

.measure-grid{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 28px}
.metric{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(10, 28, 38, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.metric-k{font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(8, 26, 36, 0.62); font-weight: 600}
.metric-v{font-weight: 900; letter-spacing:-0.02em; margin-top: 8px}
.metric-f{margin-top: 8px; color: rgba(8, 26, 36, 0.70); font-size: 14px; line-height: 1.5}

.divider{height:1px; background: rgba(10, 28, 38, 0.10); margin: 24px 0}
.two-col{display:grid; grid-template-columns: 1fr 1fr; gap: 20px}

.table-wrap{
  margin-top: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 28, 38, 0.12);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
  overflow:auto;
}
.table{width:100%; border-collapse:collapse; min-width: 460px}
.table th, .table td{padding: 16px 20px; text-align:left}
.table thead th{
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(8, 26, 36, 0.68);
  font-weight: 600;
  border-bottom: 1px solid rgba(10, 28, 38, 0.10);
}
.table tbody tr + tr td{border-top: 1px solid rgba(10, 28, 38, 0.10)}
.table-row-success{background: rgba(11, 88, 118, 0.04)}
.table-row-partial{background: rgba(255, 170, 0, 0.04)}
.table-row-full{background: rgba(200, 70, 70, 0.04)}

.badge-success,
.badge-partial,
.badge-full{
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  align-items: center;
  justify-content: center;
}
.badge-success{
  background: rgba(11, 88, 118, 0.14);
  color: var(--brand-800);
  border: 1px solid rgba(11, 88, 118, 0.24);
}
.badge-partial{
  background: rgba(255, 170, 0, 0.14);
  color: #996a00;
  border: 1px solid rgba(255, 170, 0, 0.30);
}
.badge-full{
  background: rgba(11, 88, 118, 0.14);
  color: var(--brand-800);
  border: 1px solid rgba(11, 88, 118, 0.24);
}

.callout{
  margin-top: 20px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(10, 28, 38, 0.12);
}
.callout h3{margin:0 0 12px}
.callout p{margin:0 0 12px; color: rgba(8, 26, 36, 0.78); line-height: 1.6}

.summary{
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(7, 42, 60, 0.12), rgba(11, 88, 118, 0.08));
  border: 1px solid rgba(7, 42, 60, 0.14);
}
.summary-title{font-weight: 900; letter-spacing:-0.02em; margin-bottom: 10px; font-size: 16px}
.summary p{margin:0; color: rgba(8, 26, 36, 0.82); line-height: 1.6}

/* Guarantee Badges */
.guarantee-badge{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.90);
  border: 2px solid rgba(11, 88, 118, 0.20);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease);
}
.guarantee-badge::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s var(--ease);
}
.guarantee-badge:hover{
  border-color: rgba(11, 88, 118, 0.40);
  box-shadow: 0 8px 24px rgba(4, 26, 39, 0.10);
  transform: translateY(-2px);
}
.guarantee-badge:hover::before{
  left: 150%;
}
.guarantee-badge-icon{
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.guarantee-badge-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.guarantee-badge-text strong{
  font-size: 15px;
  color: var(--brand-800);
  line-height: 1.2;
}
.guarantee-badge-text span{
  font-size: 13px;
  color: rgba(8, 26, 36, 0.68);
  line-height: 1.3;
}

.faq{display:grid; gap: 12px; margin-top: 32px}
.faq-item{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 28, 38, 0.12);
  background: rgba(255,255,255,0.78);
  padding: 18px 20px;
  transition: background var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
}
.faq-item:hover{
  background: rgba(255,255,255,0.92);
  border-color: rgba(11, 88, 118, 0.20);
}
.faq-item[open]{
  background: rgba(255,255,255,0.95);
  border-color: rgba(11, 88, 118, 0.22);
}
.faq-item summary{
  cursor:pointer;
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing:-0.01em;
  list-style:none;
  user-select: none;
  transition: color var(--duration-fast) var(--ease);
  padding-right: 32px;
  position: relative;
  line-height: 1.45;
}
.faq-item summary::after{
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(8, 26, 36, 0.60);
  border-bottom: 2px solid rgba(8, 26, 36, 0.60);
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease);
}
.faq-item[open] summary::after{
  transform: translateY(-50%) rotate(-135deg);
  border-color: rgba(11, 88, 118, 0.75);
}
.faq-item summary:hover{color: var(--brand-700)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-body{
  padding-top: 12px;
  color: rgba(8, 26, 36, 0.80);
  line-height: 1.65;
  animation: fade-in 0.3s var(--ease);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact{padding-bottom: 96px}
.contact-grid{display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; align-items:start}
.contact-cards{display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:12px; margin-top: 20px}

/* Process Timeline */
.process-timeline{
  margin: 32px 0;
  padding: 24px;
  background: rgba(11, 88, 118, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 88, 118, 0.12);
}
.process-step{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}
.process-step:not(:last-child){
  border-bottom: 1px dashed rgba(10, 28, 38, 0.10);
}
.process-step-number{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
}
.process-step-content{
  flex: 1;
  padding-top: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(8, 26, 36, 0.85);
}
.process-step-content strong{
  color: var(--brand-800);
  font-weight: 600;
}

.mini{
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 28, 38, 0.10);
  background: rgba(255,255,255,0.60);
  padding: 16px;
  transition: background var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
}
.mini:hover{
  background: rgba(255,255,255,0.85);
  border-color: rgba(11, 88, 118, 0.18);
}
.mini-k{font-size: 12px; color: rgba(8, 26, 36, 0.62); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600}
.mini-v{font-weight: 700; letter-spacing:-0.01em; margin-top: 4px; font-size: 15px}
.mini a{text-decoration:none; transition: color var(--duration-fast) var(--ease)}
.mini a:hover{color: var(--brand-700); text-decoration:underline}

.form{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 28, 38, 0.12);
  background: rgba(255,255,255,0.78);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-intro{
  margin: 0 0 18px;
}
.form-expand-toggle{
  margin: 0;
}
.form-optional-details{
  margin: 8px 0 14px;
}
.form-optional-details > summary{
  list-style: none;
  cursor: pointer;
}
.form-optional-details > summary::-webkit-details-marker{
  display: none;
}
.form-optional-fields{
  margin: 12px 0 8px;
}
.form-success{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 88, 118, 0.20);
  background: linear-gradient(135deg, rgba(11, 88, 118, 0.08), rgba(13, 106, 142, 0.06));
  padding: 40px 28px;
  text-align: center;
  animation: fade-slide-in 0.4s var(--ease);
}
.form-success[hidden]{
  display: none;
}
.success-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(11, 88, 118, 0.30);
}
.form-success h3{
  color: var(--brand-800);
  margin: 0 0 12px;
}
.form-success p{
  margin: 0 0 24px;
  color: rgba(8, 26, 36, 0.78);
}
.field{display:grid; gap:8px; margin-bottom: 18px}
label{
  font-size: 12.5px;
  color: rgba(8, 26, 36, 0.70);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.required{color: var(--brand-700); font-weight: 800}
input, textarea{
  width:100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(10, 28, 38, 0.14);
  background: rgba(255,255,255,0.84);
  color: var(--text);
  outline:none;
  transition: box-shadow var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease),
              background var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
}
input:focus, textarea:focus{
  box-shadow: 0 0 0 4px var(--ring), 0 4px 20px rgba(11, 88, 118, 0.10);
  border-color: rgba(11, 88, 118, 0.40);
  background: rgba(255,255,255,0.98);
  transform: scale(1.005);
}
input::placeholder, textarea::placeholder{
  color: rgba(8, 26, 36, 0.46);
}
textarea{
  resize:vertical;
  min-height: 116px;
}
input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown){
  border-color: rgba(200, 70, 70, 0.40);
}
input:valid:not(:placeholder-shown):required,
textarea:valid:not(:placeholder-shown):required{
  border-color: rgba(11, 88, 118, 0.30);
}
input[aria-invalid="true"],
textarea[aria-invalid="true"]{
  border-color: rgba(200, 70, 70, 0.50);
  background: rgba(200, 70, 70, 0.04);
}

.footer{padding: 48px 0 36px; border-top: 1px solid rgba(10, 28, 38, 0.10); background: rgba(255,255,255,0.48)}
.footer-inner{display:flex; align-items:flex-start; justify-content:space-between; gap: 24px; flex-wrap:wrap}
.footer-brand img{height:26px; width:auto; opacity: 0.92}
.footer-brand .fine{margin-top: 12px; opacity: 0.75}
.footer-nav{display:flex; gap:20px; flex-wrap:wrap; align-items:center}
.footer-contact{display:grid; gap:8px}
.footer-contact-title{
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(8, 26, 36, 0.62);
  font-weight: 700;
}
.footer-contact .footer-link{display:inline-flex}
.footer-social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 6px;
}
.footer-social .footer-link{
  display:inline-flex;
}
.footer-link{
  text-decoration:none;
  color: rgba(8, 26, 36, 0.70);
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease);
}
.footer-link:hover{
  color: var(--brand-700);
  border-bottom-color: var(--brand-700);
}
.footer-link:focus-visible{
  outline: 2px solid var(--ring);
  outline-offset: 4px;
  border-radius: 4px;
}
.footer-meta{max-width: 520px}

.scroll-top{
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.20);
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: white;
  box-shadow: 0 8px 24px rgba(4, 26, 39, 0.30);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-base) var(--ease),
              opacity var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}
.scroll-top:not([hidden]){
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(4, 26, 39, 0.40);
}
.scroll-top:active{
  transform: translateY(-1px);
}

.cta-final{
  padding: 76px 0;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-final::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
  opacity: 0.4;
}
.cta-box{
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-box h2{
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  color: white;
}
.cta-box p{
  font-size: 17px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}
.btn-lg{
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  min-height: 52px;
}
.cta-final .btn-primary{
  background: white;
  color: var(--brand-900);
  border-color: rgba(255,255,255,0.20);
}
.cta-final .btn-primary:hover{
  background: rgba(255,255,255,0.95);
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 981px){
  body{animation: none}
  .site-header{backdrop-filter: none}
  .btn-ghost{backdrop-filter: none}
  .panel{backdrop-filter: none; animation: none}
  .hero::before{animation: none}
  .hero-copy > *{animation: none}
  .hero .trust-row{will-change: auto}
  .mobile-cta-bar{backdrop-filter: none}

  .hero-grid{grid-template-columns: 1fr; gap: 24px}
  .cards{grid-template-columns: 1fr}
  .measure-grid{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .contact-cards{grid-template-columns: 1fr}
  .step{grid-template-columns: 1fr}
  .stats-grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .stat-number{font-size: 36px}
  .trust-row{grid-template-columns: 1fr; gap: 12px}
  .trust-grid{grid-template-columns: 1fr}
  .hero{padding: 64px 0 56px}
  .section{padding: 64px 0}
  .section-divider{padding: 32px 0}
  .footer-inner{flex-direction: column; gap: 32px}
  .footer-nav{flex-direction: column; gap: 16px; align-items: flex-start}
}

@media (max-width: 860px){
  .nav{display:none}
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}

  .site-header{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }
  main#content{padding-top: 96px}
}

@media (max-width: 600px){
  :root{--pad: 18px}
  :root{--header-offset: 76px}

  .header-inner{padding: 12px 0}
  .brand-logo{height:72px}

  main#content{padding-top: 88px}

  h1{font-size: clamp(30px, 8.5vw, 40px); margin-bottom: 14px}
  .lead{font-size: 16px}

  .hero{padding: 52px 0 44px}
  .hero::before{width: 560px; height: 560px; right: -35%; top: -55%}
  .hero-grid{gap: 20px}

  .section{padding: 56px 0}
  .section-divider{padding: 26px 0}

  .btn{padding: 12px 18px}
  .btn-lg{padding: 14px 24px; font-size: 15.5px; min-height: 50px}

  .form{padding: 20px}
  .form-success{padding: 32px 20px}
  .field{margin-bottom: 16px}
  input, textarea{font-size: 16px; padding: 13px 14px}
  textarea{min-height: 104px}

  .table-wrap{overflow: visible}
  .table{min-width: 0}
  .table th, .table td{padding: 12px 14px}
  .badge-success,
  .badge-partial,
  .badge-full{padding: 6px 10px; font-size: 12px}

  .table thead{display:none}
  .table tbody,
  .table tr,
  .table td{display:block; width:100%}
  .table tr{
    border: 1px solid rgba(10, 28, 38, 0.12);
    border-radius: 14px;
    overflow: hidden;
    margin: 0 0 12px;
    background: rgba(255,255,255,0.90);
  }
  .table td{
    display:grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    gap: 16px;
    border-bottom: 1px solid rgba(10, 28, 38, 0.08);
    background: transparent !important;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .table td:last-child{border-bottom:none}
  .table td::before{
    content: attr(data-label);
    font-size: 12px;
    font-weight: 700;
    color: rgba(8, 26, 36, 0.70);
    min-width: 0;
  }

  .table td > *{min-width: 0}

  .callout{padding: 18px}

  .cookie-content{padding: 16px var(--pad); gap: 16px}
  .cookie-text{min-width: 0}

  .scroll-top{right: 16px; bottom: 92px}
  .contact{padding-bottom: 140px}

  /* Click-to-load map embed (privacy-friendly) */
  .map-embed{
    margin-top: 18px;
    border: 1px solid rgba(10, 28, 38, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.65);
  }
  .map-embed-inner{
    position: relative;
    min-height: 280px;
  }
  .map-embed iframe{
    width: 100%;
    height: 280px;
    border: 0;
    display: none;
  }
  .map-embed[data-loaded="true"] iframe{
    display: block;
  }
  .map-embed-placeholder{
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 280px;
  }
  .map-embed[data-loaded="true"] .map-embed-placeholder{
    display: none;
  }

  .roi-calculator{padding: 22px; gap: 22px}
  .roi-input{font-size: 16px}
  .roi-result{padding: 24px 18px}
  .roi-result-value{font-size: 44px}

  .trust-card{
    padding: 20px 18px;
    text-align: left;
  }
  .trust-card h3{font-size: 17px}
  .trust-card p{font-size: 14px}
}

@media (max-width: 420px){
  :root{--pad: 14px}
  :root{--header-offset: 72px}

  .brand-logo{height:60px}
  .hero{padding: 46px 0 40px}

  main#content{padding-top: 80px}

  .hero-cta{flex-direction: column; align-items: stretch}
  .hero-cta .btn{width: 100%}
  .urgency-note{padding: 10px 14px}

  

  .scroll-top{right: 12px; bottom: 92px}
  .roi-result-value{font-size: 40px}
}

@media (max-width: 380px){
  html, body{overflow-x: hidden}
  .container{min-width: 0}
}

/* Cookie Banner */
.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(10, 28, 38, 0.12);
  box-shadow: 0 -8px 32px rgba(4, 26, 39, 0.15);
  z-index: 1000;
  animation: slide-up 0.4s var(--ease);
}
.cookie-banner[hidden]{
  display: none;
}
@keyframes slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@keyframes slide-down {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}
.cookie-content{
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text{
  flex: 1;
  min-width: 280px;
}
.cookie-text strong{
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--brand-800);
}
.cookie-text p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(8, 26, 36, 0.78);
}
.cookie-link{
  color: var(--brand-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions{
  flex-shrink: 0;
}
.btn-sm{
  padding: 10px 20px;
  font-size: 14px;
  min-height: 40px;
}

/* Trust Section */
.trust-section{
  background: linear-gradient(180deg, rgba(255,255,255,0.50), rgba(7, 42, 60, 0.02));
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.trust-card{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(10, 28, 38, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
}
.trust-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(7, 42, 60, 0.0), rgba(11, 88, 118, 0.55), rgba(7, 42, 60, 0.0));
  opacity: 0.35;
}
.trust-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(4, 26, 39, 0.12);
  border-color: rgba(11, 88, 118, 0.20);
}
.trust-card:hover::before{
  opacity: 0.6;
}
.trust-card:hover .trust-card-icon{
  animation: icon-pulse 0.6s var(--ease-spring);
}
.trust-card-icon{
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
  transition: transform var(--duration-base) var(--ease);
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.trust-card h3{
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--brand-800);
}
.trust-card p{
  margin: 0;
  color: rgba(8, 26, 36, 0.78);
  line-height: 1.6;
  font-size: 14.5px;
}

/* Testimonials Section */
.testimonials-section{
  background: 
    radial-gradient(800px 600px at 50% 0%, rgba(11, 88, 118, 0.04), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.70));
}
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial{
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(10, 28, 38, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(4, 26, 39, 0.08);
  transition: transform var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease),
              border-color var(--duration-base) var(--ease);
  position: relative;
  opacity: 0;
  animation: testimonial-slide-in 0.6s var(--ease) forwards;
}
.testimonial:nth-child(1){ animation-delay: 0.1s; }
.testimonial:nth-child(2){ animation-delay: 0.2s; }
.testimonial:nth-child(3){ animation-delay: 0.3s; }

@keyframes testimonial-slide-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial::before{
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 80px;
  line-height: 1;
  color: rgba(11, 88, 118, 0.08);
  font-family: Georgia, serif;
  pointer-events: none;
  transition: color var(--duration-base) var(--ease);
}
.testimonial:hover{
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(4, 26, 39, 0.14);
  border-color: rgba(11, 88, 118, 0.18);
}
.testimonial:hover::before{
  color: rgba(11, 88, 118, 0.15);
}
.testimonial-rating{
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1;
}
.testimonial-quote{
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(8, 26, 36, 0.85);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author{
  padding-top: 16px;
  border-top: 1px solid rgba(10, 28, 38, 0.08);
}
.testimonial-name{
  font-weight: 700;
  color: var(--brand-800);
  margin-bottom: 4px;
  font-size: 15px;
}
.testimonial-role{
  font-size: 13px;
  color: rgba(8, 26, 36, 0.65);
}
.testimonial-note{
  margin-top: 32px;
  text-align: center;
  padding: 16px;
  background: rgba(11, 88, 118, 0.04);
  border-radius: var(--radius-md);
}

/* ROI Calculator */
.roi-section{
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(7, 42, 60, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.40));
}
.roi-calculator{
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(10, 28, 38, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.roi-inputs{
  display: grid;
  gap: 20px;
  min-width: 0;
}
.roi-result{min-width: 0}
.roi-field{
  display: grid;
  gap: 8px;
}
.roi-field label{
  font-size: 13px;
  color: rgba(8, 26, 36, 0.80);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.5;
}
.roi-input{
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid rgba(10, 28, 38, 0.14);
  background: rgba(255,255,255,0.95);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-800);
  transition: border-color var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
}
.roi-input:focus{
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px var(--ring);
  outline: none;
}
.roi-result{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(11, 88, 118, 0.08), rgba(13, 106, 142, 0.06));
  border-radius: var(--radius-md);
  padding: 32px 24px;
  min-width: 0;
}
.roi-result-label{
  font-size: 14px;
  color: rgba(8, 26, 36, 0.70);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.roi-result-value{
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.roi-result-note{
  font-size: 13px;
  color: rgba(8, 26, 36, 0.75);
  line-height: 1.6;
}

@media (max-width: 561px){
  .roi-calculator{
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }
  .roi-inputs{order: 1}
  .roi-result{order: 2}
  .roi-result-value{font-size: 40px}
}

/* Live Indicator */
.live-indicator{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(11, 88, 118, 0.06);
  border: 1px solid rgba(11, 88, 118, 0.15);
  border-radius: 24px;
}
.live-dot{
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* Skeleton Loading Animation */
.skeleton{
  background: linear-gradient(
    90deg,
    rgba(10, 28, 38, 0.05) 25%,
    rgba(11, 88, 118, 0.08) 50%,
    rgba(10, 28, 38, 0.05) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Mobile Sticky CTA Bar */
.mobile-cta-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(10, 28, 38, 0.12);
  box-shadow: 0 -4px 20px rgba(4, 26, 39, 0.15);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.mobile-cta-bar:not([hidden]){
  transform: translateY(0);
}
.mobile-cta-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.mobile-cta-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.mobile-cta-text strong{
  font-size: 14px;
  color: var(--brand-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-cta-text span{
  font-size: 12px;
  color: rgba(8, 26, 36, 0.68);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

/* Print Styles */
@media print {
  *,
  *::before,
  *::after {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .scroll-progress,
  .scroll-top,
  .nav-toggle,
  .mobile-nav,
  .cookie-banner,
  .hero-bg,
  .section-divider,
  .form,
  .form-success,
  .btn,
  .cta-final {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; page-break-after: avoid; }
  h3 { font-size: 14pt; page-break-after: avoid; }
  
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 20pt 0;
  }
  
  .table {
    border-collapse: collapse;
  }
  
  .table th,
  .table td {
    border: 1px solid #ddd;
    padding: 8pt;
  }
  
  .panel,
  .card,
  .trust-card {
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
  
  .footer {
    position: static;
    border-top: 2px solid #000;
    margin-top: 20pt;
    padding-top: 10pt;
  }
}

/* ===== ENHANCED ANIMATIONS ===== */

/* Shimmer effect for CTA buttons */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Float animation for icons/elements */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Pulse glow for interactive elements */
@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(11, 88, 118, 0.4);
  }
  50% { 
    box-shadow: 0 0 20px 8px rgba(11, 88, 118, 0.1);
  }
}

/* Ripple animation for button clicks */
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Smooth entrance for cards */
@keyframes card-entrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Reduce motion for accessibility: handled above */

