:root {
  --color-primary: #0a1f11;
  --color-primary-soft: #12301d;
  --color-accent: #a3e635;
  --color-accent-hover: #b6f15f;
  --color-bg-light: #f6f7f4;
  --color-white: #ffffff;
  --color-text-dark: #111827;
  --color-text-muted: #5b6470;
  --color-gray-border: #e5e7eb;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --shadow-card: 0 18px 40px rgba(10, 31, 17, 0.08);
  --shadow-soft: 0 4px 18px rgba(10, 31, 17, 0.05);
  --container: 1400px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 6rem; }

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, .price-amount, .stat-card h3 { font-family: var(--font-display); font-weight: 400; }

/* Accessibility */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--color-primary); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 0.5rem 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }

/* Reveal animations (only when JS is active) */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* Utilities */
.container { max-width: var(--container); margin: 0 auto; padding: 0 4rem; }

.eyebrow {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 600; display: block; color: var(--color-primary);
}
.eyebrow.light { color: var(--color-accent); }
.eyebrow.center { text-align: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.9rem; border-radius: 2rem; font-family: var(--font-main);
  font-weight: 500; font-size: 0.95rem; cursor: pointer; transition: all 0.25s var(--ease);
  border: 1px solid transparent; white-space: nowrap;
}
.btn-primary { background-color: var(--color-accent); color: var(--color-primary); }
.btn-primary:hover { background-color: var(--color-accent-hover); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(163, 230, 53, 0.3); }
.btn-outline { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--color-white); background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; color: var(--color-text-dark); border-color: var(--color-gray-border); }
.btn-outline-dark:hover { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }
.btn-block { width: 100%; }

/* Header */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1.6rem 0; transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
header.scrolled {
  background: rgba(10, 31, 17, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }

.logo { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 1.3rem; font-weight: 700; color: var(--color-white); letter-spacing: 0.01em; }
.logo-mark { color: var(--color-accent); flex-shrink: 0; }
.logo-accent { color: var(--color-accent); }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { color: var(--color-white); font-size: 0.92rem; font-weight: 500; opacity: 0.88; transition: opacity 0.2s; position: relative; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--color-accent); transition: width 0.25s var(--ease); }
.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-cta { padding: 0.7rem 1.4rem; }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger, .burger::before, .burger::after { content: ""; display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.burger { position: relative; }
.burger::before { position: absolute; top: -8px; }
.burger::after { position: absolute; top: 8px; }
header.nav-open .burger { background: transparent; }
header.nav-open .burger::before { transform: translateY(8px) rotate(45deg); }
header.nav-open .burger::after { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; color: var(--color-white); padding: 13rem 0 8rem;
  border-radius: 0 0 2.5rem 2.5rem; overflow: hidden; background: var(--color-primary);
  background-image: linear-gradient(120deg, rgba(10,31,17,0.96) 0%, rgba(10,31,17,0.7) 45%, rgba(10,31,17,0.55) 100%), url('images/hero_lawn.png');
  background-size: cover; background-position: center;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.4rem; display: block; opacity: 0.85; color: var(--color-accent); }
.hero-title { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 1.5rem; line-height: 1.04; letter-spacing: -0.02em; }
.hero-desc { font-size: 1.15rem; opacity: 0.9; max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.hero-services-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1rem; display: block; opacity: 0.7; }
.hero-services { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.service-pill { padding: 0.55rem 1.3rem; border-radius: 2rem; border: 1px solid rgba(255,255,255,0.22); font-size: 0.875rem; backdrop-filter: blur(4px); transition: all 0.25s var(--ease); cursor: default; }
.service-pill:hover { background: rgba(163,230,53,0.16); border-color: var(--color-accent); }

.hero-images-container { position: absolute; bottom: 3rem; right: 4rem; width: 430px; height: 330px; z-index: 2; }
.hero-img-card { position: absolute; border-radius: 1rem; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,0.4); background: var(--color-primary-soft); }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-card.main-img { width: 320px; height: 220px; top: 0; right: 70px; z-index: 2; border: 4px solid var(--color-primary); }
.hero-img-card.sub-img { width: 240px; height: 170px; bottom: 0; right: 0; z-index: 1; }
.hero-card-badge { position: absolute; top: 0.85rem; left: 0.85rem; background: var(--color-accent); color: var(--color-primary); font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 1rem; z-index: 3; }
.hero-img-card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.1rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); }
.hero-img-card-overlay h4 { font-family: var(--font-main); font-size: 0.95rem; margin-bottom: 0.2rem; font-weight: 600; }
.hero-img-card-overlay p { font-size: 0.78rem; opacity: 0.85; }
.hero-dots { position: absolute; bottom: -1.6rem; right: 0; display: flex; gap: 0.4rem; }
.hero-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all 0.3s; }
.hero-dots .dot.is-active { width: 22px; border-radius: 4px; background: var(--color-accent); }

