/**
 * DPIA Bibliotheek Main Styles
 * @package DPIA_Bibliotheek
 */

/* ========================================
   CSS Variables / Custom Properties
   ======================================== */
:root {
    /* Colors */
    --background: #f0f7f4;
    --foreground: #1a2e2a;
    --card: #ffffff;
    --card-foreground: #1a2e2a;
    --primary: #1b6b5a;
    --primary-foreground: #f0faf6;
    --secondary: #e8f4ef;
    --secondary-foreground: #1a2e2a;
    --muted: #e2eeea;
    --muted-foreground: #4a6b62;
    --border: #c8ddd6;
    --ring: #1b6b5a;
    
    /* Nature palette */
    --nature-deep: #0f3d2e;
    --nature-forest: #1b6b5a;
    --nature-sage: #5aaa8e;
    --nature-mint: #a8d8c8;
    --nature-ocean: #1a5276;
    --nature-sky: #3a7ca5;
    --nature-mist: #e8f4ef;
    --nature-cloud: #f0f7f4;
    
    /* Spacing */
    --container-max-width: 1280px;
    --container-padding: 1.5rem;
    
    /* Typography */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Border radius */
    --radius: 0.75rem;
    --radius-sm: calc(var(--radius) - 4px);
    --radius-lg: var(--radius);
    --radius-xl: calc(var(--radius) + 4px);
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border);
}

.navbar-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.logo-svg {
    width: 2rem;
    height: 2rem;
}

.logo-bg {
    fill: rgba(90, 170, 142, 0.3);
}

.logo-shield {
    fill: var(--nature-forest);
}

.logo-badge {
    fill: var(--nature-sage);
}

.navbar-logo-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--foreground);
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-link:hover {
    color: var(--foreground);
}

.navbar-buttons {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .navbar-buttons {
        display: flex;
    }
}

.navbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    border-radius: var(--radius);
    color: var(--foreground);
    transition: background-color 0.2s ease;
}

.navbar-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.icon-close {
    display: none;
}

.navbar-toggle.active .icon-menu {
    display: none;
}

.navbar-toggle.active .icon-close {
    display: block;
}

.navbar-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.navbar-mobile.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.navbar-mobile-inner {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
}

.navbar-mobile-link {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-mobile-link:hover {
    color: var(--foreground);
}

.navbar-mobile-buttons {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 0.75rem;
    border-top: 1px solid var(--border);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--nature-deep);
    color: #f0faf6;
    border-color: var(--nature-deep);
}

.btn-primary:hover {
    background-color: var(--nature-forest);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--secondary);
}

.btn-ghost {
    background-color: transparent;
    color: var(--muted-foreground);
}

.btn-ghost:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--foreground);
}

.btn-large {
    padding: 1.5rem 1.75rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(0.25rem);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
}

.hero-pattern-svg {
    width: 100%;
    height: 100%;
}

.hero-pattern path {
    stroke: var(--nature-deep);
}

.hero-inner {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 5rem 1.5rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-inner {
        padding: 0 1.5rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 32rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-card-wrapper {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-card-wrapper {
        display: block;
    }
}

.hero-card {
    background-color: var(--card);
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-card-header {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.hero-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 61, 46, 0.6), transparent);
}

.hero-card-badge-wrapper {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #f0faf6;
    background-color: rgba(240, 250, 246, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(240, 250, 246, 0.2);
}

.badge-icon {
    width: 0.75rem;
    height: 0.75rem;
}

.hero-card-body {
    padding: 1.5rem;
}

.hero-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.hero-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sector-pill {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background-color: var(--secondary);
    color: var(--muted-foreground);
}

.sector-pill-active {
    background-color: var(--nature-mist);
    color: var(--foreground);
    border-color: rgba(168, 216, 200, 0.3);
}

.sector-pill-more {
    background-color: rgba(232, 244, 239, 0.5);
    color: rgba(74, 107, 98, 0.6);
}

.hero-template-preview {
    background-color: rgba(232, 244, 239, 0.5);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
}

.template-preview-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.template-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-lg);
    background-color: rgba(27, 107, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.template-icon svg {
    color: var(--nature-forest);
}

.template-info {
    flex: 1;
    min-width: 0;
}

.template-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.template-meta {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.125rem;
}

.template-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.progress-bar {
    flex: 1;
    height: 0.375rem;
    border-radius: 9999px;
    background-color: rgba(90, 170, 142, 0.2);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    border-radius: 9999px;
    background-color: var(--nature-forest);
}

.progress-value {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--nature-forest);
}

.template-status {
    font-size: 0.625rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.hero-floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 0.6s ease 0.4s both;
}

.floating-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius);
    background-color: rgba(26, 82, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon svg {
    color: var(--nature-ocean);
}

.floating-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
}

