/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F8F9FA;
    --color-text-dark: #1A1A1A;
    --color-text-muted: #5A5A5A;
    --color-text-light: #8E8E93;
    
    /* Brand Accent Colors */
    --color-primary: #0052FF;       /* Corporate Blue */
    --color-primary-hover: #0043D0;
    --color-success: #00D084;       /* WhatsApp Green */
    --color-success-hover: #00B873;
    
    /* WhatsApp Interface Specifics */
    --wa-bg: #E5DDD5;
    --wa-bubble-in: #FFFFFF;
    --wa-bubble-out: #E1FFC7;
    --wa-header: #075E54;
    
    /* Border Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Montserrat', var(--font-sans);
    
    /* Shadow Palette */
    --shadow-subtle: 0 4px 18px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-premium: 0 20px 40px rgba(0, 82, 255, 0.05);
    
    /* Transitions */
    --transition-fast: all 0.2s ease-in-out;
    --transition-normal: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Container Widths */
    --container-width: 1200px;
    --container-narrow: 800px;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

ul {
    list-style: none;
}

/* ==========================================================================
   LAYOUT CONTAINERS & GRID
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

.align-center {
    align-items: center;
}

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

/* ==========================================================================
   TYPOGRAPHY & ACCENTS
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.25;
}

h1 {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.875rem;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.text-underline {
    position: relative;
    white-space: nowrap;
}

.text-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-success));
    border-radius: var(--radius-full);
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.25rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    p {
        font-size: 1.125rem;
    }
}

/* Badges & Kickers */
.kicker {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(0, 82, 255, 0.06);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
    white-space: nowrap;
}

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

.btn-md {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Button Variants */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.15);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background-color: #EEEEEE;
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-success);
    color: var(--color-bg-white);
    box-shadow: 0 4px 14px rgba(0, 208, 132, 0.15);
}

.btn-whatsapp:hover {
    background-color: var(--color-success-hover);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.25);
}

.btn-icon {
    margin-right: 8px;
    font-size: 1.1em;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
}

