:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --highlight: #e94560;
    --highlight-hover: #d63350;
    --text: #2b2d42;
    --text-light: #6c757d;
    --bg: #f8f9fa;
    --bg-alt: #ffffff;
    --white: #ffffff;
    --border-color: #e9ecef;
    --gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-accent: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(15, 52, 96, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

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

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--highlight);
}

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--primary);
    border-radius: 6px;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    display: block;
    stroke: var(--primary);
}

.cta-button {
    background: var(--highlight);
    color: var(--white) !important;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--highlight-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

/* Hero Section */
.hero {
    background: var(--gradient);
    padding: 180px 0 110px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.25rem;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--highlight);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.92;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .secondary-button {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.hero-buttons .secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.breadcrumbs {
    padding: 120px 0 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: var(--highlight);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Sections */
.services, .why-choose, .seo-content, .content, .pricing {
    padding: 90px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.35rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
}

/* Cards & Grids */
.services-grid, .why-grid, .service-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg);
    padding: 36px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(233, 69, 96, 0.4);
    background: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* AI Section */
.ai-consulting {
    padding: 95px 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ai-consulting .section-header h2, .ai-consulting .section-header p {
    color: var(--white);
}

.ai-consulting .section-header p {
    opacity: 0.85;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.ai-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.ai-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 69, 96, 0.5);
    transform: translateY(-4px);
}

.ai-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ai-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--highlight);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.ai-feature h3 {
    font-size: 1.25rem;
    color: var(--white);
}

.ai-feature p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

/* Technologies Section */
.technologies {
    padding: 85px 0;
    background: var(--bg);
}

.tech-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tech-card {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    min-width: 170px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
    border-color: var(--highlight);
}

.tech-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight);
}

.tech-icon svg {
    width: 42px;
    height: 42px;
}

.tech-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1rem;
}

.tech-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Free Tool Callout */
.free-assessment-banner {
    padding: 70px 0;
    background: var(--gradient-accent);
    color: var(--white);
    text-align: center;
}

.free-assessment-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.free-assessment-banner p {
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
}

.btn-white {
    background: var(--white) !important;
    color: var(--highlight) !important;
    font-weight: 700 !important;
}

.btn-white:hover {
    background: #f8f9fa !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* About Section */
.about {
    padding: 95px 0;
    background: var(--bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.35rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--highlight);
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    background: var(--gradient);
    border-radius: 20px;
    padding: 50px 36px;
    text-align: center;
    color: var(--white);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: var(--card-shadow);
}

.about-image-avatar {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-image-avatar svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
}

.about-image h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 8px;
}

.about-image p {
    opacity: 0.88;
}

/* Why Choose Me */
.why-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--hover-shadow);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.25);
}

.why-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Areas Served */
.areas {
    padding: 75px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.areas h2 {
    color: var(--white);
    margin-bottom: 36px;
    font-size: 2.1rem;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.area-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.98rem;
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 95px 0;
    background: var(--bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.35rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    color: var(--highlight);
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--highlight);
    fill: none;
    stroke-width: 2;
}

.contact-method-text strong {
    display: block;
    color: var(--primary);
    margin-bottom: 3px;
    font-size: 1rem;
}

.contact-method-text a {
    color: var(--highlight);
    text-decoration: none;
    font-weight: 500;
}

.contact-method-text a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 44px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.98rem;
    font-family: inherit;
    transition: border-color 0.25s ease;
    background: #fff;
    color: var(--text);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--highlight);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: var(--highlight);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-button:hover {
    background: var(--highlight-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

/* SEO Content */
.seo-content {
    padding: 85px 0;
    background: var(--white);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 36px;
}

.seo-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--highlight);
}

.seo-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.seo-card ul {
    list-style: none;
    padding: 0;
}

.seo-card li {
    padding: 7px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
}

.seo-card li::before {
    content: '✓';
    color: var(--highlight);
    font-weight: bold;
}

/* Pricing Section */
.price-card {
    background: var(--bg);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.price-card.featured {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--hover-shadow);
}

.price-card.featured h3, .price-card.featured .price {
    color: var(--white);
}

.price-card.featured li {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.price {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--highlight);
    font-family: 'Space Grotesk', sans-serif;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    padding: 24px 0;
    text-align: left;
}

.price-card li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.price-card li::before {
    content: '✓';
    color: var(--highlight);
    margin-right: 10px;
    font-weight: bold;
}

.price-card.featured li::before {
    color: var(--white);
}

/* IT Assessment Page Specifics */
.question {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.question h3 {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 1.2rem;
}

.options label {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 10px;
    background: var(--bg);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.options label:hover {
    background: #edf2f7;
    border-color: var(--highlight);
}

.options input {
    margin-right: 14px;
    accent-color: var(--highlight);
    width: 18px;
    height: 18px;
}

.btn-container {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: var(--highlight);
    color: white;
    padding: 18px 48px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.result {
    display: none;
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    margin-top: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.result.show {
    display: block;
}

.result h2 {
    color: var(--primary);
    margin-bottom: 16px;
}

.score {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--highlight);
    margin: 16px 0;
    font-family: 'Space Grotesk', sans-serif;
}

.recommendations {
    text-align: left;
    margin-top: 28px;
    padding: 28px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.recommendations h3 {
    margin-bottom: 14px;
}

.recommendations ul {
    padding-left: 20px;
}

.recommendations li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 28px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--highlight);
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

/* Responsive Mobile Navigation Drawer */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        gap: 20px;
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 8px 0;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .services-grid, .service-grid, .ai-features, .why-grid, .seo-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        min-height: 280px;
        padding: 36px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 16px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 26px;
    }
}
