/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #5AC0D6;
    --secondary-cyan: #4AA8BC;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #888888;
    --accent-gradient: linear-gradient(135deg, #5AC0D6, #4AA8BC);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 1);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(90, 192, 214, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo img {
    height: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #000000;
    overflow: visible;
    padding: 150px 20px 80px;
}

/* Hero background glow */
.hero-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 192, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

/* Hero to content transition line */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-cyan) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(90, 192, 214, 0.5);
    opacity: 0.6;
    z-index: 100;
    transition: opacity 0.4s ease;
}

.about-section.scrolled::before {
    opacity: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--accent-gradient);
    box-shadow: 0 0 20px rgba(90, 192, 214, 0.5);
}

.hexagon-bg {
    display: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

/* Staggered entrance animations for hero elements */
.hero-logo {
    margin-bottom: 2.5rem;
    animation: heroLogoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, float 3s ease-in-out 1.2s infinite;
    opacity: 0;
}

.hero-logo img {
    height: 250px;
    max-width: 90vw;
    width: auto;
    filter: drop-shadow(0 0 50px rgba(90, 192, 214, 0.7));
}

.hero-subtitle {
    animation: heroTextEntrance 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-description {
    animation: heroTextEntrance 0.8s ease-out 0.7s forwards;
    opacity: 0;
}

.hero-content .cta-button {
    animation: heroButtonEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
    opacity: 0;
}

/* Hero Logo Entrance - Dramatic scale + glow */
@keyframes heroLogoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
        filter: drop-shadow(0 0 0px rgba(90, 192, 214, 0));
    }
    60% {
        transform: scale(1.05) rotate(2deg);
        filter: drop-shadow(0 0 80px rgba(90, 192, 214, 1));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 50px rgba(90, 192, 214, 0.7));
    }
}

/* Text Entrance - Fade + slide with blur */
@keyframes heroTextEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Button Entrance - Pop in with bounce */
@keyframes heroButtonEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.5);
    }
    70% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating animation (continues after entrance) */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    display: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: var(--primary-cyan);
    color: var(--darker-bg);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(90, 192, 214, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(90, 192, 214, 0.6);
    background: var(--secondary-cyan);
}

.cta-button.large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    display: none;
}

/* Section Styles */
section {
    padding: 2.5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 0 auto;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    color: var(--primary-cyan);
}

.subsection-title.centered {
    text-align: center;
}

/* About Section */
.about-section {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(90, 192, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.values-grid {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.value-card {
    background: transparent;
    padding: 1.5rem;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card.highlight {
    background: transparent;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-cyan);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    color: var(--secondary-cyan);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-light);
    font-weight: 400;
}

.value-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 1);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(90, 192, 214, 0.6);
    box-shadow: 0 0 30px rgba(90, 192, 214, 0.4), 0 8px 32px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

.value-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(90, 192, 214, 0.6);
    filter: drop-shadow(0 0 4px rgba(90, 192, 214, 0.4));
}

.value-card:hover .value-tooltip,
.value-card.active .value-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Mobile: Center tooltip with backdrop */
@media (max-width: 768px) {
    .value-tooltip {
        position: fixed;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%) scale(0.9);
        max-width: 85vw;
        white-space: normal;
        text-align: center;
    }

    .value-card.active .value-tooltip {
        transform: translate(-50%, -50%) scale(1);
    }

    .value-tooltip::before {
        display: none;
    }
}

/* Offers Section */
.offers-section {
    position: relative;
    z-index: 2;
    margin-top: 2.5rem;
}

.offers-content {
    max-width: 1000px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.offer-card {
    background: transparent;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-cyan);
    transition: all 0.3s ease;
}

.offer-icon svg {
    width: 100%;
    height: 100%;
}

.offer-card:hover .offer-icon {
    transform: scale(1.1);
    color: var(--secondary-cyan);
}

.offer-icon-large {
    text-align: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card:hover .offer-icon-large {
    transform: scale(1.1);
}

.offer-count {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-cyan);
    line-height: 1;
    transition: color 0.3s ease;
}

.offer-plus {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-cyan);
    transition: color 0.3s ease;
}

.offer-card:hover .offer-count,
.offer-card:hover .offer-plus {
    color: var(--secondary-cyan);
}

