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

:root {
  --sage:        #7b9e87;
  --sage-dark:   #3d6b4f;
  --sage-mid:    #5c8a6c;
  --sage-light:  #b2d0bc;
  --sage-pale:   #edf3ef;
  --terra:       #c4714a;
  --terra-pale:  #fdf0eb;
  --sand:        #f5f0e6;
  --cream:       #fdfaf5;
  --white:       #ffffff;
  --text:        #1c2318;
  --muted:       #7a7166;
  --border:      #e4ddd3;
  --shadow:      0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg:   0 16px 52px rgba(0,0,0,0.10);
}

html { font-family: 'Plus Jakarta Sans', sans-serif; }
body { background: var(--cream); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.hidden { display: none !important; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* NAVBAR */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,250,245,0.94); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-stack { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.logo-icon-wrap { display: flex; align-items: center; justify-content: center; }
.logo-icon-wrap img { height: 50px; width: auto; filter: invert(39%) sepia(18%) saturate(700%) hue-rotate(99deg) brightness(88%) contrast(90%); }
.logo-brand { font-weight: 800; font-size: 0.82rem; color: var(--sage-dark); letter-spacing: 0.12em; line-height: 1; }
.logo-sub { font-weight: 600; font-size: 0.42rem; color: var(--sage-mid); letter-spacing: 0.14em; line-height: 1; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 0.82rem; font-weight: 600; color: var(--muted); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a.active { color: var(--sage-dark); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-tel { font-size: 0.85rem; font-weight: 600; color: var(--sage-mid); white-space: nowrap; }
.btn-nav {
  padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 0.88rem;
  background: var(--sage-dark); color: #fff; border: none; cursor: pointer;
  transition: background .2s, transform .15s; white-space: nowrap; font-family: inherit;
}
.btn-nav:hover { background: var(--sage-mid); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* MOBILE MENU */
#mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: var(--white); padding: 1.5rem 2rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
#mobile-menu.hidden { display: none; }
#mobile-menu a { font-size: 1rem; font-weight: 600; color: var(--text); padding: .5rem 0; border-bottom: 1px solid var(--border); }
#mobile-menu a.active { color: var(--sage-dark); }

/* PAGE HERO (interior pages) */
.page-hero { padding: 150px 2rem 4.5rem; background: var(--cream); text-align: center; }
.page-hero-inner { max-width: 760px; margin: 0 auto; }
.page-hero .section-sub { margin: 0 auto; }

/* HERO */
.hero { padding: 116px 2rem 88px; background: var(--cream); }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra-pale); color: var(--terra);
  padding: 7px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  margin-bottom: 1.75rem; border: 1px solid rgba(196,113,74,.18);
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }
h1.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.03em; color: var(--sage-dark);
  margin-bottom: 1.25rem;
}
h1.hero-h1 em { font-style: normal; color: var(--terra); }
.hero-sub {
  font-size: 1.08rem; color: var(--muted); line-height: 1.8;
  max-width: 46ch; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all .25s; border: none; font-family: inherit;
}
.btn-hero-primary { background: var(--sage-dark); color: #fff; box-shadow: 0 4px 20px rgba(61,107,79,.28); }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,107,79,.38); }
.btn-hero-secondary { background: var(--white); color: var(--text); border: 2px solid var(--border); }
.btn-hero-secondary:hover { border-color: var(--sage-mid); color: var(--sage-dark); }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.trust-icon { width: 17px; height: 17px; color: var(--sage-mid); flex: none; }

.hero-img-wrap { position: relative; }
.hero-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 32px; box-shadow: var(--shadow-lg); }
.hero-float {
  position: absolute; background: var(--white); border-radius: 20px;
  padding: 14px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.hero-float-1 { bottom: 36px; left: -28px; }
.hero-float-2 { top: 32px; right: -22px; }
.float-label { font-size: 0.68rem; color: var(--muted); margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.float-val { font-size: 1.3rem; font-weight: 800; color: var(--sage-dark); }
.float-sub { font-size: 0.7rem; color: var(--muted); }

/* STATS STRIP */
.stats-strip { background: var(--sand); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem; }
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 3rem; border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 2rem; font-weight: 800; color: var(--sage-dark); letter-spacing: -0.04em; line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-top: 4px; }

/* FOUNDER STRIP */
.founder-strip { background: var(--sage-dark); padding: 3.5rem 2rem; }
.founder-strip-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center;
}
.founder-avatar {
  width: 88px; height: 88px; border-radius: 50%; flex: none;
  background: linear-gradient(145deg, var(--sage-mid), var(--sage-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; font-weight: 800; color: #fff;
  border: 3px solid rgba(255,255,255,.2);
  overflow: hidden;
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-quote {
  font-size: 1.15rem; font-weight: 600; color: rgba(255,255,255,.88);
  line-height: 1.68; font-style: italic;
}
.founder-quote strong { font-style: normal; color: #fff; font-weight: 800; }
.founder-credit { margin-top: .9rem; }
.signature { display: block; font-family: 'Caveat', cursive; font-size: 2.1rem; line-height: 1; font-weight: 700; color: #fff; }
.founder-role { display: block; margin-top: 4px; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .07em; }

/* SIGNATURE BLOCK (Om oss) */
.signature-block { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--border); }
.signature-block .signature { color: var(--sage-dark); font-size: 2.4rem; }
.signature-role { display: block; margin-top: 2px; font-size: 0.82rem; font-weight: 600; color: var(--muted); }

/* SECTION COMMON */
section.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra-pale); color: var(--terra);
  padding: 5px 14px; border-radius: 50px; font-size: 0.73rem; font-weight: 700;
  margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.07em;
  border: 1px solid rgba(196,113,74,.15);
}
.section-h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; color: var(--sage-dark);
  margin-bottom: 1rem;
}
.section-h2 em { font-style: normal; color: var(--terra); }
.section-sub { font-size: 1.02rem; color: var(--muted); line-height: 1.74; max-width: 52ch; }
.section-body { font-size: 0.98rem; color: var(--muted); line-height: 1.85; max-width: 70ch; }
.section-body p { margin-bottom: 1.15rem; }
.section-body p:last-child { margin-bottom: 0; }
.section-body strong { color: var(--sage-dark); }

/* SERVICES */
.services { background: var(--sand); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.svc-card {
  background: var(--white); border-radius: 24px; padding: 2.5rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-emoji { font-size: 2.2rem; margin-bottom: 1.25rem; line-height: 1; }
.svc-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--sage-dark); margin-bottom: .75rem; }
.svc-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.76; margin-bottom: 1.5rem; }
.svc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.svc-tag { font-size: 0.73rem; font-weight: 600; color: var(--sage-mid); background: var(--sage-pale); padding: 4px 10px; border-radius: 50px; }

/* NOT LIKE THE BIG ONES / GENERIC IMG+POINTS */
.diff { background: var(--cream); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.diff-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-lg); }
.diff-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.diff-point {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem; border-radius: 18px; background: var(--white);
  border: 1.5px solid var(--border); transition: border-color .2s, transform .2s;
}
.diff-point:hover { border-color: var(--sage-light); transform: translateX(5px); }
.diff-icon {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  background: var(--sage-pale); display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 18px; height: 18px; color: var(--sage-mid); }
.diff-point h4 { font-size: 0.95rem; font-weight: 700; color: var(--sage-dark); margin-bottom: 3px; }
.diff-point p { font-size: 0.84rem; color: var(--muted); line-height: 1.62; }

/* HOW IT WORKS / STEPS */
.how { background: var(--sand); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.steps-grid.steps-4 { grid-template-columns: repeat(4, 1fr); }
.step {
  background: var(--white); border-radius: 24px; padding: 2.5rem 2rem;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform .3s;
}
.step:hover { transform: translateY(-4px); }
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--sage-pale); border: 2px solid var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--sage-dark);
  margin-bottom: 1.5rem;
}
.step h3 { font-size: 1.1rem; font-weight: 800; color: var(--sage-dark); margin-bottom: .75rem; }
.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.74; }

