/* ═══════════════════════════════════════════
   REFEED GMBH – Modernes CSS-Redesign
   ═══════════════════════════════════════════ */

/* ── Variables ──────────────────────────────── */
:root {
    --green-900: #0d2e12;
    --green-800: #14451b;
    --green-700: #1a5c22;
    --green-600: #22762c;
    --green-500: #2e9e3a;
    --green-400: #4ab856;
    --green-300: #74cc7e;
    --green-100: #e8f5ea;
    --green-50:  #f3faf4;

    --gray-950: #0c0e0d;
    --gray-900: #111614;
    --gray-800: #1e2520;
    --gray-700: #2d3530;
    --gray-500: #5a6b5d;
    --gray-400: #7a8d7d;
    --gray-200: #d4dcd6;
    --gray-100: #eaf0eb;
    --gray-50:  #f6faf7;

    --white: #ffffff;
    --bg:    #f7faf7;

    --font: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
    --shadow-xl: 0 24px 64px rgba(0,0,0,.13);

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --transition: .25s cubic-bezier(.4,0,.2,1);
    --header-h:  72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ── Scroll-margin for anchor links ─────────── */
section { scroll-margin-top: var(--header-h); }

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--gray-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p   { color: var(--gray-500); line-height: 1.75; }

/* ══════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════ */
.container {
    width: min(1200px, 100% - 48px);
    margin-inline: auto;
}

.section { padding-block: 100px; }
.section-alt { background: var(--bg); }

.section-head {
    text-align: center;
    margin-bottom: 64px;
}
.section-head h2 { margin-top: 12px; }

.section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-500);
    background: var(--green-100);
    padding: 4px 14px;
    border-radius: 100px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
}
.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34,118,44,.35);
}

.btn-ghost {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.45);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.75);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-400);
}
.btn-outline:hover {
    background: var(--green-100);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* Chips */
.chip {
    display: inline-block;
    padding: 6px 14px;
    background: var(--green-100);
    color: var(--green-700);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
#header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    height: var(--header-h);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

#header.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,.08), var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: min(1300px, 100% - 48px);
    margin-inline: auto;
}

.logo img {
    height: 52px;
    width: auto;
    transition: filter var(--transition), opacity var(--transition);
}

/* Make logo lighter on transparent header */
#header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

/* Nav list */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list a {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--white);
    transition: background var(--transition), color var(--transition);
}

#header.scrolled .nav-list a { color: var(--gray-700); }

.nav-list a:hover {
    background: rgba(255,255,255,.15);
}

#header.scrolled .nav-list a:hover {
    background: var(--green-100);
    color: var(--green-700);
}

.nav-cta {
    background: rgba(255,255,255,.18) !important;
    border: 1px solid rgba(255,255,255,.4) !important;
}

#header.scrolled .nav-cta {
    background: var(--green-600) !important;
    color: var(--white) !important;
    border-color: var(--green-600) !important;
}

#header.scrolled .nav-cta:hover {
    background: var(--green-700) !important;
    border-color: var(--green-700) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

#header.scrolled .hamburger span { background: var(--gray-800); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

#hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(10, 30, 12, .72) 0%,
        rgba(20, 69, 27, .60) 50%,
        rgba(10, 30, 12, .75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: heroFadeUp .9s ease both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px;
    color: rgba(255,255,255,.9);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,184,86,.6); }
    50%       { box-shadow: 0 0 0 6px rgba(74,184,86,0); }
}

#hero h1 {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

#hero h1 em {
    font-style: normal;
    color: var(--green-300);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    max-width: 580px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 50%;
    color: white;
    animation: bounce 2s ease infinite;
}

.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
    background: var(--green-800);
    padding: 28px 24px;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 900px;
    margin-inline: auto;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 40px;
}

.stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em;
}

.stat span {
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.15);
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.about-pill {
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    font-size: .9rem;
}

.about-pill span { font-size: 1.6rem; }

.about-pill strong {
    display: block;
    font-weight: 700;
    color: var(--gray-900);
    font-size: .95rem;
}

