* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg-light: #FAFAFA;
    --text-light: #000000;
    --secondary-light: #666666;
    --accent-light: #00C896;
    --input-bg-light: #f5f5f5;
    
    --bg-dark: #0A0A0A;
    --text-dark: #FFFFFF;
    --secondary-dark: #999999;
    --accent-dark: #00C896;
    --input-bg-dark: #1a1a1a;
    
    --bg-teal: #0D3B3B;
    --text-teal: #E8F4F4;
    --secondary-teal: #7FB3B3;
    --accent-teal: #00D9A3;
    --input-bg-teal: #1A4A4A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-light);
    color: var(--text-light);
    transition: background 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    line-height: 1.6;
}

body.dark-mode {
    background: var(--bg-dark);
    color: var(--text-dark);
}

body.teal-mode {
    background: var(--bg-teal);
    color: var(--text-teal);
}

.molecular-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.molecule {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float-enhanced linear infinite;
    transition: background 0.4s ease;
}

body.dark-mode .molecule {
    opacity: 0.12;
}

body.teal-mode .molecule {
    opacity: 0.14;
}

.molecule.xlarge {
    width: 280px;
    height: 280px;
    filter: blur(50px);
}

.molecule.large {
    width: 200px;
    height: 200px;
    filter: blur(40px);
}

.molecule.medium {
    width: 120px;
    height: 120px;
    filter: blur(30px);
}

.molecule.small {
    width: 60px;
    height: 60px;
    filter: blur(20px);
}

.molecule.xsmall {
    width: 30px;
    height: 30px;
    filter: blur(15px);
}

