/* ============================================================
   Ferman Pflegedienst - Modern Redesign
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --red: #C62828;
  --red-dark: #8B0000;
  --red-light: #EF5350;
  --red-bg: #FFF5F5;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --text-light: #888;
  --bg: #FFFBFA;
  --bg-warm: #FFF8F6;
  --white: #FFFFFF;
  --border: #E8E0E0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.10);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1240px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--red);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1;
}
.btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198,40,40,.35);
}
.btn-outline {
  background: transparent;
  color: var(--red) !important;
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white) !important;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.site-header.solid {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  position: relative;
}
.site-header.scrolled .main-nav a,
.site-header.solid .main-nav a { color: var(--text); }
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active,
.site-header.solid .main-nav a:hover,
.site-header.solid .main-nav a.active { color: var(--red); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 768px) { .header-inner { padding: 0 1.25rem; } }

.logo { flex-shrink: 0; }
.logo img { height: 48px; width: auto; }

/* Main Nav */
.main-nav ul { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,.9);
  padding: 0.5rem 0.85rem;
  font-size: 0.93rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { padding-right: 1.8rem !important; }
.has-dropdown > a::after {
  content: '';
  position: absolute;
  right: 0.7rem;
  top: 50%;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--transition);
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  list-style: none;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--text) !important;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  font-size: 0.9rem;
}
.dropdown a:hover,
.dropdown a.active {
  background: var(--red-bg);
  color: var(--red) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 210;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header:not(.solid):not(.scrolled) .menu-toggle span { background: #fff; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  height: 100dvh;
  background: var(--white);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  padding: 5rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 290;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 40px; height: 40px;
  background: var(--bg-warm);
  border: none; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.drawer-close:hover { background: var(--border); }
.mobile-drawer ul { list-style: none; }
.mobile-drawer > ul > li { margin-bottom: 0.2rem; }
.mobile-drawer > ul > li > a {
  display: block; padding: 0.8rem 0; color: var(--text);
  font-size: 1.1rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer .sub-menu { margin: 0.3rem 0 0.5rem 1rem; }
.mobile-drawer .sub-menu a {
  display: block; padding: 0.55rem 0;
  font-size: 0.95rem; color: var(--text-muted);
}
.mobile-drawer .sub-menu a:hover { color: var(--red); }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .site-header { background: rgba(255,255,255,.95); backdrop-filter: blur(20px); box-shadow: var(--shadow); position: relative; }
  .site-header .menu-toggle span { background: var(--text); }
  .hero-home { margin-top: 0; }
}

/* --- Hero Home --- */
.hero-home {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: url('../images/dominik-lange-VUOiQW4OeLI-unsplash-1-rotated.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(255,251,250,.94) 40%, rgba(198,40,40,.25) 80%, rgba(139,0,0,.45) 100%);
}
.hero-home .container { position: relative; z-index: 1; width: 100%; }
.hero-content { max-width: 620px; }
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .hero-home {
    min-height: 600px;
    align-items: flex-end;
    padding-bottom: 4rem;
  }
  .hero-home::before {
    background: linear-gradient(180deg, rgba(255,251,250,.88) 0%, rgba(255,251,250,.4) 60%, rgba(198,40,40,.35) 100%);
  }
  .hero-content { max-width: 100%; text-align: center; }
}

/* --- Page Hero --- */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.page-hero p {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 768px) { .page-hero { min-height: 360px; } }

/* --- Sections --- */
.section { padding: clamp(3.5rem, 7vw, 7rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 4rem) 0; }
.bg-warm { background: var(--bg-warm); }
.bg-white { background: var(--white); }
.bg-red { background: var(--red-bg); }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  background: var(--red-bg);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* --- Grids --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) { .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; } }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) { .grid-3 { grid-template-columns: 1fr; } }

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}
@media (max-width: 1024px) { .grid-2-1 { grid-template-columns: 1fr; } }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .info-cards { grid-template-columns: 1fr; } }

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.info-card h3 { margin: 0.75rem 0 0.5rem; }
.info-card .icon {
  font-size: 2.2rem;
  display: block;
}
.info-card .map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.info-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }

/* --- Service list --- */
.service-list { display: flex; flex-direction: column; gap: 1rem; }
.service-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.service-card .icon {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-bg);
  border-radius: var(--radius-sm);
}
.service-card h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }

/* --- Check list --- */
.check-list { list-style: none; display: grid; gap: 0.85rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text);
}
.check-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--red-bg);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C62828' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Testimonials --- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) { .testimonials { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; } }

.testimonial {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  object-fit: cover;
  border: 3px solid var(--red-bg);
}
.testimonial blockquote {
  font-family: var(--font-body);
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
}
.testimonial blockquote::before {
  content: '"';
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--red);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial .name {
  margin-top: 1.25rem;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.testimonial .stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-top: 0.3rem;
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .faq-grid { grid-template-columns: 1fr; max-width: 500px; } }

