/* ============================================================
   DIGOLA CORPORATE WEBSITE — style.css
   ============================================================ */

/* --- Fonts (self-hosted Poppins) -------------------------- */
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/poppins-400-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: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/poppins-500-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: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/poppins-600-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: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/poppins-700-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;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/poppins-400-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;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/poppins-500-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;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/poppins-600-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;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/poppins-700-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;
}

/* --- Variables -------------------------------------------- */
:root {
  --color-primary:   #0D4D80;
  --color-dark:      #0D4D80;
  --color-bg:        #F3F6FC;
  --color-white:     #ffffff;
  --color-text:      #1E1F23;
  --color-muted:     #4C4C4C;
  --color-input-bg:  #E5E5E5;
  --color-border:    #d0d5dd;
  --color-green:     #44AC69;
  --color-accent:    #FF1E1E;

  --max-width:       1440px;
  --content-width:   1200px;
  --nav-height:      70px;
  --radius-card:     8px;
  --radius-btn:      8px;

  --font-display:    'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body:       'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: bold;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
p { line-height: 1.7; }

/* --- Layout helpers --------------------------------------- */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 80px 0; }
.section--bg { background: var(--color-bg); }
.section--dark { background: var(--color-dark); color: var(--color-white); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--color-dark); color: var(--color-white); }
.btn--outline {
  background: transparent;
  border: 2px solid var(--color-text);
  color: var(--color-text);
}
.btn--outline:hover { background: var(--color-text); color: var(--color-white); }
.btn--white { background: var(--color-white); color: var(--color-dark); }

/* --- Navigation ------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid #eaeef4;
  height: var(--nav-height);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img, .nav__logo svg { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color .2s;
}
.nav__links a:hover { color: var(--color-primary); }

.nav__cta {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-size: .9rem;
  font-weight: 600;
  transition: opacity .2s;
}
.nav__cta:hover { opacity: .8; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all .3s;
}

.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid #eaeef4;
  padding: 20px 40px;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.nav__mobile .nav__cta { margin-top: 8px; text-align: center; }

/* --- Footer ----------------------------------------------- */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid #eaeef4;
  padding: 24px 40px;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: .875rem; color: var(--color-muted); }
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: .875rem;
  color: var(--color-muted);
  transition: color .2s;
}
.footer__links a:hover { color: var(--color-text); }

/* --- Newsletter Modal ------------------------------------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.is-open { display: flex; }

.modal {
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--color-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.modal__close:hover { color: var(--color-text); }

.modal__logo {
  margin: 0 auto 24px;
  width: 60px;
  height: 60px;
  background: var(--color-text);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__logo svg { width: 32px; height: 32px; }

.modal h2 { font-size: 1.5rem; margin-bottom: 8px; }
.modal p { color: var(--color-muted); margin-bottom: 24px; font-size: .95rem; }

.modal__form { display: flex; flex-direction: column; gap: 12px; }
.modal__form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.modal__form input[type="email"]:focus { border-color: var(--color-primary); }
.modal__form .btn { justify-content: center; }

/* Privacy notice + inline error live inside .modal, so they must out-specify
   `.modal p` (which is 0,0,1,1) — hence the `.modal` prefix. */
.modal .modal__privacy { margin-top: 12px; margin-bottom: 0; font-size: .8125rem; color: var(--color-muted); }
.modal .modal__privacy a { color: var(--color-primary); }
.modal .modal__error { display: none; margin-top: 10px; margin-bottom: 0; font-size: .875rem; color: #e53e3e; }
.modal .modal__error.is-visible { display: block; }

/* Honeypot: off-screen, never seen or tabbed to by real users. */
.modal__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.modal__confirm { display: none; }
.modal__confirm.is-visible { display: block; }
.modal__confirm-icon {
  width: 64px;
  height: 64px;
  background: var(--color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modal__confirm-icon svg { width: 28px; height: 28px; fill: none; stroke: white; stroke-width: 3; }

/* --- Page hero -------------------------------------------- */
.page-hero {
  background: var(--color-bg);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--color-muted); max-width: 600px; margin: 0 auto; }

/* Team hero — d-icon beside the heading (hero stays centred) */
.page-hero--team h1 { margin-bottom: 0; }
.page-hero__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 48px);
  margin-bottom: 24px;
}
.page-hero__icon { flex: 0 0 auto; width: clamp(120px, 17vw, 240px); }
.page-hero__icon svg { display: block; width: 100%; height: auto; }

/* --- FAQ accordion ---------------------------------------- */
/* The FAQ list lives in a centred column matching the design (≈700px). */
.faq { max-width: 700px; margin: 0 auto; }

.faq-group { margin-bottom: 44px; }
.faq-group:last-of-type { margin-bottom: 0; }
.faq-group__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.accordion-list { display: flex; flex-direction: column; gap: 21px; }

/* Each question is a white pill with a thin outline. */
.accordion-item { position: relative; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 8px;
}
.accordion-trigger .chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform .3s;
}
.accordion-trigger.is-open .chevron { transform: rotate(180deg); }

