/* ===== VARIABLES ===== */
:root {
  --navy:       #0B1E4D;
  --navy-light: #162a6b;
  --navy-dark:  #071330;
  --gold:       #C8A951;
  --gold-light: #E2C97A;
  --gold-dark:  #a88830;
  --white:      #FFFFFF;
  --gray-50:    #F8F8F8;
  --gray-100:   #F0F0F0;
  --gray-300:   #CCCCCC;
  --gray-600:   #666666;
  --gray-800:   #333333;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --radius:     8px;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 48px;
}

.section-header { margin-bottom: 48px; }

section { padding: 88px 0; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow var(--transition);
}

#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.3px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(200,169,81,0.1);
}

.nav-links .btn-nav {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  margin-left: 8px;
  padding: 8px 20px;
}

.nav-links .btn-nav:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

.nav-logo-img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  display: block;
}

.hero-logo {
  margin-bottom: 24px;
}

.hero-logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3580 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 50%, rgba(200,169,81,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(200,169,81,0.04) 0%, transparent 60%);
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,81,0.15);
  border: 1px solid rgba(200,169,81,0.35);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge i { font-size: 0.85rem; }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 8px;
}

.hero-title span { color: var(--gold); }

.hero-name {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,81,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.hero-stat .num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .lbl {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 16px;
  padding: 32px 28px;
  width: 280px;
  backdrop-filter: blur(10px);
}

.hero-card-seal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200,169,81,0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--gold);
}

.hero-card h3 {
  font-size: 0.9rem;
  color: var(--gold-light);
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-card-items { display: flex; flex-direction: column; gap: 10px; }

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
}

.hero-card-item i { color: var(--gold); width: 16px; flex-shrink: 0; }

/* ===== ABOUT ===== */
#ueber-mich {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: 90px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  gap: 12px;
}

.about-photo-placeholder i { font-size: 4rem; color: rgba(200,169,81,0.3); }

.about-cert-badge {
  position: absolute;
  bottom: -1px; left: -1px; right: -1px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-top: 2px solid var(--gold);
  padding: 14px 16px;
  text-align: center;
}

.about-cert-badge span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5;
}

.about-content h2 { margin-bottom: 8px; }

.about-content .role {
  font-size: 1.05rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 24px;
}

.about-text {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.highlight-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.highlight-item i {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.highlight-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 2px;
}

.highlight-item span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.about-docs { margin-top: 28px; }
.about-docs-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}
.about-docs-links { display: flex; flex-direction: column; gap: 8px; }
.doc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(200,169,81,0.08);
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 8px;
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}
.doc-link:hover {
  background: rgba(200,169,81,0.18);
  border-color: var(--gold);
  color: var(--gold);
}
.doc-link > .fa-file-pdf { color: var(--gold); font-size: 1rem; }
.doc-link > span { flex: 1; }
.doc-link-icon { font-size: 0.7rem; opacity: 0.6; }

.about-cta { margin-top: 32px; }

/* ===== SERVICES ===== */
#leistungen { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,169,81,0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card .norm {
  display: inline-block;
  background: rgba(11,30,77,0.07);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', sans-serif;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-bullets { margin-bottom: 20px; }

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--gray-600);
  margin-bottom: 6px;
  line-height: 1.5;
}

.service-bullets li i {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  transition: color var(--transition);
}

.service-link:hover { color: var(--gold); }
.service-link i { font-size: 0.75rem; transition: transform var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* ===== WHY SECTION ===== */
#warum {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

#warum::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 80% 50%, rgba(200,169,81,0.07) 0%, transparent 70%);
}

#warum .section-title { color: var(--white); }
#warum .section-subtitle { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(200,169,81,0.1);
  border-color: rgba(200,169,81,0.5);
  transform: translateY(-3px);
}

.why-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.why-item h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== CONTACT ===== */
#kontakt { background: var(--gray-50); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--gold);
  flex-shrink: 0;
}

.ci-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ci-text span, .ci-text a {
  font-size: 0.95rem;
  color: var(--gray-800);
  font-weight: 500;
}

.ci-text a:hover { color: var(--gold-dark); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}

.form-group label span { color: var(--gold-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.form-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold-dark);
  cursor: pointer;
}

.form-privacy a { color: var(--navy); text-decoration: underline; }
.form-privacy a:hover { color: var(--gold-dark); }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,169,81,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover { background: var(--gold-light); }

/* ===== MOBILE NAV OVERLAY ===== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 32px;
    width: 100%;
    text-align: center;
  }

  .nav-links .btn-nav { margin: 8px 0 0 0; }

  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-stats { gap: 28px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 300px; margin: 0 auto 32px; }
  .about-highlights { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