.floating-card-text {
    font-size: 0.625rem;
    color: var(--muted-foreground);
}

/* ========================================
   Hero Features Section
   ======================================== */
.hero-features-section {
    position: relative;
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    background-color: var(--card);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    border-radius: 1rem;
    background-color: rgba(232, 244, 239, 0.4);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: rgba(232, 244, 239, 0.6);
    border-color: rgba(90, 170, 142, 0.4);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-lg);
    background-color: var(--nature-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: rgba(27, 107, 90, 0.1);
}

.feature-icon svg {
    color: var(--nature-forest);
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* ========================================
   Section Common Styles
   ======================================== */
.section-header {
    max-width: 42rem;
    margin-bottom: 4rem;
    text-align: left;
}

.section-header.section-header-light {
    color: #f0faf6;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nature-ocean);
    margin-bottom: 0.75rem;
}

.section-label-light {
    color: var(--nature-mint);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--foreground);
    line-height: 1.2;
}

.section-title-light {
    color: #f0faf6;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

.section-description-light {
    color: rgba(168, 216, 200, 0.7);
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 61, 46, 0.6);
}

.image-overlay-dark {
    background-color: rgba(15, 61, 46, 0.4);
}

/* ========================================
   Problem Section
   ======================================== */
.problem-section {
    position: relative;
    padding: 7rem 0;
    background-color: rgba(232, 244, 239, 0.5);
}

@media (min-width: 1024px) {
    .problem-section {
        padding: 9rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.problem-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
    height: 15rem;
}

.image-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-text p {
    color: #f0faf6;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 42rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .image-text p {
        font-size: 1.25rem;
    }
}

.problem-cards {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .problem-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problem-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.problem-card {
    border-radius: 1rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
}

.problem-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.problem-icon-red {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
}

.problem-icon-red svg {
    color: #ef4444;
}

.problem-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.125rem;
}

.problem-stat-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.problem-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.problem-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* ========================================
   Sectors Section
   ======================================== */
.sectors-section {
    position: relative;
    padding: 7rem 0;
}

@media (min-width: 1024px) {
    .sectors-section {
        padding: 9rem 0;
    }
}

.sectors-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
    height: 12.5rem;
}

.sectors-badges {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sector-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: #f0faf6;
    background-color: rgba(240, 250, 246, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(240, 250, 246, 0.2);
}

.sector-badge-more {
    color: rgba(168, 216, 200, 0.8);
    background-color: rgba(240, 250, 246, 0.1);
    border-color: rgba(240, 250, 246, 0.1);
}

.sectors-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sector-card {
    text-align: left;
    border-radius: var(--radius-lg);
    background-color: var(--card);
    border: 1px solid var(--border);
    padding: 1.25rem;
    transition: all 0.5s ease;
    cursor: pointer;
}

.sector-card:hover {
    border-color: rgba(90, 170, 142, 0.6);
    box-shadow: 0 4px 6px rgba(168, 216, 200, 0.1);
}

.sector-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.sector-emoji {
    font-size: 2rem;
}

.sector-risk {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background-color: var(--nature-mist);
    color: var(--nature-forest);
    border: 1px solid rgba(168, 216, 200, 0.4);
}

.sector-risk-high {
    background-color: #fef2f2;
    color: #dc2626;
    border-color: #fee2e2;
}

.sector-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.sector-example {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.sector-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--nature-ocean);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sector-card:hover .sector-link {
    opacity: 1;
}

.sector-link-icon {
    width: 0.75rem;
    height: 0.75rem;
}

.sector-card-growing {
    border-style: dashed;
    border-color: rgba(90, 170, 142, 0.4);
    background-color: rgba(232, 244, 239, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: default;
}

.sector-growing-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nature-forest);
}

.sector-growing-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works-section {
    position: relative;
    padding: 7rem 0;
    background-color: var(--nature-deep);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .how-it-works-section {
        padding: 9rem 0;
    }
}

.section-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.pattern-svg {
    width: 100%;
    height: 100%;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    border-radius: 1rem;
    background-color: rgba(240, 250, 246, 0.05);
    border: 1px solid rgba(240, 250, 246, 0.1);
    padding: 1.5rem;
    transition: all 0.5s ease;
}