/* Trust */
.trust { padding: 3.5rem 4rem; text-align: center; }
.trust-intro { font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 1.8rem; font-weight: 500; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 0.7rem; color: var(--color-primary); }
.trust-badge svg { color: var(--color-accent); flex-shrink: 0; }
.trust-badge div { display: flex; flex-direction: column; text-align: left; line-height: 1.25; }
.trust-badge strong { font-size: 1rem; font-weight: 700; }
.trust-badge span { font-size: 0.78rem; color: var(--color-text-muted); }

/* About */
.about { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; }
.about-content h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 1.8rem; line-height: 1.2; letter-spacing: -0.015em; max-width: 920px; }
.about-content > p { color: var(--color-text-muted); margin-bottom: 3.5rem; font-size: 1.1rem; max-width: 780px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { background: var(--color-white); padding: 2.3rem 1.9rem; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); border: 1px solid rgba(10,31,17,0.04); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.stat-card h3 { font-size: 3rem; color: var(--color-primary); margin-bottom: 0.4rem; line-height: 1; }
.stat-card p { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.stat-card span { font-size: 0.82rem; color: var(--color-text-muted); display: block; }

/* Split sections */
.split-section {
  background: var(--color-primary); color: var(--color-white); border-radius: var(--radius-lg);
  margin: 2rem 4rem; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 580px;
}
.split-content { padding: 4.5rem 4rem; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.split-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 1.2rem 0 1.5rem; line-height: 1.1; letter-spacing: -0.015em; }
.split-content > p { opacity: 0.85; margin-bottom: 2.5rem; font-size: 1.1rem; max-width: 500px; }
.plain-list { display: flex; flex-direction: column; margin-bottom: 2.5rem; }
.plain-list-item { font-size: 1.02rem; opacity: 0.92; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.plain-list-item:last-child { border-bottom: none; }
.plain-list-item strong { color: var(--color-accent); font-weight: 600; }
.split-image-wrapper { position: relative; min-height: 320px; background: var(--color-primary-soft); }
.split-image-wrapper img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.image-overlay-text { position: absolute; bottom: 2.2rem; right: 2.2rem; text-align: right; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.image-overlay-text h3 { font-size: 2.8rem; margin-bottom: 0.3rem; }
.image-overlay-text p { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.9; }
.split-section.reverse .split-content { order: 2; }
.focus-index { font-family: var(--font-display); font-size: 1.1rem; opacity: 0.6; margin-bottom: 0.5rem; }
.focus-index .focus-num { color: var(--color-accent); font-size: 1.5rem; opacity: 1; }
.detail-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.8rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.88rem; opacity: 0.75; }
.detail-nav-next { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--color-accent); opacity: 1; }

/* Services */
.services { padding: 6rem 0 5rem; text-align: center; }
.services-header { margin: 0 auto 3rem; max-width: 720px; }
.services-header h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 1.2rem 0 1rem; letter-spacing: -0.015em; line-height: 1.15; }
.services-header p { color: var(--color-text-muted); font-size: 1.08rem; }
.services-carousel { display: flex; gap: 1.8rem; overflow-x: auto; padding: 0.5rem 4rem 2rem; scrollbar-width: none; scroll-snap-type: x mandatory; }
.services-carousel::-webkit-scrollbar { display: none; }
.service-card { min-width: 330px; height: 470px; border-radius: var(--radius-md); position: relative; overflow: hidden; text-align: left; flex-shrink: 0; scroll-snap-align: start; background: var(--color-primary-soft); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.25) 55%, transparent 100%); padding: 2.2rem; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.service-card-num { position: absolute; top: 1.6rem; right: 1.6rem; background: var(--color-accent); color: var(--color-primary); width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.service-card h3 { font-family: var(--font-main); font-size: 1.35rem; margin-bottom: 0.6rem; font-weight: 600; }
.service-card p { font-size: 0.92rem; opacity: 0.88; line-height: 1.55; }
.carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 0.5rem; }
.carousel-btn { width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid var(--color-gray-border); background: #fff; color: var(--color-primary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease); }
.carousel-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Projects */
.projects { padding: 5rem 0 6rem; }
.project-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; background: var(--color-white); border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: var(--shadow-card); margin-bottom: 2rem; }
.project-feature-img { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4 / 3; }
.project-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.project-feature-body { padding: 1.5rem 2rem 1.5rem 0.5rem; }
.project-feature-body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 0.8rem 0 1rem; line-height: 1.2; }
.project-feature-body > p { color: var(--color-text-muted); margin-bottom: 1.8rem; }
.project-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1rem; margin-bottom: 2rem; }
.project-meta dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: 0.2rem; }
.project-meta dd { font-weight: 600; font-size: 1.02rem; }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.project-card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.project-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-body { padding: 1.6rem 1.8rem 1.9rem; }
.project-card-body h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin: 0.5rem 0 0.6rem; }
.project-card-body p { color: var(--color-text-muted); font-size: 0.94rem; margin-bottom: 1rem; }
.project-card-meta { display: flex; gap: 0.6rem; }
.project-card-meta span { font-size: 0.78rem; font-weight: 600; background: var(--color-bg-light); color: var(--color-primary); padding: 0.3rem 0.8rem; border-radius: 1rem; }

