/* ── index2 – alle Klassen mit i2- präfixiert ── */
:root {
  --i2-dark:    #111416;
  --i2-warm:    #C84B14;
  --i2-warm-dk: #A33C10;
  --i2-bg:      #F5F4F1;
  --i2-surf:    #FFFFFF;
  --i2-text:    #1A1A1A;
  --i2-muted:   #6B7280;
  --i2-border:  #E2E0DC;
  --i2-r:       14px;
  --i2-r-lg:    24px;
}

/* ── Navbar dark override ── */
.i2-page .navbar {
  background: rgba(14,16,20,0.96) !important;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}
.i2-page .navbar-brand,
.i2-page .navbar-brand-name { color: #fff !important; }
.i2-page .navbar-brand img { display: none !important; }
.i2-page .navbar-nav a { color: rgba(255,255,255,0.6); }
.i2-page .navbar-nav a:hover,
.i2-page .navbar-nav a.active { color: #fff; background: rgba(255,255,255,0.06); }
.i2-page .lang-toggle { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.15); background: transparent; }
.i2-page .lang-toggle.active { color: #fff; border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.07); }
.i2-page .btn-outline { color: rgba(255,255,255,0.8) !important; border-color: rgba(255,255,255,0.28) !important; background: transparent !important; }
.i2-page .btn-outline:hover { color: #fff !important; border-color: rgba(255,255,255,0.6) !important; }
.i2-page .btn-primary:not(.i2-btn-primary) { background: var(--i2-warm) !important; border-color: var(--i2-warm) !important; color: #fff !important; }
.i2-page .btn-primary:not(.i2-btn-primary):hover { background: var(--i2-warm-dk) !important; }
.i2-page .navbar-toggler { border-color: rgba(255,255,255,0.25) !important; background: rgba(255,255,255,0.08) !important; }
.i2-page .navbar-toggler span { background: rgba(255,255,255,0.85) !important; }

/* Hamburger ab 1100px */
@media (max-width: 1100px) {
  .i2-page .navbar-inner { justify-content: space-between !important; }
  .i2-page .navbar-toggler { display: flex !important; }
  .i2-page .navbar-collapse { display: none !important; position: absolute !important; top: 68px !important; left: 0 !important; right: 0 !important; flex-direction: column !important; align-items: flex-start !important; padding: 16px 20px 24px !important; gap: 8px !important; background: #111416 !important; border-top: 1px solid rgba(255,255,255,0.08) !important; }
  .i2-page .navbar-collapse.open { display: flex !important; }
  .i2-page .navbar-nav { flex-direction: column !important; width: 100% !important; }
  .i2-page .navbar-actions { flex-direction: column !important; align-items: flex-start !important; width: 100% !important; gap: 8px !important; }
  .i2-page .navbar-collapse a { color: rgba(255,255,255,0.75) !important; }
}

/* ── Subpage hero overrides (legal, contact, auth) ── */
.i2-page .legal-hero,
.i2-page .contact-hero {
  background: var(--i2-dark) !important;
  position: relative;
  overflow: hidden;
}
.i2-page .legal-hero::after,
.i2-page .contact-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,75,20,.18) 0%, transparent 65%);
  pointer-events: none;
}
.i2-page .legal-hero h1,
.i2-page .contact-hero h1 { color: #fff !important; }
.i2-page .legal-hero p,
.i2-page .contact-hero p { color: rgba(255,255,255,.65) !important; }

/* Page backgrounds */
.i2-page.legal-page,
.i2-page.contact-page,
.i2-page.auth-page,
.i2-page.portal-page { background: var(--i2-bg) !important; }

/* Cards */
.i2-page .legal-card,
.i2-page .auth-card,
.i2-page .login-card { background: #fff !important; border-color: rgba(17,20,22,0.1) !important; }
.i2-page .legal-card h2 { color: var(--i2-warm) !important; border-bottom-color: rgba(17,20,22,0.08) !important; }

/* ── Footer override ── */
.i2-page footer { background: #0C0E11; border-top: 2px solid rgba(200,75,20,0.25); }
.i2-page .footer-links h4 { color: rgba(255,255,255,0.35); font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; }
.i2-page .footer-brand .brand-name { font-size:1rem; }
.i2-page .footer-bottom { border-top-color: rgba(255,255,255,0.07); }

/* ── Page base ── */
.i2-page { font-family: 'Inter', system-ui, sans-serif; background: var(--i2-bg); color: var(--i2-text); }

/* ── HERO ── */
.i2-hero { background: var(--i2-dark); padding: 100px 0 80px; position: relative; overflow: hidden; }
.i2-hero::after { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(244,97,30,.18) 0%, transparent 70%); pointer-events: none; }
.i2-hero-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 360px; gap: 72px; align-items: center; position: relative; z-index: 1; }
.i2-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,97,30,.15); border: 1px solid rgba(244,97,30,.3); color: #F97041; font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 24px; }
.i2-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; color: #FFFFFF; line-height: 1.15; margin-bottom: 22px; letter-spacing: -.02em; }
.i2-hero h1 em { font-style: normal; color: var(--i2-warm); }
.i2-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 520px; margin-bottom: 40px; }
.i2-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.i2-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--i2-warm); color: #fff !important; padding: 14px 32px; border-radius: var(--i2-r); font-weight: 700; font-size: .97rem; text-decoration: none !important; transition: background .2s, transform .2s; border: none; cursor: pointer; font-family: inherit; }
.i2-btn-primary:hover { background: var(--i2-warm-dk); transform: translateY(-1px); color: #fff !important; }
.i2-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.85) !important; padding: 14px 32px; border-radius: var(--i2-r); font-weight: 600; font-size: .97rem; text-decoration: none !important; transition: background .2s; border: 1px solid rgba(255,255,255,.15); }
.i2-btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.i2-hero-stores { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.i2-hero-stores-label { font-size: .78rem; color: rgba(255,255,255,.35); font-style: italic; }

/* Hero visual */
.i2-phone { width: 320px; flex-shrink: 0; position: relative; }
.i2-phone::after { content: ''; position: absolute; inset: -24px; background: radial-gradient(circle at 60% 40%, rgba(200,75,20,.18) 0%, transparent 65%); pointer-events: none; z-index: 0; }
.i2-phone-screen { position: relative; z-index: 1; border-radius: 28px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08); transform: perspective(900px) rotateY(-6deg) rotateX(2deg); transition: transform .4s ease; }
.i2-phone:hover .i2-phone-screen { transform: perspective(900px) rotateY(-3deg) rotateX(1deg); }
.i2-phone-screen img { width: 100%; height: auto; display: block; border-radius: inherit; }
.i2-mock-ui { padding: 48px 20px 20px; width: 100%; height: 100%; display: flex; flex-direction: column; gap: 14px; }
.i2-mock-header { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }
.i2-mock-card { background: rgba(244,97,30,.15); border: 1px solid rgba(244,97,30,.25); border-radius: 14px; padding: 16px; }
.i2-mock-card-title { font-size: .78rem; color: #F97041; font-weight: 600; margin-bottom: 4px; }
.i2-mock-card-val { font-size: 1.5rem; font-weight: 800; color: #fff; }
.i2-mock-row { display: flex; gap: 8px; }
.i2-mock-chip { flex: 1; background: rgba(255,255,255,.06); border-radius: 10px; padding: 10px 12px; font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 500; }
.i2-mock-chip strong { display: block; color: rgba(255,255,255,.85); font-size: .82rem; }
.i2-mock-btn { background: var(--i2-warm); color: #fff; border-radius: 12px; padding: 14px; text-align: center; font-weight: 700; font-size: .88rem; margin-top: auto; }

/* ── TRUST BAR ── */
.i2-trust { background: var(--i2-surf); border-bottom: 1px solid var(--i2-border); padding: 20px 28px; }
.i2-trust-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.i2-trust-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--i2-muted); font-weight: 500; }
.i2-trust-item svg { color: var(--i2-warm); flex-shrink: 0; }

/* ── SECTIONS ── */
.i2-section { padding: 96px 0; position: relative; }
.i2-section-alt { background: var(--i2-surf); }
.i2-section + .i2-section::before,
.i2-section + section::before,
section + .i2-section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,75,20,.35) 30%, rgba(200,75,20,.35) 70%, transparent);
}
.i2-container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.i2-label { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--i2-warm); margin-bottom: 14px; }
.i2-h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 16px; }
.i2-lead { font-size: 1.05rem; color: var(--i2-muted); line-height: 1.7; max-width: 560px; margin-bottom: 56px; }
.i2-centered { text-align: center; }
.i2-centered .i2-lead { margin-left: auto; margin-right: auto; }

