/*
    Digital Marketing Agency - Gradient Fusion Theme
    Author: AI Assistant
    Version: 6.0.0
*/
:root {
    --color-dark: #111827;
    --color-primary: #4F46E5;
    --color-secondary: #A78BFA;
    --color-accent: #22D3EE;
    --color-text: #D1D5DB;
    --color-text-light: #9CA3AF;
    --color-bg-surface: rgba(31, 41, 55, 0.5);
    --color-border: rgba(55, 65, 81, 0.7);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --gradient-main: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-dark);
    color: var(--color-text);
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #FFF;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid;
}

.btn-primary {
    background: var(--gradient-main);
    border: none;
    color: #FFF;
    padding: 16px 34px;
}

.btn-primary:hover {
    text-decoration: none;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.btn-secondary {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    text-decoration: none;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.site-header {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #FFF;
    font-weight: 600;
    font-family: var(--font-heading);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #FFF;
    margin: 5px 0;
}

.hero {
    text-align: center;
    padding: 6rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin: 1.5rem 0 2.5rem;
}

.why-choose-us {
    padding: 4rem 0;
    background: #0c111c;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
}

.services-section,
.case-studies-section,
.workflow-section,
.faq-section,
.industries-section {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--color-bg-surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    padding: 2rem;
    border-radius: 12px;
}

.case-studies-section {
    background: #0c111c;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: auto;
}

.case-study-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
}

.client-name {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-primary);
    color: #FFF;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-study-results {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--color-border);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.case-study-results span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}

.workflow-step {
    background: var(--color-bg-surface);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.workflow-step span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.industries-section {
    background: #0c111c;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.industry-item {
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-weight: 500;
}

.faq-accordion {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 0;
    cursor: pointer;
    list-style: none;
}

.faq-item[open] summary {
    color: var(--color-accent);
}

.faq-item p {
    padding: 0 0 1.5rem;
    border-top: 1px solid var(--color-border);
    margin-top: -0.5rem;
}

.cta-section {
    padding: 5rem 0;
    background: var(--gradient-main);
    text-align: center;
}

.cta-section h2,
.cta-section p {
    color: #FFF;
}

.cta-section .btn-primary {
    background: #FFF;
    color: var(--color-primary);
}

.site-footer {
    background: #0c111c;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #FFF;
    margin-bottom: 1rem;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col li {
    color: var(--color-text-light);
    font-weight: 400;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.page-hero {
    padding: 4rem 0;
    background: #0c111c;
    text-align: center;
}

.contact-page-layout,
.legal-page-layout {
    padding: 5rem 0;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-bg-surface);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--color-dark);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-surface);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.legal-content h2 {
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .workflow-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--color-dark);
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu.is-active {
        display: flex;
    }

    .nav-menu li {
        border-top: 1px solid var(--color-border);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .services-grid,
    .workflow-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .case-study-results {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}