:root {
    /* Colors - HSL */
    --color-bg: 220, 20%, 10%;
    /* Dark Navy Background */
    --color-bg-light: 220, 20%, 14%;
    /* Slightly lighter for cards */
    --color-primary: 190, 100%, 50%;
    /* Cyan Neon */
    --color-primary-dark: 190, 100%, 40%;
    --color-secondary: 260, 100%, 65%;
    /* Purple Neon */
    --color-text: 210, 20%, 95%;
    /* Off-white */
    --color-text-muted: 210, 15%, 70%;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: hsl(var(--color-bg));
    color: hsl(var(--color-text));
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.center {
    text-align: center;
}

.subtitle {
    color: hsl(var(--color-primary));
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(to right, hsl(var(--color-primary)), hsl(var(--color-secondary)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    color: hsl(var(--color-text-muted));
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--color-primary)), hsl(var(--color-primary-dark)));
    color: hsl(var(--color-bg));
    box-shadow: 0 4px 15px hsla(var(--color-primary), 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(var(--color-primary), 0.6);
}

.btn-secondary {
    border: 2px solid hsl(var(--color-text-muted));
    color: hsl(var(--color-text));
}

.btn-secondary:hover {
    border-color: hsl(var(--color-primary));
    color: hsl(var(--color-primary));
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: hsla(var(--color-bg), 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsla(var(--color-text), 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo .dot {
    color: hsl(var(--color-primary));
}

#nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.btn-nav {
    border: 1px solid hsl(var(--color-primary));
    padding: 8px 20px;
    border-radius: 20px;
    color: hsl(var(--color-primary));
}

.btn-nav:hover {
    background: hsl(var(--color-primary));
    color: hsl(var(--color-bg));
}

/* Hero */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: url('hero-bg-office.jpg') no-repeat center center/cover;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 3;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: hsla(var(--color-primary), 0.1);
    border: 1px solid hsla(var(--color-primary), 0.3);
    color: hsl(var(--color-primary));
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    box-shadow: 0 0 15px hsla(var(--color-primary), 0.2);
}

.hero-badge i {
    font-size: 1.1rem;
}

#hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(var(--color-primary), 0.15) 0%, transparent 70%);
    z-index: 2;
    filter: blur(50px);
    animation: pulseGlow 5s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
    }
}

/* About */
#about {
    padding: var(--section-padding);
    background: hsl(var(--color-bg-light));
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.about-card {
    background: hsla(var(--color-bg), 0.8);
    border: 1px solid hsla(var(--color-text), 0.05);
    /* Very subtle border */
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.about-card:hover {
    border-color: hsla(var(--color-primary), 0.3);
    transform: translateY(-5px);
}

.about-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    /* Prevent shrinking */
    background: #00D285;
    /* Teal Green from image */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.about-card-content h4 {
    color: hsl(var(--color-text));
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.about-card-content p {
    color: hsl(var(--color-text-muted));
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Solutions */
#solutions {
    padding: var(--section-padding);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.card {
    background: hsla(var(--color-text), 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid hsla(var(--color-text), 0.05);
    transition: 0.3s;
    text-align: center;
    /* Centering content including icon */
}

.card:hover {
    transform: translateY(-10px);
    background: hsla(var(--color-text), 0.05);
    border-color: hsla(var(--color-primary), 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    /* Ensures it respects text-align center */
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: hsl(var(--color-text));
}

.benefits-list {
    text-align: left;
    /* Keep list text left-aligned for readability */
    margin-top: 20px;
}

.benefits-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: hsl(var(--color-text-muted));
}

.benefits-list li::before {
    content: '•';
    color: hsl(var(--color-primary));
    position: absolute;
    left: 0;
}

/* Method */
#method {
    padding: var(--section-padding);
    background: hsl(var(--color-bg-light));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, hsla(var(--color-primary), 0.2), hsla(var(--color-secondary), 0.2));
    z-index: 0;
    display: none;
}

@media (min-width: 900px) {
    .steps-grid::before {
        display: block;
    }
}

.step-item {
    position: relative;
    background: hsl(var(--color-bg-light));
    padding: 20px;
    border-radius: 15px;
    border: 1px solid hsla(var(--color-text), 0.05);
    transition: 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: hsla(var(--color-primary), 0.3);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: hsla(var(--color-text), 0.05);
    line-height: 1;
    margin-bottom: -20px;
    z-index: 0;
}

.step-item h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* Why Us */
#why-us {
    padding: var(--section-padding);
}

.why-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .why-cards-container {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: hsla(var(--color-bg-light), 0.5);
    border: 1px solid hsla(var(--color-primary), 0.2);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
}

.why-card:hover {
    background: hsla(var(--color-bg-light), 0.8);
    border-color: hsla(var(--color-primary), 0.5);
    transform: translateX(5px);
}

.why-icon {
    font-size: 1.8rem;
    color: #00D285;
    /* Matching the teal/green from the image */
    min-width: 40px;
    display: flex;
    justify-content: center;
    margin-top: 2px;
}

.why-card-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: hsl(var(--color-text));
    font-weight: 600;
}

