/* ============================================
   DACI Solutions AB — style.css
   Fonts: Poppins (headings) + Open Sans (body)
   Hosted locally — no external requests
   ============================================ */

/* --- FONT-FACE: Poppins --- */
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins-v24-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins-v24-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins-v24-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- FONT-FACE: Open Sans --- */
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans-v44-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans-v44-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans-v44-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans-v44-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans-v44-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- CSS VARIABLES --- */
:root {
    --green: #1A6B3C;
    --green-dark: #145530;
    --green-light: #e8f5ec;
    --green-subtle: #f0faf3;

    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --text-light: #888;

    --bg: #f9f9f7;
	--bg-warm: #f4f4f1;
	--bg-card: #fff;
    --border: #e8e8e5;

    --radius: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
    --shadow: 0 4px 20px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.1);

    --transition: .2s ease;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

/* --- BASE --- */
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- HEADER --- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.5px;
}

.logo span {
    color: var(--green);
}

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

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--green);
}

.nav a.active {
    color: var(--green);
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* --- MOBILE MENU TOGGLE --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- TABS BAR --- */
.tabs-wrapper {
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabs-wrapper::-webkit-scrollbar {
    height: 0;
}

.tabs {
    display: flex;
    gap: 4px;
    max-width: 1200px;
    margin: 0 auto;
}

.tab {
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.tab:hover {
    color: var(--green);
}

.tab.active {
    color: var(--green);
    border-bottom-color: var(--green);
    font-weight: 600;
}

/* --- BUTTONS --- */
.btn-primary {
    background: var(--green);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-white {
    background: #fff;
    color: var(--green);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,.3);
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-price {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--green);
    background: #fff;
    color: var(--green);
}

.btn-price:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* --- HERO --- */
.hero {
    background: linear-gradient(135deg, #0f3d1f 0%, #1a6b3c 50%, #1e7a44 100%);
    color: #fff;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
}

/* Hero med bakgrundsbild */
.hero--image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero--image::before {
    background: linear-gradient(135deg, rgba(15,61,31,.7) 0%, rgba(26,107,60,.6) 50%, rgba(30,122,68,.55) 100%);
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    opacity: .85;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- CONTENT WRAPPER --- */
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* --- SECTION LABELS & TITLES --- */
.section-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.intro-text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 750px;
    margin-bottom: 48px;
}

/* --- CARDS --- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--green);
}

.card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- PRICING --- */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0 60px;
}

.price-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.price-card.featured {
    border-color: var(--green);
}

.price-card.featured::before {
    content: 'Populärast';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}

.price-card.featured .btn-price {
    background: var(--green);
    color: #fff;
}

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

.price-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.price-amount small {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.price-save {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin: 8px 0 16px;
}

.price-features {
    margin-bottom: 24px;
}

.price-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.price-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

/* --- STEPS --- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.step {
    text-align: center;
    padding: 24px;
}

.step-num {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- SEASONAL CARDS --- */
.seasonal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin: 40px 0;
}

.season-card {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--green);
}

.season-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.season-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- SERVICE LIST --- */
.service-list {
    columns: 2;
    gap: 12px;
    margin: 20px 0 40px;
}

.service-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-muted);
    break-inside: avoid;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

/* --- USP BAR --- */
.usp-bar {
    background: var(--bg-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 40px;
}

.usp-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.usp-item {
    display: flex;
    gap: 16px;
}

.usp-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.usp-item h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.usp-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- FAQ --- */
.faq-list {
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '+';
    font-size: 22px;
    color: var(--green);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-q.open::after {
    content: '−';
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-a.open {
    max-height: 500px;
    padding-bottom: 20px;
}

/* --- CONTACT FORM --- */
.form-section {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-top: 60px;
    border: 1px solid var(--border);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--bg-card);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-light);
}

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

.form-submit {
    margin-top: 16px;
}

/* Form status messages */
.form-status {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
    display: none;
}

.form-status.success {
    display: block;
    background: var(--green-light);
    color: var(--green-dark);
}

.form-status.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
}

/* --- CTA BAND --- */
.cta-band {
    background: linear-gradient(135deg, #0f3d1f, #1a6b3c);
    color: #fff;
    text-align: center;
    padding: 40px 40px;
}

.cta-band h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-band p {
    font-size: 16px;
    opacity: .85;
    margin-bottom: 24px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
    background: #111;
    color: #aaa;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.footer p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links li {
    padding: 4px 0;
}

.footer-links a {
    color: #aaa;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #6ee7a0;
}

.footer-links--two-col {
    columns: 2;
    gap: 0 24px;
}

.footer-links--two-col li {
    break-inside: avoid;
}

.footer-legal {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #2a2a2a;
}

.footer-legal a {
    color: #666;
    font-size: 12px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #6ee7a0;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid #2a2a2a;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.footer-bottom strong {
    color: #1A6B3C;
}

.footer .logo {
    color: #fff;
}

/* --- LANDING HERO (split layout) --- */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 48px;
    text-align: left;
}

.hero-split .hero-text h1 {
    font-size: clamp(32px, 4.5vw, 48px);
}

.hero-split .hero-text p {
    margin: 0 0 32px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-image img.portrait {
    width: 240px;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,.2);
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.hero-image img.showcase {
    width: 400px;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 3px solid rgba(255,255,255,.15);
    box-shadow: 0 16px 50px rgba(0,0,0,.25);
}

/* --- SERVICE GRID (landing page) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.service-card .card-icon {
    margin: 0 auto 16px;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .phone-link {
        display: none;
    }

    .tabs-wrapper {
        padding: 0 12px;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-split .hero-text p {
        margin: 0 auto 32px;
    }

    .hero-image img.portrait {
        width: 180px;
        height: 180px;
    }

    .hero-image img.showcase {
        width: 300px;
        height: 210px;
    }

    .hero-image {
        order: -1;
    }

    .content {
        padding: 40px 20px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .pricing {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 28px 20px;
    }

    .service-list {
        columns: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .usp-bar {
        padding: 40px 20px;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }
}

/* --- POLICY PAGES --- */
.policy {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.policy h1 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.5px;
}

.policy .policy-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.policy h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 12px;
    color: var(--text);
}

.policy h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 28px 0 8px;
    color: var(--text);
}

