:root {
    /* Google-inspired Light Palette */
    --bg-main: #FFFFFF;
    --bg-secondary: #F8F9FA; /* Off-white for sections */
    --text-primary: #202124;
    --text-secondary: #5F6368;
    --border-color: #DADCE0;
    
    /* Authentic Google Colors */
    --g-blue: #1A73E8;
    --g-blue-light: #E8F0FE;
    --g-blue-hover: #174EA6;
    
    --g-red: #D93025;
    --g-red-light: #FCE8E6;
    
    --g-yellow: #F9AB00;
    --g-yellow-light: #FEF7E0;
    
    --g-green: #1E8E3E;
    --g-green-light: #CEEAD6;
    
    /* Shadows - Material Design 3 inspired */
    --shadow-sm: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    --shadow-md: 0 4px 6px -1px rgba(60,64,67,0.1), 0 2px 4px -1px rgba(60,64,67,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(60,64,67,0.1), 0 4px 6px -2px rgba(60,64,67,0.05);
    --shadow-float: 0 12px 24px 0 rgba(60,64,67,0.15);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-main);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .badge {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
}

/* Typography */


h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 1rem 5%;
}

.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
}

.logo-pulse-icon {
    width: 17px;
    height: 20px;
    transform: translateY(-3px);
    flex-shrink: 0;
}

.footer-brand .logo-brand-text {
    color: var(--text-primary);
    font-size: 1.85rem;
    font-weight: 800;
}

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

.navbar a:not([class*="btn"]) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar a:hover:not([class*="btn"]) {
    color: var(--g-blue);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-main);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    z-index: 101;
    border-radius: var(--radius-sm);
    top: 100%;
    left: 0;
    border: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

.dropdown-content a {
    color: var(--text-secondary) !important;
    padding: 0.8rem 1.2rem;
    display: block;
}

