/* Custom Properties & Reset */
:root {
    --bg-main: #0b0c10;
    --bg-darker: #060608;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --primary: #6366f1; /* Indigo */
    --secondary: #a855f7; /* Purple */
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --whatsapp: #25D366;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5 {
    color: #fff;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--gradient);
    border-color: transparent;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #fff;
}
.btn-whatsapp:hover {
    background-color: #20b858;
    transform: translateY(-3px);
}

.w-100 { width: 100%; }

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #0a0e1a, #111827);
    border-bottom: 1px solid rgba(43, 112, 240, 0.2);
    padding: 6px 0;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    position: fixed;
    top: 70px; /* glued directly below the fixed navbar */
    left: 0; right: 0;
    z-index: 999;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar span {
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.top-bar span i {
    color: #ff6600;
    margin-right: 6px;
    font-size: 0.7rem;
}
.top-bar a {
    color: #25D366;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}
.top-bar a:hover { opacity: 0.8; }

@media (max-width: 576px) {
    .top-bar-inner { justify-content: center; }
    .top-bar a { display: none; }
    .top-bar span { font-size: 0.7rem; letter-spacing: 1px; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2b70f0; /* Solid Brand Blue */
    letter-spacing: -0.5px;
}
.nav-logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}
.logo span {
    color: #ff6600; /* Vivid Brand Orange */
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--primary);
}
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 110px; /* 70px navbar + ~35px top-bar + buffer */
}
.hero-video-bg {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0.35; /* Blends nicely into the dark layout */
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 11, 20, 0.6);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.hero-btns {
    display: flex;
    gap: 20px;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}
.icon-1 { top: 20%; right: 20%; animation-delay: 0s; }
.icon-2 { top: 60%; right: 10%; animation-delay: 1s; font-size: 3rem;}
.icon-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.icon-4 { top: 30%; left: 10%; animation-delay: 3s; font-size: 2.5rem;}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Stats Counters */
.stats-section {
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #090a10;
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 10px;
    border: none;
    transition: transform 0.3s;
}
.stat-box:hover {
    transform: translateY(-3px);
}
.stat-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0;
}
.stat-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    line-height: 1;
}
.stat-box h3::after {
    content: '+';
    color: var(--secondary);
    font-size: 1.8rem;
    margin-left: 2px;
}
.stat-box p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    max-width: 85px;
    line-height: 1.3;
}

/* Number Rotate Animation */
.spin-rotate {
    display: inline-block;
    transform-style: preserve-3d;
    animation: rotateNum 2s ease-out forwards;
}

@keyframes rotateNum {
    0% { transform: rotateX(-1080deg); }
    100% { transform: rotateX(0deg); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-features {
    margin: 20px 0 30px 0;
}
.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-features i {
    color: var(--primary);
}
.image-wrapper img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Chai Banner Section */
.chai-banner-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #111827, #090a10);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.chai-banner-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&q=80&w=1200') center/cover fixed;
    opacity: 0.15;
    z-index: 1;
}
.chai-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.chai-typography {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.chai-outline-text {
    font-size: 5.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    line-height: 0.8;
    letter-spacing: 5px;
    margin-bottom: -15px;
    z-index: 1;
}
.chai-outline-text-large {
    font-size: 6.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
    line-height: 0.8;
    letter-spacing: 2px;
    z-index: 1;
    margin-top: -10px;
}
.chai-business-box {
    background: #ffde00; /* vibrant yellow */
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 3px 15px;
    transform: rotate(-3deg);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 5;
    position: relative;
    letter-spacing: 0.5px;
    border-radius: 4px;
}
.chai-bottom-title {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffde00;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-top: 15px;
    text-transform: uppercase;
}
.line-decorator {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, #ffde00, transparent);
}
.chai-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: #fff;
    margin-top: 35px;
    font-weight: 500;
    padding: 12px 30px;
    background: rgba(255, 222, 0, 0.15); /* Yellow tinted glow */
    border: 1px solid rgba(255, 222, 0, 0.4);
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 222, 0, 0.2);
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
}
.chai-tagline i {
    color: #ffde00; /* vibrant yellow coffee cup */
    margin-right: 15px;
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    .chai-outline-text { font-size: 3rem; -webkit-text-stroke: 1px rgba(255,255,255,0.7); }
    .chai-outline-text-large { font-size: 3.5rem; -webkit-text-stroke: 1px rgba(255,255,255,1); }
    .chai-business-box { font-size: 0.8rem; padding: 2px 10px; }
    .chai-bottom-title { font-size: 0.6rem; letter-spacing: 2px; }
    .line-decorator { width: 30px; }
    .chai-tagline { font-size: 1rem; }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(99, 102, 241, 0.2);
}
.icon-box {
    width: 60px; height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 15px; }

