/* DESIGN SYSTEM VARIABLES */
:root {
    /* Colors */
    --color-primary: #071b33;
    --color-primary-light: #0b2447;
    --color-secondary: #22c55e;
    --color-secondary-hover: #16a34a;
    --color-background: #f8f9ff;
    --color-surface: #ffffff;
    --color-surface-low: #eff4ff;
    --color-border: #e5eaf0;
    --color-text-main: #071b33;
    --color-text-muted: #64748b;
    
    /* Semantic Colors */
    --color-error-bg: #ffdad6;
    --color-error-text: #ba1a1a;
    --color-warning-bg: #fff0c2;
    --color-warning-text: #966b00;
    --color-success-bg: #d9fbe8;
    --color-success-text: #007432;
    
    /* Glow Effects */
    --color-glow-blue: rgba(189, 235, 255, 0.4);
    --color-glow-green: rgba(217, 251, 232, 0.3);

    /* Typography */
    --font-heading: 'Geist', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --spacing-base: 8px;
    --section-gap: 100px;
    --container-max: 1280px;
    --gutter: 24px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows - made slightly richer for a premium feel */
    --shadow-soft: 0px 12px 35px rgba(7, 27, 51, 0.05);
    --shadow-hover: 0px 20px 50px rgba(7, 27, 51, 0.1);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-background);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.04em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

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

/* UTILITIES */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.max-w-lg { max-width: 800px; }
.max-w-md { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-neutral { color: var(--color-text-muted); }
.mt-6 { margin-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.pt-12 { padding-top: 3rem; }
.pb-8 { padding-bottom: 2rem; }
.w-full { width: 100%; }

.bg-surface-low { background-color: var(--color-surface-low); }
.border-t { border-top: 1px solid var(--color-border); }

/* GRID SYSTEM */
.grid {
    display: grid;
    gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary), #15ba53);
    color: white;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-secondary-hover), #129c45);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-surface-low);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.desktop-nav {
    display: none;
    gap: 32px;
}

.desktop-nav a {
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--color-surface);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

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

.mobile-nav a:not(.btn) {
    color: var(--color-text-main);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
    .menu-toggle { display: none; }
    .hidden-mobile { display: inline-flex; }
}
@media (max-width: 1023px) {
    .hidden-mobile { display: none; }
}

/* SECTIONS */
.section {
    padding: var(--section-gap) 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    margin-bottom: 16px;
}

.section-text {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.section-rounded {
    border-radius: 48px;
    margin: 48px var(--gutter);
}
@media (max-width: 767px) {
    .section-rounded {
        border-radius: 32px;
        margin: 32px var(--gutter);
    }
}

/* FEATURE LIST */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* PREMIUM HERO SECTION */
.hero-premium {
    padding-top: 140px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    background-color: #f8fafc; /* Very soft light blue/gray base */
}

/* Background Animations */
.hero-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.premium-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: blob-float 15s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(189, 235, 255, 0.8) 0%, rgba(217, 251, 232, 0) 70%);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(217, 251, 232, 0.8) 0%, rgba(189, 235, 255, 0) 70%);
    animation-delay: -5s;
}

.premium-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%);
    z-index: 1;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

.hero-premium-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.hero-premium-content {
    max-width: 900px;
    margin: 0 auto;
}

.trust-badges-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 234, 240, 0.8);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.hero-premium-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: -0.03em;
}
@media (min-width: 768px) {
    .hero-premium-title { font-size: 4.5rem; }
}

.hero-premium-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hero-premium-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}
.glass-btn {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}
.glass-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Mockup Composite */
.premium-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Floating Elements */
.premium-float {
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 35px rgba(7, 27, 51, 0.08);
}
.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle .material-symbols-outlined { font-size: 18px; }

.fb-wa { top: 10%; left: -5%; animation: float-slow 6s ease-in-out infinite; }
.fb-ia { bottom: 20%; right: -5%; animation: float-slow 7s ease-in-out infinite reverse; }
.fb-qr { top: -20px; right: 10%; padding: 16px; border-radius: 20px; animation: float-slow 5s ease-in-out infinite 1s; }
.fb-fast { bottom: -20px; left: 10%; animation: float-slow 6.5s ease-in-out infinite 0.5s; }

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

@media (max-width: 1024px) {
    .premium-float { display: none; }
}

