/* ====================================================================
   FROSTFIX FACILITY — Garten- & Landschaftsbau
   Shared stylesheet · grün/natur · Poppins + Open Sans
   ==================================================================== */

:root {
  --forest-900: #0E2A12;
  --forest-800: #143A1C;
  --forest-700: #1B5E20;
  --forest-600: #2E7D32;
  --leaf-500:   #4E9A2E;
  --leaf-400:   #66BB6A;
  --lime-500:   #7CB518;
  --lime-400:   #9CCC3C;
  --earth:      #5C4327;
  --stone-100:  #F5F8EF;
  --stone-200:  #E9EFDD;
  --sand:       #EDE7D6;
  --ink:        #15251A;
  --muted:      #54624F;
  --white:      #ffffff;
  --line:       #E2E8D6;
  --shadow-sm:  0 2px 10px rgba(20,58,28,.06);
  --shadow-md:  0 14px 40px rgba(20,58,28,.12);
  --shadow-lg:  0 30px 70px rgba(14,42,18,.22);
  --radius:     16px;
  --maxw:       1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: var(--stone-100);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; line-height: 1.12; color: var(--forest-900); font-weight: 700; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }

/* ---- Eyebrow + headings ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest-600); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime-500); display: inline-block; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.85rem); margin-bottom: 1rem; letter-spacing: -.01em; }
.section-lead { font-size: 1.08rem; color: var(--muted); max-width: 620px; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }
.center .eyebrow::before { display: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem;
  padding: .92rem 1.6rem; border-radius: 999px; cursor: pointer;
  text-decoration: none; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--leaf-500), var(--forest-600)); color: #fff; box-shadow: 0 10px 26px rgba(46,125,50,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(46,125,50,.42); }
.btn-light { background: #fff; color: var(--forest-700); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--forest-700); border-color: var(--line); }
.btn-ghost:hover { background: var(--stone-200); }

/* ====================================================================
   NAVIGATION
   ==================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.15rem 0; transition: all .3s ease;
  background: linear-gradient(to bottom, rgba(14,42,18,.55), rgba(14,42,18,0));
}
.nav.scrolled {
  background: rgba(15,42,20,.96); backdrop-filter: blur(16px);
  padding: .6rem 0; box-shadow: 0 6px 30px rgba(0,0,0,.25);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo img { height: 66px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); transition: height .3s ease; }
.nav.scrolled .nav-logo img { height: 52px; }

.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  color: rgba(255,255,255,.9); text-decoration: none; font-size: .9rem; font-weight: 600;
  font-family: 'Poppins', sans-serif; letter-spacing: .01em; transition: color .2s; display: inline-flex; align-items: center; gap: .35rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--lime-400); }
.nav-cta { background: linear-gradient(135deg, var(--leaf-500), var(--forest-600)); color: #fff !important; padding: .6rem 1.3rem; border-radius: 999px; box-shadow: 0 8px 20px rgba(46,125,50,.4); }
.nav-cta:hover { color: #fff !important; transform: translateY(-1px); }

/* Dropdown */
.nav-dd-arrow { width: 11px; height: 11px; opacity: .65; transition: transform .2s; }
.nav-dd:hover .nav-dd-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  background: #0f2a14; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: .7rem;
  width: 300px; opacity: 0; visibility: hidden; pointer-events: none; transition: all .2s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.nav-dd:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-dropdown a { display: block; padding: .55rem .8rem; border-radius: 9px; font-size: .85rem; color: rgba(255,255,255,.82) !important; font-weight: 500; }