/* Testimonials */
.testimonials { background: var(--color-primary); color: var(--color-white); border-radius: var(--radius-lg); margin: 2rem 4rem; padding: 5.5rem 5rem; }
.test-grid { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; }
.test-header h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin: 1.2rem 0 1.4rem; line-height: 1.12; letter-spacing: -0.015em; }
.test-header p { opacity: 0.85; font-size: 1.08rem; }
.test-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.test-card { background: rgba(255,255,255,0.06); padding: 2.3rem; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; }
.test-stars { color: var(--color-accent); letter-spacing: 0.15em; margin-bottom: 1.2rem; font-size: 0.95rem; }
.test-card blockquote { font-size: 1.06rem; line-height: 1.7; opacity: 0.95; margin-bottom: 1.8rem; }
.test-card figcaption { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.test-avatar { width: 2.8rem; height: 2.8rem; border-radius: 50%; background: var(--color-accent); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.test-author { display: flex; flex-direction: column; font-weight: 600; font-size: 0.95rem; }
.test-author small { font-weight: 400; opacity: 0.6; font-size: 0.8rem; }

/* Pricing */
.pricing { padding: 6rem 0; text-align: center; }
.pricing h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 1.2rem 0 1rem; letter-spacing: -0.015em; }
.pricing-intro { color: var(--color-text-muted); margin: 0 auto 3.5rem; font-size: 1.1rem; max-width: 640px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 920px; margin: 0 auto; padding: 0 4rem; }
.price-card { background: var(--color-white); border-radius: var(--radius-md); padding: 2.8rem; text-align: left; border: 1px solid var(--color-gray-border); position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.price-card.premium { background: var(--color-primary); color: #fff; border-color: transparent; }
.price-badge { position: absolute; top: 1.6rem; right: 1.6rem; background: var(--color-accent); color: var(--color-primary); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.35rem 0.85rem; border-radius: 1rem; }
.price-header { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--color-gray-border); }
.price-card.premium .price-header { border-color: rgba(255,255,255,0.14); }
.plan-name { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.35rem; }
.plan-desc { font-size: 0.92rem; color: var(--color-text-muted); }
.price-card.premium .plan-desc { color: rgba(255,255,255,0.65); }
.price-amount { font-size: 3.2rem; line-height: 1; display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.4rem; }
.price-amount span { font-family: var(--font-main); font-size: 1.05rem; color: var(--color-text-muted); font-weight: 400; }
.price-card.premium .price-amount span { color: rgba(255,255,255,0.65); }
.feature-list { display: flex; flex-direction: column; gap: 0.95rem; margin-bottom: 2.5rem; }
.feature-item { display: flex; align-items: center; gap: 0.9rem; font-size: 0.95rem; }
.feature-icon { color: var(--color-accent); flex-shrink: 0; }
.custom-plan { max-width: 920px; margin: 3.5rem auto 0; background: var(--color-white); padding: 2.3rem 2.8rem; border-radius: var(--radius-md); border: 1px solid var(--color-gray-border); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; text-align: left; }
.custom-plan h3 { font-family: var(--font-main); font-weight: 600; font-size: 1.2rem; margin-bottom: 0.3rem; }
.custom-plan p { color: var(--color-text-muted); font-size: 0.98rem; }

/* Contact */
.contact { padding: 5rem 0 6rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 1.1rem 0 1.2rem; line-height: 1.12; letter-spacing: -0.015em; }
.contact-info > p { color: var(--color-text-muted); font-size: 1.08rem; margin-bottom: 2.2rem; max-width: 460px; }
.contact-info .eyebrow.light { color: var(--color-primary); }
.contact-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; }
.contact-list svg { color: var(--color-accent); background: var(--color-primary); padding: 0.65rem; width: 2.6rem; height: 2.6rem; border-radius: 0.8rem; flex-shrink: 0; }
.contact-list div { display: flex; flex-direction: column; }
.contact-list span:first-child, .contact-list div > span:first-child { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); }
.contact-list a, .contact-list address, .contact-hours { font-weight: 600; font-style: normal; font-size: 1.02rem; }
.contact-list a:hover { color: var(--color-primary); text-decoration: underline; }

