/* CisnieniePlus – Braun ExactFit 5 Connect landing
   MediaGo Native compliant: no video, no cure claims, disclaimers included */

:root {
  --color-bg: #f8fafc;
  --color-bg-alt: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-primary: #0f766e;
  --color-primary-hover: #0d9488;
  --color-accent: #14b8a6;
  --color-border: #e2e8f0;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(15, 118, 110, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 118, 110, 0.12);
  --container: min(1100px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

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

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-primary);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--color-primary-hover);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
}

.btn-small:hover {
  background: var(--color-primary-hover);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 1rem 1.75rem;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: linear-gradient(160deg, #f0fdfa 0%, var(--color-bg) 50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 1rem 0;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem 0;
  max-width: 480px;
}

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

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: white;
}

.hero-image-placeholder {
  display: none;
  width: 280px;
  height: 280px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hero-image-placeholder.show {
  display: flex;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .btn-large {
    margin: 0 auto;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section-alt {
  background: var(--color-bg-alt);
  box-shadow: 0 1px 0 var(--color-border);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1rem 0;
  text-align: center;
}

.section-title-small {
  font-size: 1.25rem;
}

.section-lead {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

.prose {
  max-width: 680px;
  margin: 0 auto;
}

.prose p {
  margin: 0 0 1rem 0;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose-center {
  text-align: center;
  margin-top: 2rem;
}

.prose-expanded {
  max-width: 720px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Set list */
.set-list {
  max-width: 480px;
  margin: 0 auto 1.5rem auto;
  padding-left: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}

.set-list li {
  margin-bottom: 0.35rem;
}

.disclaimer-inline {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.review-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow);
}

.review-card p {
  margin: 0 0 0.75rem 0;
  font-size: 0.98rem;
  color: var(--color-text);
  font-style: italic;
}

.review-card cite {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: normal;
}

/* CTA section */
.cta-section {
  background: linear-gradient(160deg, #ccfbf1 0%, #99f6e4 100%);
  text-align: center;
}

.cta-section .section-title {
  margin-bottom: 0.5rem;
}

.cta-section .section-lead {
  margin-bottom: 1.5rem;
}

.cta-section .btn-large {
  padding: 1rem 2rem;
}

/* Legal */
.section-legal {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.legal-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal-text p {
  margin: 0 0 1rem 0;
}

.legal-text p:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: var(--color-text);
  color: #94a3b8;
  padding: 2rem 0;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin: 0 0 0.25rem 0;
}

.footer-site {
  margin: 0 0 0.5rem 0;
}

.footer-site a {
  color: #94a3b8;
}

.footer-site a:hover {
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 0.75rem 0 1rem 0;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

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

.footer-note {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.85;
}

/* Subpages: same header/footer, content area */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.page-content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--color-text);
}

.page-content h2:first-of-type {
  margin-top: 0;
}

.page-content ul {
  padding-left: 1.5rem;
  margin: 0 0 1rem 0;
}

.page-content li {
  margin-bottom: 0.35rem;
}