@keyframes float-enhanced {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    20% { transform: translate(150px, -80px) scale(1.15) rotate(72deg); }
    40% { transform: translate(80px, 120px) scale(0.85) rotate(144deg); }
    60% { transform: translate(-120px, 80px) scale(1.1) rotate(216deg); }
    80% { transform: translate(-80px, -100px) scale(0.9) rotate(288deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode nav {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.teal-mode nav {
    background: rgba(13, 59, 59, 0.95);
    border-bottom-color: rgba(232, 244, 244, 0.1);
}

.logo {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
}

.nav-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: inherit;
    cursor: pointer;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-mode .dropdown-toggle {
    border-color: rgba(255, 255, 255, 0.1);
}

body.teal-mode .dropdown-toggle {
    border-color: rgba(232, 244, 244, 0.2);
}

.dropdown-toggle:hover {
    background: var(--input-bg-light);
}

body.dark-mode .dropdown-toggle:hover {
    background: var(--input-bg-dark);
}

body.teal-mode .dropdown-toggle:hover {
    background: var(--input-bg-teal);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.dark-mode .dropdown-menu {
    background: var(--bg-dark);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.teal-mode .dropdown-menu {
    background: var(--bg-teal);
    border-color: rgba(232, 244, 244, 0.1);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-light);
}

body.dark-mode .dropdown-item {
    color: var(--text-dark);
}

body.teal-mode .dropdown-item {
    color: var(--text-teal);
}

.dropdown-item:hover {
    background: var(--input-bg-light);
}

body.dark-mode .dropdown-item:hover {
    background: var(--input-bg-dark);
}

body.teal-mode .dropdown-item:hover {
    background: var(--input-bg-teal);
}

.dropdown-item.active {
    color: var(--accent-light);
}

body.teal-mode .dropdown-item.active {
    color: var(--accent-teal);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: clamp(42px, 7vw, 110px);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.headline-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.headline-rotator {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.headline-rotator.active {
    opacity: 1;
    pointer-events: auto;
}

.subheadline {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    color: var(--secondary-light);
    margin-bottom: 60px;
    max-width: 900px;
    letter-spacing: -0.5px;
    line-height: 1.5;
}

body.dark-mode .subheadline {
    color: var(--secondary-dark);
}

body.teal-mode .subheadline {
    color: var(--secondary-teal);
}

.cta-button {
    display: inline-block;
    padding: 22px 55px;
    font-size: 17px;
    font-weight: 300;
    color: #FAFAFA;
    background: var(--accent-light);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

body.dark-mode .cta-button:hover {
    background: var(--text-dark);
    color: var(--bg-dark);
}

body.teal-mode .cta-button {
    background: var(--accent-teal);
    color: var(--bg-teal);
}

body.teal-mode .cta-button:hover {
    background: var(--text-teal);
}

.cta-details {
    font-size: 14px;
    font-weight: 300;
    color: var(--secondary-light);
    margin-top: 15px;
}

body.dark-mode .cta-details {
    color: var(--secondary-dark);
}

body.teal-mode .cta-details {
    color: var(--secondary-teal);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
}

body.dark-mode .modal-content {
    background: var(--bg-dark);
}

body.teal-mode .modal-content {
    background: var(--bg-teal);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    line-height: 1;
    padding: 0;
}

body.dark-mode .modal-close {
    color: var(--text-dark);
}

body.teal-mode .modal-close {
    color: var(--text-teal);
}

.modal-close:hover {
    opacity: 1;
}

.modal h3 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text-light);
}

body.dark-mode .modal h3 {
    color: var(--text-dark);
}

body.teal-mode .modal h3 {
    color: var(--text-teal);
}

.modal p {
    margin-bottom: 30px;
    color: var(--secondary-light);
}

body.dark-mode .modal p {
    color: var(--secondary-dark);
}

body.teal-mode .modal p {
    color: var(--secondary-teal);
}

.modal input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background: var(--input-bg-light);
    color: var(--text-light);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

body.dark-mode .modal input {
    background: var(--input-bg-dark);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

body.teal-mode .modal input {
    background: var(--input-bg-teal);
    border-color: rgba(232, 244, 244, 0.2);
    color: var(--text-teal);
}

.modal input:focus {
    outline: none;
    border-color: var(--accent-light);
}

body.teal-mode .modal input:focus {
    border-color: var(--accent-teal);
}

.modal button.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-light);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.teal-mode .modal button.submit-btn {
    background: var(--accent-teal);
}

.modal button.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

h2 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
}

h3 {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

p {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--secondary-light);
    margin-bottom: 25px;
}

body.dark-mode p {
    color: var(--secondary-dark);
}

body.teal-mode p {
    color: var(--secondary-teal);
}

.divider {
    width: 80px;
    height: 1px;
    background: var(--secondary-light);
    margin: 60px auto;
    opacity: 0.3;
}

body.dark-mode .divider {
    background: var(--secondary-dark);
}

body.teal-mode .divider {
    background: var(--secondary-teal);
}

.problem-section {
    text-align: center;
}

.capabilities-list {
    list-style: none;
    max-width: 850px;
    margin: 50px auto;
    text-align: left;
}

.capabilities-list li {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 300;
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
    transition: color 0.3s ease;
}

body.dark-mode .capabilities-list li {
    color: var(--text-dark);
}

body.teal-mode .capabilities-list li {
    color: var(--text-teal);
}

.capabilities-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: 400;
}

body.teal-mode .capabilities-list li:before {
    color: var(--accent-teal);
}

.quote-block {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin: 60px auto;
    max-width: 800px;
    text-align: center;
    color: var(--text-light);
    transition: color 0.3s ease;
}

body.dark-mode .quote-block {
    color: var(--text-dark);
}

body.teal-mode .quote-block {
    color: var(--text-teal);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 50px 0;
    font-size: clamp(14px, 1.5vw, 16px);
}

th, td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

body.dark-mode th,
body.dark-mode td {
    border-bottom-color: rgba(255,255,255,0.08);
}

body.teal-mode th,
body.teal-mode td {
    border-bottom-color: rgba(232,244,244,0.1);
}

th {
    font-weight: 400;
    color: var(--text-light);
}

body.dark-mode th {
    color: var(--text-dark);
}

body.teal-mode th {
    color: var(--text-teal);
}

td {
    font-weight: 300;
    color: var(--secondary-light);
}

body.dark-mode td {
    color: var(--secondary-dark);
}

body.teal-mode td {
    color: var(--secondary-teal);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin: 60px 0;
}

.step {
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 200;
    color: var(--accent-light);
    margin-bottom: 20px;
}

body.teal-mode .step-number {
    color: var(--accent-teal);
}

.step h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.testimonial {
    padding: 40px;
    background: var(--input-bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

body.dark-mode .testimonial {
    background: var(--input-bg-dark);
}

body.teal-mode .testimonial {
    background: var(--input-bg-teal);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

body.dark-mode .testimonial-text {
    color: var(--text-dark);
}

body.teal-mode .testimonial-text {
    color: var(--text-teal);
}

.testimonial-author {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-light);
    transition: color 0.3s ease;
}

body.dark-mode .testimonial-author {
    color: var(--secondary-dark);
}

body.teal-mode .testimonial-author {
    color: var(--secondary-teal);
}

.faq-container {
    max-width: 900px;
    margin: 60px auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 25px 0;
    transition: border-color 0.3s ease;
}

body.dark-mode .faq-item {
    border-bottom-color: rgba(255,255,255,0.08);
}

body.teal-mode .faq-item {
    border-bottom-color: rgba(232,244,244,0.1);
}

.faq-question {
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-light);
}

body.teal-mode .faq-question:hover {
    color: var(--accent-teal);
}

body.dark-mode .faq-question {
    color: var(--text-dark);
}

body.teal-mode .faq-question {
    color: var(--text-teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--secondary-light);
    padding-top: 0;
}

body.dark-mode .faq-answer {
    color: var(--secondary-dark);
}

body.teal-mode .faq-answer {
    color: var(--secondary-teal);
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding-top: 20px;
}

.pricing-card {
    max-width: 500px;
    margin: 60px auto;
    padding: 50px;
    background: var(--input-bg-light);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

body.dark-mode .pricing-card {
    background: var(--input-bg-dark);
}

body.teal-mode .pricing-card {
    background: var(--input-bg-teal);
}

.price {
    font-size: 64px;
    font-weight: 200;
    margin: 20px 0;
    color: var(--accent-light);
    transition: color 0.3s ease;
}

body.teal-mode .price {
    color: var(--accent-teal);
}

.price-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    transition: color 0.3s ease;
}

body.dark-mode .price-features li {
    color: var(--text-dark);
}

body.teal-mode .price-features li {
    color: var(--text-teal);
}

footer {
    padding: 60px 60px 40px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: border-color 0.3s ease;
}

body.dark-mode footer {
    border-top-color: rgba(255, 255, 255, 0.05);
}

body.teal-mode footer {
    border-top-color: rgba(232, 244, 244, 0.1);
}

.footer-links {
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 300;
}

.footer-links a {
    color: var(--secondary-light);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

body.dark-mode .footer-links a {
    color: var(--secondary-dark);
}

body.teal-mode .footer-links a {
    color: var(--secondary-teal);
}

.footer-links a:hover {
    color: var(--accent-light);
}

body.teal-mode .footer-links a:hover {
    color: var(--accent-teal);
}

.footer-text {
    font-size: 13px;
    font-weight: 300;
    color: var(--secondary-light);
    line-height: 1.8;
    transition: color 0.3s ease;
}

body.dark-mode .footer-text {
    color: var(--secondary-dark);
}

body.teal-mode .footer-text {
    color: var(--secondary-teal);
}

.highlight-box {
    background: var(--input-bg-light);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-3px);
}

body.dark-mode .highlight-box {
    background: var(--input-bg-dark);
}

body.teal-mode .highlight-box {
    background: var(--input-bg-teal);
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    color: #E8E8E8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-text strong {
    color: #FFFFFF;
}

.cookie-link {
    color: #00C896;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #00b085;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #00C896;
    color: white;
}

.cookie-btn.accept:hover {
    background: #00b085;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: #999;
    border: 1px solid #333;
}

.cookie-btn.decline:hover {
    background: #1a1a1a;
    color: #fff;
}

body.dark-mode .cookie-consent {
    background: rgba(10, 10, 10, 0.98);
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.teal-mode .cookie-consent {
    background: rgba(13, 59, 59, 0.98);
    border-top-color: rgba(232, 244, 244, 0.1);
}

body.teal-mode .cookie-btn.accept {
    background: #00D9A3;
}

body.teal-mode .cookie-btn.accept:hover {
    background: #00C896;
}
/* MISSION STATEMENT MODAL */
.mission-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.mission-content {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 50px;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 200, 150, 0.3);
}

body.dark-mode .mission-content {
    background: var(--bg-dark);
    color: var(--text-dark);
}

body.teal-mode .mission-content {
    background: var(--bg-teal);
    color: var(--text-teal);
}

.mission-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.mission-content h2 {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}

.mission-statement p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--secondary-light);
}

body.dark-mode .mission-statement p {
    color: var(--secondary-dark);
}

body.teal-mode .mission-statement p {
    color: var(--secondary-teal);
}

.mission-principles {
    background: rgba(0, 200, 150, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 3px solid var(--accent-light);
}

.mission-principles p {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-light);
}

body.dark-mode .mission-principles p {
    color: var(--text-dark);
}

body.teal-mode .mission-principles p {
    color: var(--text-teal);
}

.mission-footer {
    font-style: italic;
    font-size: 14px;
    margin-top: 25px;
}

.informed-consent {
    margin: 40px 0 20px;
    padding: 25px;
    background: rgba(0, 200, 150, 0.05);
    border-radius: 8px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.6;
}

.consent-checkbox input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 4px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
}

.consent-checkbox span {
    flex: 1;
}

.mission-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-light);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.mission-btn:hover:not(:disabled) {
    background: #00b085;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
}

.mission-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

body.teal-mode .mission-btn {
    background: var(--accent-teal);
}

body.teal-mode .mission-btn:hover:not(:disabled) {
    background: #00C896;
}

.legal-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    section {
        padding: 80px 30px;
    }
    
    .hero {
        padding: 120px 30px 60px;
    }
    
    .headline-container {
        min-height: 150px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    table {
        font-size: 11px;
        display: block;
        overflow-x: auto;
    }
    
    th, td {
        padding: 10px 6px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card {
        padding: 35px;
        margin: 40px 20px;
    }
    
    .price {
        font-size: 48px;
    }
    
    .highlight-box {
        padding: 25px;
        margin: 30px 0;
    }
    
    .quote-block {
        font-size: 20px;
    }
    
    .modal-content {
        padding: 35px;
    }
    
    .mission-content {
        padding: 30px 25px;
    }
    
    .mission-content h2 {
        font-size: 24px;
    }
    
    .mission-statement p {
        font-size: 14px;
    }
    
    .mission-principles p {
        font-size: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    .headline-container {
        min-height: 120px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px 30px;
    }
    
    section {
        padding: 60px 20px;
    }
}