/* Laptop Mockup */
.laptop-mockup {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.laptop-screen-bezel {
    background: #1e293b;
    border-radius: 24px 24px 0 0;
    padding: 12px 12px 24px 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}
.laptop-screen-bezel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 24px;
    background: #0f172a;
    border-radius: 0;
}

.laptop-screen-content {
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
    height: 450px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid #334155;
}

.laptop-base {
    background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
    height: 20px;
    border-radius: 0 0 24px 24px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5), 0 30px 60px rgba(0,0,0,0.15);
}
.laptop-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 10px;
    background: #94a3b8;
    border-radius: 0 0 10px 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Mobile Mockup Premium */
.mobile-mockup-premium {
    position: absolute;
    bottom: -40px;
    right: 20px;
    width: 220px;
    z-index: 15;
}
.mobile-screen-bezel {
    background: #0f172a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.2), inset 0 0 0 2px #334155;
    position: relative;
}
.mobile-screen-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #0f172a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}
.mobile-screen-content {
    background: #f8fafc;
    border-radius: 32px;
    height: 460px;
    overflow: hidden;
    position: relative;
}

/* Mockup Internal Fake UI (Laptop) */
.fake-header { height: 60px; background: white; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid #e2e8f0; }
.fake-logo { width: 40px; height: 16px; background: #cbd5e1; border-radius: 4px; }
.fake-nav { display: flex; gap: 16px; }
.fake-nav span { width: 40px; height: 6px; background: #e2e8f0; border-radius: 4px; }

.fake-hero { height: 220px; background: #eff6ff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 0 40px; }
.fake-h1 { width: 60%; height: 24px; background: #1e293b; border-radius: 4px; }
.fake-p { width: 40%; height: 12px; background: #94a3b8; border-radius: 4px; }
.fake-btn { width: 120px; height: 32px; background: var(--color-secondary); border-radius: 16px; margin-top: 8px; }

.fake-services { display: flex; gap: 24px; padding: 24px 40px; justify-content: center; }
.fake-card { flex: 1; height: 100px; background: white; border-radius: 12px; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.fake-fab { position: absolute; bottom: 24px; right: 24px; width: 48px; height: 48px; background: var(--color-secondary); border-radius: 24px; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4); }

/* Mockup Internal Fake UI (Mobile) */
.fake-header-m { height: 50px; background: white; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; padding-top: 12px; border-bottom: 1px solid #e2e8f0; }
.fake-logo-m { width: 30px; height: 12px; background: #cbd5e1; border-radius: 4px; }
.fake-menu-m { color: #94a3b8; }

.fake-hero-m { height: 180px; background: #eff6ff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 0 20px; }
.fake-h1-m { width: 80%; height: 20px; background: #1e293b; border-radius: 4px; }
.fake-btn-m { width: 100px; height: 32px; background: var(--color-secondary); border-radius: 16px; }

.fake-services-m { display: flex; flex-direction: column; gap: 16px; padding: 20px; }
.fake-card-m { height: 80px; background: white; border-radius: 12px; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.fake-fab-m { position: absolute; bottom: 20px; right: 20px; width: 40px; height: 40px; background: var(--color-secondary); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4); }

/* Main float animations */
.float-animation { animation: float-main 8s ease-in-out infinite; }
.float-animation-delayed { animation: float-main 8s ease-in-out infinite 2s; }

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

@media (max-width: 768px) {
    .mobile-mockup-premium {
        position: relative;
        bottom: 0;
        right: 0;
        margin: -60px auto 0;
    }
    .laptop-mockup { display: none; }
    .hero-premium-title { font-size: 2.5rem; }
    .hero-premium-buttons .btn { width: 100%; }
}

/* CARDS */
.card {
    background: var(--color-surface);
    border: 1px solid rgba(229, 234, 240, 0.6);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.4); /* Accent border on hover */
}

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

.card-title {
    margin-bottom: 12px;
}

.card p {
    color: var(--color-text-muted);
}

/* Colors for icons */
.error-bg { background-color: var(--color-error-bg); }
.error-text { color: var(--color-error-text); }
.warning-bg { background-color: var(--color-warning-bg); }
.warning-text { color: var(--color-warning-text); }
.success-bg { background-color: var(--color-success-bg); }
.success-text { color: var(--color-success-text); }
.primary-bg { background-color: var(--color-surface-low); }
.primary-text { color: var(--color-primary); }

/* SOLUTION SECTION */
.solution-image {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-mockup {
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
}

.mobile-mockup-screen {
    background: var(--color-background);
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.mobile-mockup-header { height: 60px; background: white; border-bottom: 1px solid var(--color-border); }
.mobile-mockup-hero { height: 180px; background: var(--color-surface-low); margin-bottom: 20px; }
.mobile-mockup-content { height: 100px; background: white; margin: 0 16px 16px; border-radius: 12px; }
.mobile-mockup-fab {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* PROCESO SECTION */
.steps-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
    transform: translateY(-50%);
}

.step-card {
    padding: 24px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--color-surface-low);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
}

/* INCLUDES SECTION */
.include-grid .card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.icon-lg {
    font-size: 2.5rem;
    color: var(--color-primary);
}
.text-success { color: var(--color-secondary); }

/* PRICING */
.pricing-card {
    padding: 48px 32px;
}

.pricing-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-secondary);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1;
}

.pricing-desc {
    color: var(--color-text-muted);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    margin-top: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

details[open] .faq-question span {
    transform: rotate(180deg);
}

details .faq-question span {
    transition: transform 0.3s ease;
}

/* CTA FINAL */
.cta-final {
    padding: 80px 24px;
}

/* GLOW EFFECTS */
.bg-glow {
    position: relative;
}

.bg-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--color-glow-blue) 0%, var(--color-glow-green) 50%, rgba(246,250,255,0) 80%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

.bg-glow-blue-green {
    background: radial-gradient(circle at top left, var(--color-glow-blue) 0%, transparent 60%),
                radial-gradient(circle at bottom right, var(--color-glow-green) 0%, transparent 60%);
    background-color: var(--color-surface-low);
}

/* Premium Problem Section */
.section-problem-premium {
    background-color: #F6FAFF;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}
.problem-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.problem-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(189, 235, 255, 0.4) 0%, rgba(217, 251, 232, 0.2) 40%, rgba(246, 250, 255, 0) 70%);
    animation: slow-spin 20s linear infinite;
    pointer-events: none;
}
@keyframes slow-spin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.premium-problem-card {
    background: #FFFFFF;
    border: 1px solid #E5EAF0;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(7, 27, 51, 0.03);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fade-up 0.8s ease-out both;
}
.premium-problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 27, 51, 0.08);
    border-color: #cbd5e1;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

.card-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.3s ease;
}
.premium-problem-card:hover .card-icon-container {
    transform: scale(1.05);
}
.card-icon-container .material-symbols-outlined {
    font-size: 32px;
}
.micro-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
}

/* Colors for specific cards */
.coral-light-bg { background-color: #FFE2DF; }
.text-coral { color: #f43f5e; }
.coral-bg { background-color: #f43f5e; }

.yellow-light-bg { background-color: #FFF1C2; }
.text-yellow { color: #eab308; }
.yellow-bg { background-color: #eab308; }

.green-light-bg { background-color: #D9FBE8; }
.text-green { color: #10b981; }
.green-bg { background-color: #10b981; }

.glass-btn-dark {
    background: rgba(7, 27, 51, 0.05);
    border: 1px solid rgba(7, 27, 51, 0.1);
    color: #071B33;
    border-radius: 9999px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.glass-btn-dark:hover {
    background: rgba(7, 27, 51, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 27, 51, 0.05);
}
.glass-btn-dark .material-symbols-outlined {
    transition: transform 0.3s ease;
}
.glass-btn-dark:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* Premium Solution Section */
.section-solution-premium {
    background-color: #F6FAFF;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.solution-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189, 235, 255, 0.4) 0%, rgba(217, 251, 232, 0.2) 50%, rgba(246, 250, 255, 0) 80%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #071B33;
    border-radius: 44px;
    padding: 12px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(7, 27, 51, 0.25);
    z-index: 2;
    border: 4px solid #1E293B;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #071B33;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px -5px rgba(7, 27, 51, 0.08);
}

.floating-badge {
    position: absolute;
    padding: 12px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
}

.badge-top-right { top: 40px; right: -50px; }
.badge-bottom-left { bottom: 80px; left: -60px; }
.badge-middle-left { top: 50%; left: -80px; transform: translateY(-50%); }
.badge-bottom-right { bottom: 30px; right: -30px; }

.blue-light-bg { background-color: #E0F2FE; }

@media (max-width: 992px) {
    .floating-badge { display: none; }
    .phone-frame { width: 280px; height: 580px; }
    .grid-2 { grid-template-columns: 1fr; }
    .solution-content { order: -1; margin-bottom: 40px; }
}

/* Premium Benefits Section */
.section-benefits-premium {
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.benefits-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.benefits-glow {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(189, 235, 255, 0.3) 0%, rgba(217, 251, 232, 0.15) 40%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.premium-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.premium-benefit-card {
    background: #FFFFFF;
    border: 1px solid #E5EAF0;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(7, 27, 51, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.premium-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: all 0.4s ease;
}

.premium-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(7, 27, 51, 0.06);
    border-color: #cbd5e1;
}

.premium-benefit-card:hover::before {
    background: linear-gradient(90deg, #BDEBFF, #22C55E);
}

.benefit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.benefit-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.premium-benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon-wrapper .material-symbols-outlined {
    font-size: 28px;
}

.micro-badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blue-bg { background-color: #2563EB; }

.premium-summary-block {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid #E5EAF0;
    border-radius: 32px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px -5px rgba(7, 27, 51, 0.04);
}

.summary-content {
    flex: 1;
}

.summary-visual {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #F0F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #FFFFFF;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    flex-shrink: 0;
    margin-left: 40px;
}

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

@media (max-width: 768px) {
    .premium-benefits-grid {
        grid-template-columns: 1fr;
    }
    .premium-summary-block {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .summary-visual {
        margin-left: 0;
        margin-top: 32px;
        order: -1;
        margin-bottom: 24px;
    }
    .summary-content .btn {
        width: 100%;
    }
}

/* Premium Process Section */
.section-process-premium {
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.process-timeline-wrapper {
    padding: 20px 0;
}

.process-line {
    position: absolute;
    top: 52px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #E5EAF0 0%, #BDEBFF 50%, #E5EAF0 100%);
    z-index: 0;
}

.process-grid {
    gap: 32px;
}

.process-step-card {
    background: #FFFFFF;
    border: 1px solid #E5EAF0;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(7, 27, 51, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 27, 51, 0.06);
    border-color: #cbd5e1;
}

.process-step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #2563EB;
    transition: width 0.4s ease;
}

.process-step-card:hover::after {
    width: 100%;
}

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

.step-number-premium {
    font-size: 2.5rem;
    font-weight: 900;
    color: #F1F5F9;
    letter-spacing: -0.05em;
    line-height: 1;
    text-shadow: 1px 1px 0 #E2E8F0, -1px -1px 0 #E2E8F0, 1px -1px 0 #E2E8F0, -1px 1px 0 #E2E8F0;
    transition: all 0.3s ease;
}

.process-step-card:hover .step-number-premium {
    color: #E0F2FE;
    text-shadow: none;
    transform: scale(1.05);
}

.step-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.process-step-card:hover .step-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

.step-icon-wrapper .material-symbols-outlined {
    font-size: 24px;
}

.process-closing-block {
    margin-top: 64px;
}

.process-summary-visual {
    background: #FFFFFF;
    border: 4px solid #F0F9FF;
}

.time-badge {
    text-align: center;
}

@media (max-width: 1024px) {
    .process-line {
        display: none;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Includes (Bento Grid) Section */
.section-includes-premium {
    background-color: #F6FAFF;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.includes-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.includes-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(189, 235, 255, 0.4) 0%, rgba(217, 251, 232, 0.2) 40%, rgba(246, 250, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 24px;
}

.bento-card {
    background: #FFFFFF;
    border: 1px solid #E5EAF0;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(7, 27, 51, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(7, 27, 51, 0.06);
    border-color: #cbd5e1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    justify-content: space-between;
}

.bento-large .bento-visual {
    margin-top: 24px;
    width: 100%;
    height: 160px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.bento-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon-wrapper, .bento-card:hover .bento-icon-wrapper-small {
    transform: scale(1.1) rotate(5deg);
}

.bento-small {
    padding: 24px;
}

.bento-icon-wrapper-small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.bento-icon-wrapper-small .material-symbols-outlined {
    font-size: 20px;
}

.includes-closing-block {
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 15px 35px -5px rgba(7, 27, 51, 0.04);
    border: 1px solid #E5EAF0;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-large {
        grid-column: span 1;
        grid-row: auto;
    }
    .includes-closing-block {
        padding: 32px 20px;
    }
}

/* Premium Pricing Section */
.section-pricing-premium {
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.pricing-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pricing-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(217, 251, 232, 0.4) 0%, rgba(246, 250, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(189, 235, 255, 0.3) 0%, rgba(246, 250, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
    margin-bottom: 48px;
}

.pricing-card-premium {
    background: #FFFFFF;
    border: 1px solid #E5EAF0;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 4px 25px rgba(7, 27, 51, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(7, 27, 51, 0.08);
}

.starter-card {
    border-top: 4px solid #E5EAF0;
}

.pro-card {
    border: 2px solid #22C55E;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.1);
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FFF9 100%);
}

.pro-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #15ba53, #16A34A);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.pricing-header {
    margin-bottom: 32px;
    text-align: center;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #071B33;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 16px;
    color: #071B33;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 6px;
    margin-right: 4px;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.plan-desc {
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.6;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.feature-subtitle {
    font-weight: 700;
    color: #071B33;
    font-size: 1.05rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5EAF0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.5;
}

.check-icon {
    color: #BDEBFF;
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.pro-icon {
    color: #22C55E;
}

.pro-text {
    font-weight: 600;
    color: #071B33;
}

.pricing-footer {
    text-align: center;
}

.plan-note {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-top: 16px;
}

/* Trust Block */
.pricing-trust-block {
    background: #F8FAFC;
    border: 1px solid #E5EAF0;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #071B33;
    font-weight: 600;
    font-size: 1rem;
}

.trust-note {
    font-size: 0.9rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .pricing-card-premium {
        padding: 32px;
    }
    .amount {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .trust-items {
        flex-direction: column;
        gap: 16px;
    }
    .trust-item {
        justify-content: center;
    }
}

/* Premium FAQ Section */
.section-faq-premium {
    background-color: #F6FAFF;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.faq-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(246, 250, 255, 0) 100%);
    pointer-events: none;
}

.faq-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 64px;
    align-items: flex-start;
}

.faq-help-card {
    background: #FFFFFF;
    border: 1px solid #E5EAF0;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(7, 27, 51, 0.04);
    position: relative;
    overflow: hidden;
}

.faq-help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #22C55E);
}

.help-icon {
    width: 48px;
    height: 48px;
    background: #F0F9FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.help-icon span {
    font-size: 24px;
}

.faq-accordion-premium {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-premium {
    background: #FFFFFF;
    border: 1px solid #E5EAF0;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(7, 27, 51, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item-premium:hover {
    box-shadow: 0 4px 15px rgba(7, 27, 51, 0.05);
    border-color: #BDEBFF;
}

.faq-question-premium {
    padding: 24px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #071B33;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question-premium::-webkit-details-marker {
    display: none;
}

.faq-item-premium[open] .faq-question-premium {
    color: #2563EB;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item-premium[open] .faq-icon {
    background: #E0F2FE;
    color: #2563EB;
    transform: rotate(45deg);
}

.faq-answer-premium {
    padding: 0 24px 24px 24px;
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-answer-premium p {
    margin: 0;
    animation: fadeInDown 0.3s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .faq-layout {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    
    .faq-left-col {
        text-align: center;
    }
    
    .faq-help-card {
        margin-top: 32px;
    }
    
    .help-icon {
        margin: 0 auto 20px auto;
    }
}

/* Premium CTA Section */
.cta-final-premium {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #F8FAFC;
}

.cta-glow-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.08) 0%, rgba(248, 250, 252, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.trust-chip {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #E5EAF0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(7, 27, 51, 0.02);
}

.trust-chip .material-symbols-outlined {
    font-size: 16px;
    color: #2563EB;
}

.cta-btn-premium {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.cta-btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
}

/* Premium Footer */
.footer-premium {
    background: #FFFFFF;
    position: relative;
}

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

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #071B33;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #2563EB;
}

.footer-bottom {
    border-top: 1px solid #E5EAF0;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #94A3B8;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .brand-col {
        grid-column: span 1;
    }
    .brand-col p {
        margin: 0 auto 24px auto;
    }
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .trust-badges-top {
        flex-direction: column;
        align-items: center;
    }
}

/* =========================================================
   Audited Responsive Styles (Max-width: 768px)
   ========================================================= */
@media (max-width: 768px) {
    /* General Typography & Spacing */
    :root {
        --gutter: 20px;
    }
    h1, .hero-premium-title {
        font-size: 2.375rem !important; /* ~38px */
        line-height: 1.15;
    }
    h2, .section-title {
        font-size: 1.875rem !important; /* ~30px */
        line-height: 1.25;
    }
    h3, .footer-title, .bento-title, .pricing-name, .faq-question-premium {
        font-size: 1.25rem !important; /* 20px */
        line-height: 1.3;
    }
    p, .section-text, .hero-premium-subtitle, .faq-answer-premium p, .bento-desc {
        font-size: 1.0625rem !important; /* ~17px */
        line-height: 1.5;
    }
    .section, .section-includes-premium, .section-pricing-premium, .section-faq-premium, .cta-final-premium {
        padding: 64px 0 !important;
    }

    /* Buttons */
    .btn, .btn-lg, .btn-sm {
        min-height: 48px;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .hero-premium-buttons, .summary-content .btn {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Header & Mobile Nav */
    .header {
        padding: 16px 0;
    }
    .desktop-nav {
        display: none !important;
    }
    .header-actions .hidden-mobile {
        display: none !important;
    }
    #menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: var(--color-primary);
        font-size: 28px;
        cursor: pointer;
    }
    .mobile-nav {
        display: none;
        flex-direction: column;
        background: white;
        padding: 24px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 100;
        border-radius: 0 0 16px 16px;
    }
    .mobile-nav.active {
        display: flex;
    }
    .mobile-nav a {
        padding: 12px 0;
        color: var(--color-primary);
        font-weight: 600;
        border-bottom: 1px solid #f1f5f9;
        text-decoration: none;
    }
    .mobile-nav .btn {
        margin-top: 16px;
        border-bottom: none;
        color: white;
    }

    /* Hero */
    .hero-premium-container {
        padding-top: 24px;
    }
    .trust-badges-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .premium-mockup-wrapper {
        margin-top: 40px;
        transform: scale(0.9);
        transform-origin: top center;
    }
    .premium-float {
        display: none !important;
    }
    .mobile-mockup-premium {
        max-width: 100%;
        height: auto;
    }

    /* All Grids to 1 Column */
    .problem-grid, .premium-benefits-grid, .bento-grid, .faq-layout, .footer-grid, .process-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    /* Solución */
    .premium-summary-block {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
    }
    .summary-visual {
        margin: 24px auto 0 auto;
        order: -1;
    }
    .summary-benefits li {
        justify-content: center;
        text-align: left;
    }

    /* Proceso */
    .process-line {
        display: none !important;
    }
    .process-step-card {
        padding: 24px;
        text-align: center;
    }

    /* Precios */
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }
    .pricing-card-premium.pro-card {
        order: -1;
    }
    .pricing-premium-card {
        padding: 32px 24px;
    }

    /* FAQ */
    .faq-help-card {
        margin-top: 0;
        margin-bottom: 32px;
    }
    .faq-question-premium {
        padding: 20px;
    }
    .faq-icon {
        margin-left: 12px;
    }
    
    /* Footer & CTA */
    .trust-badges-top {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .trust-chip {
        justify-content: center;
        width: 100%;
    }
    .footer-col {
        text-align: center;
    }
    .brand-col p {
        margin: 0 auto 24px auto;
    }
    .footer-links li {
        display: block;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* Ensure menu-toggle is hidden on Desktop */
@media (min-width: 769px) {
    #menu-toggle {
        display: none !important;
    }
    .mobile-nav {
        display: none !important;
    }
}

/* =========================================================
   Premium Portfolio Section
   ========================================================= */
.section-portfolio-premium {
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.portfolio-premium-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-card {
    background: #FFFFFF;
    border: 1px solid #E5EAF0;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(7, 27, 51, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.portfolio-card:hover {
    border-color: #2563EB;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}

.portfolio-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-icon-wrapper {
    transform: scale(1.1);
}

.portfolio-icon-wrapper .material-symbols-outlined {
    font-size: 28px;
}

.portfolio-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #071B33;
    margin-bottom: 12px;
}

.portfolio-desc {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .portfolio-card {
        padding: 24px;
        align-items: center;
        text-align: center;
    }
}
