/* ===========================
   CSS Reset & Base Styles
   =========================== */

:root {
    /* Dark theme with purple accents */
    --purple-primary: #9c30ff;
    --purple-hover: #b14dff;
    --purple-accent: #a742ff;
    --dark-bg: #0a0a0a;
    --dark-bg-alt: #0f0f0f;
    --dark-bg-card: #121212;
    --dark-charcoal: #1a1a1a;
    --dark-gray: #252525;
    --white: #ffffff;
    --off-white: #e5e5e5;
    --light-gray: #b8b8b8;
    --text-gray: #999999;
    --text-light: #e5e5e5;
    --text-dark: #1a1a1a;
    --border-light: #2a2a2a;
    --border-dark: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--light-gray);
    line-height: 1.7;
}

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

strong {
    color: var(--white);
    font-weight: 600;
}

.emphasis-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.emphasis-text.large {
    font-size: 1.3rem;
    line-height: 1.5;
}

.white {
    color: var(--white) !important;
}

/* ===========================
   Layout & Container
   =========================== */

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

.section {
    padding: 5rem 0;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.section-headline {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
}

.section-headline.center {
    text-align: center;
}

.section-headline-dark {
    color: var(--white);
}

/* ===========================
   Buttons
   =========================== */

.btn-primary,
.btn-secondary-outline,
.btn-nav,
.btn-plan,
.btn-plan-featured,
.btn-primary-dark {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--purple-primary);
    color: var(--white);
    border-color: var(--purple-primary);
}

.btn-primary:hover {
    background-color: var(--purple-hover);
    border-color: var(--purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(156, 48, 255, 0.3);
}

.btn-primary-dark {
    background-color: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-primary-dark:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--border-dark);
}

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

.btn-nav {
    padding: 0.75rem 1.5rem;
    background-color: var(--purple-primary);
    color: var(--white);
    font-size: 0.95rem;
}

.btn-nav:hover {
    background-color: var(--purple-hover);
    transform: translateY(-1px);
}

/* ===========================
   Navigation
   =========================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ghost-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--light-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-links .btn-nav {
    color: var(--white) !important;
}

.nav-links .btn-nav:hover {
    color: var(--white) !important;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-alt) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-headline {
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-supporting {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Hero Image / Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.macbook-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.macbook-screen {
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
    padding: 12px 12px 0 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
}

.screen-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    background: #000;
}

.macbook-bottom {
    height: 8px;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.macbook-base {
    height: 4px;
    background: linear-gradient(to right, transparent 0%, #2a2a2a 10%, #2a2a2a 90%, transparent 100%);
    margin: 0 auto;
    width: 120%;
    position: relative;
    left: -10%;
    border-radius: 0 0 100px 100px;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===========================
   Social Proof
   =========================== */

.social-proof {
    padding: 3rem 0;
    background-color: var(--dark-bg-alt);
    border-bottom: 1px solid var(--border-light);
}