/* Technology */
.tech-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}
.tech-box {
    flex: 1;
    min-width: 300px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.02);
    overflow: hidden;
}
.tech-box h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--text-main);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    padding-bottom: 10px;
}
.tech-grid {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scrollTech 30s linear infinite;
}
.tech-grid:hover {
    animation-play-state: paused;
}
@keyframes scrollTech {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.tech-item {
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.tech-item i {
    font-size: 2.8rem;
}
.tech-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}
.tech-item:hover {
    transform: translateY(-8px);
    background: var(--bg-main);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.tech-item:hover span {
    color: #fff;
}
/* Tech Animations */
.tech-float {
    animation: gentleFloat 4s ease-in-out infinite;
}
.tech-float.delay-1 { animation-delay: 0.5s; }
.tech-float.delay-2 { animation-delay: 1.5s; }
.tech-float.delay-3 { animation-delay: 2.5s; }

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

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}
.why-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}
.portfolio-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: #fff; margin-bottom: 5px; }
.portfolio-overlay p { color: var(--primary); }

/* Testimonials */
.testimonial-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}
.testimonial-card {
    min-width: 350px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    scroll-snap-align: start;
}
.stars { color: #fbbf24; margin-bottom: 15px; }
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}
.info-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}
.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
}
.input-group { margin-bottom: 20px; }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: border 0.3s;
}
.input-group input:focus, .input-group textarea:focus {
    border-color: var(--primary);
}
.form-msg { margin-top: 15px; text-align: center; }
.success-msg { color: #25D366; }
.error-msg { color: #ef4444; }

/* Footer */
.footer {
    background: linear-gradient(135deg, #090a10, #14172b);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about h3 { margin-bottom: 20px; }
.footer-logo span { color: #ff6600; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.social-links a.social-fb { background: #1877F2; }
.social-links a.social-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links a.social-linkedin { background: #0077b5; }
.social-links a.social-yt { background: #FF0000; }
.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}
.footer-links h4 { margin-bottom: 20px; }
.footer-links a {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-muted);
    transition: 0.3s;
}
.footer-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a:hover i { transform: translateX(4px); }
.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px; right: -100%;
        width: 75%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(8, 9, 15, 0.98);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 30px 20px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        font-size: 1.15rem;
        margin: 8px 0;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        width: 100%;
        text-align: left;
        padding: 12px 15px;
        border-radius: 8px;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    .nav-links a:hover {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary);
        padding-left: 20px;
    }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .section { padding: 50px 0; }
    .testimonial-card { min-width: 80vw; }
    .chai-outline-text { font-size: 3rem; -webkit-text-stroke: 1px rgba(255,255,255,0.7); }
    .chai-outline-text-large { font-size: 3.5rem; -webkit-text-stroke: 1px rgba(255,255,255,1); }
    .chai-business-box { font-size: 0.8rem; padding: 2px 10px; }
    .chai-bottom-title { font-size: 0.6rem; letter-spacing: 2px; }
    .line-decorator { width: 30px; }
    .chai-tagline { font-size: 1rem; }
    .faq-question { padding: 18px 20px; }
    .faq-question span { font-size: 0.92rem; }
    .faq-answer { padding: 0 20px; }
    .step-number { font-size: 2.5rem; min-width: 55px; }
    .step-line { left: 25px; }
    .step-content { padding: 22px 20px; }
    .process-cta { padding: 28px 20px; }
    .process-cta p { font-size: 1rem; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 20px; }
}


/* Animations */
.animate-enter {
    animation: fadeInUp 1s ease both;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Our Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 780px;
    margin: 60px auto 0;
    position: relative;
}
.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}
.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(43, 112, 240, 0.5);
    min-width: 80px;
    line-height: 1;
    padding-top: 8px;
}
.step-line {
    position: absolute;
    left: 38px;
    top: 55px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(180deg, #2b70f0, #ff6600, transparent);
    opacity: 0.25;
}
.step-content {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 28px 30px;
    flex: 1;
    margin-bottom: 24px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.step-content:hover {
    border-color: rgba(43, 112, 240, 0.35);
    box-shadow: 0 8px 25px rgba(43, 112, 240, 0.1);
    transform: translateX(6px);
}
.step-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(43,112,240,0.15), rgba(255,102,0,0.1));
    border: 1px solid rgba(43, 112, 240, 0.2);
    color: #2b70f0;
}
.process-step:nth-child(2) .step-icon { color: #ff6600; border-color: rgba(255,102,0,0.2); }
.process-step:nth-child(3) .step-icon { color: #a855f7; border-color: rgba(168,85,247,0.2); }
.process-step:nth-child(4) .step-icon { color: #22c55e; border-color: rgba(34,197,94,0.2); }
.process-step:nth-child(5) .step-icon { color: #f97316; border-color: rgba(249,115,22,0.2); }
.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}
.step-content p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}
.process-cta {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(43,112,240,0.1), rgba(255,102,0,0.08));
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: var(--radius);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.process-cta p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-main);
    max-width: 540px;
    line-height: 1.6;
}
.process-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    font-size: 1rem;
    padding: 14px 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.process-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4) !important;
}

