:root {
  --white:    #ffffff;
  --black:    #000000;
  --gray-50:  #fafafa;
  --gray-100: #f5f5f7;
  --gray-200: #e8e8ed;
  --gray-400: #b0b0b5;
  --gray-600: #6e6e73;
  --gray-900: #1d1d1f;
  --accent:   #000000;
  --font:     'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:   20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 52px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 28px; width: auto; filter: grayscale(100%); transition: filter .3s ease; }
.logo-img:hover { filter: grayscale(0%); }
.logo-img--footer { height: 36px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--gray-600); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { background: #f0c8c0; color: var(--black); padding: 8px 20px; border-radius: 980px; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity .2s; animation: neoBgColors 4s ease-in-out infinite; }
.nav-cta:hover { opacity: .75; }
@keyframes neoBgColors {
  0%   { background: #f0c8c0; }
  25%  { background: #6a7fa8; }
  50%  { background: #d8d8dc; }
  75%  { background: #d4d86a; }
  100% { background: #f0c8c0; }
}
.nav-angebot { background: var(--black) !important; padding: 6px 14px !important; border-radius: 980px !important; font-weight: 600 !important; animation: neoColors 4s ease-in-out infinite; }
.nav-angebot:hover { opacity: .85; }
@keyframes neoColors {
  0%   { color: #f0c8c0; }
  25%  { color: #6a7fa8; }
  50%  { color: #d8d8dc; }
  75%  { color: #d4d86a; }
  100% { color: #f0c8c0; }
}

/* HERO */
.hero {
  min-height: 100vh; background: var(--gray-100);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; padding-top: 100px; overflow: hidden; position: relative;
}
.hero-text { padding: 0 24px; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  
  border-radius: 980px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray-600); margin-bottom: 24px;
  animation: fadeUp .7s ease both;
}
.hero h1 {
  font-size: clamp(56px, 10vw, 120px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.0;
  color: var(--gray-900); margin-bottom: 20px; animation: fadeUp .7s .08s ease both;
}
.hero h1 span { color: var(--gray-600); font-weight: 300; }
.hero-sub { font-size: clamp(17px, 2vw, 22px); font-weight: 300; color: var(--gray-600); line-height: 1.5; margin-bottom: 36px; animation: fadeUp .7s .16s ease both; }
.hero-price-pill {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--black); color: var(--white);
  border-radius: 980px; padding: 12px 28px; margin-bottom: 40px;
  animation: fadeUp .7s .24s ease both;
}
.hero-price-pill .from { font-size: 13px; font-weight: 400; opacity: .6; }
.hero-price-pill .amt { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }
.hero-price-pill .sub { font-size: 11px; opacity: .5; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; animation: fadeUp .7s .32s ease both; }
.btn-black { background: var(--black); color: var(--white); padding: 13px 28px; border-radius: 980px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background .2s; }
.btn-black:hover { background: #a02b2b; }
.btn-outline { border: 1.5px solid rgba(0,0,0,0.2); color: var(--gray-900); padding: 13px 28px; border-radius: 980px; font-size: 15px; font-weight: 500; text-decoration: none; transition: border-color .2s, background .2s, color .2s; }
.btn-outline:hover { border-color: #a02b2b; background: #a02b2b; color: var(--white); }
.hero-image { width: 100%; max-width: 1200px; animation: fadeUp .9s .4s ease both; position: relative; }
.hero-frame { width: 100%; display: block; }
.hero-frame--end { position: absolute; inset: 0; animation: heroCrossfade 4s 1.2s ease-in-out infinite alternate; }
@keyframes heroCrossfade { 0% { opacity: 0; } 100% { opacity: 1; } }

/* UTILS */
.container { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 10px; }
.section-title { font-size: clamp(34px, 4.5vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; color: var(--gray-900); margin-bottom: 18px; }
.section-body { font-size: 18px; font-weight: 300; line-height: 1.7; color: var(--gray-600); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* INTRO */
.intro-strip { background: var(--white); padding: 96px 0; text-align: center; }
.intro-strip .section-title { max-width: 700px; margin: 0 auto 20px; }
.intro-strip .section-body { max-width: 620px; margin: 0 auto; }

/* FULL PHOTO */
.full-photo { width: 100%; overflow: hidden; background: var(--gray-100); padding-top: 80px; }
.full-photo img { width: 100%; display: block; will-change: transform; transform-origin: center center; transition: transform 0.05s linear; }

/* COLORS */
.colors-section { background: var(--white); padding: 100px 0; }
.colors-header { text-align: center; margin-bottom: 72px; }
.color-swatches { display: flex; justify-content: center; gap: 32px; margin-bottom: 64px; flex-wrap: wrap; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; }
.swatch-dot { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(0,0,0,0.09); transition: transform .2s, box-shadow .2s; }
.swatch:hover .swatch-dot { transform: scale(1.15); box-shadow: 0 6px 20px rgba(0,0,0,0.13); }
.swatch-name { font-size: 12px; font-weight: 500; color: var(--gray-600); }
.s-rosa   .swatch-dot { background: #f0c8c0; }
.s-indigo .swatch-dot { background: #6a7fa8; }
.s-silber .swatch-dot { background: #d8d8dc; }
.s-zitrus .swatch-dot { background: #d4d86a; }
.color-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@keyframes colorCardHover {
  0%   { transform: scale(1); }
  15%  { transform: scale(0.92) translateX(-6px); }
  30%  { transform: scale(0.88) translateX(6px); }
  45%  { transform: scale(0.91) translateX(-4px); }
  60%  { transform: scale(0.89) translateX(4px); }
  75%  { transform: scale(0.93) translateX(-2px); }
  90%  { transform: scale(0.97) translateX(1px); }
  100% { transform: scale(1); }
}
.color-photo { background: var(--gray-100); border-radius: 14px; overflow: hidden; }
.color-photo img { width: 100%; height: auto; display: block; }
.color-photo:hover { animation: colorCardHover 0.6s ease forwards; }
.color-photo .clabel { display: block; text-align: center; font-size: 13px; font-weight: 600; color: var(--gray-900); padding: 10px 0 14px; }

/* MODELLE */
.modelle-section { background: var(--gray-100); padding: 80px 0; }
.modelle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.modell-card { background: var(--white); border-radius: 24px; padding: 40px 36px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.modell-card--highlight { background: var(--black); }
.modell-badge { position: absolute; top: 24px; right: 24px; background: #d4d86a; color: var(--black); border-radius: 980px; padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.modell-label { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; }
.modell-card--highlight .modell-label { color: rgba(255,255,255,.45); }
.modell-storage { font-size: 48px; font-weight: 800; letter-spacing: -0.04em; color: var(--gray-900); line-height: 1; }
.modell-card--highlight .modell-storage { color: var(--white); }
.modell-desc { font-size: 13px; color: var(--gray-600); font-weight: 300; line-height: 1.5; margin-top: 4px; }
.modell-card--highlight .modell-desc { color: rgba(255,255,255,.55); }
.modell-price { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--gray-900); margin-top: 8px; }
.modell-card--highlight .modell-price { color: var(--white); }
.modell-cta { margin-top: 16px; background: var(--gray-900); color: var(--white); border: none; border-radius: 980px; padding: 12px 24px; font-size: 14px; font-weight: 600; font-family: var(--font); cursor: pointer; transition: opacity .2s; }
.modell-card--highlight .modell-cta { background: var(--white); color: var(--black); }
.modelle-intro { display: flex; flex-direction: column; gap: 40px; margin-bottom: 40px; }
.modelle-intro-text { display: flex; flex-direction: column; gap: 20px; max-width: 720px; margin: 0 auto; text-align: center; }
.modelle-intro-lead { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--gray-900); line-height: 1.35; }
.modelle-intro-text p { font-size: 18px; font-weight: 300; color: var(--gray-600); line-height: 1.7; }
.modelle-intro-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.modelle-intro-img-card { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.modelle-key-card { background: #fff; border-radius: 24px; padding: 28px 24px 20px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.modelle-key-card--dark { background: var(--black); }
.modelle-key-card--dark .modelle-intro-img-label { color: rgba(255,255,255,0.6); }
.modelle-intro-img { width: 100%; border-radius: 14px; display: block; }
.modelle-intro-img-label { font-size: 14px; font-weight: 600; color: var(--gray-700); letter-spacing: -0.01em; }
@media (max-width: 700px) {
  .modelle-intro-imgs { grid-template-columns: 1fr; }
}
.modell-cta:hover { opacity: .75; }
@media (max-width: 540px) {
  .modelle-grid { grid-template-columns: 1fr; }
  .modell-card { padding: 32px 24px; }
}

/* FEATURES BENTO */
.features-section { background: var(--gray-100); padding: 100px 0; }
.features-header { text-align: center; margin-bottom: 56px; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bento-card { background: var(--white); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.09); }
.bento-card.col2 { grid-column: span 2; }
.bento-card--dark { background: var(--black); }
.bento-photo { overflow: hidden; flex-shrink: 0; height: 220px; }
.bento-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform .5s; }
.bento-card.col2 .bento-photo { height: 320px; }
.bento-card:hover .bento-photo img { transform: scale(1.04); }
.bento-text { padding: 28px 32px 32px; }
.bento-stat { font-size: clamp(42px, 5vw, 60px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--gray-900); margin-bottom: 4px; }
.bento-stat .unit { font-size: .45em; font-weight: 700; }
.bento-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px; }
.bento-title { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.bento-body { font-size: 14px; font-weight: 300; color: var(--gray-600); line-height: 1.65; }

/* DISPLAY */
.display-section { background: var(--white); padding: 100px 0; text-align: center; }
.display-photo { margin: 56px auto 0; max-width: 960px; border-radius: var(--radius); overflow: hidden; }
.display-photo img { width: 100%; display: block; }
.display-stats { display: flex; justify-content: center; gap: 56px; margin-top: 56px; flex-wrap: wrap; }
.ds { text-align: center; }
.ds-num { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--gray-900); }
.ds-lbl { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

/* LIFESTYLE */
.lifestyle-section { background: var(--gray-100); padding: 100px 0; }
.lifestyle-header { text-align: center; margin-bottom: 56px; }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lifestyle-photo { border-radius: var(--radius); overflow: hidden; background: var(--gray-200); }
.lifestyle-photo.tall { grid-row: span 2; }
.lifestyle-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.lifestyle-photo:hover img { transform: scale(1.03); }

/* BATTERY */
.battery-section { background: var(--white); padding: 100px 0; text-align: center; }
.battery-num { font-size: clamp(100px, 20vw, 220px); font-weight: 800; letter-spacing: -0.05em; line-height: 1; color: var(--gray-900); }
.battery-unit { font-size: .25em; color: var(--gray-600); font-weight: 400; vertical-align: top; margin-top: .25em; margin-left: .1em; display: inline-block; letter-spacing: -0.11em; }
.battery-uses { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 44px; }
.batt-chip { display: flex; align-items: center; gap: 8px; background: var(--gray-100); border-radius: 980px; padding: 10px 20px; font-size: 14px; font-weight: 500; }
.batt-chip .material-icons-round { font-size: 18px; }

/* DETAIL */
.detail-section { background: var(--gray-100); padding: 100px 0; }
.detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-card { background: var(--white); border-radius: var(--radius); overflow: hidden; }
.detail-card img { width: 100%; display: block; }
.detail-card--full { grid-column: span 2; }
.detail-card--full img { max-height: 420px; object-fit: cover; object-position: center; }
.detail-card-text { padding: 32px 36px 36px; }
.detail-card-text h3 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.detail-card-text p { font-size: 15px; color: var(--gray-600); line-height: 1.65; font-weight: 300; }

/* FACETIME */
.facetime-section { background: var(--white); padding: 100px 0; }
.facetime-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.facetime-photo { border-radius: var(--radius); overflow: hidden; }
.facetime-photo img { width: 100%; display: block; }
.facetime-specs { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.fspec { display: flex; align-items: center; gap: 14px; }
.fspec-icon { font-size: 20px; width: 44px; height: 44px; background: var(--gray-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fspec-icon .material-icons-round { font-size: 22px; }
.fspec-text strong { font-size: 15px; font-weight: 600; display: block; }
.fspec-text span { font-size: 13px; color: var(--gray-600); }

/* VIDEO */
.video-section { background: var(--gray-900); padding: 100px 0; text-align: center; }
.video-section .section-label { color: var(--gray-400); }
.video-section .section-title { color: var(--white); }
.video-wrap { margin: 52px auto 0; width: 100%; border-radius: var(--radius); box-shadow: 0 40px 80px rgba(0,0,0,0.5); position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrap iframe { border-radius: var(--radius); }

/* OS */
.os-section { background: var(--gray-100); padding: 100px 0; text-align: center; }
.os-chips { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 48px; }
.os-chip { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 980px; padding: 11px 20px; font-size: 14px; font-weight: 500; color: var(--gray-900); text-decoration: none; transition: box-shadow .2s, transform .2s; }
.os-chip:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.os-chip .ic { font-size: 18px; }

/* PRICING */
.pricing-section { background: var(--white); padding: 100px 0; text-align: center; }
.pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; max-width: 1080px; margin: 0 auto; }
.pricing-left { display: flex; flex-direction: column; gap: 16px; }
.pricing-photo { border-radius: 28px; overflow: hidden; }
.pricing-photo img { width: 100%; height: auto; display: block; }
.training-card { background: var(--gray-100); border-radius: 28px; padding: 36px 40px; text-align: left; }
.training-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 12px; }
.training-title { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; color: var(--gray-900); margin-bottom: 14px; }
.training-title span { font-weight: 300; color: var(--gray-600); }
.training-intro { font-size: 15px; font-weight: 300; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.training-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.training-meta-item { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; }
.training-meta-label { font-weight: 700; color: var(--gray-900); min-width: 90px; flex-shrink: 0; }
.training-meta-item span:last-child { color: var(--gray-600); font-weight: 300; }.training-topics { background: var(--white); border-radius: 16px; padding: 20px 24px; }
.training-topics-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 12px; }
.training-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; counter-reset: training; }
.training-list li { counter-increment: training; display: flex; align-items: baseline; gap: 12px; }
.training-list li::before { content: counter(training, decimal-leading-zero); font-size: 18px; font-weight: 700; color: var(--gray-200); flex-shrink: 0; min-width: 28px; }
.training-list li span { font-size: 15px; font-weight: 600; color: var(--gray-900); line-height: 1.4; }
.training-li-inner { display: flex; flex-direction: column; }
.training-sublist { list-style: none; padding: 0; margin-top: 8px; margin-left: 0; display: flex; flex-direction: column; gap: 6px; counter-reset: sub; }
.training-sublist li { counter-increment: sub; display: flex; align-items: baseline; gap: 10px; }
.training-sublist li::before { content: "05." counter(sub); font-size: 13px; font-weight: 700; color: var(--gray-200); flex-shrink: 0; min-width: 36px; }
.training-sublist li span { font-size: 14px; font-weight: 500; color: var(--gray-600); line-height: 1.4; }
.pricing-card { background: var(--gray-100); border-radius: 28px; padding: 56px 48px; text-align: left; }
.pricing-tag { display: inline-block; background: var(--black); color: var(--white); border-radius: 980px; padding: 6px 18px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 28px; }
.pricing-amount { font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--gray-900); margin-bottom: 8px; white-space: nowrap; }
.pricing-note { font-size: 15px; color: var(--gray-600); margin-bottom: 36px; line-height: 1.5; }
.pricing-note strong { color: var(--gray-900); }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 32px 0; }
.aktion-box { background: var(--white); border-radius: 16px; padding: 28px 32px; text-align: left; }
.aktion-box h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; display: flex; gap: 8px; }
.aktion-box p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }
.aktion-box p strong { color: var(--gray-900); }
.pricing-cta { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* SPECS */
.specs-section { background: var(--gray-100); padding: 100px 0; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 18px 0; border-top: 1px solid var(--gray-200); font-size: 15px; vertical-align: top; }
.specs-table td:first-child { width: 200px; font-weight: 600; color: var(--gray-900); }
.specs-table td:last-child { color: var(--gray-600); line-height: 1.6; }

/* SPECS FOOTNOTE */
.specs-footnote { margin-top: 32px; font-size: 13px; color: var(--gray-600); line-height: 1.75; max-width: 760px; }

/* FAQ */
.faq-section { background: var(--gray-100); padding: 100px 0; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 18px; margin-bottom: 10px; overflow: hidden; transition: box-shadow .25s ease; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
summary.faq-q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::marker { content: ''; }
summary.faq-q::after {
  content: '+';
  font-size: 26px;
  font-weight: 200;
  line-height: 1;
  flex-shrink: 0;
  color: #1d1d1f;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > summary.faq-q { color: #a02b2b; }
.faq-item[open] > summary.faq-q::after { transform: rotate(45deg); color: #a02b2b; }
.faq-a {
  padding: 18px 32px 28px;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  border-top: 1px solid #f0f0f5;
}

/* FOOTER */
footer { background: var(--gray-100); border-top: 1px solid var(--gray-200); padding: 48px 0 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-text { font-size: 12px; color: var(--gray-600); line-height: 1.7; max-width: 760px; }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--gray-600); }
.flink { font-size: 12px; color: var(--gray-600); text-decoration: none; }
.flink:hover { color: var(--gray-900); }

/* RESPONSIVE */

/* Nav CTA toggle */
.nav-cta--mobile { display: none; }

@media (max-width: 860px) {
  nav { padding: 0 16px; }
  nav .nav-links { display: none; }
  .container { padding: 0 20px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.col2 { grid-column: span 2; }
  .facetime-layout { grid-template-columns: 1fr; gap: 40px; }
  .detail-layout { grid-template-columns: 1fr; }
  .color-grid { grid-template-columns: repeat(2,1fr); }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-photo.tall { grid-row: span 1; }
}

/* Smartphones & Tablets im Hochformat */
@media (max-width: 767px), (orientation: portrait) and (max-width: 1024px) {
  .nav-cta--desktop { display: none; }
  .nav-cta--mobile { display: inline-block; }
}

@media (max-width: 768px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .training-card { padding: 28px 24px; }
  .pricing-card { padding: 36px 24px; }
  .display-stats { gap: 28px; }
}

@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.col2 { grid-column: span 1; }
  .bento-card.col2 .bento-photo { height: 220px; }
  .colors-section { padding: 64px 0; }
  .features-section, .display-section, .lifestyle-section,
  .battery-section, .detail-section, .facetime-section,
  .video-section, .os-section, .pricing-section, .specs-section { padding: 64px 0; }
  .intro-strip { padding: 64px 0; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(36px, 11vw, 56px); }
  .hero-sub { font-size: 16px; }
  .hero-text { padding: 0 20px; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .color-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .battery-num { font-size: clamp(72px, 22vw, 100px); }
  .pricing-amount { font-size: clamp(28px, 8vw, 36px); }
  .pricing-card { padding: 28px 16px; }
  .training-card { padding: 24px 16px; }
  .aktion-box { padding: 20px 16px; }
  .specs-table td:first-child { width: 120px; font-size: 13px; }
  .specs-table td { font-size: 13px; padding: 14px 0; }
}

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: 28px; width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto; padding: 48px 52px; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.25); }
.modal-close { position: absolute; top: 20px; right: 24px; background: var(--gray-100); border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 15px; cursor: pointer; color: var(--gray-600); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.modal-close:hover { background: var(--gray-200); }
.modal-title { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 32px; }
.form-group { border: none; padding: 0; margin: 0 0 28px; }
.form-legend { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 14px; display: block; }
.radio-card { display: block; border: 2px solid var(--gray-200); border-radius: 16px; padding: 18px 20px; margin-bottom: 10px; cursor: pointer; transition: border-color .2s, background .2s; }
.radio-card input { display: none; }
.radio-card.selected, .radio-card:has(input:checked) { border-color: var(--black); background: var(--gray-100); }
.radio-card-title { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.radio-card-desc { font-size: 13px; font-weight: 300; color: var(--gray-600); margin-bottom: 8px; }
.radio-card-desc--row { display: block; }
.radio-card-note { font-size: 12px; opacity: .6; }
.radio-card-price { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: var(--gray-900); }
.radio-card--dark { background: var(--black); border-color: var(--black); }
.radio-card--dark .radio-card-title { color: #fff; }
.radio-card--dark .radio-card-desc { color: rgba(255,255,255,.55); }
.radio-card--dark .radio-card-price { color: #fff; }
.radio-card--dark:has(input:checked) { border-color: #fff; background: #1a1a1a; }
.check-label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 400; color: var(--gray-700, #444); margin-bottom: 10px; cursor: pointer; }
.check-label input { width: 18px; height: 18px; accent-color: var(--black); flex-shrink: 0; }
.form-swatch { cursor: pointer; }
.form-swatch input { display: none; }
.form-swatch input:checked ~ .swatch-dot { transform: scale(1.18); box-shadow: 0 0 0 3px var(--black), 0 0 0 5px #fff inset; }
.form-swatch input:checked ~ .swatch-name { font-weight: 700; color: var(--gray-900); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 12px; }
.form-field--sm { max-width: 120px; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--gray-600); margin-bottom: 5px; display: flex; flex-direction: column; gap: 5px; }
.form-field input, .form-field textarea, .form-field label input, .form-field label textarea { width: 100%; border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 11px 14px; font-size: 14px; font-family: var(--font); color: var(--gray-900); background: var(--gray-50); outline: none; transition: border-color .2s; }
.form-field input:focus, .form-field textarea:focus, .form-field label input:focus, .form-field label textarea:focus { border-color: var(--black); background: var(--white); }
.price-summary { display: flex; align-items: center; justify-content: space-between; background: var(--gray-900); color: var(--white); border-radius: 16px; padding: 20px 24px; margin-bottom: 28px; }
.price-summary-label { font-size: 13px; font-weight: 600; opacity: .7; }
.price-summary-amount { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.price-vat { font-size: 11px; font-weight: 400; letter-spacing: 0; opacity: .5; }
.btn-submit { width: 100%; background: var(--black); color: var(--white); border: none; border-radius: 980px; padding: 16px 28px; font-size: 16px; font-weight: 700; font-family: var(--font); cursor: pointer; transition: opacity .2s; margin-bottom: 14px; }
.btn-submit:hover { background: #a02b2b; opacity: 1; }
.form-hint { font-size: 13px; color: var(--gray-400); line-height: 1.6; margin: 8px 0 0; }
.form-legal { font-size: 12px; color: var(--gray-400); text-align: center; line-height: 1.6; }
.form-legal a { color: var(--gray-600); }
.order-confirm { text-align: center; padding: 40px 20px; }
.order-confirm-icon { font-size: 56px; color: #34c759; margin-bottom: 16px; }
.order-confirm h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.order-confirm p { font-size: 16px; color: var(--gray-600); font-weight: 300; }
@media (max-width: 600px) {
  .modal-box { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-field--sm { max-width: 100%; }
}

/* LEGAL PAGES (agb, datenschutz, impressum) */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal-wrap h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.legal-meta {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 52px;
}
.legal-wrap h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.legal-wrap p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.legal-wrap ul, .legal-wrap ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-wrap li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.legal-highlight {
  background: var(--gray-100);
  border-left: 3px solid var(--gray-900);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.legal-highlight p {
  margin-bottom: 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  text-decoration: none;
  margin-bottom: 40px;
  opacity: .7;
  transition: opacity .2s;
}
.back-link:hover { opacity: 1; }