/* CHECK LIST (Därför väljer kunder oss / förmåner) */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
.check-list.check-list-1 { grid-template-columns: 1fr; max-width: 480px; }
.check-list.check-list-5 { grid-template-columns: repeat(5, 1fr); }
.check-item {
  display: flex; gap: 12px; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow);
  font-size: 0.92rem; font-weight: 600; color: var(--text);
}
.check-emoji { font-size: 1.25rem; flex: none; line-height: 1; }

/* GIVE BACK */
.giveback { background: var(--sage-pale); }
.giveback-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.giveback-img-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.giveback-img-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); }

/* FAQ ACCORDION */
.faq-list { max-width: 820px; margin: 3.5rem auto 0; display: flex; flex-direction: column; gap: .9rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.faq-question {
  width: 100%; text-align: left; padding: 1.35rem 1.75rem; background: none; border: none;
  cursor: pointer; font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--sage-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-question svg { flex: none; width: 18px; height: 18px; color: var(--sage-mid); transition: transform .25s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 700px; }
.faq-answer-inner { padding: 0 1.75rem 1.5rem; font-size: 0.92rem; color: var(--muted); line-height: 1.78; white-space: pre-line; }

/* TESTIMONIALS */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.t-card {
  background: var(--white); border-radius: 24px; padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.stars svg { width: 15px; height: 15px; fill: var(--terra); color: var(--terra); }
.t-text { font-size: 0.93rem; color: var(--text); line-height: 1.78; margin-bottom: 1.5rem; font-style: italic; flex: 1; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: var(--sage-mid);
}
.t-name { font-size: 0.88rem; font-weight: 700; color: var(--sage-dark); }
.t-detail { font-size: 0.76rem; color: var(--muted); }

/* TEAM */
.team { background: var(--sand); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 720px; margin: 3.5rem auto 0; }
.team-card {
  background: var(--white); border-radius: 28px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .3s;
}
.team-card:hover { transform: translateY(-5px); }
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; }
.team-placeholder {
  width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--sage-pale), #c8dece);
  font-size: 4rem; font-weight: 800; color: var(--sage-mid);
}
.team-info { padding: 1.75rem; }
.team-name { font-size: 1.1rem; font-weight: 800; color: var(--sage-dark); margin-bottom: 3px; }
.team-role { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--terra); margin-bottom: .85rem; }
.team-bio { font-size: 0.85rem; color: var(--muted); line-height: 1.68; }