.dropdown-content a:hover {
    background-color: var(--bg-secondary);
    color: var(--g-blue) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Buttons */
.btn-primary {
    background-color: var(--g-blue);
    color: #FFFFFF;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--g-blue-hover);
    box-shadow: 0 4px 8px rgba(26, 115, 232, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--bg-main);
    color: var(--text-primary);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: #BDC1C6;
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--g-blue);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.btn-primary-outline:hover {
    background-color: var(--g-blue-light);
    border-color: var(--g-blue-light);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 140px 5% 90px;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(rgba(26, 115, 232, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    background-size: 28px 28px, 100% 100%;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.07) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(16, 185, 129, 0.12) 50%, transparent 70%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: pulseAura 8s ease-in-out infinite alternate;
}

@keyframes pulseAura {
    0% { transform: scale(0.9) translate(-10px, -10px); opacity: 0.7; }
    100% { transform: scale(1.15) translate(10px, 10px); opacity: 1; }
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-lg);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    background: rgba(26, 115, 232, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.2);
    color: var(--g-blue-hover);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1.5rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #334155;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Clients */
.clients {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    min-width: 260px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #BDC1C6;
}

.client-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.client-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.client-tag {
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    display: inline-block;
}

.gcp-tag {
    background-color: var(--g-blue-light);
    color: var(--g-blue-hover);
}

.ws-tag {
    background-color: var(--g-green-light);
    color: var(--g-green);
}

/* Services */
.services {
    padding: 8rem 5%;
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background-color: transparent;
    transition: background-color 0.3s;
}

.card:nth-child(1):hover::before { background-color: var(--g-blue); }
.card:nth-child(2):hover::before { background-color: var(--g-green); }

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.google-blue {
    background-color: var(--g-blue-light);
    color: var(--g-blue);
}

.google-green {
    background-color: var(--g-green-light);
    color: var(--g-green);
}

.service-list {
    margin-top: 1.5rem;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--g-blue);
    font-weight: bold;
}

/* Executive Assessment CTA (Dark Anchor) */
.assessment-cta {
    padding: 6.5rem 5%;
    background: linear-gradient(180deg, #0f172a 0%, #080d16 100%);
    position: relative;
    overflow: hidden;
}

.assessment-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(16, 185, 129, 0.08) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4.5rem;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    color: #ffffff;
    font-size: 2.75rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.cta-text p {
    color: #94a3b8;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Single-column CTA variant (h2/p as direct children, no .cta-text wrapper) */
.cta-container > h2 {
    color: #ffffff;
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

.cta-container > p {
    color: #94a3b8;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 600px;
}

.offer-card {
    margin-top: 2.5rem;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #10b981);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #93c5fd;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.offer-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.5;
}

.offer-card strong {
    color: #ffffff;
}

.cta-form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 2.75rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: none;
}

.funnel-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.45rem;
    color: var(--text-primary);
}

.form-row {
    display: flex;
    gap: 1.25rem;
}

.form-row .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.funnel-form input,
.funnel-form select,
.funnel-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
}

.funnel-form input:focus,
.funnel-form select:focus,
.funnel-form textarea:focus {
    outline: none;
    border-color: var(--g-blue);
    box-shadow: 0 0 0 3px var(--g-blue-light);
}

.funnel-form textarea {
    resize: vertical;
    font-family: inherit;
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    background-color: #F1F3F4; /* Very light gray */
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.link-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.link-column a:hover {
    color: var(--g-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Clients Showcase Section */
.clients-carousel-section {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 5.5rem 5%;
    position: relative;
}

.clients-header {
    max-width: 650px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.clients-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.clients-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.clients-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.5rem;
    max-width: 1150px;
    margin: 0 auto;
    align-items: center;
}

.client-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.client-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -6px rgba(0, 0, 0, 0.08), 0 6px 10px -4px rgba(0, 0, 0, 0.04);
    border-color: #93c5fd;
}

.client-card-item img {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Infinite Marquee */
.marquee-wrapper {
    overflow: hidden;
    padding: 3rem 0;
    background-color: var(--bg-main);
    position: relative;
    display: flex;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 2.5rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    padding-left: 2.5rem;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.d-blue { background-color: var(--g-blue); }
.d-red { background-color: var(--g-red); }
.d-yellow { background-color: var(--g-yellow); }
.d-green { background-color: var(--g-green); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.25rem)); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .cta-container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .cta-container {
        padding: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background-color: #ffffff;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        padding: 0.5rem 5% 1.5rem;
    }

    .navbar nav.nav-open {
        display: flex;
    }

    .navbar nav a:not([class*="btn"]) {
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar nav .dropdown-content {
        display: block;
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
    }

    .navbar nav .dropdown-content a {
        padding: 0.7rem 0;
    }

    .navbar nav .btn-primary-outline,
    .navbar nav .phone-link {
        margin-top: 1rem;
        text-align: center;
        justify-content: center;
        border-bottom: none;
    }
}

/* Custom Dashboard Mockup & Animations */
.dashboard-mock {
    width: 100%;
    max-width: 500px;
    background-color: #0f172a;
    border-radius: var(--radius-md);
    border: 1px solid #334155;
    box-shadow: var(--shadow-lg), 0 20px 25px -5px rgba(0,0,0,0.3);
    overflow: hidden;
    color: #e2e8f0;
    text-align: left;
}

.dashboard-header {
    background-color: #1e293b;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #334155;
}

.db-dots {
    display: flex;
    gap: 6px;
}

.db-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.db-dot.red { background-color: #ef4444; }
.db-dot.yellow { background-color: #f59e0b; }
.db-dot.green { background-color: #10b981; }

.db-title {
    font-size: 0.75rem;
    font-family: monospace;
    color: #94a3b8;
}

.db-status {
    font-size: 0.7rem;
    font-weight: 600;
    color: #38ef7d;
    display: flex;
    align-items: center;
    gap: 4px;
}

.glow-dot-green {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #10b981; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.dashboard-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.db-panel {
    background-color: #1e293b;
    border-radius: var(--radius-sm);
    border: 1px solid #334155;
    padding: 1rem;
}

.panel-header {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.metric-box {
    flex: 1;
}

.metric-val {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

.text-green { color: #10b981; }
.text-blue { color: #3b82f6; }

.metric-lbl {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 2px;
}

.db-chart {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0.5rem;
}

.chart-pulse {
    animation: chartPointPulse 1.5s infinite;
}

@keyframes chartPointPulse {
    0% { r: 3; opacity: 1; }
    50% { r: 6; opacity: 0.4; }
    100% { r: 3; opacity: 1; }
}

.terminal-panel {
    background-color: #020617;
    border: 1px solid #1e293b;
}

.terminal-header {
    font-size: 0.75rem;
    color: #475569;
    font-family: monospace;
    border-bottom: 1px solid #0f172a;
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.terminal-body {
    font-family: monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #10b981;
}

.terminal-body p {
    font-family: monospace;
    font-size: 0.8rem;
    color: #38ef7d;
    margin: 0;
}

.terminal-body .line-1 { color: #cbd5e1; }
.terminal-body .line-2 { color: #94a3b8; animation: delayLine2 3s infinite steps(1); }
.terminal-body .line-3 { color: #10b981; animation: delayLine3 3s infinite steps(1); }
.terminal-body .line-4 { color: #10b981; animation: delayLine4 3s infinite steps(1); }
.terminal-body .line-5 { color: #38ef7d; }

@keyframes delayLine2 { 0% { opacity: 0; } 20% { opacity: 1; } 100% { opacity: 1; } }
@keyframes delayLine3 { 0% { opacity: 0; } 45% { opacity: 1; } 100% { opacity: 1; } }
@keyframes delayLine4 { 0% { opacity: 0; } 70% { opacity: 1; } 100% { opacity: 1; } }

.blinking-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent }
    50% { color: #38ef7d; }
}

/* Tech badge style */
.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background-color: var(--g-blue-light);
    color: var(--g-blue-hover);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.glow-dot-blue {
    width: 6px;
    height: 6px;
    background-color: var(--g-blue);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--g-blue);
    animation: pulseBlue 1.5s infinite;
}

@keyframes pulseBlue {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px var(--g-blue); }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Hero Carousel Styling */
.carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.carousel-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.bg-workspace .glow-dot-blue-mock {
    width: 6px;
    height: 6px;
    background-color: #3b82f6;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #3b82f6;
    animation: pulseBlueGlow 2s infinite;
}

@keyframes pulseBlueGlow {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #3b82f6; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Gemini Section Styling */
.gemini-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 6rem 5%;
}

.gemini-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

@media (max-width: 992px) {
    .gemini-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .gemini-bullets {
        align-items: center;
        text-align: left;
    }
}

.glow-dot-purple {
    width: 8px;
    height: 8px;
    background: #7B2CBF;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #7B2CBF;
    animation: pulsePurpleGlow 1.5s infinite;
}

@keyframes pulsePurpleGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #7B2CBF; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Subpage Split Hero */
.subpage-hero {
    padding: 150px 5% 80px;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(rgba(26, 115, 232, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    background-size: 28px 28px, 100% 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    text-align: left;
}

.subpage-hero .hero-content {
    flex: 1.1;
    text-align: left;
}

.subpage-hero .hero-graphic {
    flex: 0.9;
    display: flex;
    justify-content: center;
    position: relative;
}

.subpage-hero .hero-graphic::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, rgba(16, 185, 129, 0.1) 50%, transparent 70%);
    filter: blur(50px);
    border-radius: 50%;
    pointer-events: none;
}

/* Architecture Node Card */
.node-card-wrapper {
    width: 100%;
    max-width: 480px;
    background: #0b1320;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    position: relative;
    z-index: 1;
}

.node-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.node-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.node-title-group h4 {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 700;
}

.status-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #34d399;
    background: rgba(16, 185, 129, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.node-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.node-item {
    background: #111c2e;
    border: 1px solid #1e2d42;
    border-radius: 10px;
    padding: 0.9rem 1rem;
}

.node-item-lbl {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.node-item-val {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

.node-log-box {
    background: #060a12;
    border: 1px solid #162235;
    border-radius: 8px;
    padding: 0.9rem;
    font-family: 'JetBrains Mono', monospace, monospace;
    font-size: 0.75rem;
    color: #93c5fd;
    line-height: 1.5;
}

/* Contact widgets: WhatsApp float + header phone link */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-float);
    z-index: 200;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.35);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.phone-link:hover {
    color: var(--g-blue) !important;
}

.phone-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Certification badges */
.cert-badge-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
}