/* ── HOW IT WORKS ── */
.i2-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(17,20,22,0.1); border-radius: var(--i2-r-lg); overflow: visible; border: 1px solid rgba(17,20,22,0.1); }
.i2-step { background: var(--i2-surf); padding: 44px 36px; position: relative; transition: transform .25s ease, box-shadow .25s ease; cursor: default; }
.i2-step:first-child { border-radius: var(--i2-r-lg) 0 0 var(--i2-r-lg); }
.i2-step:last-child { border-radius: 0 var(--i2-r-lg) var(--i2-r-lg) 0; }
.i2-step:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); z-index: 1; }
.i2-step-num { font-size: 4rem; font-weight: 900; color: rgba(244,97,30,.1); line-height: 1; margin-bottom: 16px; letter-spacing: -.04em; }
.i2-step-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.i2-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--i2-text); }
.i2-step p { font-size: .92rem; color: var(--i2-muted); line-height: 1.65; }

/* ── FEATURES ── */
.i2-feat-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.i2-feat-big { grid-row: span 2; background: var(--i2-dark); color: #fff; border-radius: var(--i2-r-lg); padding: 48px 44px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 400px; position: relative; overflow: hidden; }
.i2-feat-big::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(244,97,30,.2) 0%, transparent 65%); }
.i2-feat-big-icon { font-size: 3.5rem; position: absolute; top: 44px; right: 44px; opacity: .4; }
.i2-feat-big h3 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.i2-feat-big p { font-size: .97rem; color: rgba(255,255,255,.65); line-height: 1.7; position: relative; z-index: 1; }
.i2-feat-small { background: var(--i2-surf); border: 1px solid rgba(17,20,22,0.1); border-radius: var(--i2-r-lg); padding: 32px; transition: box-shadow .2s, border-color .2s; }
.i2-feat-small:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); border-color: rgba(200,75,20,.35); }
.i2-feat-small-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(244,97,30,.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.i2-feat-small h3 { font-size: .97rem; font-weight: 700; margin-bottom: 8px; }
.i2-feat-small p { font-size: .88rem; color: var(--i2-muted); line-height: 1.6; }

/* ── PRICE ── */
.i2-price-wrap { background: var(--i2-dark); border-radius: var(--i2-r-lg); padding: 72px 60px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; overflow: hidden; }
.i2-price-wrap::before { content: ''; position: absolute; bottom: -120px; right: -120px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(244,97,30,.15) 0%, transparent 65%); }
.i2-price-wrap h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.i2-price-wrap p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; max-width: 480px; position: relative; z-index: 1; }
.i2-price-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--i2-r-lg); padding: 36px 40px; text-align: center; flex-shrink: 0; position: relative; z-index: 1; min-width: 220px; }
.i2-price-amount { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.03em; }
.i2-price-period { font-size: .85rem; color: rgba(255,255,255,.45); margin: 6px 0 24px; }
.i2-price-cta { display: block; background: var(--i2-warm); color: #fff; padding: 13px 28px; border-radius: var(--i2-r); font-weight: 700; font-size: .92rem; text-decoration: none; text-align: center; transition: background .2s; }
.i2-price-cta:hover { background: var(--i2-warm-dk); color: #fff; }

/* ── FAQ ── */
.i2-faq-list { max-width: 760px; margin: 0 auto; }
.i2-faq-item { border-bottom: 1px solid rgba(17,20,22,0.1); overflow: hidden; }
.i2-faq-item:first-child { border-top: 1px solid rgba(17,20,22,0.1); }
.i2-faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--i2-text); cursor: pointer; text-align: left; transition: color .2s; }
.i2-faq-q:hover { color: var(--i2-warm); }
.i2-faq-icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--i2-border); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: transform .25s, border-color .2s, background .2s; }
.i2-faq-item.open .i2-faq-icon { transform: rotate(45deg); border-color: var(--i2-warm); background: rgba(244,97,30,.1); color: var(--i2-warm); }
.i2-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.i2-faq-a p { color: var(--i2-muted); font-size: .95rem; line-height: 1.75; padding-bottom: 22px; }
.i2-faq-item.open .i2-faq-a { max-height: 400px; }

