:root {
    --color-primary: #014845;
    --color-secondary: #047C74;
    --color-tertiary: #03A39C;
    --color-quaternary: #14EBD0;
    --color-accent: #14EBD0;
    --color-white: #ffffff;
    --color-gray-light: #F6FFFD;
    --color-gray: #6c757d;
    --color-dark: #0F1D1C;
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(246, 255, 253, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(3, 163, 156, 0.12);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(1, 72, 69, 0.04);
    transition: var(--transition);
}

.navbar-fixed .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 1.25rem;
}

.navbar-fixed .navbar-brand svg {
    transition: var(--transition);
}

.navbar-fixed .navbar-brand:hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(20, 235, 208, 0.4));
}

.navbar-fixed .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.navbar-fixed .nav-link:hover {
    color: var(--color-secondary);
    border-bottom-color: var(--color-accent);
}

.navbar-fixed .btn-primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.navbar-fixed .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 124, 116, 0.25);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 11rem 0 6rem;
    background: linear-gradient(135deg, rgba(20, 235, 208, 0.06) 0%, rgba(4, 124, 116, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 235, 208, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-section .microline {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-top: 2rem;
}

.hero-section .microline span {
    position: relative;
    padding-left: 1rem;
}

.hero-section .microline span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(1, 72, 69, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--color-white);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(4, 124, 116, 0.3);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-secondary);
    padding: 0.9375rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--color-secondary);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(4, 124, 116, 0.2);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.detail-score {
    padding: 6rem 0;
    background: var(--color-white);
}

.score-panel {
    background: var(--color-gray-light);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(3, 163, 156, 0.1);
}

.score-item {
    margin-bottom: 2rem;
}

.score-item:last-child {
    margin-bottom: 0;
}

.score-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--color-dark);
}

.score-bar {
    width: 100%;
    height: 12px;
    background: rgba(1, 72, 69, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    border-radius: 20px;
    transition: width 1s ease;
}

.token-kitchen {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(1, 72, 69, 0.03) 0%, rgba(20, 235, 208, 0.05) 100%);
}

.token-strip {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.token-group {
    flex: 1;
    min-width: 200px;
}

.token-group h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.token-chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.token-chip {
    padding: 0.5rem 1rem;
    background: var(--color-white);
    border: 1px solid rgba(3, 163, 156, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-dark);
    transition: var(--transition);
}

.token-chip:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 12px rgba(20, 235, 208, 0.3);
    transform: translateY(-2px);
}

.component-lab {
    padding: 6rem 0;
    background: var(--color-white);
}

.lab-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-gray-light);
    border-radius: 12px;
    overflow: hidden;
}

.lab-table thead {
    background: var(--color-primary);
    color: var(--color-white);
}

.lab-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lab-table td {
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(3, 163, 156, 0.1);
}

.lab-table tr:last-child td {
    border-bottom: none;
}

.lab-table tr:hover {
    background: rgba(20, 235, 208, 0.05);
}

.lab-name {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.0625rem;
}

.before-after {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(1, 72, 69, 0.02) 0%, rgba(20, 235, 208, 0.04) 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(1, 72, 69, 0.08);
}

.comparison-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.comparison-label {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.changes-list {
    list-style: none;
    padding: 0;
}

.changes-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--color-gray);
}

.changes-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.25rem;
}

.social-proof {
    padding: 6rem 0;
    background: var(--color-white);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.outcome-item {
    padding: 1.5rem;
    background: var(--color-gray-light);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    transition: var(--transition);
}

.outcome-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(1, 72, 69, 0.1);
}

.outcome-item h4 {
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(1, 72, 69, 0.05) 0%, rgba(20, 235, 208, 0.08) 100%);
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 12px 48px rgba(1, 72, 69, 0.12);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(3, 163, 156, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(20, 235, 208, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-mini {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-top: 1.5rem;
}

footer {
    background: var(--color-dark);
    color: rgba(246, 255, 253, 0.8);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(246, 255, 253, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.75rem;
}

footer a:hover {
    color: var(--color-accent);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(246, 255, 253, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-actions .btn-accept {
    background: var(--color-accent);
    color: var(--color-dark);
}

.cookie-actions .btn-accept:hover {
    background: var(--color-tertiary);
}

.cookie-actions .btn-decline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(246, 255, 253, 0.3);
}

.cookie-actions .btn-decline:hover {
    border-color: var(--color-white);
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .changes-list {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 9rem 0 4rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .score-panel {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}