.faq-item {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item h3 { font-size: 1rem; margin-bottom: 0.6rem; line-height: 1.45; }
.faq-item p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

/* --- Contact Form --- */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(198,40,40,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-checkbox input {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.25rem;
  accent-color: var(--red);
}
.form-checkbox label { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.form-checkbox label a { text-decoration: underline; }

/* --- Separator --- */
.separator {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2rem 0;
}

/* --- Images --- */
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.img-rounded { border-radius: var(--radius); }
.img-shadow { box-shadow: var(--shadow); }

/* Image reveal animation */
.img-reveal {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.img-reveal img { transition: transform 0.6s ease; }
.img-reveal:hover img { transform: scale(1.03); }

/* --- Video --- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* --- Stats bar --- */
.stats-bar {
  background: var(--red);
  padding: 2.5rem 0;
  color: var(--white);
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
}
.stat-item .label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* --- Footer --- */
.site-footer {
  background: #1A1A1A;
  color: rgba(255,255,255,.65);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; }

.footer-heading {
  font-family: var(--font-heading);
  color: var(--white) !important;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  border-radius: 50%;
  transition: all var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-social a:hover { background: var(--red); color: #fff; }

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(198,40,40,.35);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* --- Legal pages --- */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h1 { font-size: 2.2rem; margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-content h3 { font-size: 1.05rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.75; }
.legal-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.4rem; color: var(--text-muted); }
.legal-content hr { border: none; height: 1px; background: var(--border); margin: 2rem 0; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Utility --- */
.mt-05 { margin-top: 0.5rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-05 { margin-bottom: 0.5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.text-sm { font-size: 0.9rem; }
.font-body { font-family: var(--font-body); }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
}

/* --- Mobile (phone) improvements --- */
@media (max-width: 768px) {
  .section { padding: clamp(2.8rem, 6vw, 4rem) 0; }

  /* bigger more visible menu toggle */
  .menu-toggle {
    width: 44px; height: 44px;
    padding: 0.65rem;
    background: rgba(0,0,0,.04);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle span { width: 20px; height: 2.5px; background: var(--text); }

  /* hero home mobile */
  .hero-home {
    min-height: 90dvh;
    padding-bottom: 2.5rem;
  }
  .hero-content h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .hero-content p { font-size: 1rem; }
  .hero-content .btn { justify-content: center; min-width: 0; width: 100%; }
  .hero-content > div { flex-direction: column !important; }

  /* page hero mobile */
  .page-hero { min-height: 320px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .page-hero p { font-size: 0.95rem; }

  /* headings */
  h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  h3 { font-size: clamp(1.05rem, 3vw, 1.2rem); }

  /* section label mobile */
  .section-label { font-size: 0.75rem; padding: 0.3rem 0.85rem; }

  /* center more text sections on mobile */
  .grid-2, .grid-3, .grid-2-1 { gap: 2rem; }
  .grid-2 > *, .grid-3 > * { max-width: 100%; }

  /* service cards */
  .service-card { padding: 1.25rem; }
  .service-card .icon { width: 44px; height: 44px; font-size: 1.5rem; }

  /* check list */
  .check-list { gap: 0.7rem; }
  .check-list li { font-size: 0.93rem; line-height: 1.55; }
  .check-list li::before { width: 20px; height: 20px; margin-top: 0; }

  /* testimonials */
  .testimonials { margin-top: 1.5rem; }
  .testimonial { padding: 1.5rem 1.25rem; }
  .testimonial blockquote { font-size: 0.9rem; }

  /* stats bar */
  .stats-bar { padding: 2rem 0; }
  .stats-bar .container { gap: 1.5rem; }
  .stat-item .number { font-size: clamp(1.6rem, 5vw, 2rem); }
  .stat-item .label { font-size: 0.8rem; }

  /* FAQ */
  .faq-item { padding: 1.25rem; }
  .faq-item h3 { font-size: 0.95rem; }
  .faq-item p { font-size: 0.88rem; }

  /* contact form */
  .contact-form { max-width: 100%; }
  .form-group input, .form-group textarea { padding: 0.75rem 0.9rem; font-size: 0.9rem; }

  /* buttons */
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; }
  .btn { width: 100%; justify-content: center; }

  /* info cards */
  .info-card { padding: 1.25rem; }

  /* legal pages */
  .legal-content h1 { font-size: 1.8rem; }
  .legal-content h2 { font-size: 1.15rem; }
  .legal-content p { font-size: 0.9rem; }

  /* footer */
  .site-footer { padding: 2.5rem 0 0; }
  .footer-grid { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* scroll to top */
  .scroll-top { bottom: 1.25rem; right: 1.25rem; width: 42px; height: 42px; font-size: 1rem; }
}
