/* ========== FONTS (lokal gehostet, DSGVO-konform) ========== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(fonts/montserrat-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(fonts/montserrat-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --teal: #1f9ea5;
  --teal-dark: #17858b;
  --teal-light: #e6f6f7;
  --teal-10: rgba(31, 158, 165, 0.1);
  --dark: #1a1a2e;
  --dark-soft: #2d2d44;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --red: #dc2626;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--teal-dark);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(31, 158, 165, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 40px;
  width: auto;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 15px;
}

.header-phone:hover {
  color: var(--teal);
}

.header-btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--teal-light) 100%);
  padding: 64px 0 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--teal-10);
  color: var(--teal);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-checks {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}

.hero-checks svg {
  flex-shrink: 0;
}

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

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 460px;
  width: auto;
  object-fit: contain;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--dark);
  padding: 32px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.2;
}

.trust-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.3;
}

.section-title span {
  color: var(--teal);
  font-weight: 600;
  font-size: 20px;
  display: block;
  margin-top: 8px;
}

/* ========== PROBLEMS ========== */
.problems {
  background: var(--gray-50);
}

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

.problem-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: 50%;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== PRODUCTS ========== */
.products {
  background: var(--white);
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.product-row:last-child {
  margin-bottom: 0;
}

.product-row-reverse {
  direction: rtl;
}

.product-row-reverse > * {
  direction: ltr;
}

.product-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-badge {
  display: inline-block;
  background: var(--teal-10);
  color: var(--teal);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.product-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.product-capacity {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}

.product-info > p {
  margin-bottom: 16px;
  color: var(--gray-600);
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* ========== BENEFITS ========== */
.benefits {
  background: var(--gray-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: var(--radius);
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== DIFFERENTIATOR ========== */
.differentiator {
  background: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.diff-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.diff-icon {
  margin-bottom: 16px;
}

.diff-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.team-bar {
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  border: 1px solid rgba(31, 158, 165, 0.2);
}

.team-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-faces {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.team-avatar + .team-avatar {
  margin-left: -16px;
}

.team-text strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.team-text span {
  font-size: 13px;
  color: var(--gray-600);
}

.team-text a {
  font-weight: 600;
}

/* ========== PROCESS ========== */
.process {
  background: var(--white);
}

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 260px;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.process-time {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-10);
  padding: 4px 12px;
  border-radius: 12px;
}

.process-connector {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 24px;
  flex-shrink: 0;
}

.process-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========== FAQ ========== */
.faq {
  background: var(--gray-50);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: var(--teal);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== SOCIAL PROOF ========== */
.social-proof {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.social-proof-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.social-proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.proof-logo-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  padding: 8px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
}

/* ========== ROI ========== */
.roi {
  background: var(--teal-light);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.roi-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--teal);
}

.roi-icon {
  margin-bottom: 16px;
}

.roi-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.roi-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== TESTIMONIAL ========== */
.testimonial {
  background: var(--gray-50);
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-quote {
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray-400);
}

/* ========== APPLICATIONS ========== */
.applications {
  background: var(--white);
}

.applications-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.app-tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(31, 158, 165, 0.2);
  transition: all 0.2s;
}

.app-tag:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ========== CONTACT SECTION ========== */
.contact {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
}

.contact .section-title {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-400);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-benefits {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-200);
}

.contact-direct {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.contact-direct-label {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-phone {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal) !important;
  margin-bottom: 4px;
}

.contact-email {
  font-size: 15px;
  color: var(--gray-400) !important;
}

.contact-email:hover {
  color: var(--teal) !important;
}

/* ========== FORM ========== */
.contact-form-wrap {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  width: 100%;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-10);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
}

.form-group .error-msg {
  color: var(--red);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-group input.error ~ .error-msg,
.form-group select.error ~ .error-msg {
  display: block;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--teal);
}

.form-check label {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-600);
  cursor: pointer;
  line-height: 1.5;
}

.form-check label a {
  color: var(--teal);
  text-decoration: underline;
}

.form-note {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 4px;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

.form-success a {
  color: var(--teal);
  font-weight: 600;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  padding: 40px 0 0;
  color: var(--gray-400);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact p {
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-contact a {
  color: var(--gray-400);
}

.footer-contact a:hover {
  color: var(--teal);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  padding: 16px 0;
}

.footer-copy p {
  font-size: 12px;
  color: var(--gray-600);
  text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 320px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-row,
  .product-row-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
  }

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

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

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .roi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-grid {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .process-connector {
    width: 2px;
    height: 24px;
    margin-top: 0;
  }

  .process-step {
    max-width: 400px;
  }

  .team-bar-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .header-phone {
    display: none;
  }

  .header-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .trust-items {
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title span {
    font-size: 16px;
  }

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

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .product-info h3 {
    font-size: 22px;
  }
}

/* ========== ANIMATIONS ========== */
@media (prefers-reduced-motion: no-preference) {
  .problem-card,
  .benefit-card,
  .product-row,
  .diff-card,
  .roi-card,
  .process-step {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .problem-card.visible,
  .benefit-card.visible,
  .product-row.visible,
  .diff-card.visible,
  .roi-card.visible,
  .process-step.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading state for form button */
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  gap: 12px;
  align-items: center;
  border-top: 2px solid var(--teal);
}

.sticky-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 50%;
  flex-shrink: 0;
}

.sticky-cta-btn {
  flex: 1;
  text-align: center;
  background: var(--teal);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.sticky-cta-btn:hover {
  background: var(--teal-dark);
}

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

  .footer {
    padding-bottom: 80px;
  }
}

/* ========== SCROLL CTA POPUP ========== */
.scroll-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 98;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 340px;
  border: 1px solid var(--gray-200);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cta-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
}

.scroll-cta-close:hover {
  color: var(--gray-700);
}

.scroll-cta-text {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.5;
  padding-right: 16px;
}

.scroll-cta-actions {
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .scroll-cta {
    bottom: 80px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
}


/* ========== COOKIE CONSENT (Borlabs-Style) ========== */
.cb-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: cbFadeIn 0.3s ease-out;
}

@keyframes cbFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cb-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
}

.cb-header {
  padding: 24px 28px 16px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.cb-logo {
  height: auto;
}

.cb-tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  padding: 0 28px;
}

.cb-tab {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  font-family: inherit;
}

.cb-tab:hover {
  color: var(--gray-700);
}

.cb-tab-active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.cb-panel {
  display: none;
  padding: 20px 28px;
}

.cb-panel-active {
  display: block;
}

.cb-text {
  margin: 0 0 12px;
  color: var(--gray-600);
}

.cb-text-small {
  font-size: 13px;
  color: var(--gray-400);
}

.cb-text a {
  color: var(--teal);
  text-decoration: underline;
}

.cb-group {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}

.cb-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cb-group-toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}

.cb-group-toggle[aria-expanded="true"] .cb-chevron {
  transform: rotate(180deg);
}

.cb-group-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cb-group-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-900);
}

.cb-group-count {
  font-size: 12px;
  color: var(--gray-400);
}

.cb-group-desc {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.cb-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cb-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cb-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--gray-400);
  border-radius: 24px;
  transition: background 0.2s;
}

.cb-toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
}

