/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c80c09;
  --red-dark:  #9a0907;
  --red-lite:  #fdf2f2;
  --gray:      #646262;
  --gray-mid:  #979596;
  --gray-lite: #f4f4f4;
  --dark:      #111111;
  --white:     #ffffff;
  --cream:     #faf9f7;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }


 .error {
	  color: #FCD4D4;
	  font-size: 14px;
  }	  

.dschutz {
	margin-bottom: 20px;
}

.dschutz input {
	width: 20px;
	margin-right: 10px;
	margin-top: 3px;
	float: left;
}

.dschutz label {
	float: left;
	width: 90%;
	display: block;
	font-size: 15px;
	line-height: 18px !important;
	color: #fff;
}

.dschutz a {
	color: #f2f2f2;
	text-decoration: underline;
}

.dschutz a:hover {
	text-decoration: none;
}

.fehler {
	border: 1px solid #aa0000 !important;
}

.form-privacy {
    font-size: 12px;
    color: var(--mgray);
    text-align: center;
    margin-top: 0.8rem;
    line-height: 1.5;
  }

/* ── UTILITY ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  padding: 0 clamp(20px, 5vw, 80px);
}
.container--narrow {
  width: 100%;
  padding: 0 clamp(20px, 8vw, 120px);
}

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(200,12,9,.25);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--dark);
}
.section-title em { font-style: italic; font-weight: 300; color: var(--gray); }

.section-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 16px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,12,9,.30);
}
.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 28px rgba(200,12,9,.40);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0,0,0,.18);
}
.btn--outline:hover { border-color: var(--dark); background: rgba(0,0,0,.03); }

.btn--large { font-size: 17px; padding: 18px 36px; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 80px);
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo img {  width: 250px;
	  height: auto; }

.nav__logo-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  border-left: 1px solid rgba(0,0,0,.12);
  padding-left: 12px;
  margin-left: 4px;
  margin-top: 10px;
}

.nav__cta { font-size: 14px; padding: 10px 22px; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Dezentes Raster-Muster im Hintergrund */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Roter Akzentkreis */
.hero::after {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,12,9,.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 0 clamp(20px, 5vw, 80px);
}

.hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(200,12,9,.9);
  background: rgba(200,12,9,.12);
  border: 1px solid rgba(200,12,9,.25);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.55);
}

.hero__title .accent {
  color: var(--red);
  font-style: normal;
}

.hero__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn--hero-outline {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.22);
}
.btn--hero-outline:hover {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
}

.hero__visual {
  position: relative;
}

.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.hero__card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.hero__prompt {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  background: rgba(0,0,0,.3);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 16px;
  border-left: 3px solid var(--red);
}

.hero__prompt strong { /*color: rgba(200,12,9,.9);*/ color: #FCD4D4; font-weight: 500; }

.hero__output {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.hero__output-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__output-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}

/* ── INTRO / PROBLEM ──────────────────────────────────────────── */
.intro {
  padding: 96px 0;
  background: var(--cream);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro__claim {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark);
}

.intro__claim strong {
  font-weight: 600;
  color: var(--dark);
}

.intro__claim em {
  font-style: italic;
  color: var(--gray);
}

.intro__body {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
}

.intro__body p + p { margin-top: 16px; }

/* ── WAS IST DAS ──────────────────────────────────────────────── */
.what {
  padding: 96px 0;
  background: var(--white);
}

.what__header {
  text-align: center;
  margin-bottom: 64px;
}

.what__steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  max-width: min(900px, 100%);
  margin: 0 auto;
  position: relative;
}

.what__steps::before {
  display: none;
}

.what__step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.what__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--red);
  box-shadow: 0 0 0 6px var(--white);
}

.what__step-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.what__step-text {
  font-size: 13.5px;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ── VORTEILE ──────────────────────────────────────────────────── */
.benefits {
  padding: 96px 0;
  background: var(--dark);
  color: var(--white);
}

.benefits__header {
  text-align: center;
  margin-bottom: 64px;
}

.benefits__header .section-title { color: var(--white); }
.benefits__header .section-title em { color: rgba(255,255,255,.4); }
.benefits__header .section-sub { color: rgba(255,255,255,.55); }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: min(900px, 100%);
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: background .2s ease, border-color .2s ease;
}

.benefit-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(200,12,9,.3);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(200,12,9,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--red);
}

.benefit-card__icon svg { width: 22px; height: 22px; }

.benefit-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}

/* ── BRANCHEN ──────────────────────────────────────────────────── */
.branches {
  padding: 96px 0;
  background: var(--cream);
}

