/* PostAkademie Bremen — hot-grass-935.css */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', Arial, sans-serif; font-size: 16px; line-height: 1.65; color: #333; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --accent: #6d28d9;
  --accent-light: #8b5cf6;
  --accent-dark: #4c1d95;
  --accent-bg: #ede9fe;
  --orange: #f59e0b;
  --grey: #f7f7f8;
  --dark: #1a1a2e;
  --text: #3d3d4e;
  --text-light: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(109,40,217,0.10);
}

/* ===== UTILITY ===== */
.wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wrapper--wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.wrapper--half { max-width: 580px; }
.is-flex { display: flex; }
.is-flex--middle { align-items: center; }
.is-flex--center { justify-content: center; }
.is-flex--end { justify-content: flex-end; }
.is-flex--right { align-items: flex-end; }
.is-flex--column { flex-direction: column; }
.is-flex--wrap { flex-wrap: wrap; }
.is-flex--between { justify-content: space-between; }
.is-flexitem { flex: 1; }
.is-center { text-align: center; }
.is-justify { text-align: justify; }
.is-right { text-align: right; }
.is-uppercase { text-transform: uppercase; }
.is-relative { position: relative; }
.is-absolute { position: absolute; }
.width-100 { width: 100%; }
.width-50 { width: 50%; }
.width-40 { width: 40%; }
.width-30 { width: 30%; }
.width-25 { width: 25%; }
.height-100 { height: 100%; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.no-liststyle { list-style: none; }
.is-block { display: block; }

/* Spacing helpers */
.margin-0 { margin: 0; }
.margintop-2 { margin-top: 0.5rem; }
.margintop-3 { margin-top: 0.75rem; }
.margintop-4 { margin-top: 1rem; }
.margintop-5 { margin-top: 1.25rem; }
.margintop-6 { margin-top: 1.5rem; }
.margintop-10 { margin-top: 2.5rem; }
.margintop-12 { margin-top: 3rem; }
.margintop-15 { margin-top: 3.75rem; }
.marginbottom-1 { margin-bottom: 0.25rem; }
.marginbottom-2 { margin-bottom: 0.5rem; }
.marginbottom-3 { margin-bottom: 0.75rem; }
.marginbottom-4 { margin-bottom: 1rem; }
.marginbottom-5 { margin-bottom: 1.25rem; }
.marginbottom-7 { margin-bottom: 1.75rem; }
.paddingtop-10 { padding-top: 2.5rem; }
.paddingtop-15 { padding-top: 3.75rem; }
.paddingbottom-10 { padding-bottom: 2.5rem; }
.paddingbottom-15 { padding-bottom: 3.75rem; }
.paddingleft-2 { padding-left: 0.5rem; }
.paddingleft-5 { padding-left: 1.25rem; }
.paddingleft-8 { padding-left: 2rem; }
.paddingleft-15 { padding-left: 3.75rem; }
.paddingleft-20 { padding-left: 5rem; }
.paddingright-5 { padding-right: 1.25rem; }
.paddingright-6 { padding-right: 1.5rem; }
.paddingright-8 { padding-right: 2rem; }
.paddingright-15 { padding-right: 3.75rem; }
.paddingright-20 { padding-right: 5rem; }
.padding-6 { padding: 1.5rem; }

/* Color modifiers */
.color--accent { background-color: var(--accent); }
.color--accentlight { background-color: var(--accent-light); }
.color--grey { background-color: var(--grey); }
.color-text--light { color: #fff; }
.color-text--accent { color: var(--accent); }
.color-text--accentlight { color: var(--accent-light); }

/* Typography */
.headline-big { font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.headline { font-size: 1.2rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.text--secondary { color: var(--text); }
.text--nav { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em; }
.lineheight--small { line-height: 1.2; }
hr { border: none; border-top: 2px solid rgba(255,255,255,0.5); margin: 1rem 0; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.header .wrapper { height: 72px; gap: 20px; }
.header__logo img { height: 52px; width: auto; }
.header__logo { display: flex; align-items: center; }
.header__contact { font-size: 0.9rem; color: var(--text); white-space: nowrap; }
.header__contact a { color: var(--accent); font-weight: 700; }
.header__contact i { margin-right: 5px; color: var(--accent); }

/* ===== NAVIGATION ===== */
.nav { background: var(--accent); }
.nav .wrapper { height: 46px; }
.nav ul { gap: 0; }
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 0 18px;
  height: 46px;
  line-height: 46px;
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav__link:hover, .nav__item--active .nav__link {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.subnav {
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  background: var(--accent-dark);
  min-width: 200px;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.nav__item:hover .subnav { display: block; }
.subnav__link {
  display: block;
  padding: 10px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s;
}
.subnav__link:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}
.nav--open .nav-links { display: flex !important; flex-direction: column; height: auto; background: var(--accent-dark); padding: 10px 0; }
.nav--open .nav__link { height: auto; line-height: 1; padding: 12px 20px; }

/* ===== HERO SLIDER ===== */
.slider {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--dark);
}
.slider__desktop {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.slider__mobile { display: none; }
.slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76,29,149,0.82) 0%, rgba(109,40,217,0.55) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.slider__content {
  max-width: 600px;
  color: #fff;
}
.slider__content .headline { font-size: 1.4rem; font-weight: 300; margin-bottom: 4px; }
.slider__content .headline--bold { font-size: 2.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 12px; }
.slider__content .subheading { font-size: 1.1rem; font-weight: 400; margin-bottom: 24px; opacity: 0.9; }

/* ===== BUTTONS ===== */
.button {
  display: inline-block;
  padding: 13px 30px;
  background: var(--orange);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.button:hover { background: #d97706; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.button--light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.button--light:hover { background: #fff; color: var(--accent); }
.button--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.button--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button--small { padding: 9px 20px; font-size: 0.82rem; }

/* ===== INFO BAR (3-column) ===== */
.infobar { margin-top: 0; }
.infobar__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.infobar__block {
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--accent-light);
  color: #fff;
}
.infobar__block--mid { background: var(--accent); }
.infobar__icon { font-size: 2rem; flex-shrink: 0; margin-top: 3px; }
.infobar__block .headline { font-size: 1rem; margin-bottom: 6px; color: #fff; }
.infobar__block p { font-size: 0.88rem; opacity: 0.9; line-height: 1.5; }
.infobar__block a { color: rgba(255,255,255,0.85); font-size: 0.82rem; display: inline-block; margin-top: 8px; text-decoration: underline; }

/* ===== SERVICES SECTION ===== */
.services-home { padding: 60px 0; }
.services-home .headline-big { margin-bottom: 12px; }
.services-home > .wrapper > p { color: var(--text-light); max-width: 700px; margin: 0 auto 40px; font-size: 1rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  padding: 32px 22px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.2s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--accent-bg); }
.service-card__icon { font-size: 2.4rem; color: var(--accent); margin-bottom: 16px; }
.service-card .headline { margin-bottom: 10px; font-size: 1rem; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.55; }
.service-card a { color: var(--accent); font-weight: 700; font-size: 0.85rem; }

/* ===== CTA BANNER ===== */
.callout {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
}
.callout__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.callout__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(76,29,149,0.9) 0%, rgba(109,40,217,0.75) 100%);
  z-index: 1;
}
.callout__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 50px 20px;
}
.callout__content .headline-big { color: #fff; font-size: 2.2rem; margin-bottom: 20px; }
.callout__content p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== TEAM CAROUSEL ===== */
.team-section { padding: 60px 0; background: var(--grey); }
.team-section .headline-big { margin-bottom: 10px; }
.team-section > .wrapper > p { color: var(--text-light); max-width: 700px; margin: 0 auto 40px; font-size: 1rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-card__info { padding: 18px; }
.team-card .headline { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.team-card a { color: var(--accent); font-size: 0.82rem; display: inline-block; margin-top: 8px; font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 60px 0; }
.testimonials .headline-big a { color: var(--accent); }
.testimonials > .wrapper > p { color: var(--text-light); }
.testimonials hr { width: 60px; border-top-color: var(--border); margin: 30px auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent-light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card p { padding-top: 30px; font-size: 0.92rem; color: var(--text); line-height: 1.6; font-style: italic; }
.testimonial-card .headline { font-size: 0.9rem; margin-top: 16px; color: var(--accent); font-weight: 700; }
.testimonial-card .stars { color: var(--orange); font-size: 0.85rem; margin-top: 4px; }
.testimonials-more { margin-top: 30px; }
.testimonials-more a { color: var(--accent); font-weight: 600; font-size: 0.9rem; text-decoration: underline; }

/* ===== NEWSLETTER + MAP SPLIT ===== */
.contact--home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  margin-top: 0;
}
.contact__form-side {
  background: var(--accent-light);
  padding: 50px 50px 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__form-side .headline-big { color: #fff; font-size: 1.7rem; margin-bottom: 6px; }
.contact__form-side .subheading { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 24px; }
.contact__form { display: flex; gap: 12px; flex-wrap: wrap; }
.contact__form input {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
}
.contact__map-side {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.contact__map-side iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer__widgets { padding: 50px 0 30px; }
.footer__widgets .wrapper { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.2fr; gap: 40px; }
.footer h2.headline { color: #fff; font-size: 1rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 2px solid var(--accent); padding-bottom: 8px; display: inline-block; }
.footer p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.65); }
.footer__logo img { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(10); }
.link-list li { margin-bottom: 8px; }
.link-list a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.link-list a:hover { color: var(--accent-light); }
.link-list i { font-size: 0.65rem; color: var(--accent-light); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer__contact-item i { color: var(--accent-light); margin-top: 3px; font-size: 0.9rem; flex-shrink: 0; }
.footer__contact-item p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer__contact-item label { font-size: 0.7rem; text-transform: uppercase; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; display: block; margin-bottom: 2px; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--accent); color: #fff; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__bar a { color: rgba(255,255,255,0.5); margin: 0 8px; transition: color 0.2s; }
.footer__bar a:hover { color: var(--accent-light); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb span { margin: 0 6px; }

/* ===== CONTENT SECTIONS ===== */
.section { padding: 60px 0; }
.section--grey { background: var(--grey); }
.section h2 { font-size: 1.7rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.section h3 { font-size: 1.2rem; font-weight: 700; color: var(--accent); margin: 24px 0 10px; }
.section p { margin-bottom: 14px; color: var(--text); line-height: 1.7; }
.section ul, .section ol { margin: 10px 0 14px 20px; color: var(--text); }
.section ul li, .section ol li { margin-bottom: 6px; line-height: 1.65; font-size: 0.95rem; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 50px; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card { background: var(--accent-bg); border-radius: var(--radius); padding: 28px 22px; text-align: center; }
.value-card i { font-size: 2rem; color: var(--accent); margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; margin: 0 0 8px; color: var(--dark); }
.value-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* Packages page */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.package-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.package-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.package-card--featured { border-color: var(--accent); }
.package-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.package-card__header { background: var(--accent); color: #fff; padding: 28px 24px 20px; }
.package-card--featured .package-card__header { background: var(--accent-dark); }
.package-card__header h3 { color: #fff; font-size: 1.1rem; margin: 0 0 6px; }
.package-card__header .price { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.package-card__header .price span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.package-card__body { padding: 24px; }
.package-card__body ul { margin: 0 0 20px; padding: 0; list-style: none; }
.package-card__body ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.package-card__body ul li i { color: var(--accent); font-size: 0.8rem; }
.package-card__body .button { width: 100%; text-align: center; }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item i { color: var(--accent); font-size: 1.2rem; margin-top: 3px; }
.contact-info-item p { margin: 0; line-height: 1.6; font-size: 0.92rem; }
.contact-info-item strong { display: block; color: var(--dark); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-form { background: var(--grey); border-radius: var(--radius); padding: 36px; }
.contact-form h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-map { margin-top: 40px; border-radius: var(--radius); overflow: hidden; }
.contact-map iframe { width: 100%; height: 300px; border: none; display: block; }

/* Customer comments page */
.comments-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.comment-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.comment-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.comment-card__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--accent-bg); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.comment-card__name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.comment-card__meta { font-size: 0.8rem; color: var(--text-light); }
.comment-card .stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 10px; }
.comment-card p { font-size: 0.9rem; color: var(--text); line-height: 1.65; font-style: italic; }
.comment-card__course { margin-top: 12px; font-size: 0.78rem; background: var(--accent-bg); color: var(--accent); padding: 4px 10px; border-radius: 20px; display: inline-block; font-weight: 600; }

/* Legal pages */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; color: var(--dark); margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.1rem; color: var(--accent); margin: 24px 0 8px; }
.legal-content p { font-size: 0.92rem; line-height: 1.75; color: var(--text); margin-bottom: 12px; }
.legal-content ul { margin: 8px 0 16px 20px; }
.legal-content ul li { font-size: 0.92rem; color: var(--text); margin-bottom: 6px; line-height: 1.65; }
.legal-content a { color: var(--accent); text-decoration: underline; }
.legal-date { font-size: 0.82rem; color: var(--text-light); margin-bottom: 30px; }

/* ===== COOKIES ALERT ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  flex-wrap: wrap;
  font-size: 0.88rem;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { margin: 0; flex: 1; }
#cookie-banner a { color: var(--accent-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn--accept { background: var(--accent); color: #fff; }
.cookie-btn--accept:hover { background: var(--accent-dark); }
.cookie-btn--decline { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.cookie-btn--decline:hover { background: rgba(255,255,255,0.2); }

/* ===== MISC ===== */
.success-msg { display: none; background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 14px 18px; border-radius: var(--radius); margin-top: 14px; font-size: 0.9rem; }
.error-msg { color: #dc2626; font-size: 0.8rem; margin-top: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__widgets .wrapper { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(3) { border-right: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .header .wrapper { height: 64px; }
  .nav { display: none; }
  .nav.nav--mobile-show { display: block; }
  .nav ul { flex-direction: column; height: auto; background: var(--accent-dark); }
  .nav__link { height: auto; padding: 12px 20px; line-height: 1.4; }
  .subnav { position: static; display: block; box-shadow: none; background: rgba(0,0,0,0.2); }
  .mobile-nav-toggle { display: block; }
  .slider { min-height: 360px; }
  .slider__desktop { height: 360px; }
  .slider__content .headline--bold { font-size: 1.9rem; }
  .infobar__layout { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3) { border-right: none; }
  .contact--home { grid-template-columns: 1fr; }
  .contact__map-side { min-height: 240px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .comments-grid { grid-template-columns: 1fr; }
  .callout__content .headline-big { font-size: 1.6rem; }
  .footer__widgets .wrapper { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-side { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .headline-big { font-size: 1.5rem; }
  .slider__content .headline--bold { font-size: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr; }
}
