@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --bg-muted: #f1f5f9; /* Sophisticated slate grey */
    --primary: #09090b; /* shadcn primary (almost black) */
    --primary-hover: #18181b;
    --primary-foreground: #fafafa;
    --accent: #2563eb; /* Strong trust-building royal blue */
    --text-main: #09090b;
    --text-muted: #3f3f46; /* Increased contrast for body text */
    --border: #d4d4d8; /* shadcn border */
    --border-hover: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.8);
    --font: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 8px;
    --transition: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
    position: relative;
}

p {
    max-width: 70ch;
}

/* Hide background glows from previous style */
.bg-glow-1, .bg-glow-2 {
    display: none !important;
}

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

.w-full {
    width: 100%;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-subhead {
    margin-top: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-details-list {
    margin-top: 40px;
}

/* Section Common */
section {
    padding: 80px 0; /* Reduced by ~20% */
    position: relative;
    border-bottom: 1px solid var(--border);
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--bg-muted);
    color: var(--text-main);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.section-title span {
    color: var(--text-main);
    position: relative;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}


/* Header & Nav */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.custom-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    height: 38px;
}

.cta-btn-primary {
    background: var(--accent);
    color: #ffffff;
    border: 1px solid var(--accent);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cta-btn-primary:hover {
    background: #1d4ed8; /* Darker blue */
    border-color: #1d4ed8;
}

.cta-btn-secondary {
    background: var(--bg-main);
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cta-btn-secondary:hover {
    background: var(--bg-muted);
    border-color: var(--border-hover);
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 110px; /* Reduced by ~20% */
    padding-bottom: 72px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main);
}

.hero h1 span {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--text-main);
    text-decoration: underline;
    text-decoration-color: var(--border-hover);
    text-underline-offset: 4px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 36px auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Proof Bar */
.proof-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    background: var(--bg-muted);
}

.proof-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.proof-logo {
    font-size: 0.95rem;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Stats Section */
.stats {
    padding: 50px 0;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-card {
    padding: 16px;
    border-right: 1px solid var(--border);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Problem Statement Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.problem-card {
    background: var(--bg-muted);
    border: none;
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.problem-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.problem-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: 6px;
    color: #ef4444;
    font-size: 1.1rem;
}

.problem-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.problem-footer-note {
    text-align: center;
    margin-top: 48px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-mono);
}

/* Who We Help Section */
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.who-card {
    background: transparent;
    border: none;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    padding: 30px 24px;
    transition: var(--transition);
    text-align: left;
}

.who-card:hover {
    background: var(--bg-muted);
}

.who-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.who-card:hover .who-icon-wrapper {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.who-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.who-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Framework Timeline */
.framework-timeline {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 12px;
    margin-top: 36px;
}

.framework-step {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.framework-step:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.framework-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgba(37, 99, 235, 0.1); /* Subtle accent background */
    color: var(--accent); /* Accent text */
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.8rem;
}

.framework-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.framework-step p {
    color: var(--text-muted);
    font-size: 0.78rem; /* Slightly reduced */
    line-height: 1.5;
}

.framework-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main); /* Increased contrast */
    font-size: 1.6rem; /* Increased size */
    opacity: 0.8; /* Increased opacity */
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.why-left p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.why-right-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.why-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-card:hover .why-card-icon {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.why-card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-card-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Case Studies */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.case-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.case-img {
    height: 160px;
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.case-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.75rem;
    border: 1px solid var(--primary);
}

.case-content {
    padding: 24px;
}

.case-client {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.case-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.case-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.case-metrics {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.case-metric {
    flex: 1;
}

.case-metric-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-mono);
}

.case-metric-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* Contact Section & Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1rem;
}

.contact-item-text h4 {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-item-text p {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0;
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    color: var(--text-main);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--border);
}

.form-message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.88rem;
}

.form-message-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.form-message-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Footer */
footer.site-footer {
    background: #09090b;
    border-top: 1px solid #27272a;
    padding: 32px 0 16px 0;
    color: #ffffff;
}

.site-footer .custom-logo {
    background-color: #ffffff;
    padding: 8px;
    border-radius: 6px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-brand {
    flex: 1.5;
    max-width: 400px;
}

.footer-brand .logo {
    color: #ffffff;
}

.footer-brand .logo-icon {
    background: #ffffff;
    color: #09090b;
}

.footer-brand p {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin-top: 8px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-nav-group {
    display: flex;
    gap: 80px;
}

.footer-nav h4 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #71717a;
    font-family: var(--font-mono);
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 6px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #a1a1aa;
    transition: color 0.15s ease-in-out;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}

.footer-nav ul li a:hover {
    color: #ffffff;
}

.footer-nav ul li a.active {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #27272a;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #71717a;
    font-size: 0.82rem;
}

.footer-bottom-info {
    display: flex;
    gap: 24px;
}

.footer-bottom-info a {
    color: #71717a;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.footer-bottom-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #18181b;
    border: 1px solid #27272a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.social-link:hover {
    background: #ffffff;
    color: #09090b;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        align-items: stretch;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }
    
    .footer-nav-group {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-bottom-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .footer-separator {
        display: none;
    }
    
    .framework-timeline {
        flex-direction: column;
        align-items: stretch;
    }
    
    .framework-separator {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .why-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-left h2 {
        font-size: 2.2rem;
    }
    
    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }
    .stat-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* About Page Founder Profile Styles */
.founder-profile {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .founder-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .founder-profile .profile-avatar {
        margin-bottom: 8px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #09090b;
    border: 1px solid #27272a;
    border-radius: 9999px;
    padding: 10px 18px;
    color: #fafafa;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
}
.floating-whatsapp-btn:hover {
    transform: translateY(-2px);
    background-color: #18181b;
    border-color: #3f3f46;
}
@media (max-width: 600px) {
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px;
        gap: 0;
    }
    .floating-whatsapp-btn span {
        display: none;
    }
}

/* Blog Article Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.modal-close-btn:hover {
    color: var(--text-main);
}
.modal-article-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 12px;
}
.modal-article-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 24px;
}
.modal-article-body {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}
.modal-article-body p {
    margin-bottom: 20px;
}
.modal-article-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 28px;
    margin-bottom: 12px;
}
.modal-article-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.modal-article-body li {
    margin-bottom: 8px;
}

/* Legal Pages Template Styling */
.legal-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 70vh;
}
.legal-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 12px;
}
.legal-page-meta {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}
.legal-page-body {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-main);
}
.legal-page-body p {
    margin-bottom: 20px;
    color: var(--text-muted);
}
.legal-page-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.legal-page-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.legal-page-body li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* Single Post Styling */
.blog-article-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 80vh;
}
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 30px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.back-to-blog:hover {
    color: var(--text-main);
    transform: translateX(-4px);
}
.blog-article-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.blog-article-title {
    font-size: 2.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 20px;
}
.blog-article-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 40px;
}
.blog-article-body {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-main);
}
.blog-article-body p {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.blog-article-body h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 48px;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.blog-article-body h2::before {
    content: '// ';
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-weight: 400;
}

@media (max-width: 768px) {
    .blog-article-content {
        padding: 40px 16px;
    }
    .blog-article-title {
        font-size: 2.2rem;
    }
}

/* Gallery Page Layout */
.gallery-section {
    padding: 140px 0 80px;
    border-bottom: 1px solid var(--border);
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.gallery-filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease-in-out;
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
    background: var(--text-main);
    color: var(--bg-main);
    border-color: var(--text-main);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.gallery-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}
.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    display: none;
}
.gallery-item:hover {
    transform: translateY(-4px);
    border-color: var(--text-main);
}
.gallery-img-wrapper {
    position: relative;
    padding-bottom: 66.6%; /* 3:2 ratio */
    overflow: hidden;
}
.gallery-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}
.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.05);
}
.gallery-info {
    padding: 20px;
}
.gallery-item-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.gallery-item-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}
.gallery-item-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}
.gallery-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(24, 24, 27, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
}
.lightbox-close:hover {
    background: #ffffff;
    color: #09090b;
    transform: scale(1.05);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(24, 24, 27, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    z-index: 100;
}
.lightbox-nav:hover {
    background: #ffffff;
    color: #09090b;
    transform: translateY(-50%) scale(1.05);
}
.lightbox-prev {
    left: 40px;
}
.lightbox-next {
    right: 40px;
}
.lightbox-img-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.lightbox-info {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}
.lightbox-info .gallery-item-badge {
    margin-bottom: 16px;
    border-color: rgba(255,255,255,0.2);
    color: #e4e4e7;
    background: rgba(255,255,255,0.05);
}
.lightbox-info .gallery-item-title {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.lightbox-info .gallery-item-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    .custom-logo {
        height: 56px;
    }
    .lightbox-content {
        padding: 80px 20px 40px 20px;
    }
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    .lightbox-img {
        max-width: 100%;
        max-height: 60vh;
    }
    .lightbox-info .gallery-item-title {
        font-size: 1.25rem;
    }
    .gallery-filters {
        gap: 8px;
    }
    .gallery-filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}