.header-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-accent {
    color: var(--color-primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 480px) {
    .header-cta .btn-secondary {
        display: none; /* Hide packages button on tiny mobile screens to prioritize WhatsApp */
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 130px;
    padding-bottom: 70px;
    background: radial-gradient(circle at 80% 20%, rgba(0, 82, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(0, 208, 132, 0.02) 0%, transparent 50%);
    overflow: hidden;
}

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

.hero-subtitle {
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-actions .btn {
    width: 100%;
}

@media (min-width: 480px) {
    .hero-actions .btn {
        width: auto;
    }
}

.cta-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 4px;
}

/* ==========================================================================
   WHATSAPP INTERACTIVE SIMULATOR (HERO VISUAL)
   ========================================================================== */
.chat-mockup-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.chat-mockup {
    width: 100%;
    max-width: 380px;
    height: 480px;
    background-color: var(--wa-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 6px solid #1A1A1A;
}

/* Chat Header */
.chat-header {
    background-color: var(--wa-header);
    color: var(--color-bg-white);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar-svg {
    position: relative;
    display: flex;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--color-success);
    border: 2px solid var(--wa-header);
    border-radius: var(--radius-full);
    position: absolute;
    bottom: 0;
    right: 0;
}

.chat-user-details h3 {
    font-size: 0.95rem;
    color: var(--color-bg-white);
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-user-details h3 span {
    font-size: 0.65rem;
    font-family: var(--font-sans);
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.chat-status {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.chat-header-actions {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

/* Chat Messages Area */
.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

/* Scrollbar styling for chat messages */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}
.chat-messages::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-full);
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.4;
    position: relative;
    animation: bubbleReveal 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
    display: flex;
    flex-direction: column;
}

@keyframes bubbleReveal {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bubble-left {
    background-color: var(--wa-bubble-in);
    color: var(--color-text-dark);
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.bubble-right {
    background-color: var(--wa-bubble-out);
    color: var(--color-text-dark);
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.bubble-time {
    font-size: 0.65rem;
    color: var(--color-text-light);
    align-self: flex-end;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

/* Chat Interactive Box */
.chat-interactive-box {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-interactive-btn {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.chat-interactive-btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
}

.chat-typing-indicator {
    align-self: flex-start;
    background-color: var(--wa-bubble-in);
    border-radius: var(--radius-md);
    border-top-left-radius: 2px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-text-light);
    border-radius: var(--radius-full);
    animation: typingPulse 1s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingPulse {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-4px); opacity: 1; }
}

/* Chat Footer */
.chat-footer {
    background-color: #F0F0F0;
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-input {
    flex: 1;
    border: none;
    outline: none;
    background-color: var(--color-bg-white);
    padding: 10px 14px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-text-dark);
}

.chat-send-btn {
    width: 36px;
    height: 36px;
    background-color: var(--wa-header);
    color: var(--color-bg-white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-send-btn:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */
.problem-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.problem-section h2 {
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.35;
}

.pain-points {
    margin-top: 40px;
}

.pain-card {
    background-color: var(--color-bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
    text-align: left;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.pain-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: rgba(0, 82, 255, 0.06);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pain-card h3 {
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.95rem;
}

/* ==========================================================================
   SOLUTION SECTION
   ========================================================================== */
.solution-section {
    padding: 100px 0;
    overflow: hidden;
}

.solution-content {
    max-width: 520px;
}

.section-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.section-text {
    margin-bottom: 30px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(0, 208, 132, 0.1);
    color: var(--color-success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Phone Mockup Layout */
.phone-mockup {
    width: 320px;
    height: 600px;
    border: 12px solid #1A1A1A;
    border-radius: 36px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background-color: var(--wa-bg);
    box-shadow: var(--shadow-medium);
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    background-color: #054C44;
    color: var(--color-bg-white);
    padding: 8px 20px 4px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
}

.phone-status-icons {
    display: flex;
    gap: 4px;
}

.phone-app-header {
    background-color: var(--wa-header);
    color: var(--color-bg-white);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-back-arrow {
    font-size: 1.2rem;
    cursor: pointer;
}

.phone-contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-avatar {
    font-size: 1.5rem;
}

.phone-contact-info h4 {
    font-size: 0.85rem;
    color: var(--color-bg-white);
    margin: 0;
}

.phone-contact-info p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.phone-chat-area {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-cta-box {
    margin-top: 8px;
    background-color: var(--color-bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.chat-cta-box strong {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.chat-cta-box p {
    font-size: 0.75rem;
    margin-bottom: 4px;
    color: var(--color-text-dark);
}

/* ==========================================================================
   PRICING / STAIRCASE OF DIGITAL GROWTH
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.pricing-section .section-subtitle {
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

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

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

.pricing-card {
    background-color: var(--color-bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-subtle);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* Highlight Featured Card (Level 2) */
.pricing-featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-premium);
    transform: scale(1.02);
}

@media (min-width: 1024px) {
    .pricing-featured {
        transform: scale(1.05);
    }
    .pricing-featured:hover {
        transform: scale(1.08) translateY(-4px);
    }
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 24px;
    text-align: left;
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 12px;
}

.price .currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.price .amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-dark);
    font-family: var(--font-display);
}

.price .period {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-left: 4px;
}

.pricing-desc {
    font-size: 0.875rem;
    line-height: 1.4;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.pricing-featured .pricing-features li::before {
    color: var(--color-success);
}

.pricing-footer {
    margin-top: auto;
}

/* ==========================================================================
   PROCESS / ONBOARDING SECTION
   ========================================================================== */
.process-section {
    padding: 100px 0;
}

.process-steps {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Horizontal connection line */
    .process-steps::before {
        content: '';
        position: absolute;
        top: 35px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, rgba(0, 82, 255, 0.1) 0%, rgba(0, 208, 132, 0.1) 100%);
        z-index: 1;
    }
}

.step {
    position: relative;
    z-index: 2;
    background-color: var(--color-bg-white);
    padding: 0 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 8px var(--color-bg-white), var(--shadow-subtle);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-normal);
}

.step:hover .step-number {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    transform: scale(1.05);
    box-shadow: 0 0 0 8px var(--color-bg-white), 0 4px 14px rgba(0, 82, 255, 0.2);
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(0, 208, 132, 0.03) 0%, rgba(0, 82, 255, 0.03) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.cta-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-subtitle {
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

.cta-actions .btn {
    width: 100%;
    max-width: 320px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0;
    color: var(--color-text-muted);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
}

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

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

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

.footer-copy {
    width: 100%;
    font-size: 0.8rem;
    color: var(--color-text-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 24px;
    text-align: center;
}

.footer-links a:not(:last-child)::after {
    content: "·";
    margin-left: 20px;
    color: rgba(0, 0, 0, 0.2);
}

.footer-legal-text {
    width: 100%;
    font-size: 0.65rem;
    color: var(--color-text-light);
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-legal-text p {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
}

.link-highlight {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 82, 255, 0.3);
    transition: var(--transition-fast);
}

.link-highlight:hover {
    color: var(--color-primary-hover);
    text-decoration-color: var(--color-primary-hover);
}

@media (min-width: 768px) {
    .footer-copy {
        margin-top: 20px;
    }
}

/* ==========================================================================
   SCROLL REVEAL UTILITIES
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-left {
    transform: translateX(30px);
}

.scroll-reveal.reveal-right {
    transform: translateX(-30px);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}