.why-card-content p {
    font-size: 0.95rem;
    color: hsl(var(--color-text-muted));
    margin-bottom: 0;
    line-height: 1.5;
}

/* Audience */
#audience {
    padding: var(--section-padding);
    background-color: hsl(var(--color-bg-light));
}

/* Audience Grid Layout */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Wider cards */
    gap: 25px;
    margin-top: 50px;
}

.audience-card {
    background: hsla(var(--color-bg-light), 0.6);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    /* Alignment left as per image */
    border: 1px solid hsla(var(--color-text), 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: hsla(var(--color-primary), 0.3);
    background: hsla(var(--color-text), 0.05);
}

/* Icon Box Styles */
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.icon-box.cyan {
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

.icon-box.green {
    background: linear-gradient(135deg, #00F260, #0575E6);
    box-shadow: 0 4px 15px rgba(5, 117, 230, 0.3);
}

.icon-box.blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.icon-box.purple {
    background: linear-gradient(135deg, #b721ff, #21d4fd);
    box-shadow: 0 4px 15px rgba(183, 33, 255, 0.3);
}

.icon-box.purple-blue {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.icon-box.teal {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: #1a1a1a;
    /* Darker icon for light teal */
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(var(--color-text));
    margin-bottom: 10px;
}

.audience-card p {
    font-size: 0.95rem;
    color: hsl(var(--color-text-muted));
    line-height: 1.5;
    margin-bottom: 0;
}

/* CTA Final */
#cta-final {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at center, hsla(var(--color-bg-light), 1) 0%, hsl(var(--color-bg)) 100%);
}

.subtitle-cta {
    display: inline-block;
    padding: 8px 20px;
    background: hsla(var(--color-primary), 0.1);
    color: hsl(var(--color-primary));
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid hsla(var(--color-primary), 0.2);
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

#cta-final p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.cta-stats-divider {
    height: 1px;
    width: 100%;
    max-width: 800px;
    background: linear-gradient(to right, transparent, hsla(var(--color-text), 0.1), transparent);
    margin: 60px auto 40px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--color-primary));
    /* Default cyan */
    margin-bottom: 5px;
}

.stat-number.green {
    color: #00F260;
    /* Bright Green for support/rating */
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(var(--color-text-muted));
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Contact Section */
#contact-section {
    padding: var(--section-padding);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
}

/* Contact Info Column */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: hsl(var(--color-text));
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.whatsapp-btn {
    background-color: #00F260;
    /* Verified whatsapp-like green matching theme */
    color: hsl(var(--color-bg));
    box-shadow: 0 4px 15px rgba(0, 242, 96, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 242, 96, 0.5);
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px 20px;
    background: hsla(var(--color-text), 0.05);
    border: 1px solid hsla(var(--color-primary), 0.2);
    border-radius: 10px;
    color: hsl(var(--color-primary));
    margin-bottom: 15px;
    font-family: monospace;
    font-size: 1.1rem;
}

.contact-box i {
    font-size: 1.4rem;
}

.contact-tip {
    background: linear-gradient(135deg, hsla(var(--color-bg-light), 0.8), hsla(var(--color-bg), 0.8));
    border: 1px solid hsla(var(--color-text), 0.1);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 30px;
}

.contact-tip i {
    color: #FFD700;
    font-size: 1.5rem;
}

.contact-tip p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: hsl(var(--color-text-muted));
}

/* Contact Form Column */
.contact-form-container {
    background: hsla(var(--color-bg-light), 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid hsla(var(--color-text), 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(var(--color-text));
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: hsla(var(--color-bg), 0.5);
    border: 1px solid hsla(var(--color-text), 0.1);
    border-radius: 8px;
    color: hsl(var(--color-text));
    font-family: var(--font-main);
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--color-primary));
    box-shadow: 0 0 0 3px hsla(var(--color-primary), 0.1);
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
}

/* Footer Detailed */
#footer {
    padding: 80px 0 20px;
    background-color: hsl(var(--color-bg));
    border-top: 1px solid hsla(var(--color-text), 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: hsl(var(--color-text));
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: hsl(var(--color-text-muted));
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: hsl(var(--color-primary));
    transform: translateX(5px);
    display: inline-block;
}

/* Brand Column specific */
.brand-col .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    color: hsl(var(--color-text-muted));
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: hsl(var(--color-text-muted));
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: hsl(var(--color-primary));
    font-size: 1.1rem;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: hsla(var(--color-text), 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: hsl(var(--color-text-muted));
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

.social-link:hover {
    background: hsla(var(--color-primary), 0.1);
    color: hsl(var(--color-primary));
    border-color: hsla(var(--color-primary), 0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid hsla(var(--color-text), 0.1);
    font-size: 0.9rem;
    color: hsl(var(--color-text-muted));
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-col {
        grid-column: span 1;
    }
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: hsla(var(--color-bg), 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        padding-top: 60px;
    }

    #nav-menu.active {
        right: 0;
    }

    #nav-menu ul {
        flex-direction: column;
        gap: 40px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: hsl(var(--color-text));
        margin: 5px 0;
        transition: 0.4s;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        flex-direction: column;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}