/* Variables */
:root {
    /* Colors */
    --bg-dark: #020B14;
    /* Darker, deeper navy */
    --bg-darker: #01060B;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(2, 12, 22, 0.8);

    --text-main: #F1F5F9;
    --text-muted: #94A3B8;

    --accent-blue: #00A8E1;
    --accent-hover: #0090C1;
    --accent-glow: rgba(0, 168, 225, 0.3);

    --border-light: rgba(255, 255, 255, 0.06);

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

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --announcement-height: 40px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* Reset & Global */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

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

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: var(--announcement-height);
    background-color: var(--accent-blue);
    color: #fff;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 24px;
    line-height: 1.4;
}

.announcement-content {
    text-align: center;
    max-width: 100%;
}

.leak-sales-highlight {
    position: relative;
    display: inline-block;
    padding: 0 6px;
    font-weight: 700;
    margin: 0 4px;
    white-space: nowrap;
}

/* Pencil circle effect */
.leak-sales-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -6px;
    right: -6px;
    bottom: -2px;
    border: 2px solid #000;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    opacity: 0;
    transform: rotate(-2deg);
    animation: pencil-draw 3s infinite;
    pointer-events: none;
}

@keyframes pencil-draw {

    0%,
    20% {
        opacity: 0;
        transform: scale(0.9) rotate(-2deg);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }

    25% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    35% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    45%,
    80% {
        opacity: 1;
        transform: scale(1) rotate(-1deg);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    90% {
        opacity: 0;
        transform: scale(1.05) rotate(-1deg);
    }

    100% {
        opacity: 0;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.8rem;
        padding: 10px 16px;
    }

    :root {
        --announcement-height: 50px;
        /* Adjusted for wrapping text */
    }
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-whatsapp {
    gap: 8px;
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-primary {
    background-color: var(--accent-blue);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: #293C4C;
    border: 1px solid var(--border-light);
    color: #fff;
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header */
.header {
    position: fixed;
    top: var(--announcement-height);
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color var(--transition-medium), backdrop-filter var(--transition-medium);
}

.header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    z-index: 1002;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    position: relative;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transform: translateY(9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: calc(var(--header-height) + var(--announcement-height));
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height) - var(--announcement-height));
    background: rgba(2, 12, 22, 0.95);
    backdrop-filter: blur(12px);
    z-index: 999;
    padding-top: 40px;
    padding-left: 24px;
    padding-right: 24px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-contact-info {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-contact-info .contact-item {
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.mobile-contact-info .contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.whatsapp-link {
    background: #25D366 !important;
    color: #fff !important;
    font-weight: 600;
}

/* Show close button on mobile if needed, though hamburger transforms */
@media (max-width: 968px) {

    /* If we want an extra close button inside the menu */
    .menu-close-btn {
        display: block;
    }
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.mobile-nav-link:hover {
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + var(--announcement-height) + 60px);
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
}

.trusted-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    transition: all var(--transition-fast);
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    height: 1.2em;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: all var(--transition-fast);
}

.brand-item:hover .brand-icon {
    filter: none;
    opacity: 1;
}

/* Video Section */
.video-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.video-constraint {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--accent-blue), 0 0 20px var(--accent-glow);
    border: none;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.brand-item:hover {
    opacity: 1;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .brand-grid {
        gap: 24px;
    }

    .brand-item {
        font-size: 1.25rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    color: #22C55E;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #fff;
}

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

.hero-icon {
    height: 0.9em;
    width: auto;
    vertical-align: -0.1em;
    margin-left: 8px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* Hero Visual / Dashboard */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    width: 100%;
    background: #0B1E33;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.window-controls span:nth-child(1) {
    background: #FF5F56;
}

.window-controls span:nth-child(2) {
    background: #FFBD2E;
}

.window-controls span:nth-child(3) {
    background: #27C93F;
}

.window-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.metric-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 500;
}

.metric-trend.positive {
    color: #22C55E;
}

.chart-area {
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 0 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent-blue) 0%, rgba(0, 168, 225, 0.1) 100%);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    transition: height 1s ease;
}

.floating-alert {
    position: absolute;
    top: 50%;
    right: -40px;
    background: #11253E;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.alert-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.alert-content {
    display: flex;
    flex-direction: column;
}

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

.alert-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Background Glows */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 225, 0.15) 0%, transparent 70%);
}