.branches__header {
  text-align: center;
  margin-bottom: 64px;
}

.branches__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  max-width: min(940px, 100%);
  margin: 0 auto;
}

.branch-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  cursor: default;
}

.branch-card:hover {
  border-color: rgba(200,12,9,.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.branch-card__icon {
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1;
}

.branch-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.branch-card__examples {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── BEISPIEL-PROMPTS ─────────────────────────────────────────── */
.examples {
  padding: 96px 0;
  background: var(--white);
}

.examples__header {
  max-width: min(640px, 100%);
  margin: 0 auto 64px;
  text-align: center;
}

.examples__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,.12);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all .18s ease;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.examples__pane {
  display: none;
  animation: fadeIn .3s ease;
}
.examples__pane.active { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.example-card {
  background: var(--gray-lite);
  border-radius: var(--radius-md);
  padding: 28px;
}

.example-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.example-card__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

.example-card__prompt {
  font-family: 'Courier New', monospace;
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.7;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-left: 3px solid var(--red);
}

.example-card__saving {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #16a34a;
  background: #f0fdf4;
  border-radius: 20px;
  padding: 4px 12px;
  margin-top: 14px;
}

/* ── CTA BAND ───────────────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 64px 0;
  text-align: center;
}

.cta-band__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.cta-band__sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
}

.btn--white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--white:hover {
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* ── PAKETE ──────────────────────────────────────────────────────── */
.pricing {
  padding: 96px 0;
  background: var(--cream);
}

.pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: min(860px, 100%);
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: box-shadow .2s ease;
}

.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card--featured {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200,12,9,.06), var(--shadow-sm);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 16px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}

.pricing-card__name {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-card__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin: 16px 0 4px;
}

.pricing-card__price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-mid);
}

.pricing-card__note {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 28px;
}

.pricing-card__divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,.07);
  margin: 24px 0;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.pricing-card__feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f0fdf4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pricing-card__feature-check svg { width: 10px; height: 10px; color: #16a34a; }

.pricing-card__cta {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
}

/* Abo-Hinweis */
.pricing__abo {
  max-width: min(860px, 100%);
  margin: 32px auto 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.pricing__abo-icon {
  width: 44px;
  height: 44px;
  background: var(--red-lite);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.pricing__abo-icon svg { width: 22px; height: 22px; }

.pricing__abo-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}

.pricing__abo-text span {
  font-size: 13.5px;
  color: var(--gray);
}

/* ── PROZESS ──────────────────────────────────────────────────── */
.process {
  padding: 96px 0;
  background: var(--white);
}

.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__timeline {
  position: relative;
  max-width: min(680px, 100%);
  margin: 0 auto;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--red), rgba(200,12,9,.1));
}

.process__item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.process__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
  position: relative;
  z-index: 1;
}

.process__content { padding-top: 8px; }

.process__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.process__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

.process__duration {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-mid);
  background: var(--gray-lite);
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 8px;
}

/* ── ÜBER ─────────────────────────────────────────────────────── */
.about {
  padding: 96px 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  /*background: linear-gradient(135deg, #1B3A6B 0%, #0d1f3a 100%);*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__initials {
  font-family: var(--font-head);
  font-size: 96px;
  font-weight: 600;
  color: rgba(255,255,255,.15);
  letter-spacing: -.04em;
  padding-bottom: 24px;
}

.about__badge {
  position: absolute;
  bottom: 80px;
  right: 80px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.about__badge-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.about__badge-text {
  font-size: 12px;
  opacity: .85;
}

.about__tag { margin-bottom: 20px; }

.about__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.about__text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
}

.about__text p + p { margin-top: 14px; }

.about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.skill-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.1);
  color: var(--gray);
}

/* ── KONTAKT / CTA ────────────────────────────────────────────── */
.contact {
  padding: 96px 0;
  background: var(--dark);
  color: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.contact__title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.45);
}

.contact__lead {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.7);
}

.contact__info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--red);
}

.contact__form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact__form-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 7px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color .18s ease, background .18s ease;
}

.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.25); }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(200,12,9,.6);
  background: rgba(255,255,255,.1);
}

.form-select option { background: #1a1a1a; color: var(--white); }

.form-textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 25px;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: #0a0a0a;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo img { height: 28px; filter: brightness(0) invert(1); opacity: .6; }

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: color .15s;
}

.footer__links a:hover { color: rgba(255,255,255,.7); }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .examples__pane.active { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: min(460px, 100%); }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .nav__logo-text { display: none; }
}