.step-card:hover {
    background-color: rgba(240, 250, 246, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(240, 250, 246, 0.1);
    line-height: 1;
}

.step-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    color: #f0faf6;
}

.step-icon-green {
    background-color: var(--nature-forest);
}

.step-icon-blue {
    background-color: var(--nature-ocean);
}

.step-icon-sage {
    background-color: var(--nature-sage);
}

.step-icon-deep {
    background-color: var(--nature-deep);
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f0faf6;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(168, 216, 200, 0.6);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--nature-deep);
    padding: 4rem 0;
}

.footer-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius);
    background-color: var(--nature-forest);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 1rem;
    height: 1rem;
    color: #f0faf6;
}

.footer-logo-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f0faf6;
}

.footer-tagline {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(168, 216, 200, 0.5);
}

.footer-column {
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(168, 216, 200, 0.4);
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(168, 216, 200, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #f0faf6;
}

.footer-bottom {
    border-top: 1px solid rgba(240, 250, 246, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(168, 216, 200, 0.4);
}

.footer-domain {
    font-size: 0.75rem;
    color: rgba(168, 216, 200, 0.3);
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    position: relative;
    padding: 7rem 0;
}

@media (min-width: 1024px) {
    .features-section {
        padding: 9rem 0;
    }
}

.features-groups {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.features-group {
}

.features-group-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.features-group-line {
    width: 2rem;
    height: 0.125rem;
    background-color: var(--nature-forest);
    border-radius: 9999px;
}

.features-group-line-blue {
    background-color: var(--nature-ocean);
}

.features-group-line-sage {
    background-color: var(--nature-sage);
}

.features-group-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .features-group-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-group-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-radius: var(--radius-lg);
    background-color: var(--card);
    border: 1px solid var(--border);
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(90, 170, 142, 0.5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-item-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius);
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.feature-item:hover .feature-item-icon {
    background-color: var(--nature-mist);
}

.feature-item-icon svg {
    color: var(--nature-forest);
}

.feature-item-content {
    flex: 1;
}

.feature-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.125rem;
}

.feature-item-desc {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    position: relative;
    padding: 7rem 0;
    background-color: rgba(232, 244, 239, 0.5);
}

@media (min-width: 1024px) {
    .pricing-section {
        padding: 9rem 0;
    }
}

.section-header-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.pricing-toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.pricing-toggle-label-active {
    color: var(--foreground);
}

.pricing-switch {
    position: relative;
    width: 3.5rem;
    height: 1.75rem;
    border-radius: 9999px;
    background-color: var(--border);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-switch.active {
    background-color: var(--nature-forest);
}

.pricing-switch-button {
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background-color: var(--card);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-switch.active .pricing-switch-button {
    transform: translateX(1.75rem);
}

.pricing-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nature-forest);
    background-color: var(--nature-mist);
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    animation: fadeIn 0.3s ease;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    border-radius: 1rem;
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}

.pricing-card-featured {
    background-color: var(--nature-deep);
    border: 2px solid rgba(90, 170, 142, 0.3);
    box-shadow: 0 20px 25px -5px rgba(15, 61, 46, 0.2);
}

@media (min-width: 768px) {
    .pricing-card-featured {
        transform: scale(1.03);
    }
}

.pricing-badge-top {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    white-space: nowrap;
    background-color: var(--nature-sage);
    color: var(--nature-deep);
}

.pricing-badge-top-secondary {
    background-color: rgba(26, 82, 118, 0.1);
    color: var(--nature-ocean);
    border: 1px solid rgba(26, 82, 118, 0.2);
}

.pricing-plan-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.pricing-plan-name-light {
    color: #f0faf6;
}

.pricing-plan-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.pricing-plan-desc-light {
    color: rgba(168, 216, 200, 0.7);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.pricing-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--foreground);
    transition: all 0.3s ease;
}

.pricing-amount-light {
    color: #f0faf6;
}

.pricing-period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-period-light {
    color: rgba(168, 216, 200, 0.6);
}

.pricing-yearly-total {
    font-size: 0.75rem;
    color: var(--nature-forest);
    margin-top: -1.125rem;
    margin-bottom: 1.5rem;
}

.pricing-yearly-total-light {
    color: var(--nature-sage);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.pricing-feature-light {
    color: rgba(168, 216, 200, 0.8);
}

.pricing-feature span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-feature-light span {
    color: rgba(168, 216, 200, 0.8);
}

.pricing-check {
    flex-shrink: 0;
    color: var(--nature-forest);
}

.pricing-check-light {
    color: var(--nature-sage);
}

.btn-featured {
    background-color: #f0faf6;
    color: var(--nature-deep);
}

.btn-featured:hover {
    background-color: var(--nature-mint);
}

/* ========================================
   Mission Section
   ======================================== */
.mission-section {
    position: relative;
    padding: 7rem 0;
}

@media (min-width: 1024px) {
    .mission-section {
        padding: 9rem 0;
    }
}

.mission-grid {
    display: grid;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-content {
}

.mission-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 13.75rem;
}

.mission-quote {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--nature-sage);
    margin-bottom: 2.5rem;
}

.mission-quote p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    font-style: italic;
}

