:root {
    --primary: #0066FF;
    --primary-dark: #004ecc;
    --secondary: #111827;
    --text: #374151;
    --light-bg: #F9FAFB;
    --white: #ffffff;
    --dark-bg: #1F2937;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--secondary);
    color: var(--white);
}

.text-white {
    color: var(--white);
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-nav {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary-nav {
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.6rem 1.5rem;
}

.btn-primary-nav:hover {
    background-color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 240px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn-primary-nav) {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-nav):hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 300px;
    /* Increased to accommodate larger logo */
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-desc {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--primary);
    /* Graphic element style */
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    min-width: 200px;
    border-left: 4px solid var(--primary);
}

.card-results {
    bottom: -30px;
    left: -30px;
}

.card-time {
    top: 20px;
    right: -20px;
    animation-delay: 2s;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
}

.float-card p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features/Value Prop */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card-feature {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.card-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.05);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Solutions by Sector */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.sector-card {
    background: white;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.sector-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sector-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.8;
}

.sector-content ul {
    list-style: none;
    margin-top: 1rem;
}

.sector-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sector-content li i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Process Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: -1;
}

.timeline-item {
    background: white;
    padding: 1rem;
    text-align: center;
}

.nav-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    /* Placeholder for avatar */
    border-radius: 50%;
}

/* CTA Final */
.cta-section {
    background: var(--primary);
    color: white;
    padding: 4rem 0;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    color: white;
}

.cta-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-form input,
.cta-form select {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    background: var(--secondary);
    color: #9ca3af;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 30px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.socials {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.socials a {
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary);
}

footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-container,
    .grid-3,
    .grid-2,
    .cta-container,
    .footer-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .float-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        transform: none !important;
        margin: 1rem auto;
        max-width: 300px;
    }

    .timeline::before {
        display: none;
    }
}