.nav-dropdown a:hover { background: rgba(124,181,24,.16); color: #fff !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: .3s; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 300; background: var(--forest-900);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 1.5rem; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-menu-head img { height: 56px; }
.mobile-close { background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .3rem; }
.mobile-menu nav a { color: #fff; text-decoration: none; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.25rem; padding: .85rem .5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu nav a:hover { color: var(--lime-400); }
.mobile-menu .btn { margin-top: 1.5rem; justify-content: center; }

/* ====================================================================
   HERO
   ==================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(10,30,14,.86) 0%, rgba(12,38,18,.6) 45%, rgba(12,38,18,.22) 100%); }
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 8rem 1.5rem 4rem; width: 100%; }
.hero-content { max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px);
  padding: .5rem 1.05rem; border-radius: 999px; font-size: .82rem; font-weight: 600; margin-bottom: 1.6rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-400); box-shadow: 0 0 0 4px rgba(156,204,60,.3); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.1rem); margin-bottom: 1.3rem; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--lime-400); }
.hero-lead { font-size: 1.18rem; color: rgba(255,255,255,.9); max-width: 540px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.8rem; }
.hero-trust-item { display: flex; align-items: center; gap: .6rem; font-size: .92rem; font-weight: 600; }
.hero-trust-item svg { width: 22px; height: 22px; color: var(--lime-400); flex-shrink: 0; }

/* ====================================================================
   INTRO / ABOUT SPLIT
   ==================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-media .badge-float {
  position: absolute; bottom: -26px; left: -26px; background: #fff; border-radius: 14px;
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .9rem;
}
.split-media .badge-float .num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--forest-600); }
.split-media .badge-float .lbl { font-size: .82rem; color: var(--muted); line-height: 1.3; }
.check-list { list-style: none; margin-top: 1.6rem; display: grid; gap: .85rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; }
.check-list svg { width: 22px; height: 22px; color: var(--leaf-500); flex-shrink: 0; margin-top: 2px; }

/* ====================================================================
   LEISTUNGEN GRID
   ==================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s; position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--lime-500), var(--forest-600)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--stone-200); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; transition: background .25s; }
.service-icon svg { width: 28px; height: 28px; color: var(--forest-600); }
.service-card:hover .service-icon { background: var(--forest-600); }
.service-card:hover .service-icon svg { color: #fff; }
.service-card h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.service-card p { color: var(--muted); font-size: .96rem; }

/* ====================================================================
   STATS BAND
   ==================================================================== */
.stats { background: var(--forest-800); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(124,181,24,.18), transparent 45%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.stat { text-align: center; }
.stat-number { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--lime-400); line-height: 1; }
.stat-label { margin-top: .6rem; font-size: .95rem; color: rgba(255,255,255,.8); }

/* ====================================================================
   PROCESS / AUS EINER HAND
   ==================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; counter-reset: step; }
.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; position: relative; }
.process-step .step-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1rem; width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--leaf-500), var(--forest-600)); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.process-step h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.process-step p { color: var(--muted); font-size: .93rem; }

/* ====================================================================
   PROJEKTE GALLERY
   ==================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; }
.gallery-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; background: linear-gradient(to top, rgba(10,30,14,.82), transparent 60%); color: #fff; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .cap { opacity: 1; }
.gallery-item .cap .tag { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--lime-400); font-weight: 700; }
.gallery-item .cap h3 { color: #fff; font-size: 1.2rem; }

/* ====================================================================
   FEATURE / WHY US
   ==================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.feature { display: flex; flex-direction: column; gap: .7rem; }
.feature .ficon { width: 52px; height: 52px; border-radius: 14px; background: var(--stone-200); display: flex; align-items: center; justify-content: center; }
.feature .ficon svg { width: 26px; height: 26px; color: var(--forest-600); }
.feature h3 { font-size: 1.15rem; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ====================================================================
   CTA BAND
   ==================================================================== */
.cta-band { position: relative; color: #fff; overflow: hidden; text-align: center; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(20,58,28,.94), rgba(27,94,32,.8)); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.12rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ====================================================================
   PAGE BANNER (subpages)
   ==================================================================== */
.page-banner { position: relative; color: #fff; padding: 11rem 0 5rem; overflow: hidden; }
.page-banner .pb-bg { position: absolute; inset: 0; z-index: -2; }
.page-banner .pb-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(10,30,14,.9), rgba(12,38,18,.55)); }
.page-banner h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: .8rem; }
.page-banner p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 580px; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--lime-400); text-decoration: none; }

/* ====================================================================
   DETAIL SERVICE BLOCKS (leistungen page)
   ==================================================================== */