.cb-toggle input:checked + .cb-toggle-slider {
  background: var(--teal);
}

.cb-toggle input:checked + .cb-toggle-slider::before {
  transform: translateX(20px);
}

.cb-toggle-locked {
  opacity: 0.6;
}

.cb-toggle-locked .cb-toggle-slider {
  cursor: default;
  background: var(--teal);
}

.cb-group-details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

.cb-cookie-table {
  width: 100%;
  font-size: 12px;
  border-collapse: collapse;
}

.cb-cookie-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.cb-cookie-table tr:last-child {
  border-bottom: none;
}

.cb-cookie-table td {
  padding: 6px 0;
  vertical-align: top;
}

.cb-cookie-table td:first-child {
  font-weight: 600;
  color: var(--gray-600);
  width: 110px;
  padding-right: 12px;
}

.cb-cookie-table td:last-child {
  color: var(--gray-600);
}

.cb-cookie-table a {
  color: var(--teal);
  text-decoration: underline;
  word-break: break-all;
}

.cb-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 28px;
  border-top: 1px solid var(--gray-200);
}

.cb-btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  font-family: inherit;
  text-align: center;
}

.cb-btn:active {
  transform: scale(0.98);
}

.cb-btn-accept {
  background: var(--teal);
  color: var(--white);
}

.cb-btn-accept:hover {
  background: var(--teal-dark);
}

.cb-btn-save {
  background: var(--gray-200);
  color: var(--gray-700);
}

.cb-btn-save:hover {
  background: var(--gray-400);
}

.cb-btn-reject {
  background: none;
  color: var(--gray-400);
  font-weight: 500;
  font-size: 13px;
}

.cb-btn-reject:hover {
  color: var(--gray-700);
}

.cb-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 28px 16px;
  border-top: 1px solid var(--gray-200);
}

.cb-footer a {
  font-size: 12px;
  color: var(--gray-400);
  text-decoration: none;
}

.cb-footer a:hover {
  color: var(--gray-600);
  text-decoration: underline;
}