/* Open: the trigger fuses flush with the body below into a single box. */
.accordion-trigger.is-open {
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.accordion-body {
  display: none;
  position: relative;
  padding: 6px 22px 16px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--color-muted);
  background: var(--color-white);
  border: 1px solid var(--color-text);
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.accordion-body.is-open { display: block; }

/* The "complex shape": two fixed-size notches bitten into the left and
   right edges at the trigger/body seam. They paint the page background
   (#F3F6FC) into the box and redraw the outline as the concave fillets,
   exactly per the design's vector. Fixed size + edge-anchored keeps them
   pixel-perfect at any column width. */
.accordion-body.is-open::before,
.accordion-body.is-open::after {
  content: "";
  position: absolute;
  top: -14.35px;          /* centre the 28px-tall notch on the seam */
  width: 30px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-1 0 30 28' width='30' height='28'%3E%3Cpath fill='%23F3F6FC' d='M1 1.868C1 6.287 4.582 9.868 9 9.868H24.583C27.059 9.868 29.067 11.876 29.067 14.352C29.067 16.828 27.059 18.835 24.583 18.835H9C4.582 18.835 1 22.417 1 26.835L-1 26.835L-1 1.868Z'/%3E%3Cpath fill='none' stroke='%231E1F23' stroke-width='1' d='M1 1.868C1 6.287 4.582 9.868 9 9.868H24.583C27.059 9.868 29.067 11.876 29.067 14.352C29.067 16.828 27.059 18.835 24.583 18.835H9C4.582 18.835 1 22.417 1 26.835'/%3E%3C/svg%3E");
}
.accordion-body.is-open::before { left: -2px; }
.accordion-body.is-open::after  { right: -2px; transform: scaleX(-1); }

/* --- App store badges ------------------------------------- */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-text);
  color: var(--color-white);
  border-radius: 12px;
  padding: 9px 18px;
  min-width: 190px;
  transition: opacity .2s, transform .15s;
}
.store-badge:hover { opacity: .85; transform: translateY(-1px); }
.store-badge__glyph { width: 26px; height: 26px; fill: white; flex-shrink: 0; }
.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.store-badge__text small { font-size: .68rem; font-weight: 500; opacity: .85; }
.store-badge__text strong { font-size: 1rem; font-weight: 700; }

/* --- Contact form ----------------------------------------- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--color-primary); }
.form-group textarea { resize: vertical; min-height: 160px; }
.form-group select { appearance: none; cursor: pointer; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--color-muted);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 0;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 72px;
  height: 72px;
  background: var(--color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success__icon svg { width: 32px; height: 32px; fill: none; stroke: white; stroke-width: 3; }
.form-success h2 { font-size: 1.6rem; margin-bottom: 8px; }
.form-success p { color: var(--color-muted); }

.contact-error {
  display: none;
  margin-top: 4px;
  margin-bottom: 16px;
  font-size: .875rem;
  color: #e53e3e;
}
.contact-error.is-visible { display: block; }

/* --- Team (desktop: alternating zig-zag rows) ------------- */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
  max-width: 1040px;
  margin: 0 auto;
}
.team-member {
  display: flex;
  align-items: center;
  gap: 48px;
}
.team-member:nth-child(even) { flex-direction: row-reverse; }
.team-member:nth-child(even) .team-member__content {
  align-items: flex-end;
  text-align: right;
}

.team-member__media { flex-shrink: 0; }
.team-member__photo,
.team-member__placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.team-member__photo {
  object-fit: cover;
  filter: grayscale(100%);
  border: 1.5px solid var(--color-text);
}
.team-member__placeholder { background: var(--color-accent); }