/* ── CONTACT ── */
.i2-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.i2-contact-info h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; }
.i2-contact-info p { color: var(--i2-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 28px; }
.i2-contact-detail { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--i2-text); margin-bottom: 12px; }
.i2-contact-detail svg { color: var(--i2-warm); flex-shrink: 0; }
.i2-form-group { margin-bottom: 18px; }
.i2-form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--i2-text); margin-bottom: 6px; }
.i2-form-control { width: 100%; padding: 11px 16px; border: 1.5px solid var(--i2-border); border-radius: var(--i2-r); font-family: inherit; font-size: .95rem; color: var(--i2-text); background: var(--i2-surf); outline: none; transition: border-color .2s, box-shadow .2s; }
.i2-form-control:focus { border-color: var(--i2-warm); box-shadow: 0 0 0 3px rgba(244,97,30,.1); }
.i2-form-control::placeholder { color: #b0b8c1; }
textarea.i2-form-control { resize: vertical; min-height: 120px; }

/* ── RESPONSIVE ── */

/* Tablet / breites Mobile: Bild bleibt rechts, nur etwas kleiner */
@media (max-width: 1100px) {
  .i2-hero-inner { grid-template-columns: 1fr 260px !important; gap: 32px !important; }
  .i2-phone { width: 260px !important; }
  .i2-phone-screen { transform: none !important; }
  .i2-phone::after { display: none !important; }
  .i2-steps { grid-template-columns: 1fr !important; }
  .i2-feat-grid { grid-template-columns: 1fr !important; }
  .i2-feat-big { grid-row: span 1 !important; min-height: 200px !important; padding: 28px 20px !important; }
  .i2-price-wrap { grid-template-columns: 1fr !important; gap: 32px !important; padding: 36px 20px !important; }
  .i2-contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .i2-trust-inner { gap: 14px !important; }
  .i2-trust-item { font-size: .78rem !important; }
  .i2-hero { padding: 80px 0 52px !important; }
  .i2-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem) !important; }
  .i2-hero-sub { font-size: .95rem !important; }
  .i2-section { padding: 56px 0 !important; }
  .i2-container { padding: 0 20px !important; }
  .i2-step { padding: 24px 20px !important; }
  .i2-step:first-child { border-radius: var(--i2-r-lg) var(--i2-r-lg) 0 0 !important; }
  .i2-step:last-child { border-radius: 0 0 var(--i2-r-lg) var(--i2-r-lg) !important; }
  .i2-h2 { font-size: clamp(1.5rem, 4vw, 2rem) !important; }
  .i2-trust { padding: 16px 20px !important; }
  .i2-price-amount { font-size: 2rem !important; }
}

/* Kleines Phone (iPhone etc): einspaltig, Bild darunter */
@media (max-width: 600px) {
  .i2-hero-inner { grid-template-columns: 1fr !important; }
  .i2-phone { display: block !important; width: 200px !important; margin: 24px auto 0 !important; }
  .i2-hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .i2-hero-ctas { flex-direction: column !important; gap: 10px !important; }
  .i2-hero-stores { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }
  .i2-hero-eyebrow { font-size: .72rem !important; letter-spacing: .02em !important; padding: 5px 12px !important; }
}