.glow-2 {
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 225, 0.1) 0%, transparent 70%);
}

@keyframes float {

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

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

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-title {
        font-size: 1.75rem;
        /* Smaller font for mobile */
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 32px;
        max-width: 100%;
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        /* Stack buttons */
        gap: 16px;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        /* Full width buttons */
        padding: 16px;
        /* Larger touch target */
    }

    .hero-stats {
        justify-content: center;
        margin-top: 32px;
        gap: 24px;
    }

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

    .hero-visual {
        padding: 0 16px;
        margin-top: 20px;
    }

    .dashboard-card {
        padding: 16px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        /* Stack dashboard items */
    }

    .floating-alert {
        right: 50%;
        transform: translateX(50%);
        /* Center alert */
        top: auto;
        bottom: -20px;
        width: 90%;
        justify-content: center;
        animation: float-mobile 6s ease-in-out infinite;
    }

    @keyframes float-mobile {

        0%,
        100% {
            transform: translate(50%, 0);
        }

        50% {
            transform: translate(50%, -10px);
        }
    }

    .nav {
        display: none;
    }

    .desktop-only {
        display: none;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .stat-item {
        min-width: 120px;
    }
}

/* Sections Global */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.problem-heading {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-right: auto;
}

@media (max-width: 640px) {
    .problem-heading {
        font-size: 1.5rem;
    }
}

.problem-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.problem-card {
    padding: 32px;
    transition: transform var(--transition-medium);
}

.problem-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.solution-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition-medium);
}

.solution-card:hover {
    border-color: var(--accent-blue);
}

.solution-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.solution-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
    transition: all var(--transition-medium);
    cursor: default;
}

.service-card:hover {
    background: linear-gradient(145deg, rgba(0, 168, 225, 0.1) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(0, 168, 225, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}



/* Audit Section */
.audit-section {
    position: relative;
    overflow: hidden;
}

.audit-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.audit-form {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,

.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    resize: vertical;
}

.form-group input:focus,

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 168, 225, 0.05);
}

.full-width {
    width: 100%;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--accent-blue);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

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

.testimonial-card {
    background: var(--bg-darker);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

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

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 40px;
}

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