.about-pill em {
    font-style: normal;
    color: var(--gray-500);
    font-size: .82rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text h2 { margin-top: 8px; }

.about-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-icon-chip {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.service-body {
    padding: 28px;
}

.service-body h3 {
    margin-bottom: 12px;
    color: var(--gray-900);
}

/* ══════════════════════════════════════════════
   VALUES
══════════════════════════════════════════════ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-50), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200, #b0d9b4);
}

.value-card:hover::before { opacity: 1; }

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-card h3 {
    font-size: 1.05rem;
    color: var(--green-800);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: .9rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.product-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--green-700);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 5px 14px;
    border-radius: 100px;
}

.product-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body h3 {
    color: var(--gray-900);
    margin-bottom: 8px;
}

.product-teaser {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    flex: 1;
}

.product-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4,0,.2,1);
}

.product-more p {
    font-size: .88rem;
    line-height: 1.75;
    padding-bottom: 16px;
}

.product-card.open .product-more {
    max-height: 240px;
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--green-100);
    color: var(--green-700);
    border: none;
    border-radius: 100px;
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    align-self: flex-start;
    margin-top: auto;
}

.toggle-btn:hover {
    background: var(--green-600);
    color: var(--white);
}

.toggle-btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.product-card.open .toggle-btn svg {
    transform: rotate(180deg);
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 48px;
    align-items: start;
}

.contact-info {
    background: var(--green-800);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-top {
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding-bottom: 28px;
}

.contact-logo {
    height: 52px;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.contact-tagline {
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-300);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--green-300);
}

.contact-detail strong {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 5px;
}

.contact-detail p, .contact-detail a {
    color: var(--white);
    font-size: .95rem;
    line-height: 1.6;
}

.contact-detail a:hover { color: var(--green-300); }

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

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .95rem;
    color: var(--gray-900);
    background: var(--gray-50);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(46,158,58,.12);
}

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

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .85rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--green-600);
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--green-600);
    text-decoration: underline;
}

/* Team Cards (Kontakt) */
.team-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-cards-title {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.team-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--green-50);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-100), var(--green-50));
}

.team-photo-placeholder svg {
    width: 72px;
    height: 72px;
    stroke: var(--green-300);
}

.team-body {
    padding: 22px 24px;
}

.team-body h4 {
    font-size: 1.05rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.team-role {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px !important;
}

.team-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
}

.team-detail svg {
    width: 15px;
    height: 15px;
    stroke: var(--green-500);
    flex-shrink: 0;
}

.team-detail a {
    color: var(--gray-600, #4b5563);
    transition: color var(--transition);
}

.team-detail a:hover { color: var(--green-600); }

@media (max-width: 900px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* Map */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
    background: var(--gray-950);
    color: rgba(255,255,255,.6);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    width: min(1200px, 100% - 48px);
    margin-inline: auto;
    padding: 72px 0 56px;
}

.footer-brand img {
    height: 48px;
    filter: brightness(0) invert(1) opacity(.8);
    margin-bottom: 16px;
}

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

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}

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

.footer-col a {
    font-size: .88rem;
    color: rgba(255,255,255,.45);
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--green-400); }

.footer-col address p {
    font-size: .88rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-col address a {
    transition: color var(--transition);
}

.footer-col address a:hover { color: var(--green-400); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    text-align: center;
    padding: 24px;
    font-size: .82rem;
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease calc(var(--d, 0s)), transform .7s ease calc(var(--d, 0s));
}

.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Tablet (≤ 1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-brand { grid-column: span 2; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – Mobile (≤ 768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .section { padding-block: 72px; }

    /* Nav mobile */
    .hamburger { display: flex; }

    #nav {
        position: absolute;
        top: var(--header-h);
        inset-inline: 0;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(20px);
        padding: 20px 24px 28px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-100);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    #nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }

    .nav-list a {
        display: block;
        color: var(--gray-800) !important;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .nav-list a:hover { background: var(--green-50); }

    .nav-cta {
        background: var(--green-600) !important;
        color: var(--white) !important;
        border: none !important;
        text-align: center;
        margin-top: 8px;
    }

    /* Hero */
    .hero-content { padding: 40px 20px; }
    .hero-actions { flex-direction: column; align-items: center; }

    /* Stats */
    .stats-inner { gap: 0; }
    .stat { padding: 12px 20px; }
    .stat-divider { display: none; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-img-wrap img { height: 300px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Values */
    .values-grid { grid-template-columns: 1fr; }

    /* Products */
    .products-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form, .contact-info { padding: 32px 24px; }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 56px 0 40px;
    }
    .footer-brand { grid-column: span 1; }
}
