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

:root {
    --primary-color: #1a73e8;
    --secondary-color: #1e88e5;
    --accent-color: #73FF2D;
    --dark-color: #000;
    --light-color: #1a1a1a;
    --text-color: #fff;
    --text-light: #bbb;
    --border-color: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #000;
}

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

/* Navigation */
.navbar {
    background-color: var(--dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Offset anchor-link landing position so the sticky navbar doesn't cover section titles */
#why,
#services,
#pricing,
#testimonials {
    scroll-margin-top: 70px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 98px;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 293px;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: #2eab47;
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2eab47;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 199, 89, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: url('Images/Man at Desk.png') center / cover no-repeat;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #fff;
}

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

/* Models Section */
.models {
    padding: 6rem 0;
    background-color: #000;
}

.models h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.models .section-subtitle {
    text-align: left;
    color: #757575;
    font-size: 1.65rem;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.comparison-column:last-child {
    border-left: 1px dashed rgba(255, 255, 255, 0.25);
    padding-left: 4rem;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.comparison-icon {
    display: inline-flex;
    color: #fff;
}

.comparison-icon svg {
    width: 24px;
    height: 24px;
}

.comparison-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
}

.comparison-item {
    margin-bottom: 1.4rem;
}

.comparison-item h4 {
    color: #73FF2D;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.comparison-item h4:before {
    content: "• ";
}

.comparison-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Integrations Section */
.why-choose {
    padding: 6rem 0;
    background-color: #000;
}

.why-choose h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.why-choose .section-subtitle {
    text-align: left;
    color: #757575;
    margin-bottom: 3rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 3.5rem;
}

.why-choose-item {
    padding: 0 2rem;
}

.why-choose-item:not(:last-child) {
    border-right: 1px dashed rgba(255, 255, 255, 0.25);
}

.why-choose-item:first-child {
    padding-left: 0;
}

.why-choose-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #73FF2D;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.why-choose-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
}

.why-choose-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-top: 1rem;
}

.bar-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
    z-index: 0;
}

.bar-decoration span {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.bar-decoration span:nth-child(1) { height: 90%; }
.bar-decoration span:nth-child(2) { height: 35%; }
.bar-decoration span:nth-child(3) { height: 65%; }
.bar-decoration span:nth-child(4) { height: 30%; }
.bar-decoration span:nth-child(5) { height: 55%; }
.bar-decoration span:nth-child(6) { height: 95%; }
.bar-decoration span:nth-child(7) { height: 35%; }
.bar-decoration span:nth-child(8) { height: 60%; }
.bar-decoration span:nth-child(9) { height: 35%; }
.bar-decoration span:nth-child(10) { height: 85%; }
.bar-decoration span:nth-child(11) { height: 75%; }
.bar-decoration span:nth-child(12) { height: 90%; }

/* Testimonials Section */
.core-services {
    padding: 6rem 0;
    background-color: #000;
}

.core-services h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.core-services .section-subtitle {
    text-align: left;
    color: #757575;
    margin-bottom: 3rem;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.core-service-item {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 1.5rem;
}

.core-service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.core-service-icon {
    display: inline-flex;
    color: #fff;
}

.core-service-icon svg {
    width: 24px;
    height: 24px;
}

.core-service-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #73FF2D;
    line-height: 1.3;
}

.core-service-image {
    width: 100%;
    height: 180px;
    background-color: #1a1a1a;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.core-service-item ul {
    list-style: none;
}

.core-service-item li {
    padding: 0.4rem 0;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
}

.core-service-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

.core-feature {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.core-feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.core-feature-icon {
    display: inline-flex;
    color: #fff;
}

.core-feature-icon svg {
    width: 28px;
    height: 28px;
}

.core-feature-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #73FF2D;
    line-height: 1.3;
}

.core-feature-content ul {
    list-style: none;
}

.core-feature-content li {
    padding: 0.4rem 0;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
}

.core-feature-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

.core-feature-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* Cloud Technology & Automation Tools Section */
.tech-tools {
    padding: 6rem 0;
    background-color: #000;
}

.tech-tools h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.tech-tools .section-subtitle {
    text-align: left;
    color: #757575;
    margin-bottom: 3rem;
}

.tech-tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.tech-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.tech-tool-item:hover {
    background-color: #2a2a2a;
    transform: scale(1.05);
}

.tech-tool-item img {
    max-width: 60px;
    height: auto;
    margin-bottom: 0.8rem;
    object-fit: contain;
}

.tech-tool-item p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: #000;
}

.pricing h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.pricing-tier {
    color: #fff;
    padding: 2.5rem;
}

.tier-starter {
    background-color: #3CB54A;
}

.tier-growth {
    background-color: #4456E8;
}

.tier-enterprise {
    background-color: #E5392E;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem;
}

.tier-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pricing-tier h3 {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
}

.tier-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.tier-hours {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-tier ul {
    list-style: none;
}

.pricing-tier li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #fff;
    padding-left: 1.2rem;
    position: relative;
}

.pricing-tier li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.tier-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials {
    padding: 6rem 0;
    background-color: #000;
}

.testimonials h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.testimonial-item-full {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item-full .testimonial-list {
    display: inline-block;
    text-align: left;
}

.testimonial-project {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #9CB2FF;
    margin-bottom: 0.75rem;
}

.testimonial-project strong {
    color: #9CB2FF;
    font-weight: 700;
}

.testimonial-author {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--accent-color);
}

.testimonial-list {
    list-style: none;
}

.testimonial-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--accent-color);
    padding-left: 1.2rem;
    position: relative;
}

.testimonial-list li:before {
    content: "•";
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #73FF2D;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-content > .footer-section:not(.footer-brand) {
    padding-top: 56px;
}

.footer-logo {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
    margin: 0 0 8px;
}

.footer-section h4 {
    margin: 0 0 0.5rem;
    line-height: 1.1;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    max-width: 160px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

.legal-page {
    padding: 3rem 0 6rem;
    background-color: #000;
    color: #fff;
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.legal-updated {
    color: #757575;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.75rem;
    color: var(--accent-color);
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 760px;
}

.legal-page a {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .models h2,
    .pricing h2,
    .core-services h2,
    .why-choose h2 {
        font-size: 1.8rem;
    }

    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .core-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .tech-tool-item img {
        max-width: 40px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .comparison-column:last-child {
        border-left: none;
        padding-left: 0;
        border-top: 1px dashed rgba(255, 255, 255, 0.25);
        padding-top: 2.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .why-choose-item {
        padding: 0;
    }

    .why-choose-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
        padding-bottom: 2rem;
    }

    .why-choose-cta {
        height: 160px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .tier-enterprise {
        grid-template-columns: 1fr;
    }

    .tier-image {
        height: 160px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .btn-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .tech-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        padding: 1.5rem;
    }
}

/* Consultation Page */
.consultation {
    padding: 1.5rem 0 6rem;
    background-color: #000;
}

.consultation h1 {
    font-size: 2.75rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.consultation-subtitle {
    color: #757575;
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 3rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 720px;
}

.form-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
}

.form-card h2 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 1.75rem;
}

.form-card-booking {
    padding: 2.5rem 0.5rem 0.5rem;
}

.form-card-booking h2 {
    padding: 0 2rem;
}

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

    .form-card {
        padding: 1.75rem;
    }
}

/* Mobile hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--dark-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        border-top: 1px solid var(--border-color);
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-social svg {
    flex-shrink: 0;
}