.footer-desc {
    margin-top: 0;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

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

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.footer-contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col .btn-whatsapp {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.contact-item:hover {
    color: var(--accent-blue);
}

.contact-item svg {
    stroke: var(--accent-blue);
}

/* Copy Tooltip */
.contact-item::after {
    content: 'Copied!';
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%) translateY(5px);
    background: var(--accent-blue);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.contact-item.copied::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-links a {
    color: var(--text-muted);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
}

.social-links a:hover {
    color: var(--accent-blue);
    background: rgba(0, 168, 225, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

@media (max-width: 768px) {


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.problem-card:nth-child(2) {
    transition-delay: 0.1s;
}

.problem-card:nth-child(3) {
    transition-delay: 0.2s;
}

.problem-card:nth-child(4) {
    transition-delay: 0.3s;
}

.problem-card:nth-child(5) {
    transition-delay: 0.4s;
}

/* Leaking Profit Section */
.leaking-profit-section {
    padding: 100px 0;
}

.leaking-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.leaking-subtitle {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.leaking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.leaking-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* Dark mode adjustment for the card if global theme is dark */
body .leaking-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.leaking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-blue);
}

.leaking-icon {
    color: var(--accent-blue);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.leaking-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.leaking-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.leaking-link {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.leaking-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .leaking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .leaking-grid {
        grid-template-columns: 1fr;
    }

    .leaking-heading {
        font-size: 1.5rem;
    }
}

.service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card:nth-child(4) {
    transition-delay: 0.3s;
}

.service-card:nth-child(5) {
    transition-delay: 0.4s;
}

.service-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* Process Section Redesign */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-content {
    text-align: left;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.process-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-list-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 168, 225, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.process-list-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.process-list-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Right Column Grid */
.process-visual {
    position: relative;
}

.process-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.process-card {
    background: #0B1E33;
    /* Dark card background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.process-card-icon {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.process-card:hover .process-card-icon {
    color: var(--accent-blue);
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

/* Staggered effect for visual interest */
.process-card:nth-child(2),
.process-card:nth-child(4) {
    transform: translateY(24px);
}

.process-card:nth-child(2):hover,
.process-card:nth-child(4):hover {
    transform: translateY(19px);
    /* Maintain hover lift relative to offset */
}

/* Responsive Adjustments */
/* Responsive Adjustments */
@media (max-width: 1024px) {
    .process-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Flatten structure to allow reordering */
    .process-content,
    .process-list,
    .process-visual,
    .process-card-grid {
        display: contents;
    }

    /* Reorder items: Header -> Text 1 -> Image 1 -> Text 2 -> Image 2... */

    /* Header (Title & Desc) */
    .process-title {
        order: 1;
        margin-bottom: 24px;
        text-align: center;
        font-size: 1.5rem;
    }

    .process-description {
        order: 2;
        margin: 0 auto 40px;
        text-align: center;
    }

    /* Item 1 */
    .process-list .process-list-item:nth-child(1) {
        order: 3;
    }

    .process-card-grid .process-card:nth-child(1) {
        order: 4;
        margin-bottom: 40px;
    }

    /* Item 2 */
    .process-list .process-list-item:nth-child(2) {
        order: 5;
    }

    .process-card-grid .process-card:nth-child(2) {
        order: 6;
        margin-bottom: 40px;
    }

    /* Item 3 */
    .process-list .process-list-item:nth-child(3) {
        order: 7;
    }

    .process-card-grid .process-card:nth-child(3) {
        order: 8;
        margin-bottom: 40px;
    }

    /* Item 4 */
    .process-list .process-list-item:nth-child(4) {
        order: 9;
    }

    .process-card-grid .process-card:nth-child(4) {
        order: 10;
        margin-bottom: 0;
    }

    /* Styling adjustments for the flattened items */
    .process-list-item {
        max-width: 600px;
        margin: 0 auto 16px;
        /* Space between text and its image */
        width: 100%;
    }

    .process-card {
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        /* Reset transform effects that might conflict */
        transform: none !important;
    }

    /* Adjust hover to simple lift */
    .process-card:hover {
        transform: translateY(-5px) !important;
    }
}

@media (max-width: 640px) {
    /* No additional grid template columns needed as we are using flex column */
}

/* Process Card Image Variant */
.process-card-image {
    padding: 0;
    overflow: visible;
    /* Allow badge to sit on top */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.process-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    border-radius: 16px;
    /* Match card border radius */
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.process-card-image:hover .process-card-img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Badge Style for All Process Cards */
/* Adjust content padding for non-image cards */
.process-card:not(.process-card-image) {
    padding-top: 40px;
    /* Make room for content below badge */
}

/* Specific adjustment for image card badge to ensure it's visible and styled correctly */
.process-card-image h3 {
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0 16px;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: none;
    margin: 0;
    transform: none;
}

/* Adjust padding for non-image cards content */
.process-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center icon vertically in remaining space */
}

/* Performance Tracking Flow Image */
.process-card-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Remove padding */
    margin: 0;
    /* Remove margin */
    overflow: hidden;
    /* Ensure image doesn't overflow rounded corners */
    border-radius: 0 0 16px 16px;
    /* Match card border radius at bottom */
}

.process-flow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the box */
    object-position: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Mobile Responsiveness for Process Section */
@media (max-width: 1024px) {
    .process-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .process-description {
        margin-left: auto;
        margin-right: auto;
    }

    .process-list {
        align-items: center;
    }

    .process-list-item {
        text-align: left;
    }

    .process-card-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .process-card-grid {
        grid-template-columns: 1fr;
        /* Stack cards on very small screens */
        gap: 20px;
    }

    .process-card {
        aspect-ratio: auto;
        /* Allow height to adjust */
        min-height: 250px;
        /* Ensure enough height for image */
    }

    /* Remove staggered effect on mobile */
    .process-card:nth-child(2),
    .process-card:nth-child(4) {
        transform: none;
    }

    .process-card:nth-child(2):hover,
    .process-card:nth-child(4):hover {
        transform: translateY(-5px);
    }
}

/* FAQ Section */
.faq-section {
    background: var(--bg-darker);
    /* Slightly darker background to separate sections */
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: var(--accent-blue);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: transform var(--transition-fast);
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
}

/* Profit Engine Section */
.profit-engine-section {
    padding: 100px 0;
    background: var(--bg-dark);
    /* Match main background or use --bg-darker for contrast if needed */
}

.profit-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.profit-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.profit-footer-text {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .profit-title {
        font-size: 1.5rem;
    }

    .profit-subtitle {
        font-size: 1.1rem;
    }
}

/* Updated Service Card Styling */
.service-icon-img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-subheadline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-checklist li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%2300A8E1'/%3E%3Cpath d='M10 17l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z' fill='white'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Meet Imran Farabi Section */
.meet-imran-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.meet-imran-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.meet-imran-image-wrapper {
    position: relative;
    padding: 10px;
}

.meet-imran-image-border {
    position: relative;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #00A8E1, #9F55FF);
    box-shadow: 0 0 40px rgba(0, 168, 225, 0.15);
}

.meet-imran-img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.meet-imran-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.meet-imran-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 5px;
    line-height: 1.1;
}

.meet-imran-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.meet-imran-text p:last-child {
    margin-bottom: 0;
}

.meet-imran-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.meet-feature {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meet-feature-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meet-feature-icon {
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meet-feature-icon svg {
    width: 20px;
    height: 20px;
}

.meet-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.meet-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .meet-imran-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .meet-imran-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .meet-imran-title {
        text-align: center;
        font-size: 1.5rem;
    }

    .meet-imran-features {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .meet-imran-section {
        padding: 60px 0;
    }

    .meet-imran-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .meet-feature {
        flex-direction: row;
        align-items: flex-start;
    }

    .meet-feature-header {
        min-width: 140px;
        flex-shrink: 0;
    }

    .meet-feature {
        flex-direction: column;
        gap: 20px;
    }

    .meet-feature-header {
        margin-bottom: 4px;
    }
}

/* Testimonials Section Redesign */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    /* Align to top */
}

.testimonials-content {
    max-width: 500px;
    padding-top: 20px;
    /* Slight offset if needed */
}

.testimonials-content .section-title {
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonials-content .section-subtitle {
    margin-bottom: 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.testimonial-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
    color: #fff;
}

/* Carousel Wrapper */
.testimonial-carousel-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    /* Push card down relative to text */
}

/* Navigation Arrows */
.testimonial-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 10px;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Featured Testimonial Card */
.testimonial-featured-card {
    background-color: #111827;
    /* Darker card bg */
    border-radius: 24px;
    padding: 60px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 400px;
    /* Prevent height jump */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.quote-icon {
    margin-bottom: 30px;
    color: #374151;
    /* Dark grey for quote */
}

.quote-icon svg {
    width: 60px;
    height: 60px;
}

.featured-review-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 400;
}

.featured-client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.client-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar-img img,
.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-meta h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

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

.client-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #F59E0B;
    /* Amber/Gold */
    letter-spacing: 2px;
}

.rating-val {
    font-weight: 600;
    color: var(--text-main);
}

/* Responsive Testimonials */
@media (max-width: 992px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testimonials-content {
        max-width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .testimonial-carousel-wrapper {
        margin-top: 0;
    }

    .testimonial-nav {
        justify-content: center;
    }

    .testimonials-content .section-title,
    .testimonials-content .section-subtitle {
        text-align: center;
    }

    .testimonial-actions {
        justify-content: center;
    }

    .testimonial-featured-card {
        padding: 40px;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .testimonial-featured-card {
        padding: 30px;
    }

    .featured-review-text {
        font-size: 1.1rem;
    }

    .featured-client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonial-actions {
        flex-direction: column;
        width: 100%;
    }

    .testimonial-actions .btn {
        width: 100%;
    }
}

/* Pagination Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--accent-blue);
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Onboarding Form Section */
.onboarding-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.onboarding-container {
    max-width: 900px;
    margin: 60px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.onboarding-form {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form-section-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],

.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

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





/* Form Actions */
.form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-submit {
    background-color: #00A8E1;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    min-width: 200px;
}

.btn-submit:hover {
    background-color: #0090C1;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 168, 225, 0.2);
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

/* Responsive Onboarding */
@media (max-width: 768px) {
    .onboarding-container {
        padding: 30px 20px;
        margin-top: 40px;
    }

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

    .checkbox-group,
    .radio-group {
        grid-template-columns: 1fr;
    }

    .form-success {
        padding: 24px;
    }

    .form-actions {
        flex-direction: column;
        gap: 16px;
    }

    .btn-submit,
    .btn-whatsapp {
        width: 100%;
    }
}

/* Why Hire Me Section */
/* Why Hire Me Section (Bento Grid) */
.why-hire-section {
    background-color: transparent;
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.why-hire-section .section-title {
    color: var(--text-main);
    margin-bottom: 40px;
    text-align: left;
    max-width: 800px;
}

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

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bento-col-right {
    display: flex;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: rgba(0, 168, 225, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Card Variations */
.card-small {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-wide {
    display: flex;
    align-items: center;
    gap: 30px;
}

.card-wide .benefit-icon {
    margin-bottom: 0;
    width: 60px;
    height: 60px;
}

.card-tall {
    background: #002B4D;
    /* Dark Blue Accent */
    border-color: rgba(0, 168, 225, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-tall:hover {
    background: #003366;
}

.card-tall .benefit-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.card-tall h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-tall .benefit-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-col-right {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .bento-row-top {
        grid-template-columns: 1fr;
    }

    .card-wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .why-hire-section {
        padding: 60px 0;
    }

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

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 100px 0;
    background-color: transparent;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

@media (max-width: 768px) {
    .video-testimonials-section {
        padding: 60px 0;
    }

    .video-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 20px;
        padding-top: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-left: 12.5%;
        padding-right: 12.5%;
        box-sizing: border-box;
        /* Firefox */
    }

    .video-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .video-card {
        min-width: 260px;
        width: 75%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .video-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .video-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .video-dot.active {
        background: var(--accent-blue);
        width: 30px;
        border-radius: 5px;
    }
}

/* Hide pagination on desktop */
@media (min-width: 769px) {
    .video-pagination {
        display: none;
    }
}

/* Case Study Section */
.case-studies-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.case-header-content {
    max-width: 600px;
}

.case-cta-link {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.case-cta-link:hover {
    color: var(--accent-hover);
    transform: translateX(4px);
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.case-card:hover {
    border-color: rgba(0, 168, 225, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.case-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #0f172a;
    /* Dark placeholder background */
    overflow: hidden;
}

.case-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0f172a, #1e293b);
}

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

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

.case-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.case-badge.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.case-badge.success::before {
    content: '↗';
    font-weight: bold;
}

.case-content {
    padding: 32px;
}

.case-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.case-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--accent-blue);
    font-weight: 500;
    border: 1px solid rgba(0, 168, 225, 0.1);
}

.case-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 700;
}

.case-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.case-desc-box {
    border-left: 3px solid var(--border-light);
    padding-left: 16px;
    margin-bottom: 24px;
}

.case-desc-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.case-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.case-link:hover {
    color: var(--accent-blue);
    gap: 10px;
}

@media (max-width: 768px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .case-image-container {
        height: 240px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 11, 20, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

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

.modal-container {
    background: var(--bg-darker);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow-y: auto;
    transform: scale(0.95);
    transition: all var(--transition-medium);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

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

.modal-content {
    padding: 40px;
}

.modal-header {
    margin-bottom: 30px;
    padding-right: 40px;
}

.modal-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.modal-subtitle {
    font-size: 1.2rem;
    color: var(--accent-blue);
}

.modal-image-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #0f172a;
}

.modal-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0f172a, #1e293b);
}

.modal-sections {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.modal-section h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 12px;
    border-left: 3px solid var(--accent-blue);
    padding-left: 12px;
}

.modal-section p {
    color: var(--text-muted);
    line-height: 1.7;
}

.modal-results {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.modal-results li {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 8px;
    color: var(--text-main);
    font-weight: 500;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-results li::before {
    content: '✓';
    color: #34d399;
    font-weight: bold;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 24px;
    }

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

    .modal-image-wrapper {
        height: 200px;
    }

    .modal-footer {
        flex-direction: column;
        gap: 12px;
    }

    .modal-btn {
        width: 100%;
    }
}

.modal-footer {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.modal-btn {
    flex: 1;
    justify-content: center;
}

/* Profit Engine CTA Actions */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Profit Calculator Section */
.calculator-section {
    background-color: var(--bg-darker);
    padding: 100px 0;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.calculator-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.calculator-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.input-group input:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 168, 225, 0.1);
}

/* Dashboard Styles */
.calculator-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-card.full-width {
    grid-column: span 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.dashboard-card.highlight-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.dashboard-card.highlight-success .dashboard-value {
    color: #34d399;
}

.dashboard-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dashboard-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.dashboard-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.calculator-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.calculator-cta .cta-actions {
    flex-wrap: nowrap;
}

.trust-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 16px;
}

@media (max-width: 992px) {
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .calculator-cta .cta-actions {
        flex-wrap: wrap;
    }

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

    .dashboard-card.full-width {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

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

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-medium);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border-color: var(--accent-blue);
    background: rgba(0, 168, 225, 0.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 24px;
    text-align: center;
}

.pricing-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.check-icon {
    color: #34d399;
    flex-shrink: 0;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-actions .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-full {
    width: 100%;
}

.btn-whatsapp-outline {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--text-main);
    gap: 8px;
}

.btn-whatsapp-outline:hover {
    background: rgba(0, 168, 225, 0.1);
}

.custom-pricing {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.custom-pricing-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.custom-pricing-content p {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card:last-child {
        grid-column: span 1;
    }

    .custom-pricing {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 168, 225, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 168, 225, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Growth Process Section */
.process-section {
    background: var(--bg-darker);
    position: relative;
    padding: 100px 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    padding-left: 40px;
}

/* Timeline Line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 40px;
}

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

/* Step Number Badge */
.step-number {
    position: absolute;
    left: -20px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-darker);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-blue);
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 168, 225, 0.3);
}

/* Step Content Card */
.step-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 168, 225, 0.3);
}

.step-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.step-subline {
    color: var(--accent-blue);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-points {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.step-points li {
    position: relative;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

/* Process CTA */
.process-cta {
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(2, 11, 20, 0.8), rgba(0, 168, 225, 0.1));
    border: 1px solid rgba(0, 168, 225, 0.2);
    border-radius: 20px;
}

.process-cta-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .process-timeline {
        padding-left: 30px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        left: -16px;
        font-size: 0.9rem;
    }

    .step-content {
        padding: 20px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-points {
        grid-template-columns: 1fr;
    }

    .process-cta-title {
        font-size: 1.5rem;
    }

    .process-cta .cta-actions {
        flex-direction: column;
        gap: 16px;
    }

    .process-cta .btn {
        font-size: 0.9rem;
        padding: 12px 16px;
        white-space: nowrap;
    }
}

/* Text Highlight Utility */
.text-highlight-blue {
    color: var(--accent-blue);
}