/* CTA */
.cta-section { background: var(--sage-dark); padding: 5.5rem 2rem; }
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.1; }
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.74; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  background: #fff; color: var(--sage-dark); border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 20px rgba(0,0,0,.15); transition: transform .2s, box-shadow .2s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); cursor: pointer; font-family: inherit;
  transition: border-color .2s, background .2s;
}
.btn-cta-outline:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.07); }
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,.38); margin-top: 1.25rem; }

/* CONTACT */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
.contact-info h3 { font-size: 1.35rem; font-weight: 800; color: var(--sage-dark); margin-bottom: 1rem; }
.contact-info p { font-size: 0.93rem; color: var(--muted); line-height: 1.74; margin-bottom: 2rem; }
.c-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1.5rem; }
.c-icon { width: 44px; height: 44px; border-radius: 14px; background: var(--sage-pale); flex: none; display: flex; align-items: center; justify-content: center; }
.c-icon svg { width: 20px; height: 20px; color: var(--sage-mid); }
.c-label { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.c-val { font-size: 0.95rem; font-weight: 600; color: var(--sage-dark); }
.contact-form { background: var(--white); border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 14px;
  border: 1.5px solid var(--border); background: var(--cream);
  font-family: inherit; font-size: 0.9rem; color: var(--text);
  transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage-mid); background: #fff; }
.form-group textarea { resize: none; height: 110px; }
.form-submit {
  width: 100%; padding: 15px; border-radius: 50px; border: none;
  background: var(--sage-dark); color: #fff; font-family: inherit;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .2s;
}
.form-submit:hover { background: var(--sage-mid); transform: translateY(-1px); }
#form-success, #job-form-success { display: none; text-align: center; color: var(--sage-mid); font-weight: 600; font-size: 0.9rem; margin-top: .75rem; }
.form-error { display: none; text-align: center; color: var(--terra); font-weight: 600; font-size: 0.9rem; margin-top: .75rem; }

/* JOBBA HOS OSS */
.job-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; margin-top: 3.5rem; }

/* FOOTER */
footer { background: #192418; padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-size: .9rem; font-weight: 800; color: rgba(255,255,255,.8); margin-bottom: .5rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,.4); line-height: 1.74; max-width: 26ch; }
.footer-col h4 { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,.5); margin-bottom: .75rem; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.28); }