.offer-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-weight: 400;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 1);
    color: var(--text-light);
    padding: 0.8rem 1.8rem;
    border-radius: 16px;
    font-size: 0.9rem;
    white-space: normal;
    max-width: 500px;
    min-width: 350px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(90, 192, 214, 0.6);
    box-shadow: 0 0 30px rgba(90, 192, 214, 0.4), 0 8px 32px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    text-align: center;
    line-height: 1.5;
}

.offer-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(90, 192, 214, 0.6);
    filter: drop-shadow(0 0 4px rgba(90, 192, 214, 0.4));
}

.offer-card:hover .offer-tooltip,
.offer-card.active .offer-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Mobile: Center tooltip with backdrop */
@media (max-width: 768px) {
    .offer-tooltip {
        position: fixed;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%) scale(0.9);
        max-width: 85vw;
    }

    .offer-card.active .offer-tooltip {
        transform: translate(-50%, -50%) scale(1);
    }

    .offer-tooltip::before {
        display: none;
    }
}

/* Member Count Badge */
.member-count {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hexagon-badge {
    position: relative;
    width: 200px;
    height: 230px;
    background: var(--accent-gradient);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(90, 192, 214, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hexagon-badge .count {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.hexagon-badge .label {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--text-light);
    font-weight: 600;
}

/* Image Section */
.image-section {
    margin-top: 2.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.community-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-section:hover .community-image {
    transform: scale(1.05);
}

/* Founders Section */
.founders-section {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.founders-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(90, 192, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.founder-card {
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-image {
    width: 280px;
    height: 320px;
    margin: 0 auto;
    overflow: visible;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: transparent;
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    filter: grayscale(0%) brightness(1);
    transition: all 0.3s ease;
}

.founder-card:hover .founder-image img {
    filter: drop-shadow(0 0 30px rgba(90, 192, 214, 0.8)) brightness(1.1);
}

.founder-card h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Offers Main Section */
.offers-main-section {
    background: #000000;
    position: relative;
    overflow: visible;
    padding: 8rem 0;
}

.offers-main-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(90, 192, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
}

/* Join Section */
.join-section {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 15rem 0;
}

.join-section::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 192, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.join-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 2;
}

.reasons-checklist {
    flex: 0 1 auto;
    max-width: 500px;
    position: relative;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(90, 192, 214, 0.1);
    cursor: pointer;
    position: relative;
}

.reason-item:last-child {
    border-bottom: none;
}

.checkmark {
    font-size: 2rem;
    color: var(--primary-cyan);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reason-item:hover .checkmark,
.reason-item.active .checkmark {
    transform: scale(1.2);
}

.reason-text-wrapper {
    position: relative;
    display: inline-block;
}

.reason-item h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    margin: 0;
    display: inline-block;
}

.reason-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 1);
    color: var(--text-light);
    padding: 0.85rem 1.3rem;
    border-radius: 16px;
    font-size: 0.87rem;
    line-height: 1.5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(90, 192, 214, 0.6);
    box-shadow: 0 0 30px rgba(90, 192, 214, 0.4), 0 8px 32px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    white-space: normal;
    max-width: 360px;
    min-width: 260px;
    width: max-content;
}

.reason-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: rgba(90, 192, 214, 0.6);
    filter: drop-shadow(0 0 4px rgba(90, 192, 214, 0.4));
}

.reason-item:hover .reason-tooltip,
.reason-item.active .reason-tooltip {
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
}

/* Mobile: Center tooltip with backdrop */
@media (max-width: 1024px) {
    .reason-tooltip {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%) scale(0.9);
        max-width: 85vw;
        text-align: center;
        min-width: auto;
        width: auto;
    }

    .reason-item.active .reason-tooltip {
        transform: translate(-50%, -50%) scale(1);
    }

    .reason-tooltip::before {
        display: none;
    }
}

.cta-section {
    text-align: center;
    margin-top: 2.5rem;
}

/* Mobile: Stack checklist and counter */
@media (max-width: 1024px) {
    .join-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .reasons-checklist {
        max-width: 600px;
        width: 100%;
    }
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    border-top: 1px solid rgba(90, 192, 214, 0.2);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    flex: 0 0 auto;
}

.footer-logo img {
    height: 50px;
    border-radius: 10px;
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1;
    margin: 0 2rem;
}

.footer-contact {
    text-align: right;
    flex: 0 0 auto;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--text-light);
}

/* Responsive Design */

/* Tablet and below */
@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .offers-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-logo img {
        height: 220px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Mobile landscape and portrait */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.85rem;
        padding: 1rem 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        height: 35px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-logo img {
        height: 180px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .subsection-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .values-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }


    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .founder-image {
        width: 180px;
        height: 180px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-logo img {
        height: 40px;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .hexagon-badge {
        width: 160px;
        height: 190px;
    }

    .hexagon-badge .count {
        font-size: 3.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .values-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .navbar {
        padding: 0.8rem 0;
    }

    .logo img {
        height: 30px;
    }

    .nav-menu {
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .hero-logo img {
        height: 130px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .subsection-title {
        font-size: 1.2rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .founder-image {
        width: 200px;
        height: 200px;
    }

    .founder-card h3 {
        font-size: 1.2rem;
    }

    .value-card,
    .offer-item,
    .reason-card {
        padding: 1.5rem;
    }

    .hexagon-badge {
        width: 140px;
        height: 160px;
    }

    .hexagon-badge .count {
        font-size: 3rem;
    }

    .hexagon-badge .label {
        font-size: 0.9rem;
    }

    .footer-logo img {
        height: 35px;
    }

    .footer-contact a {
        font-size: 0.9rem;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .hero-logo img {
        height: 100px;
    }

    .founder-image {
        width: 160px;
        height: 160px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Animation delays for staggered effects */
.value-card:nth-child(1) { animation: fadeInUp 0.5s ease 0.1s both; }
.value-card:nth-child(2) { animation: fadeInUp 0.5s ease 0.2s both; }
.value-card:nth-child(3) { animation: fadeInUp 0.5s ease 0.3s both; }
.value-card:nth-child(4) { animation: fadeInUp 0.5s ease 0.4s both; }
.value-card:nth-child(5) { animation: fadeInUp 0.5s ease 0.5s both; }
.value-card:nth-child(6) { animation: fadeInUp 0.5s ease 0.6s both; }

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-cyan);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background: var(--primary-cyan);
    color: var(--darker-bg);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.cookie-btn:hover {
    background: var(--secondary-cyan);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }
}

/* Modern Scattered Dot Pattern - Fixed, No Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 45% 8%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 78% 23%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 23% 42%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 67% 35%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 89% 47%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 34% 61%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 56% 58%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 91% 68%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 15% 78%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 48% 82%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 72% 89%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 8% 94%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 38% 12%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 82% 5%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 29% 52%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 61% 71%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 95% 28%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px),
        radial-gradient(circle at 19% 65%, rgba(90, 192, 214, 1) 2px, transparent 2px),
        radial-gradient(circle at 74% 14%, rgba(90, 192, 214, 1) 1.5px, transparent 1.5px);
    background-size: 100% 100%;
    background-position: 0 0;
    opacity: 0.12;
    pointer-events: none;
    z-index: 9;
}

/* Subtle ambient light effect - Static */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(90, 192, 214, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(90, 192, 214, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Smooth transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Mobile tooltip backdrop overlay */
.tooltip-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tooltip-backdrop.active {
    display: block;
    opacity: 1;
}

/* Disable hover on mobile - click only */
@media (max-width: 768px) {
    .value-card:hover .value-tooltip,
    .offer-card:hover .offer-tooltip,
    .reason-item:hover .reason-tooltip {
        opacity: 0;
        pointer-events: none;
    }

    .reason-item:hover .checkmark {
        transform: scale(1);
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
    color: var(--primary-cyan);
}

.lang-btn.active {
    color: var(--primary-cyan);
    font-weight: 600;
}

.lang-divider {
    color: var(--text-gray);
    opacity: 0.5;
}

/* Founder Role */
.founder-role {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 300;
    font-style: italic;
}

/* Placeholder Image for Missing Founder Photo */
.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(90, 192, 214, 0.1), rgba(90, 192, 214, 0.05));
    border: 2px dashed var(--primary-cyan);
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
}

/* Adjust founders grid for 5 items - Mateja alone, others in pairs */
@media (min-width: 769px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    /* First founder (Mateja) spans full width and is centered */
    .founders-grid .founder-card:nth-child(1) {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        margin-top: 0.5rem;
    }
}