.detail-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.detail-block:nth-child(even) .detail-media { order: 2; }
.detail-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.detail-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.detail-text p { color: var(--muted); margin-bottom: 1rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.tag-row span { background: var(--stone-200); color: var(--forest-700); font-size: .82rem; font-weight: 600; padding: .4rem .9rem; border-radius: 999px; }

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info { display: grid; gap: 1.3rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.3rem; }
.contact-item .ci-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--stone-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .ci-icon svg { width: 22px; height: 22px; color: var(--forest-600); }
.contact-item h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; margin-bottom: .2rem; }
.contact-item p, .contact-item a { color: var(--muted); font-size: .95rem; text-decoration: none; }
.contact-item a:hover { color: var(--forest-600); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--forest-800); font-family: 'Poppins', sans-serif; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--stone-100); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--leaf-500); box-shadow: 0 0 0 3px rgba(124,181,24,.18); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.form-check input { width: auto; margin-top: 3px; }
.form-submit { width: 100%; justify-content: center; }

/* ====================================================================
   FAQ ACCORDION
   ==================================================================== */
.faq { max-width: 820px; margin: 3rem auto 0; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 1rem; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; cursor: pointer; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.04rem; color: var(--forest-900); }
.faq-q .fq-icon { width: 26px; height: 26px; flex-shrink: 0; position: relative; transition: transform .3s; }
.faq-q .fq-icon::before, .faq-q .fq-icon::after { content: ""; position: absolute; background: var(--forest-600); border-radius: 2px; }
.faq-q .fq-icon::before { width: 16px; height: 2.5px; top: 12px; left: 5px; }
.faq-q .fq-icon::after { width: 2.5px; height: 16px; top: 5px; left: 12px; transition: transform .3s; }
.faq-item.open .fq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 1.5rem 1.4rem; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; }

/* ====================================================================
   JOBS
   ==================================================================== */
.job-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 2rem; display:flex; flex-direction:column; gap:.8rem; transition: box-shadow .25s, transform .25s; }
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.job-card .badge { align-self:flex-start; background: var(--stone-200); color: var(--forest-700); font-size:.78rem; font-weight:700; padding:.35rem .85rem; border-radius:999px; }
.job-card h3 { font-size: 1.25rem; }
.job-card ul { list-style:none; display:grid; gap:.5rem; }
.job-card ul li { display:flex; gap:.55rem; font-size:.93rem; color:var(--muted); }
.job-card ul li svg { width:18px;height:18px;color:var(--leaf-500);flex-shrink:0;margin-top:3px; }

/* ====================================================================
   LEGAL PAGES
   ==================================================================== */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 .8rem; }
.legal h3 { font-size: 1.1rem; margin: 1.6rem 0 .5rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: .8rem; text-align: justify; hyphens: auto; }
.legal ul { padding-left: 1.3rem; }
.legal a { color: var(--forest-600); }

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer { background: var(--forest-900); color: rgba(255,255,255,.75); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-logo img { height: 76px; margin-bottom: 1.1rem; }
.footer-about { font-size: .92rem; line-height: 1.7; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; font-family: 'Poppins', sans-serif; }
.footer-links { list-style: none; display: grid; gap: .65rem; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: var(--lime-400); }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; margin-bottom: .85rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--lime-400); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3.5rem; padding-top: 1.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; }
.footer-bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-bottom a:hover { color: var(--lime-400); }

/* ====================================================================
   TOAST
   ==================================================================== */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(140%); background: var(--forest-700); color: #fff; padding: 1rem 1.6rem; border-radius: 12px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .7rem; z-index: 400; transition: transform .4s cubic-bezier(.4,0,.2,1); font-weight: 600; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 22px; height: 22px; color: var(--lime-400); }

/* ====================================================================
   FADE-IN
   ==================================================================== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-media .badge-float { left: 1rem; bottom: -20px; }
  .services-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .detail-block { grid-template-columns: 1fr; gap: 1.8rem; }
  .detail-block:nth-child(even) .detail-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .services-grid, .feature-grid, .gallery, .stats-grid, .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 7rem; }
  .hero-trust { gap: 1rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1; transform: none; }
}