.contact-form { background: var(--color-white); padding: 2.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-card); border: 1px solid rgba(10,31,17,0.05); display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.85rem; font-weight: 600; color: var(--color-text-dark); }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--font-main); font-size: 0.95rem; padding: 0.8rem 1rem; border: 1px solid var(--color-gray-border);
  border-radius: 0.7rem; background: var(--color-bg-light); color: var(--color-text-dark); font-weight: 400; transition: border 0.2s, box-shadow 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(163,230,53,0.25); }
.contact-form textarea { resize: vertical; }
.form-note { background: rgba(163,230,53,0.18); border: 1px solid var(--color-accent); color: var(--color-primary); padding: 0.9rem 1.1rem; border-radius: 0.7rem; font-size: 0.9rem; font-weight: 500; }
.form-hint { font-size: 0.78rem; color: var(--color-text-muted); text-align: center; }

/* Footer */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,0.8); padding: 4.5rem 0 2rem; border-radius: 2.5rem 2.5rem 0 0; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand p { margin: 1rem 0 1.5rem; font-size: 0.95rem; max-width: 320px; opacity: 0.8; }
.footer-logo { color: #fff; font-size: 1.3rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a { width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.25s var(--ease); }
.footer-social a:hover { background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-main); color: #fff; font-size: 0.95rem; margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.92rem; opacity: 0.8; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--color-accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.8rem; font-size: 0.85rem; opacity: 0.7; gap: 1rem; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--color-accent); }

/* Responsive */
@media (max-width: 1100px) {
  .container { padding: 0 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .split-section, .test-grid, .project-feature, .contact-grid { grid-template-columns: 1fr; }
  .split-section { margin: 2rem; }
  .split-section.reverse .split-content { order: 0; }
  .split-image-wrapper { min-height: 360px; }
  .testimonials { margin: 2rem; padding: 3.5rem 2.5rem; }
  .test-cards { grid-template-columns: 1fr 1fr; }
  .trust { padding: 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Hero-Bild gestapelt zeigen statt verstecken */
  .hero { padding: 10rem 0 4rem; }
  .hero-images-container {
    position: static; display: block; width: auto; height: auto;
    max-width: 540px; margin: 3rem auto 0; padding: 0 2rem;
  }
  .hero-img-card { box-shadow: var(--shadow-card); }
  .hero-img-card.main-img { display: block; position: relative; width: 100%; height: auto; aspect-ratio: 4/3; right: auto; margin-bottom: 1rem; }
  .hero-img-card.sub-img {
    position: relative; inset: auto; width: 100%; height: auto;
    aspect-ratio: 16 / 10; border-radius: 1.1rem;
  }
  .hero-dots { display: none; }
}

@media (max-width: 760px) {
  header { padding: 1rem 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    flex-direction: column; gap: 0; background: var(--color-primary); padding: 1rem 2rem 1.5rem;
    box-shadow: 0 20px 30px rgba(0,0,0,0.25);
  }
  header.nav-open { background: var(--color-primary); }
  header.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 0.85rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mobile-menu-btn { display: flex; }
  .header-cta { display: none; }

  /* Sektions-Abstände mobil reduzieren */
  .hero { padding: 8.5rem 0 3rem; }
  .about { padding: 4rem 0; }
  .about-content > p { margin-bottom: 2.5rem; }
  .services { padding: 4rem 0 3.5rem; }
  .projects { padding: 3.5rem 0 4rem; }
  .pricing { padding: 4rem 0; }
  .contact { padding: 3.5rem 0 4rem; }
  .site-footer { padding: 3.5rem 0 2rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-card { padding: 1.8rem 1.5rem; }
  .stat-card h3 { font-size: 2.5rem; }
  .split-content { padding: 3rem 1.8rem; }
  .split-content > p { margin-bottom: 2rem; }
  .detail-nav { flex-wrap: wrap; gap: 0.6rem; }
  .services-carousel { padding: 0.5rem 2rem 2rem; }
  .service-card { min-width: min(330px, 88vw); height: 420px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-feature { padding: 0.8rem; }
  .project-feature-body { padding: 1rem 1.2rem 1.5rem; }
  .project-meta { gap: 1rem 0.8rem; }
  .test-cards { grid-template-columns: 1fr; }
  .test-card { padding: 1.8rem; }
  .pricing-grid { grid-template-columns: 1fr; padding: 0 2rem; }
  .price-card { padding: 2rem 1.8rem; }
  .custom-plan { flex-direction: column; text-align: center; align-items: stretch; margin: 3rem 2rem 0; padding: 2rem 1.8rem; }
  .contact-form { padding: 1.8rem 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-card:focus-visible { box-shadow: 0 0 0 3px var(--color-accent); outline: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.4rem; }
  .hero { padding: 5.5rem 0 2.5rem; }
  .hero-images-container { padding: 0 1.4rem; }
  .hero-desc { font-size: 1.05rem; }
  .hero-actions { gap: 0.7rem; margin-bottom: 2.8rem; flex-direction: column; }
  .hero-actions .btn { flex: 1 1 auto; width: 100%; }
  .split-section, .testimonials { margin: 1.4rem; }
  .split-content { padding: 2.6rem 1.5rem; }
  .testimonials { padding: 3rem 1.6rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 1.2rem 2rem; }
  .pricing-grid { padding: 0 1.4rem; }
  .custom-plan { margin: 2.5rem 1.4rem 0; }

  /* Mobile Fixes */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col ul { align-items: center; }
  .project-meta { grid-template-columns: 1fr; gap: 0.8rem; }
  .project-card-meta { flex-wrap: wrap; }
  .contact-form input, .contact-form select, .contact-form textarea { min-width: 0; width: 100%; flex: 1 1 auto; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.2rem; }
  .price-amount { font-size: 2.5rem; }
  .logo, .footer-logo { font-size: 1.15rem; }
  .trust-badges { gap: 1.1rem 1.4rem; }
}


/* --- GLOBAL POLISH --- */
.ico {
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  vertical-align: middle;
  flex: none;
}
.bullet-ico {
  width: .5em;
  height: .5em;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}
@media (hover: hover) {
  button:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
}
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}


/* Global Mobile Header Nav Fix */
@media (max-width: 768px) {
  .head-inner, .header-inner, .nav-container, header > .container { justify-content: space-between !important; width: 100%; }
  .mobile-menu-btn { display: flex !important; margin-left: auto; }
}

@media (max-width: 480px) { .split-content, .about-content, .service-card { padding: 1.5rem !important; } }
@media (max-width: 768px) { .split-content, .about-content, .service-card { padding: 1.5rem !important; } .container { padding: 0 1.5rem !important; } .split-section { margin: 1.5rem !important; } }