/* ===================================
   CharlottePlus Website Styles
   Clean, Modern, Conversion-Focused
   =================================== */

:root {
    /* Colors */
    --primary: #0052CC;
    --primary-dark: #003d99;
    --primary-light: #4C9AFF;
    --secondary: #172B4D;
    --accent: #00C7E6;
    --success: #36B37E;
    --warning: #FFAB00;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Section */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.125rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 82, 204, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.logo:hover {
    color: var(--gray-900);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
}

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

.nav-links li {
    margin-bottom: var(--space-md);
}

.nav-links li:last-child {
    margin-bottom: 0;
    margin-top: var(--space-lg);
}

.nav-links a {
    display: block;
    color: var(--gray-600);
    font-weight: 500;
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

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

/* Desktop Nav */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-links {
        display: flex;
        align-items: center;
        gap: var(--space-xl);
        position: static;
        background: none;
        padding: 0;
        border: none;
        box-shadow: none;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links li:last-child {
        margin-top: 0;
        margin-left: var(--space-md);
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

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

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

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

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

.btn-nav {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 82, 204, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(0, 199, 230, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
    border: 1px solid var(--gray-100);
}

.hero h1 {
    margin-bottom: var(--space-lg);
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.3em;
    background: rgba(0, 82, 204, 0.15);
    z-index: -1;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 540px;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.trust-item svg {
    color: var(--success);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: none;
}

.browser-mockup {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.browser-dots span:first-child { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-bar {
    flex: 1;
    background: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
}

.browser-content {
    padding: var(--space-xl);
    min-height: 300px;
}

.mock-header {
    height: 20px;
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    width: 40%;
    margin-bottom: var(--space-lg);
}

.mock-hero {
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.mock-card {
    height: 80px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.phone-mockup {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 140px;
    background: var(--gray-900);
    border-radius: 24px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    background: var(--white);
    border-radius: 18px;
    padding: var(--space-md);
    min-height: 240px;
}

.mock-mobile-header {
    height: 12px;
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    width: 60%;
    margin-bottom: var(--space-md);
}

.mock-mobile-content {
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-visual {
        display: block;
    }
}

/* ===================================
   How It Works
   =================================== */
.how-it-works {
    background: var(--white);
}

.steps {
    display: grid;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.step h3 {
    margin-bottom: var(--space-sm);
}

.step p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        align-items: center;
        gap: var(--space-lg);
    }
    
    .step {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .step-connector {
        display: block;
        width: 40px;
        height: 2px;
        background: var(--gray-200);
        position: relative;
    }
    
    .step-connector::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-left-color: var(--gray-200);
    }
}

/* ===================================
   Package Highlight
   =================================== */
.package-highlight {
    background: var(--gray-50);
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary);
}

.package-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-content {
    display: grid;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
}

.package-info h2 {
    margin-bottom: var(--space-sm);
}

.package-tagline {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.package-features {
    display: grid;
    gap: var(--space-md);
}

.package-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--gray-700);
}

.package-features svg {
    flex-shrink: 0;
    color: var(--success);
}

.package-pricing {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: var(--space-sm);
}

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

.price-note {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: var(--space-xl);
}

.guarantee {
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: var(--space-md);
}

@media (min-width: 768px) {
    .package-content {
        grid-template-columns: 1.2fr 1fr;
        padding: var(--space-3xl);
    }
    
    .package-pricing {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* ===================================
   Portfolio Preview
   =================================== */
.portfolio-preview {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    gap: var(--space-xl);
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
}

.placeholder-image::before {
    content: attr(data-label);
}

.portfolio-info {
    padding: var(--space-lg);
}

.portfolio-info h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.125rem;
}

.portfolio-info p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   Why Us / Benefits
   =================================== */
.why-us {
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    gap: var(--space-xl);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(0, 82, 204, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.benefit-card h3 {
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-info strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   FAQ
   =================================== */
.faq {
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.faq-item h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

.faq-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--white);
    padding: var(--space-3xl) 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-3xl) var(--space-xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-card p {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    opacity: 0.9;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .cta-card {
        padding: var(--space-4xl);
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    max-width: 280px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--gray-500);
}

.footer-legal a:hover {
    color: var(--gray-300);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===================================
   Page Header (Internal Pages)
   =================================== */
.page-header {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Services Page
   =================================== */
.services-grid {
    display: grid;
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: var(--space-xl);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.service-card h3 {
    font-size: 1.5rem;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.service-features {
    display: grid;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.service-features svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Comparison Table */
.comparison-section {
    background: var(--gray-50);
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: var(--gray-50);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gray-900);
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check {
    color: var(--success);
    font-size: 1.25rem;
}

.cross {
    color: var(--gray-300);
    font-size: 1.25rem;
}

/* ===================================
   Portfolio Page
   =================================== */
.portfolio-full-grid {
    display: grid;
    gap: var(--space-xl);
}

.portfolio-full-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.portfolio-full-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.portfolio-full-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-full-info {
    padding: var(--space-xl);
}

.portfolio-full-info h3 {
    margin-bottom: var(--space-sm);
}

.portfolio-full-info p {
    color: var(--gray-600);
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    background: rgba(0, 82, 204, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
}

@media (min-width: 640px) {
    .portfolio-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Pricing Page
   =================================== */
.pricing-grid {
    display: grid;
    gap: var(--space-xl);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card h3 {
    margin-bottom: var(--space-md);
}

.pricing-amount {
    margin-bottom: var(--space-md);
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-amount .amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-description {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    font-size: 0.9375rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--gray-100);
}

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

.pricing-features svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Add-ons Section */
.addons-grid {
    display: grid;
    gap: var(--space-lg);
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.addon-info h4 {
    margin-bottom: var(--space-xs);
}

.addon-info p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.addon-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   About Page
   =================================== */
.about-content {
    display: grid;
    gap: var(--space-3xl);
    align-items: center;
}

.about-text h2 {
    margin-bottom: var(--space-lg);
}

.about-text p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.about-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-2xl);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
}

.values-grid {
    display: grid;
    gap: var(--space-xl);
}

.value-card {
    text-align: center;
    padding: var(--space-xl);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 82, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
}

.value-card h3 {
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Contact Page
   =================================== */
.contact-grid {
    display: grid;
    gap: var(--space-3xl);
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form h2 {
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-700);
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

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

.form-row {
    display: grid;
    gap: var(--space-lg);
}

.contact-info h2 {
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 82, 204, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item-info h4 {
    margin-bottom: var(--space-xs);
}

.contact-item-info p,
.contact-item-info a {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.calendly-embed {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
    color: var(--gray-500);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* ===================================
   Utilities
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* ===================================
   Mobile Apps Page Styles
   =================================== */

/* Apps Hero */
.apps-hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--secondary) 100%);
    color: var(--white);
}

.apps-hero .hero-bg {
    background: radial-gradient(circle at 70% 30%, rgba(0, 199, 230, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(0, 82, 204, 0.15) 0%, transparent 50%);
}

.apps-hero h1 {
    color: var(--white);
}

.apps-hero .hero-subtitle {
    color: var(--gray-300);
}

.apps-hero .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.apps-hero .trust-item {
    color: var(--gray-300);
}

/* Phone Mockup Large */
.phone-mockup-large {
    display: none;
}

.phone-frame {
    background: var(--gray-800);
    border-radius: 40px;
    padding: 12px;
    width: 280px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--gray-900);
    border-radius: 20px;
    margin: 0 auto 12px;
}

.phone-screen-content {
    background: var(--white);
    border-radius: 28px;
    padding: 20px;
    min-height: 480px;
}

.mock-app-header {
    height: 24px;
    background: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.mock-app-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.mock-app-card {
    height: 100px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.mock-app-nav {
    height: 48px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-top: auto;
}

@media (min-width: 1024px) {
    .phone-mockup-large {
        display: block;
    }
}

/* Overview Section */
.overview-grid {
    display: grid;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.overview-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
}

.overview-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.overview-card.featured {
    border-color: var(--primary);
    position: relative;
}

.overview-card.featured::before {
    content: 'Recommended';
    position: absolute;
    top: -12px;
    right: var(--space-xl);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.overview-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.overview-icon.budget {
    background: rgba(54, 179, 126, 0.1);
    color: var(--success);
}

.overview-icon.custom {
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary);
}

.overview-card h3 {
    margin-bottom: var(--space-sm);
}

.overview-card > p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.overview-list {
    margin-bottom: var(--space-xl);
}

.overview-list li {
    color: var(--gray-600);
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    font-size: 0.9375rem;
}

.overview-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Package Section */
.package-section {
    background: var(--white);
}

.package-section.alt-bg {
    background: var(--gray-50);
}

.package-layout {
    display: grid;
    gap: var(--space-3xl);
    align-items: center;
}

.package-layout.reverse {
    direction: rtl;
}

.package-layout.reverse > * {
    direction: ltr;
}

.package-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
}

.package-info h4 {
    color: var(--gray-900);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-info h4:first-of-type {
    margin-top: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.feature-list svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.package-timeline {
    margin-top: var(--space-2xl);
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
}

.timeline-badge strong {
    color: var(--primary-dark);
}

/* App Mockups */
.package-visual {
    display: none;
}

.app-mockup {
    background: var(--gray-100);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
}

.mockup-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-phone {
    background: var(--gray-800);
    border-radius: 32px;
    padding: 8px;
    width: 200px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.mockup-screen {
    background: var(--white);
    border-radius: 24px;
    padding: var(--space-md);
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.mockup-screen.custom {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.screen-header {
    height: 16px;
    background: var(--success);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.screen-header.custom {
    background: var(--primary);
}

.screen-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
}

.screen-item {
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.screen-button {
    height: 40px;
    background: var(--success);
    border-radius: var(--radius-md);
    margin-top: auto;
}

.screen-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.dash-card {
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.screen-chart {
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-md);
}

.screen-nav {
    height: 36px;
    background: var(--primary);
    border-radius: var(--radius-md);
    margin-top: auto;
}

.custom-mockup .app-mockup {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

@media (min-width: 1024px) {
    .package-layout {
        grid-template-columns: 1.2fr 1fr;
    }
    
    .package-visual {
        display: block;
    }
}

/* Process Section */
.process-section {
    background: var(--gray-50);
}

.process-steps {
    display: grid;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.process-step .step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
}

.process-step .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(0, 82, 204, 0.1);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
    color: var(--primary);
}

.process-step h3 {
    margin-bottom: var(--space-sm);
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: center;
        gap: var(--space-md);
    }
    
    .process-step {
        padding: var(--space-xl) var(--space-lg);
    }
}

/* Showcase Section */
.showcase-section {
    background: var(--white);
}

.showcase-grid {
    display: grid;
    gap: var(--space-xl);
}

.showcase-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.showcase-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.app-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
}

.app-placeholder::before {
    content: '📱 ' attr(data-label);
}

.showcase-info {
    padding: var(--space-lg);
}

.showcase-info h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.125rem;
}

.showcase-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.showcase-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary);
}

@media (min-width: 640px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   Home Page Apps Section
   =================================== */
.apps-teaser {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--secondary) 100%);
    color: var(--white);
}

.apps-teaser .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.apps-teaser h2 {
    color: var(--white);
}

.apps-teaser p {
    color: var(--gray-300);
}

.apps-teaser-content {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.apps-teaser-text h2 {
    margin-bottom: var(--space-md);
}

.apps-teaser-text > p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.apps-teaser-features {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.apps-teaser-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-200);
}

.apps-teaser-features svg {
    color: var(--accent);
}

.apps-teaser-visual {
    display: none;
    justify-content: center;
}

.mini-phones {
    display: flex;
    gap: var(--space-lg);
}

.mini-phone {
    background: var(--gray-800);
    border-radius: 20px;
    padding: 6px;
    width: 120px;
}

.mini-phone:first-child {
    transform: rotate(-5deg);
}

.mini-phone:last-child {
    transform: rotate(5deg);
}

.mini-screen {
    background: var(--white);
    border-radius: 14px;
    height: 200px;
    display: flex;
    flex-direction: column;
    padding: var(--space-sm);
}

.mini-header {
    height: 12px;
    background: var(--primary);
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.mini-content {
    flex: 1;
    background: var(--gray-100);
    border-radius: 4px;
}

@media (min-width: 1024px) {
    .apps-teaser-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .apps-teaser-visual {
        display: flex;
    }
}
