:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --accent: #3EB489;
    --accent-hover: #35a079;
    --accent-light: rgba(62, 180, 137, 0.1);
    --text-primary: #0f0f0f;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --border-color: #e9ecef;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(62, 180, 137, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(62, 180, 137, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    background: radial-gradient(circle at center, var(--accent-light) 0%, transparent 70%);
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.hero-text h1 .highlight {
    color: var(--accent);
}

.highlight {
    color: var(--accent);
}

.hero-text p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn-hero {
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 16px;
}

.btn-hero-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(62, 180, 137, 0.3);
}

.btn-hero-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 180, 137, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-hero-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: var(--accent-light);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px var(--shadow-hover);
    border: 1px solid var(--border-color);
}

/* Info Cards Section */
.info-cards {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--shadow);
}

.info-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    color: var(--accent);
    background-color: var(--accent-light);
    padding: 15px;
    border-radius: 12px;
}

.info-card-icon svg {
    width: 100%;
    height: 100%;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* What is Pinix Section */
.what-is-pinix {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.what-is-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.what-is-text h2 .highlight {
    color: var(--accent);
}

.what-is-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background-color: var(--bg-secondary);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.what-is-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px var(--shadow-hover);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.process-step {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--shadow);
}

.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* For Business Section */
.for-business {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.business-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.business-text > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.business-benefits {
    display: grid;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: start;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--accent);
    transform: translateX(10px);
    box-shadow: 0 4px 20px var(--shadow);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-right: 20px;
    flex-shrink: 0;
    background-color: var(--accent-light);
    padding: 8px;
    border-radius: 8px;
}

.benefit-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-text p {
    color: var(--text-secondary);
    margin: 0;
}

.business-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px var(--shadow-hover);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--shadow);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-primary) 100%);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.cta-section p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--bg-primary);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Cookie Banner */
#cookieBanner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-hover);
    z-index: 9999;
    border: 1px solid var(--border-color);
}

#cookieBanner p {
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

#cookieBanner a {
    color: var(--accent);
    text-decoration: none;
}

#cookieBanner a:hover {
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

#acceptCookies {
    background: var(--accent);
    color: white;
    border: none;
    flex: 1;
}

#acceptCookies:hover {
    background: var(--accent-hover);
}

#rejectCookies {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

#rejectCookies:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .what-is-content,
    .business-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cards-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px var(--shadow);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .section-header h2,
    .what-is-text h2,
    .business-text h2,
    .cta-section h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    section {
        padding: 60px 0;
    }
}