.social-proof-label {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.logo-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-item {
    flex-shrink: 0;
    padding: 1rem 2rem;
    margin: 0 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.logo-item:hover {
    border-color: var(--purple-primary);
    transform: translateY(-2px);
}

.platform-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===========================
   Problem Section
   =========================== */

.problem-section {
    background-color: var(--dark-bg);
}

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

.problem-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===========================
   Services Section
   =========================== */

.services-section {
    background-color: var(--dark-charcoal);
    color: var(--white);
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-icon {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.service-card-icon:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card-icon h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.service-card-icon p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--purple-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--purple-hover);
}

/* ===========================
   Metrics Section
   =========================== */

.metrics-section {
    background-color: var(--dark-bg-card);
    padding: 4rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--purple-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--light-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   Testimonials Section
   =========================== */

.testimonials-section {
    background-color: var(--dark-bg-alt);
}

.testimonials-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-modern {
    background-color: var(--dark-bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card-modern:hover {
    border-color: var(--purple-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(156, 48, 255, 0.2);
}

.quote-icon {
    font-size: 4rem;
    color: var(--purple-primary);
    opacity: 0.3;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--purple-primary);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.testimonial-proof {
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--purple-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.testimonial-proof:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(156, 48, 255, 0.3);
    border-color: var(--purple-hover);
}

/* ===========================
   Lightbox Modal
   =========================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox.active {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    border: 3px solid var(--purple-primary);
    box-shadow: 0 20px 60px rgba(156, 48, 255, 0.4);
    opacity: 0;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--purple-primary);
    transform: rotate(90deg);
}

/* ===========================
   Pricing Section
   =========================== */

.pricing-section {
    background-color: var(--dark-bg);
}

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

.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card-modern {
    background-color: var(--dark-bg-card);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-modern:hover {
    border-color: var(--purple-primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(156, 48, 255, 0.3);
}

.pricing-card-modern.featured {
    border-color: var(--purple-primary);
    box-shadow: 0 8px 32px rgba(156, 48, 255, 0.25);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--purple-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.plan-price {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--light-gray);
    font-weight: 600;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: var(--light-gray);
    align-self: flex-end;
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--light-gray);
    border-bottom: 1px solid var(--border-light);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--purple-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.btn-plan,
.btn-plan-featured {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    margin-top: auto;
}

.btn-plan {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--border-dark);
}

.btn-plan:hover {
    background-color: var(--purple-primary);
    border-color: var(--purple-primary);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-plan-featured {
    background-color: var(--purple-primary);
    color: var(--white);
    border: 2px solid var(--purple-primary);
}

.btn-plan-featured:hover {
    background-color: var(--purple-hover);
    border-color: var(--purple-hover);
    transform: translateY(-2px);
}

/* ===========================
   Process Section
   =========================== */

.process-section-dark {
    background-color: var(--dark-charcoal);
    color: var(--white);
}

.process-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.process-arrow {
    width: 100px;
    height: 100px;
    align-self: flex-start;
    margin-top: 0;
}

.process-step-modern {
    text-align: center;
}

.step-number-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--purple-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(156, 48, 255, 0.3);
}

.process-step-modern h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.process-step-modern p {
    color: rgba(255, 255, 255, 0.8);
}

.process-footer-text {
    text-align: center;
    margin-top: 4rem;
}

.process-footer-text p {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

/* ===========================
   About Section
   =========================== */

.about-section {
    background-color: var(--dark-bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}


.about-image {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.about-headshot {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 16px;
    border: 4px solid var(--purple-primary);
    object-fit: cover;
    object-position: center top;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--dark-bg-card) 0%, var(--dark-gray) 100%);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    width: 100%;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.placeholder-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===========================
   FAQ Section
   =========================== */

.faq-section {
    background-color: var(--dark-bg);
}

.faq-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item-modern {
    background-color: var(--dark-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item-modern:hover {
    border-color: var(--purple-primary);
    box-shadow: 0 4px 16px rgba(156, 48, 255, 0.2);
}

.faq-question-modern {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    color: var(--purple-primary);
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-modern.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer-modern {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 500px;
    margin-top: 1rem;
}

/* ===========================
   CTA Section
   =========================== */

.cta-section-yellow {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-hover) 100%);
    padding: 6rem 0;
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-subtitle-dark {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: var(--dark-charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-section h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-links-section ul li {
    margin-bottom: 0.75rem;
}

.footer-links-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-section ul li a:hover {
    color: var(--purple-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.aspi-company {
    margin-top: 0.5rem !important;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

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

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

    .about-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .services-grid-4,
    .metrics-grid,
    .testimonials-grid-3,
    .pricing-grid-3,
    .faq-grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-arrow {
        display: none;
    }

    .logo-scroll {
        animation: scroll 20s linear infinite;
    }

    .logo-item {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary-outline,
    .btn-plan,
    .btn-plan-featured {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .macbook-mockup {
        max-width: 450px;
    }

    .macbook-screen {
        padding: 8px 8px 0 8px;
    }
}
