/* ============================================
   KIN Automation — Main Stylesheet
   ============================================ */

/* --- Local Fonts (self-hosted, no external Google Fonts) --- */
@import url('../fonts/fonts.css');

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #242525;
  --color-bg-light: #2a2b2b;
  --color-bg-card: #2e2f30;
  --color-bg-header: #272e34;
  --color-primary: #ffffff;
  --color-secondary: #f2a500;
  --color-text: #aba9a9;
  --color-accent: #64daec;
  --color-overlay: rgba(36, 37, 37, 0.75);
  --color-overlay-dark: rgba(0, 0, 0, 0.55);

  --font-heading: 'Roboto', sans-serif;
  --font-secondary: 'Roboto Slab', serif;
  --font-body: 'Rubik', sans-serif;

  --max-width: 1200px;
  --section-padding: 100px 0;
  --border-radius: 8px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.875;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

h1 { font-size: 2.625rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: var(--color-secondary);
}

.text-accent {
  color: var(--color-accent);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--color-secondary);
  border-radius: var(--border-radius);
  color: var(--color-primary);
  background-color: var(--color-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.btn:hover {
  background-color: transparent;
  color: var(--color-secondary);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-secondary);
}

.btn--outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(39, 46, 52, 0.95);
  backdrop-filter: blur(8px);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background-color: rgba(39, 46, 52, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.header__logo {
  flex-shrink: 0;
  order: 1;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  order: 2;
}

.header__nav a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--transition);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a:hover {
  color: var(--color-secondary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(36, 37, 37, 0.85) 0%,
    rgba(36, 37, 37, 0.6) 50%,
    rgba(36, 37, 37, 0.75) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__subtitle {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--color-secondary);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero__title {
  font-size: 3.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 32px;
  line-height: 1.2;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  transform: rotate(45deg);
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   Intro / Stats Section
   ============================================ */
.intro {
  padding: 100px 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro__heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.intro__heading span {
  color: var(--color-secondary);
}

.intro__text {
  margin-bottom: 0;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.stat {
  padding: 30px;
  border-left: 3px solid var(--color-secondary);
}

.stat__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.stat__desc {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background-color: var(--color-bg-light);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__content {
  max-width: 600px;
}

.cta-banner__title {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.cta-banner__text {
  margin-bottom: 24px;
}

/* ============================================
   Services (Zigzag Layout)
   ============================================ */
.services {
  padding: 80px 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.service-item:not(:last-child) {
  border-bottom: 1px solid rgba(171, 169, 169, 0.1);
}

.service-item:nth-child(even) .service-item__image {
  order: -1;
}

.service-item__image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-item__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-item__image:hover img {
  transform: scale(1.03);
}

.service-item__content h2,
.service-item__content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.service-item__content h2::before,
.service-item__content h3::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-secondary);
}

.service-item__content p {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.875;
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: 100px 0;
  background-color: var(--color-bg-light);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__content h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.about__content p {
  margin-bottom: 16px;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about__images img {
  border-radius: var(--border-radius);
  object-fit: cover;
  height: 250px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   What We Do Section
   ============================================ */
.what-we-do {
  padding: 100px 0;
}

.what-we-do__header {
  max-width: 800px;
  margin-bottom: 60px;
}

.what-we-do__header h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius);
  padding: 40px 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-top-color: var(--color-secondary);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(242, 165, 0, 0.1);
  margin-bottom: 24px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-secondary);
}

.service-card__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   Contact CTA Section
   ============================================ */
.contact-cta {
  padding: 100px 0;
  text-align: center;
  background-color: var(--color-bg-light);
}

.contact-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

.contact-cta h2 span {
  display: block;
  color: var(--color-secondary);
}

/* ============================================
   Page Header (for subpages)
   ============================================ */
.page-header {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(39, 46, 52, 0.8) 0%,
    rgba(39, 46, 52, 0.5) 100%
  );
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.page-header__title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 4rem;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  line-height: 1.25;
  background-color: rgba(35, 35, 35, 0.26);
  border-radius: var(--border-radius);
  padding: 5px 12px;
  display: inline-block;
}

.page-header__subtitle {
  margin-top: 12px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-section {
  padding: 80px 0;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--color-text);
  line-height: 1.6;
}

.contact-info__list li svg {
  width: 22px;
  height: 22px;
  fill: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__list a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info__list a:hover {
  color: var(--color-secondary);
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-primary);
  background-color: var(--color-bg-card);
  border: 1px solid rgba(171, 169, 169, 0.2);
  border-radius: var(--border-radius);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(171, 169, 169, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-consent {
  font-size: 0.8125rem;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ============================================
   Legal Pages (Impressum, Datenschutz)
   ============================================ */
.legal-section {
  padding: 80px 0;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--color-secondary);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--color-primary);
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  list-style: none;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}

.legal-content a {
  word-break: break-all;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(171, 169, 169, 0.1);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--color-text);
}

.footer__links a:hover {
  color: var(--color-secondary);
}

.footer__links span {
  color: var(--color-text);
  font-size: 0.875rem;
}

.footer__copy {
  font-size: 0.875rem;
  color: var(--color-text);
}

/* ============================================
   Scroll-to-top Button
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ============================================
   Animations (Intersection Observer)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Header Phone Number
   ============================================ */
.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
  margin-left: 32px;
  flex-shrink: 0;
  order: 3;
  text-decoration: none;
}

.header__phone svg {
  width: 16px;
  height: 16px;
  fill: var(--color-secondary);
  flex-shrink: 0;
}

/* Nummer erst beim Hover über das Hörer-Symbol einblenden */
.header__phone span {
  color: var(--color-primary);
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.35s ease, max-width 0.35s ease;
}

.header__phone:hover span,
.header__phone:focus span {
  opacity: 1;
  max-width: 220px;
}

.header__phone:hover {
  color: var(--color-secondary);
}

.header__phone:hover svg {
  fill: var(--color-secondary);
}

/* Touch-Geräte ohne Hover: Nummer dauerhaft anzeigen */
@media (hover: none) {
  .header__phone span {
    opacity: 1;
    max-width: 220px;
  }
}

/* Anchor offset for fixed header */
:target {
  scroll-margin-top: 90px;
}

/* ============================================
   Breadcrumbs (structured data only, no visible breadcrumbs used)
   ============================================ */

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: var(--color-bg-header);
  border-top: 1px solid rgba(171, 169, 169, 0.15);
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

.btn--reject {
  background-color: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn--reject:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
}

/* ============================================
   Footer Extended (NAP, Hours, Links)
   ============================================ */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(171, 169, 169, 0.1);
}

.footer__col h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__col p,
.footer__col a {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.7;
}

.footer__col a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__col a:hover {
  color: var(--color-secondary);
}

.footer__hours {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.7;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__consent-link {
  font-size: 0.8125rem;
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-decoration: underline;
  transition: color var(--transition);
}

.footer__consent-link:hover {
  color: var(--color-secondary);
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-item:nth-child(even) .service-item__image {
    order: 0;
  }

  .service-item__image img {
    height: 300px;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-header__title {
    font-size: 2.25rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .header__inner {
    gap: 12px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-header);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    padding: 0 32px;
  }

  .header__nav.open {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
    order: 4;
  }

  .hero {
    min-height: 90vh;
  }

  .hero__title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
  }

  .hero__content .btn {
    padding: 12px 28px;
    font-size: 0.8125rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .intro__heading {
    font-size: 1.75rem;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat__number {
    font-size: 2.25rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .service-item__image img {
    height: 250px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 20px;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__inner img {
    max-width: 100% !important;
  }

  .about__images {
    grid-template-columns: 1fr;
  }

  .about__images img {
    height: 200px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-header {
    min-height: 35vh;
  }

  .page-header__title {
    font-size: 1.5rem;
  }

  .contact-cta h2 {
    font-size: 1.75rem;
  }

  /* Phone: show in header as icon-only on mobile */
  .header__phone {
    order: 2;
    margin-left: auto;
  }

  .header__phone span {
    display: none;
  }

  .header__phone svg {
    width: 22px;
    height: 22px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-content {
    max-width: 100%;
  }
}
