/* ==========================================================================
   Base Design System - GrowMavix
   ========================================================================== */

:root {
    /* Colors */
    --color-primary-dark: #0a0f1a;
    --color-secondary-dark: #111827;
    --color-accent-green: #22c55e;
    --color-accent-hover: #16a34a;

    --color-text-main: #ffffff;
    --color-text-muted: #9ca3af;
    --color-text-dark: #1f2937;
    --color-text-dark-muted: #4b5563;

    --color-bg-light: #ffffff;
    --color-bg-light-alt: #f8fafc;

    --color-border-dark: rgba(255, 255, 255, 0.1);
    --color-border-light: #e5e7eb;

    /* Gradients */
    --gradient-green: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    --gradient-green-glow: 0 4px 20px rgba(34, 197, 94, 0.3);

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout */
    --container-width: 1200px;
    --container-padding: 2rem;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    --transition: all 0.3s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gradient {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-section {
    background-color: var(--color-primary-dark);
    color: var(--color-text-main);
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: var(--gradient-green-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-dark {
    border: 1px solid var(--color-border-light);
    color: var(--color-text-dark);
}

.btn-outline-dark:hover {
    background-color: var(--color-bg-light-alt);
    border-color: #d1d5db;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-dark);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.logo-text span {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    padding: 10rem 0 5rem;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.glow-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, rgba(10, 15, 26, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    color: var(--color-accent-green);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-primary-dark);
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.trust-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.trust-text .stars {
    color: #eab308;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Floating Laptop Visual */
.hero-visual {
    position: relative;
}

.laptop-mockup {
    position: relative;
    width: 100%;
}

.laptop-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
}

.floating-card {
    position: absolute;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    max-width: 250px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.fc-text strong {
    display: block;
    color: white;
    font-size: 0.9rem;
}

.fc-text span {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.fc-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.fc-2 {
    top: 40%;
    left: -15%;
    animation-delay: 1.5s;
}

.fc-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 3s;
}

.fc-4 {
    bottom: 10%;
    right: -15%;
    animation-delay: 4.5s;
}

/* ==========================================================================
   Trusted Section
   ========================================================================== */

.trusted-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

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

.trusted-label {
    color: var(--color-text-dark-muted);
    font-weight: 500;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: space-around;
}

.logo-gray {
    height: 30px;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.logo-gray:hover {
    filter: grayscale(0%) opacity(1);
}

/* ==========================================================================
   Sections Common
   ========================================================================== */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    color: var(--color-accent-green);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.services-header .sh-right {
    text-align: right;
}

.services-header .sh-right p {
    color: var(--color-text-dark-muted);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--color-text-dark-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.service-link i {
    transition: transform 0.2s;
}

.service-card:hover .service-link {
    color: var(--color-accent-green);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats-section {
    padding: 2rem 0;
}

.stats-banner {
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    color: var(--color-accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-accent-green);
    line-height: 1.1;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */

.portfolio-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.portfolio-header {
    align-items: flex-start;
}

.portfolio-header .sh-left {
    flex: 0 0 35%;
}

.portfolio-header .sh-left p {
    color: var(--color-text-dark-muted);
    margin-top: 1rem;
}

.portfolio-grid {
    flex: 0 0 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.pc-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--color-bg-light-alt);
}

.pc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .pc-image img {
    transform: scale(1.05);
}

.pc-content {
    padding: 1.5rem;
}

.pc-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pc-category {
    color: var(--color-text-dark-muted);
    font-size: 0.85rem;
}

.portfolio-controls {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-light-alt);
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--color-accent-green);
    color: white;
    border-color: var(--color-accent-green);
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process-section {
    padding: 6rem 0;
    background: var(--color-bg-light-alt);
}

.process-layout {
    display: flex;
    gap: 4rem;
}

.process-header {
    flex: 0 0 30%;
}

.process-steps {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--color-border-light);
    z-index: 1;
    border-style: dashed;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--color-accent-green);
    color: var(--color-accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 5px var(--color-bg-light-alt);
}

.step-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent-green);
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--color-text-dark-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Bottom Sections (Testimonials + CTA)
   ========================================================================== */

.bottom-sections {
    padding: 6rem 0;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

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

.testimonial-card {
    background: var(--color-bg-light-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.quote {
    color: var(--color-text-dark-muted);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.client-details strong {
    display: block;
    color: var(--color-text-dark);
}

.client-details span {
    color: var(--color-text-dark-muted);
    font-size: 0.85rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border-light);
    cursor: pointer;
}

.dot.active {
    background: var(--color-accent-green);
}

/* CTA Banner */
.cta-banner {
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, rgba(10, 15, 26, 0) 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.cta-visual {
    position: relative;
    z-index: 2;
    max-width: 350px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 80%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-links a:hover {
    background: var(--color-accent-green);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-accent-green);
}

.footer-contact li {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--color-accent-green);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-legal .sep {
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    color: white;
}

/* ==========================================================================
   Mobile Menu Styles
   ========================================================================== */

.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    animation: mobileMenuIn 0.35s ease;
}

@keyframes mobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.nav-menu.mobile-open .nav-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.nav-menu.mobile-open .nav-link:hover,
.nav-menu.mobile-open .nav-link.active {
    color: #fff;
    background: rgba(34, 197, 94, 0.15);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-desc {
        margin: 0 auto 2.5rem;
    }

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

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

    .floating-card {
        transform: scale(0.85);
    }

    .portfolio-header {
        flex-direction: column;
        gap: 2rem;
    }

    .portfolio-header .sh-left {
        flex: none;
        width: 100%;
    }

    .portfolio-grid {
        width: 100%;
        flex: none;
    }

    .process-layout {
        flex-direction: column;
    }

    .process-header {
        flex: none;
        width: 100%;
    }

    .process-line {
        display: none;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .bfc-image {
        min-height: 260px;
    }

    .bfc-content {
        padding: 2rem;
    }

    .bfc-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }

    /* --- Navbar & Mobile Menu --- */
    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: flex;
        align-items: center;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1.5rem;
        z-index: 10001;
        position: relative;
    }

    /* Close button inside the mobile menu overlay */
    .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10002;
        transition: all 0.3s ease;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .navbar {
        padding: 0.75rem 0;
    }

    /* --- Hero Section --- */
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-visual {
        max-width: 90%;
        margin: 0 auto;
    }

    .floating-card {
        display: none;
    }

    /* --- Section Common --- */
    .section-title {
        font-size: 1.75rem;
    }

    .section-badge {
        font-size: 0.78rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    /* --- Services --- */
    .services-section {
        padding: 4rem 0;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .services-header .sh-right {
        text-align: left;
    }

    .services-header .sh-right br {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    /* --- Stats --- */
    .stats-banner {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stat-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* --- Portfolio --- */
    .portfolio-section {
        padding: 4rem 0;
    }

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

    .portfolio-controls {
        justify-content: center;
    }

    /* --- Process --- */
    .process-section {
        padding: 4rem 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* --- Bottom Sections --- */
    .bottom-sections {
        padding: 4rem 0;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-visual {
        max-width: 250px;
        margin: 0 auto;
    }

    .cta-visual img {
        transform: rotate(0deg) !important;
    }

    /* --- Footer --- */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    /* --- Page Hero (About, Portfolio, Blog) --- */
    .page-hero {
        padding: 7rem 0 2.5rem;
    }

    .page-hero .hero-title {
        font-size: 1.8rem;
    }

    .page-hero .hero-desc {
        font-size: 0.92rem;
    }

    /* --- About Page --- */
    .about-story-section,
    .about-mission-section,
    .about-whyus-section,
    .about-cta-section {
        padding: 3.5rem 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .timeline-line {
        left: 20px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.75rem;
    }

    .about-cta-card {
        padding: 2.5rem 1.5rem;
    }

    /* --- Blog Featured --- */
    .blog-featured-section {
        padding: 2rem 0;
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bfc-image {
        min-height: 200px;
    }

    .bfc-content {
        padding: 1.5rem;
    }

    .bfc-title {
        font-size: 1.25rem;
    }

    .bfc-desc {
        font-size: 0.88rem;
    }

    /* --- Blog Grid --- */
    .blog-grid-section {
        padding: 3.5rem 0;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    /* --- Portfolio Page Grid --- */
    .portfolio-page-section {
        padding: 4rem 0;
    }

    .portfolio-page-grid {
        grid-template-columns: 1fr;
    }

    /* --- Newsletter --- */
    .newsletter-section {
        padding: 4rem 0;
    }

    .newsletter-card {
        padding: 2.5rem 1.5rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

    .newsletter-input-group .btn {
        width: 100%;
        border-radius: var(--radius-full);
    }

    /* --- Case Study --- */
    .case-study-section {
        padding: 4rem 0;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    .hero {
        padding: 6.5rem 0 2.5rem;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

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

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.88rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.82rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.92rem;
    }

    .page-hero {
        padding: 6rem 0 2rem;
    }

    .page-hero .hero-title {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-text span {
        font-size: 0.55rem;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 1.25rem;
    }

    .bfc-title {
        font-size: 1.1rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-content {
        padding: 1.25rem;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .quote {
        font-size: 0.92rem;
    }

    .story-stat strong {
        font-size: 1.4rem;
    }

    .whyus-card {
        padding: 1.5rem;
    }

    .nav-menu.mobile-open .nav-link {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }

    .about-cta-card h2 {
        font-size: 1.4rem;
    }

    .about-cta-card p {
        font-size: 0.9rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    .pstats-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .cs-metric {
        font-size: 2.25rem;
    }

    .case-study-card {
        padding: 1.75rem;
    }
}

/* ========================================
   LEAD GENERATION MODAL
======================================== */
.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lead-modal.active {
    opacity: 1;
    visibility: visible;
}

.lead-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lead-modal-container {
    position: relative;
    width: 90%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(99, 102, 241, 0.15);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lead-modal.active .lead-modal-container {
    transform: translateY(0) scale(1);
}

/* Custom Scrollbar for modal */
.lead-modal-container::-webkit-scrollbar {
    width: 6px;
}

.lead-modal-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.lead-modal-container::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.4);
    border-radius: 3px;
}

.lead-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lead-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

/* Modal Header */
.lead-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lead-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.lead-modal-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.lead-modal-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto;
}

/* Lead Form */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lead-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.lead-form label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lead-form label .required {
    color: #f87171;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.lead-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff80' viewBox='0 0 256 256'%3E%3Cpath d='M128,188a12,12,0,0,1-8.49-3.51l-80-80a12,12,0,0,1,17-17L128,159,199.51,87.51a12,12,0,0,1,17,17l-80,80A12,12,0,0,1,128,188Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.lead-form select option {
    background: #1a1a2e;
    color: #fff;
}

.lead-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Submit Button */
.lead-submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.lead-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45);
}

.lead-submit-btn .btn-loader i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Thank You State */
.lead-thankyou {
    text-align: center;
    padding: 2rem 1rem;
}

.thankyou-icon {
    font-size: 4rem;
    color: #34d399;
    margin-bottom: 1rem;
    animation: thankyouPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes thankyouPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lead-thankyou h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.thankyou-main {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.thankyou-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.thankyou-next {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.thankyou-next p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.thankyou-next ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thankyou-next li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.thankyou-next li i {
    color: #34d399;
    font-size: 1rem;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
======================================== */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%) translateX(-12px) translateY(-50%);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.12);
    }
}

.whatsapp-tooltip {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(-100%) translateX(-12px) translateY(-50%);
    background: #1a1a2e;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #1a1a2e;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ========================================
   MODAL RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .lead-modal-container {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .lead-modal-header h2 {
        font-size: 1.3rem;
    }

    .whatsapp-fab {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

/* ========================================
   PAGE HERO (Shared for About, Portfolio, Blog)
======================================== */
.page-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-accent-green);
    margin-bottom: 1rem;
}

.page-hero .hero-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.page-hero .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 0.75rem;
}

/* ========================================
   ABOUT PAGE — STORY SECTION
======================================== */
.about-story-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.story-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-green);
    border-radius: 16px;
    z-index: -1;
}

.story-content .section-title {
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--color-text-dark-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
}

.story-stat {
    text-align: center;
}

.story-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent-green);
}

.story-stat span {
    font-size: 0.8rem;
    color: var(--color-text-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   ABOUT PAGE — MISSION SECTION
======================================== */
.about-mission-section {
    padding: 6rem 0;
}

.mission-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: var(--gradient-green-glow);
}

.mission-card .section-title {
    color: #fff;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mission-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT PAGE — WHY CHOOSE US
======================================== */
.about-whyus-section {
    padding: 6rem 0;
    background: var(--color-bg-light-alt);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.whyus-card {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.whyus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent-green);
}

.whyus-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-accent-green);
    margin-bottom: 1rem;
}

.whyus-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

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

/* ========================================
   ABOUT PAGE — PROCESS TIMELINE
======================================== */
.about-process-section {
    padding: 6rem 0;
}

.about-process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent-green), rgba(34, 197, 94, 0.1));
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--color-accent-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(34, 197, 94, 0.2);
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-accent-green);
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ========================================
   ABOUT PAGE — CTA
======================================== */
.about-cta-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.about-cta-card {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gradient-green);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.25);
}

.about-cta-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.about-cta-card .text-gradient {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.about-cta-card .btn-primary {
    background: #fff;
    color: var(--color-accent-green);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.about-cta-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}



/* ==========================================================================
   PORTFOLIO PAGE — STATS STRIP
   ========================================================================== */
.portfolio-stats-strip {
    padding: 0;
    background: var(--color-bg-light);
}

.pstats-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--color-bg-light-alt);
    border-bottom: 1px solid var(--color-border-light);
}

.pstat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pstat-item i {
    font-size: 1.5rem;
    color: var(--color-accent-green);
}

.pstat-item strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.pstat-item span {
    color: var(--color-text-dark-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   PORTFOLIO PAGE — FILTER TABS
   ========================================================================== */
.portfolio-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-tab {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark-muted);
    background: var(--color-bg-light-alt);
    border: 1px solid var(--color-border-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    color: var(--color-text-dark);
    border-color: #d1d5db;
}

.filter-tab.active {
    background: var(--gradient-green);
    color: white;
    border-color: var(--color-accent-green);
    box-shadow: var(--gradient-green-glow);
}

/* ==========================================================================
   PORTFOLIO PAGE — PROJECT CARDS GRID
   ========================================================================== */
.portfolio-page-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.pf-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    cursor: pointer;
}

.pf-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    border-color: rgba(34, 197, 94, 0.3);
}

.pf-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.pf-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pf-card:hover .pf-card-image img {
    transform: scale(1.08);
}

.pf-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 26, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pf-card:hover .pf-card-overlay {
    opacity: 1;
}

.pf-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--gradient-green);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--gradient-green-glow);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.pf-card:hover .pf-view-btn {
    transform: translateY(0);
}

.pf-card-content {
    padding: 1.5rem;
}

.pf-card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-accent-green);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.pf-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

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

/* Hide filtered-out cards */
.pf-card.hidden {
    display: none;
}

/* ==========================================================================
   PORTFOLIO PAGE — CASE STUDY SECTION
   ========================================================================== */
.case-study-section {
    padding: 6rem 0;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.case-study-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-4px);
}

.cs-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent-green);
    margin: 0 auto 1.5rem;
}

.cs-metric {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.cs-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cs-client {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-client img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.cs-client strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
}

.cs-client span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* ==========================================================================
   BLOG PAGE — FEATURED POST
   ========================================================================== */
.blog-featured-section {
    padding: 4rem 0;
    background: var(--color-bg-light);
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--color-bg-light-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bfc-image {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.bfc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bfc-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--gradient-green);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--gradient-green-glow);
}

.bfc-content {
    padding: 2.5rem 2.5rem 2.5rem 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-accent-green);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-date,
.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-text-dark-muted);
    font-size: 0.8rem;
}

.bfc-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.bfc-desc {
    color: var(--color-text-dark-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ==========================================================================
   BLOG PAGE — FILTER TABS
   ========================================================================== */
.blog-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.blog-tab {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark-muted);
    background: var(--color-bg-light-alt);
    border: 1px solid var(--color-border-light);
    cursor: pointer;
    transition: var(--transition);
}

.blog-tab:hover {
    color: var(--color-text-dark);
    border-color: #d1d5db;
}

.blog-tab.active {
    background: var(--gradient-green);
    color: white;
    border-color: var(--color-accent-green);
    box-shadow: var(--gradient-green-glow);
}

/* ==========================================================================
   BLOG PAGE — BLOG CARDS GRID
   ========================================================================== */
.blog-grid-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.25);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(8px);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--color-text-dark-muted);
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    color: var(--color-text-dark-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-accent-green);
    transition: var(--transition);
}