/* CHAT */
.chat-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage-dark); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(61,107,79,.45); transition: transform .2s;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-dot {
  position: absolute; top: -3px; right: -3px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--terra);
  border: 2px solid var(--cream); animation: pulse 2s ease-in-out infinite;
}
.chat-window {
  position: fixed; bottom: 96px; right: 28px; z-index: 199;
  width: 340px; background: #192418;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  display: flex; flex-direction: column;
}
.chat-window.hidden-chat { display: none; }
.chat-head { padding: 1.25rem 1.5rem; background: var(--sage-dark); display: flex; align-items: center; gap: 12px; }
.chat-head-dot { width: 8px; height: 8px; border-radius: 50%; background: #6ee7b7; animation: pulse 2s ease-in-out infinite; }
.chat-head-title { font-weight: 700; font-size: 0.95rem; color: #fff; }
.chat-head-sub { font-size: 0.73rem; color: rgba(255,255,255,.6); }
.chat-messages { height: 220px; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 12px; }
.chat-quick { padding: 0 1.25rem 1rem; display: flex; gap: 6px; flex-wrap: wrap; }
.quick-btn {
  padding: 6px 12px; border-radius: 50px; border: 1px solid rgba(255,255,255,.16);
  background: transparent; color: rgba(255,255,255,.65);
  font-size: 0.73rem; font-family: inherit; cursor: pointer; transition: all .2s;
}
.quick-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.chat-input-row { display: flex; gap: 8px; padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,.07); }
.chat-input {
  flex: 1; padding: 10px 14px; border-radius: 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: #fff; font-family: inherit; font-size: 0.85rem; outline: none;
}
.chat-input::placeholder { color: rgba(255,255,255,.3); }
.chat-send {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--sage-mid); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s;
}
.chat-send:hover { background: var(--sage); }
.msg-bot { display: flex; gap: 8px; }
.msg-bot-bubble { background: rgba(255,255,255,.07); border-radius: 14px 14px 14px 2px; padding: 10px 14px; font-size: 0.85rem; color: rgba(255,255,255,.78); line-height: 1.55; }
.msg-user { display: flex; justify-content: flex-end; }
.msg-user-bubble { background: var(--sage-mid); border-radius: 14px 14px 2px 14px; padding: 10px 14px; font-size: 0.85rem; color: #fff; line-height: 1.55; }

/* GDPR NOTICE */
.gdpr-notice { margin-bottom: 1rem; }
.gdpr-label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.gdpr-label input[type="checkbox"] { margin-top: 3px; accent-color: var(--sage-mid); flex: none; width: 16px; height: 16px; cursor: pointer; }
.gdpr-label span { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.gdpr-label a { color: var(--sage-mid); text-decoration: underline; }

/* MODAL */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--white); border-radius: 24px; padding: 2.5rem;
  max-width: 560px; width: 100%; box-shadow: 0 24px 64px rgba(0,0,0,.2);
  max-height: 85vh; overflow-y: auto; position: relative;
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: var(--sand); color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: background .2s;
}
.modal-close:hover { background: var(--border); }
.modal-kicker {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--terra-pale); color: var(--terra);
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .07em;
}
.modal-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--sage-dark); margin-bottom: 1rem; line-height: 1.2; }
.modal-box p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.modal-box ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.modal-box li { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: .3rem; }
.modal-box strong { color: var(--sage-dark); font-weight: 700; }
.modal-box a { color: var(--sage-mid); text-decoration: underline; }
.modal-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }

/* RESPONSIVE */
@media (max-width: 1180px) {
  .nav-links, .nav-tel { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-img-wrap { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .steps-grid, .steps-grid.steps-4 { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .job-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .founder-strip-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 1rem 2rem; }
  .giveback-img-row { grid-template-columns: repeat(3, 1fr); }
  .check-list.check-list-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  h1.hero-h1 { font-size: 2.6rem; }
  .services-grid, .testimonials-grid, .check-list { grid-template-columns: 1fr; }
  .steps-grid, .steps-grid.steps-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: .75rem 1rem; }
  .stats-inner { flex-direction: column; align-items: stretch; }
  .giveback-img-row { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 130px 1.5rem 3rem; }
}