.mission-beliefs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.belief-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.belief-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius);
    background-color: var(--nature-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.belief-icon svg {
    color: var(--nature-forest);
}

.belief-content {
}

.belief-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.125rem;
}

.belief-desc {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.mission-flywheel {
}

.flywheel-card {
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--nature-deep) 0%, var(--nature-deep) 50%, rgba(27, 107, 90, 0.8) 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .flywheel-card {
        padding: 2.5rem;
    }
}

.flywheel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at center, transparent 40%, #f0faf6 100%);
}

.flywheel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.flywheel-spin-icon {
    color: var(--nature-sage);
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.flywheel-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(168, 216, 200, 0.8);
}

.flywheel-visual {
    position: relative;
    width: 100%;
    max-width: 20rem;
    aspect-ratio: 1;
    margin: 0 auto 2rem;
}

.flywheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    background-color: rgba(90, 170, 142, 0.2);
    border: 2px solid rgba(90, 170, 142, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flywheel-center-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--nature-sage);
}

.flywheel-ring {
    position: absolute;
    inset: 2.5rem;
    border-radius: 9999px;
    border: 2px dashed rgba(240, 250, 246, 0.2);
}

.flywheel-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

.flywheel-step-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.flywheel-step-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.flywheel-step-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.flywheel-step-4 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.flywheel-step-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.flywheel-step-icon svg {
    color: #f0faf6;
}

.flywheel-step-icon-green {
    background-color: var(--nature-forest);
}

.flywheel-step-icon-blue {
    background-color: var(--nature-ocean);
}

.flywheel-step-icon-sage {
    background-color: var(--nature-sage);
}

.flywheel-step-icon-sky {
    background-color: var(--nature-sky);
}

.flywheel-step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(240, 250, 246, 0.6);
    text-align: center;
    white-space: nowrap;
}

.flywheel-description {
    position: relative;
    z-index: 1;
}

.flywheel-description p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(240, 250, 246, 0.9);
    text-align: center;
}

/* ========================================
   Vision Section
   ======================================== */
.vision-section {
    position: relative;
    padding: 7rem 0;
    background-color: rgba(232, 244, 239, 0.5);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .vision-section {
        padding: 9rem 0;
    }
}

.vision-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 25rem;
    height: 25rem;
    border-radius: 9999px;
    background-color: rgba(168, 216, 200, 0.15);
    filter: blur(120px);
    pointer-events: none;
}

.vision-grid {
    display: grid;
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vision-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: var(--radius-lg);
    background-color: var(--card);
    border: 1px solid var(--border);
    padding: 1.25rem;
    transition: all 0.5s ease;
}

.vision-item:hover {
    border-color: rgba(90, 170, 142, 0.5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.vision-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius);
    background-color: var(--nature-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-icon svg {
    color: var(--nature-ocean);
}

.vision-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--nature-forest);
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.cta-pattern-svg {
    width: 100%;
    height: 100%;
}

.cta-inner {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #f0faf6;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(168, 216, 200, 0.7);
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta {
    background-color: #f0faf6;
    color: var(--nature-deep);
    border-color: #f0faf6;
}

.btn-cta:hover {
    background-color: var(--nature-mint);
    border-color: var(--nature-mint);
}

.btn-cta-outline {
    background-color: transparent;
    color: #f0faf6;
    border-color: rgba(240, 250, 246, 0.25);
}

.btn-cta-outline:hover {
    background-color: rgba(240, 250, 246, 0.1);
    border-color: rgba(240, 250, 246, 0.4);
    color: #f0faf6;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