.team-member__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.team-member__name { font-size: 1.25rem; font-weight: 700; }
.team-member__role { font-size: .95rem; color: var(--color-muted); margin-top: 2px; }
.team-member__bio {
  margin-top: 16px;
  font-size: .95rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.team-member__bio a {
  color: var(--color-primary);
  text-decoration: underline;
}
/* Nothing to show / reveal when a bio is still empty */
.team-member__bio:empty { display: none; }

/* The expand button only exists on the mobile layout */
.team-member__toggle { display: none; }

/* Accent member (Skye – Foto folgt) */
.team-member--accent .team-member__role { color: var(--color-accent); }

/* --- App card --------------------------------------------- */
.app-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}
.app-card:last-child { border-bottom: none; }
.app-card__icon {
  width: 80px;
  height: 80px;
  background: rgba(13, 77, 128, 0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.app-card__icon svg, .app-card__icon img { width: 44px; height: 44px; }
.app-card__name { font-family: var(--font-display); font-size: 1.8rem; font-weight: bold; margin-bottom: 12px; }
.app-card__desc { color: var(--color-muted); margin-bottom: 24px; font-size: .95rem; }
.app-card__links { display: flex; gap: 12px; flex-wrap: wrap; }
.app-card__screenshot { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.12); }
.app-card__screenshot img { width: 100%; }

/* --- Section: Features list ------------------------------- */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.features-list li {
  /* hanging bullet so the bold lead-in label flows inline with its text
     (a flex row would split <strong> and the copy into separate columns) */
  position: relative;
  padding-left: 20px;
  font-size: .95rem;
}
.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* --- Section: info card (dark blue) ----------------------- */
.info-card {
  background: rgba(13, 77, 128, 0.08);
  border-radius: 12px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-card__image { border-radius: 10px; overflow: hidden; }
.info-card__image img { width: 100%; height: 100%; object-fit: cover; }
.info-card__text h2 { margin-bottom: 16px; }
.info-card__text p { color: var(--color-muted); margin-bottom: 24px; }

/* --- Hero (Home) ------------------------------------------ */
.home-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,77,128,.65) 0%, rgba(0,142,207,.25) 100%);
}
.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 100px 40px;
  color: var(--color-white);
}
.home-hero__content h1 { margin-bottom: 20px; color: var(--color-white); }
.home-hero__content p { font-size: 1.2rem; margin-bottom: 36px; opacity: .9; max-width: 540px; }
.home-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Section: split layout -------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__text h2 { margin-bottom: 16px; }
.split__text p { color: var(--color-muted); margin-bottom: 24px; }
.split__image { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.1); }
.split__image img { width: 100%; }

/* --- Section: feature grid -------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card__icon svg { width: 24px; height: 24px; color: var(--color-primary); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: .875rem; color: var(--color-muted); }

/* --- Imprint / Datenschutz -------------------------------- */
.legal-content { max-width: 720px; }
.legal-content h1 { margin-bottom: 40px; }
.legal-content h2 { font-size: 1.2rem; margin: 32px 0 12px; }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal-content h4 { font-size: .95rem; margin: 20px 0 6px; }
.legal-content p { color: var(--color-muted); margin-bottom: 12px; font-size: .95rem; }
.legal-content ul { color: var(--color-muted); font-size: .95rem; margin: 0 0 12px 1.25rem; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--color-primary); text-decoration: underline; }

/* --- Utility ---------------------------------------------- */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-muted); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* --- Responsive ------------------------------------------- */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .container { padding: 0 20px; }
  .section { padding: 50px 0; }

  /* Nav */
  .nav { padding: 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { padding: 16px 20px; }

  /* Footer */
  .site-footer { padding: 20px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__links { flex-wrap: wrap; gap: 16px; }

  /* Home hero */
  .home-hero { min-height: 60vh; }
  .home-hero__content { padding: 60px 20px; }
  .home-hero__ctas { flex-direction: column; }
  .home-hero__ctas .btn { text-align: center; justify-content: center; }

  /* Split layout */
  .split, .split--reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .split--reverse .split__image { order: -1; }

  /* App cards */
  .app-card { grid-template-columns: 1fr; gap: 32px; }

  /* Feature grid */
  .feature-grid { grid-template-columns: 1fr; }

  /* Info card */
  .info-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }

  /* Team (mobile: centered cards with expand toggle) */
  .team-grid { gap: 44px; max-width: 460px; }
  .team-member,
  .team-member:nth-child(even) {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .team-member__content,
  .team-member:nth-child(even) .team-member__content {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .team-member__photo,
  .team-member__placeholder { width: 120px; height: 120px; }
  .team-member__name { margin-top: 18px; font-size: 1.15rem; }

  .team-member__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    padding: 10px 20px;
    min-width: 210px;
    border: 1.5px solid var(--color-text);
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-text);
    font-size: .95rem;
    font-weight: 600;
  }
  .team-member__toggle .chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .3s ease;
  }
  .team-member__toggle.is-open .chevron { transform: rotate(180deg); }

  .team-member__bio {
    display: none;
    position: relative;
    margin-top: 14px;
    padding: 20px 22px;
    border: 1.5px solid var(--color-border);
    border-radius: 18px;
    text-align: left;
    width: 100%;
  }
  .team-member__bio.is-open { display: block; }
  .team-member__bio.is-open::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border-top: 1.5px solid var(--color-border);
    border-left: 1.5px solid var(--color-border);
    transform: translateX(-50%) rotate(45deg);
  }
  /* No toggle for members whose bio is still empty */
  .team-member__content:has(.team-member__bio:empty) .team-member__toggle { display: none; }

  /* Accent member (Skye) */
  .team-member--accent .team-member__toggle { color: var(--color-accent); border-color: var(--color-accent); }

  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  /* Buttons */
  .btn { width: 100%; justify-content: center; }

  /* Store badges */
  .store-badges { flex-direction: column; }
  .store-badge { justify-content: center; }

  /* Page hero */
  .page-hero { padding: 50px 0 40px; }
  .page-hero__heading { flex-direction: column; gap: 20px; }
  .page-hero__icon { width: clamp(96px, 30vw, 150px); }

  /* Modal */
  .modal { padding: 32px 24px; }
}