.blog-read-more i {
    transition: transform 0.2s;
}

.blog-read-more:hover {
    color: var(--color-accent-hover);
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* Hide filtered-out blog cards */
.blog-card.hidden {
    display: none;
}

/* ==========================================================================
   BLOG PAGE — NEWSLETTER SECTION
   ========================================================================== */
.newsletter-section {
    padding: 6rem 0;
}

.newsletter-card {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--gradient-green-glow);
}

.newsletter-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.newsletter-content>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.newsletter-form {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    padding: 0.35rem;
    transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--color-accent-green);
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input-group .btn {
    flex-shrink: 0;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
}

.newsletter-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
}

.newsletter-note i {
    color: var(--color-accent-green);
}




/* ==========================================================================
   Blog Card Link (make entire card clickable)
   ========================================================================== */
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card-link:hover .blog-card-title {
    color: var(--color-accent-green);
}

.blog-card-link:hover .blog-read-more {
    color: var(--color-accent-green);
    gap: 0.5rem;
}

/* ==========================================================================
   Blog Article Page Styles
   ========================================================================== */

/* --- Article Hero --- */
.article-hero {
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.article-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.article-back-link:hover {
    gap: 0.75rem;
    opacity: 0.85;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.article-hero-meta .blog-tag {
    background: var(--gradient-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-hero-meta .blog-date,
.article-hero-meta .blog-read {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.article-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-hero-excerpt {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* --- Article Body Section --- */
.article-body-section {
    padding: 3.5rem 0 4rem;
    background: var(--color-bg-light);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* --- Article Content --- */
.article-content {
    min-width: 0;
}

.article-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* --- Article Body Typography --- */
.article-body-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.article-body-content h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 2.25rem 0 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.article-body-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 1.75rem 0 0.6rem;
}

.article-body-content p {
    margin-bottom: 1.15rem;
    color: var(--color-text-dark-muted);
}

.article-body-content ul,
.article-body-content ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.75rem;
}

.article-body-content li {
    margin-bottom: 0.6rem;
    color: var(--color-text-dark-muted);
    line-height: 1.7;
}

.article-body-content li strong {
    color: var(--color-text-dark);
}

.article-body-content strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

.article-body-content em {
    color: var(--color-text-dark-muted);
    font-style: italic;
}

.article-body-content blockquote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg-light-alt);
    border-left: 4px solid var(--color-accent-green);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-text-dark-muted);
}

/* --- Article Share --- */
.article-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-share-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-share-label i {
    font-size: 1.2rem;
    color: var(--color-accent-green);
}

.article-share-buttons {
    display: flex;
    gap: 0.6rem;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border: 2px solid var(--color-border-light);
    background: var(--color-bg-light);
    color: var(--color-text-dark-muted);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.share-btn:hover {
    border-color: var(--color-accent-green);
    color: var(--color-accent-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.share-btn.twitter:hover {
    color: #1DA1F2;
    border-color: #1DA1F2;
}

.share-btn.facebook:hover {
    color: #4267B2;
    border-color: #4267B2;
}

.share-btn.linkedin:hover {
    color: #0077b5;
    border-color: #0077b5;
}

/* --- Article Sidebar --- */
.article-sidebar {
    position: sticky;
    top: 6rem;
}

.sidebar-widget {
    background: var(--color-bg-light-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-border-light);
}

.sidebar-widget-title i {
    color: var(--color-accent-green);
    font-size: 1.2rem;
}

.sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-post {
    display: flex;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    padding: 0.6rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.sidebar-post:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.sidebar-post:hover .sidebar-post-title {
    color: var(--color-accent-green);
}

.sidebar-post-image {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-info {
    flex: 1;
    min-width: 0;
}

.sidebar-post-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent-green);
    margin-bottom: 0.2rem;
    display: inline-block;
}

.sidebar-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.35;
    margin: 0;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post-date {
    font-size: 0.72rem;
    color: var(--color-text-dark-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.25rem;
}

/* --- Sidebar CTA Widget --- */
.sidebar-cta {
    background: var(--color-primary-dark);
    border: 1px solid var(--color-border-dark);
    text-align: center;
    padding: 2rem 1.5rem;
}

.sidebar-cta-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: #fff;
}

.sidebar-cta h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.sidebar-cta p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* --- Article Page Responsive --- */
@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .article-hero {
        padding: 6rem 0 2rem;
    }

    .article-hero-title {
        font-size: 1.5rem;
    }

    .article-hero-excerpt {
        font-size: 0.95rem;
    }

    .article-body-content {
        font-size: 0.95rem;
    }

    .article-body-content h2 {
        font-size: 1.3rem;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}