/* ============================================
   GRONAD - Zarządzanie Zasobami Naturalnymi
   Main Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
    --green-900: #1B4332;
    --green-800: #2D6A4F;
    --green-700: #40916C;
    --green-600: #52B788;
    --green-400: #74C69D;
    --green-200: #B7E4C7;
    --green-100: #D8F3DC;
    --earth-700: #5C4033;
    --earth-500: #8B6055;
    --earth-300: #C4A882;
    --earth-100: #F5ECD7;
    --neutral-900: #0F1A14;
    --neutral-700: #2A3D35;
    --neutral-500: #6B7C74;
    --neutral-300: #B4C2BB;
    --neutral-100: #F2F7F4;
    --white: #FFFFFF;
    --accent: #F4A261;
    --accent-dark: #E76F51;
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 8px 24px rgba(27, 67, 50, 0.14);
    --shadow-lg: 0 20px 50px rgba(27, 67, 50, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s ease;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary-custom {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(64, 145, 108, 0.4);
}

.btn-primary-custom:hover {
    background: var(--green-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(64, 145, 108, 0.5);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-800);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--neutral-500);
    max-width: 560px;
    margin: 0 auto;
}

/* Light section header */
.section-header.light .section-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-desc {
    color: rgba(255,255,255,0.75);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(27, 67, 50, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

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

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-heading);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: var(--green-600);
    color: var(--white) !important;
    padding: 10px 20px;
}

.nav-cta:hover {
    background: var(--green-400);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=85') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.9) 0%, rgba(45,106,79,0.7) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
}

.hero-text {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background: rgba(148,213,178,0.25);
    border: 1px solid rgba(148,213,178,0.5);
    color: var(--green-200);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 100px 0;
    background: var(--neutral-100);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green-800);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    font-size: 18px;
    color: var(--neutral-900);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--green-900);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    color: var(--green-400);
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--green-400);
}

.stat-item p {
    font-size: 14px;
    color: var(--green-200);
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.reverse {
    transform: translateX(40px);
}

.service-card.animated {
    opacity: 1;
    transform: translateX(0);
}

.service-card.reverse {
    direction: rtl;
}

.service-card.reverse > * {
    direction: ltr;
}

.service-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

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

.service-image:hover img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,67,50,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-image:hover .service-overlay {
    opacity: 1;
}

.service-link {
    background: var(--white);
    color: var(--green-800);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 14px;
}

.service-content {
    padding: 20px 0;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--green-600);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.service-content h3 {
    font-size: 28px;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.service-content p {
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--neutral-700);
    font-weight: 500;
}

.service-features li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--green-600);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.animated {
    opacity: 1;
    transform: translateY(0);
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse > * {
    direction: ltr;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    text-align: center;
}

.step-content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 14px;
}

.step-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 15px;
}

.step-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/2;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--earth-100);
}

.testimonials-slider {
    position: relative;
    min-height: 260px;
}

.testimonial-card {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    animation: slideIn 0.4s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.testimonial-stars {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--neutral-700);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-200);
}

.author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--neutral-900);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--neutral-500);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--green-700);
    background: none;
    color: var(--green-700);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--green-700);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neutral-300);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--green-700);
    transform: scale(1.3);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-left h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.faq-left p {
    color: var(--neutral-500);
    margin-bottom: 28px;
    line-height: 1.7;
}

.faq-left .btn {
    margin-bottom: 40px;
}

.faq-image {
    border-radius: var(--radius-md);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.faq-item {
    border-bottom: 1px solid var(--neutral-100);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-900);
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--green-700);
}

.faq-icon {
    font-size: 22px;
    color: var(--green-700);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-weight: 400;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--neutral-500);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--neutral-100);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-800);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.5;
}

.contact-details a {
    color: var(--green-700);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--green-900);
}

/* --- Form --- */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-700);
    font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--neutral-900);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7C74' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.error-msg {
    font-size: 12px;
    color: #e74c3c;
    min-height: 16px;
    font-weight: 500;
}

.checkbox-group .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--neutral-500);
}

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

.checkbox-label a {
    color: var(--green-700);
    font-weight: 600;
}

/* --- Form Success --- */
#formSuccess {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #52B788;
    border-radius: var(--radius-md);
    padding: 48px 32px;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--green-700);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    font-weight: 700;
}

#formSuccess h3 {
    color: var(--green-900);
    font-size: 22px;
    margin-bottom: 10px;
}

#formSuccess p {
    color: var(--green-800);
    font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--neutral-900);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-desc {
    color: var(--neutral-500);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-300);
    transition: var(--transition);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    background: var(--green-700);
    color: var(--white);
}

.footer-links-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul a {
    color: var(--neutral-500);
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--neutral-500);
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--green-400);
    margin-top: 2px;
}

.footer-contact a {
    color: var(--neutral-500);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--neutral-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--neutral-500);
    transition: color 0.2s ease;
}

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

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 26, 20, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(82,183,136,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.cookie-text h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--neutral-300);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-text a {
    color: var(--green-400);
    text-decoration: underline;
}

.cookie-options {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-300);
    font-size: 13px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    accent-color: var(--green-600);
    width: 16px;
    height: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-accept-all {
    background: var(--green-700);
    color: var(--white);
}

.btn-accept-all:hover {
    background: var(--green-600);
}

.btn-customize {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-customize:hover {
    background: rgba(255,255,255,0.15);
}

.btn-reject {
    background: transparent;
    color: var(--neutral-400, #aaa);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-reject:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-save-custom {
    background: var(--green-700);
    color: var(--white);
    margin-top: 12px;
    width: 100%;
}

.btn-save-custom:hover {
    background: var(--green-600);
}

/* ============================================
   AOS-like Animations
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-card,
    .service-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
    }

    .process-step,
    .process-step.reverse {
        grid-template-columns: 60px 1fr;
        direction: ltr;
    }

    .step-image {
        display: none;
    }

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

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--green-900);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }

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

    .nav-link {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-options {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }

    .benefits-section,
    .services-section,
    .process-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }

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