@media (max-width: 768px) {
    .step-number { font-size: 2.5rem; min-width: 55px; }
    .step-line { left: 25px; }
    .step-content { padding: 22px 20px; }
    .process-cta { padding: 28px 20px; }
    .process-cta p { font-size: 1rem; }
}

/* FAQ Section */
.faq-grid {
    max-width: 860px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover {
    border-color: rgba(43, 112, 240, 0.4);
    box-shadow: 0 4px 20px rgba(43, 112, 240, 0.1);
}
.faq-item.active {
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: 0 6px 25px rgba(255, 102, 0, 0.12);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}
.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    flex: 1;
}
.faq-icon {
    color: #ff6600;
    font-size: 0.9rem;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #2b70f0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 28px;
}
.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    padding-bottom: 22px;
    font-size: 0.96rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 14px;
}
.faq-item.active .faq-answer {
    max-height: 400px;
}

@media (max-width: 768px) {
    .faq-question { padding: 18px 20px; }
    .faq-question span { font-size: 0.92rem; }
    .faq-answer { padding: 0 20px; }
}

/* =============================================
   Google Reviews Section
   ============================================= */
.gr-section {
    background: var(--bg-darker, #0d0e18);
}

/* Header */
.gr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-wrap: nowrap;
}
.gr-title-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gr-brand {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    color: #fff;
}
.g-blue  { color: #4285F4; }
.g-red   { color: #EA4335; }
.g-yellow{ color: #FBBC05; }
.g-green { color: #34A853; }

.gr-overall {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gr-rating-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.gr-stars-row { color: #FBBC05; font-size: 1rem; letter-spacing: 2px; }

/* Action Buttons */
.gr-action-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.gr-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
    display: inline-block;
    white-space: nowrap;
}
.gr-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.gr-btn-blue {
    background: #4285F4;
    color: #fff;
    box-shadow: 0 4px 18px rgba(66,133,244,0.35);
}
.gr-btn-blue:hover { box-shadow: 0 8px 28px rgba(66,133,244,0.5); }
.gr-btn-red {
    background: #EA4335;
    color: #fff;
    box-shadow: 0 4px 18px rgba(234,67,53,0.35);
}
.gr-btn-red:hover { box-shadow: 0 8px 28px rgba(234,67,53,0.5); }

/* Marquee Slider */
.gr-slider {
    overflow: hidden;
    width: 100%;
    /* Fade edges on both sides for a premium look */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.gr-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: grMarquee 28s linear infinite;
}
.gr-track:hover {
    animation-play-state: paused;
}
@keyframes grMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review Card */
.gr-card {
    width: 360px;
    flex-shrink: 0;
    background: #1a1d2e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.gr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    border-color: rgba(66,133,244,0.25);
}
.gr-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.gr-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a5168, #2d3148);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem;
    color: #c8cbdb;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.08);
}
.gr-reviewer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.gr-reviewer-info h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.gr-card-stars { color: #FBBC05; font-size: 0.78rem; letter-spacing: 1.5px; }
.gr-handle { font-size: 0.78rem; color: #6b7280; }
.gr-google-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(66,133,244,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.gr-google-icon i { color: #4285F4; font-size: 0.85rem; }
.gr-card > p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .gr-header { flex-wrap: wrap; }
    .gr-brand { font-size: 1.4rem; }
    .gr-card { width: 280px; }
}

/* Conclusion CTA */
.conclusion-cta {
    padding-top: 0;
    padding-bottom: 80px;
}
.conclusion-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(37, 211, 102, 0.05));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.conclusion-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.conclusion-content, .conclusion-actions {
    position: relative;
    z-index: 1;
}
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.conclusion-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}
.conclusion-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.conclusion-content p.lead {
    font-size: 1.2rem;
    color: #e2e8f0;
    font-weight: 500;
}
.conclusion-content p.highlight-text {
    font-weight: 600;
    color: #fff;
    margin-top: 32px;
    margin-bottom: 36px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 4px;
}
.conclusion-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .conclusion-box { padding: 40px 20px; }
    .conclusion-content h2 { font-size: 1.8rem; }
    .conclusion-actions { flex-direction: column; }
    .conclusion-actions .btn { width: 100%; }
}

/* Core Growth Engine Section */
.growth-engine {
    position: relative;
    overflow: hidden;
}
.growth-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.growth-card {
    background: #111424;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}
.growth-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 102, 241, 0.4);
}
.growth-icon {
    width: 60px; height: 60px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}
.growth-card h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: #fff;
}
.growth-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.growth-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 15px;
}
.growth-features {
    margin-top: 15px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.growth-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #e2e8f0;
}
.growth-features li i {
    color: #10b981;
    margin-top: 4px;
}
.growth-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    font-size: 0.95rem;
}

/* Client Journey Timeline */
.client-journey {
    position: relative;
    z-index: 1;
}
.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 24px;
    width: 2px; height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}
.journey-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}
.step-num {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid var(--primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    z-index: 2;
}
.step-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px 25px;
    flex-grow: 1;
    transition: transform 0.3s;
}
.journey-step:hover .step-content {
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.15);
}
.step-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive for Growth Engine */
@media (max-width: 1024px) {
    .growth-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .growth-cards { grid-template-columns: 1fr; }
    .journey-step { flex-direction: row; }
    .step-content { padding: 15px; }
}

/* Work Tools Banner */
.work-tools-banner {
    margin: 30px auto 70px auto;
    max-width: 1100px;
}
.work-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tool-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}
.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}
.tool-img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.tool-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tool-card h4 {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

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