.policy p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy ul,
.policy ol {
    margin: 12px 0 20px 20px;
}

.policy ul li,
.policy ol li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 4px 0;
}

.policy ul li::before {
    content: '•';
    color: var(--green);
    font-weight: 700;
    margin-right: 8px;
}

.policy ol {
    list-style: decimal;
}

.policy ol li {
    padding-left: 4px;
}

.policy a {
    color: var(--green);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy a:hover {
    color: var(--green-dark);
}

.policy-box {
    background: var(--bg-warm);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.policy-box h3 {
    margin: 0 0 8px;
    font-size: 15px;
}

.policy-box p {
    margin-bottom: 4px;
}

.policy-box p:last-child {
    margin-bottom: 0;
}

.policy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.policy-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
}

.policy-nav a:hover,
.policy-nav a.active {
    color: var(--green);
    border-color: var(--green);
    background: var(--green-subtle);
}

/* Policy responsive */
@media (max-width: 768px) {
    .policy {
        padding: 40px 20px 60px;
    }
}

/* --- ABOUT PROFILE --- */
.about-profile {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 32px 0 0;
}

.about-profile-image {
    flex-shrink: 0;
    background: var(--green);
    border-radius: 50%;
    padding: 12px;
}

/* --- NEWS --- */
.news-list {
    max-width: 750px;
}

.news-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.news-item:first-child {
    padding-top: 0;
}

.news-date {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.news-item h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.news-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.news-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    transition: var(--transition);
}

.news-link:hover {
    color: var(--green-dark);
}

/* --- CONTACT GRID --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(0,0,0,.1);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    animation: bannerSlideUp .4s ease;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.cookie-banner-text strong {
    color: var(--text);
    font-weight: 600;
}

.cookie-banner-text a {
    color: var(--green);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-btn {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.cookie-banner-btn:hover {
    background: var(--green-dark);
}

@keyframes bannerSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
}

/* --- RESPONSIVE ADDITIONS --- */
@media (max-width: 768px) {
    .about-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}