/*
 * NeverMiss Local - Vanilla CSS Stylesheet
 * Custom color scheme: Navy Blue (#0B192C) & White, accented with Safety Orange (#FF6500)
 * Modern typography: Outfit (Headings) and Inter (Body)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --color-navy-dark: #0B192C;
    --color-navy-medium: #1E3E62;
    --color-navy-light: #1e3e620d;
    --color-orange: #FF6500;
    --color-orange-hover: #E05300;
    --color-orange-light: rgba(255, 101, 0, 0.1);
    --color-white: #FFFFFF;
    --color-bg-light: #F8FAFC;
    --color-text-dark: #0F172A;
    --color-text-body: #334155;
    --color-text-muted: #64748B;
    --color-border: #E2E8F0;
    
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 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);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 18px;
    --border-radius-xl: 28px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-body);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-navy-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-navy {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
}

.bg-navy h2, .bg-navy h3, .bg-navy h4 {
    color: var(--color-white);
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-orange { color: var(--color-orange); }
.text-muted { color: var(--color-text-muted); }

.tagline {
    font-family: var(--font-headings);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-orange);
    margin-bottom: 12px;
    display: inline-block;
}

/* Button & CTA Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
    text-align: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(255, 101, 0, 0.4);
}

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

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

.btn-secondary:hover {
    background-color: var(--color-navy-light);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-navy-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-orange-outline {
    background-color: transparent;
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
}

.btn-orange-outline:hover {
    background-color: var(--color-orange-light);
    transform: translateY(-2px);
}

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

/* Navigation Header */
header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-navy-dark);
}

.logo-icon {
    width: 32px;
    height: 32px;
    fill: var(--color-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-family: var(--font-headings);
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-orange);
}

.nav-cta {
    font-size: 0.95rem;
    padding: 10px 20px;
}

/* Mobile Nav Toggle styles (Pure CSS fallback & JS support) */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-navy-dark);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 24px;
        transition: var(--transition-normal);
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active {
        left: 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 100% 0%, var(--color-bg-light) 0%, var(--color-white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-navy-dark);
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    display: block;
    color: var(--color-orange);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-body);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    fill: var(--color-orange);
}

/* Interactive Mobile Mockup in Hero */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 320px;
    height: 600px;
    background-color: #111827;
    border: 12px solid #374151;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phone-speaker {
    width: 60px;
    height: 4px;
    background-color: #4b5563;
    border-radius: 2px;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.phone-header {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    padding: 24px 16px 12px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-header-title {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
}

.phone-header-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
}

.phone-screen {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #0f172a;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.4;
    animation: fadeInBubble 0.7s ease forwards;
    opacity: 0;
}

.chat-bubble.incoming {
    background-color: #1e293b;
    color: var(--color-white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
    background-color: var(--color-orange);
    color: var(--color-white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    animation-delay: 2s;
}

.chat-bubble.incoming-2 {
    background-color: #1e293b;
    color: var(--color-white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    animation-delay: 5s;
}

.chat-bubble.outgoing-2 {
    background-color: var(--color-orange);
    color: var(--color-white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    animation-delay: 7s;
}

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

.phone-badge {
    align-self: center;
    background-color: var(--color-orange-light);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px dashed var(--color-orange);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.75rem;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-trust-badges {
        justify-content: center;
    }
}

/* Calculator Section */
.calculator-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.calc-row {
    margin-bottom: 30px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-label-row label {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--color-navy-dark);
}

.calc-value-display {
    font-family: var(--font-headings);
    font-weight: 800;
    color: var(--color-orange);
    font-size: 1.25rem;
}

.slider-input {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    background: #E2E8F0;
    accent-color: var(--color-orange);
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-orange);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 101, 0, 0.4);
    transition: var(--transition-fast);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-results {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    margin-top: 40px;
    text-align: center;
}

.calc-result-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94A3B8;
    margin-bottom: 8px;
}

.calc-leak-amount {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 16px;
}

.calc-leak-note {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.calc-leak-note strong {
    color: var(--color-white);
}

@media (max-width: 576px) {
    .calculator-box {
        padding: 24px;
    }
    .calc-leak-amount {
        font-size: 2.5rem;
    }
}

/* Workflow Section (Zero-Effort Workflow) */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.workflow-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-navy-medium);
}

.workflow-step-num {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-bg-light);
    line-height: 1;
    z-index: 1;
}

.workflow-card-content {
    position: relative;
    z-index: 2;
}

.workflow-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--color-navy-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.workflow-icon {
    width: 32px;
    height: 32px;
    fill: var(--color-navy-dark);
}

.workflow-card:hover .workflow-icon {
    fill: var(--color-orange);
}

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

.workflow-card p {
    color: var(--color-text-body);
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Anti-Software Section */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.advantage-checklist {
    list-style: none;
}

.advantage-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.advantage-check-box {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-check-icon {
    width: 16px;
    height: 16px;
    fill: var(--color-orange);
}

.advantage-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.advantage-item-content p {
    color: var(--color-text-body);
    font-size: 0.95rem;
}

/* Visual comparison side-by-side card */
.comparison-card {
    background-color: var(--color-navy-dark);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.comparison-card h3 {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-list {
    list-style: none;
}

.comparison-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-list-item:last-child {
    border-bottom: none;
}

.comparison-badge {
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.comparison-badge.red {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.comparison-badge.green {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

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

/* Features Grid (Reputation Suite) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 24px;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: var(--color-navy-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 32px;
    height: 32px;
    fill: var(--color-navy-dark);
}

.feature-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.feature-info p {
    color: var(--color-text-body);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-box {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
}

/* Pricing Section */
.pricing-card {
    background-color: var(--color-white);
    border: 3px solid var(--color-navy-dark);
    border-radius: var(--border-radius-xl);
    padding: 60px 40px;
    max-width: 600px;
    margin: 50px auto 0 auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 24px;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(255, 101, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.price-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.price-tag {
    font-family: var(--font-headings);
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    line-height: 1;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.price-tag span {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin: 30px 0 40px 0;
    display: inline-block;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--color-orange);
    flex-shrink: 0;
}

.pricing-trust-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pricing-trust-note span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.compliance-badge-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.compliance-logo {
    width: 20px;
    height: 20px;
    fill: #10B981;
}

.compliance-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 40px 20px;
    }
    .price-tag {
        font-size: 3.5rem;
    }
}

/* Contact Page Form */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info-panel {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h2 {
    color: var(--color-white);
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.contact-details {
    margin: 40px 0;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-orange);
}

.contact-detail-item a:hover {
    color: var(--color-orange);
    text-decoration: underline;
}

.contact-form-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--color-navy-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px var(--color-orange-light);
}

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

.submit-btn {
    width: 100%;
}

.form-success-msg {
    display: none;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #065f46;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info-panel {
        padding: 32px;
    }
    .contact-form-box {
        padding: 32px 20px;
    }
}

/* Legal Pages Styling (Privacy & Terms) */
.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.legal-title {
    font-size: 2.75rem;
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--color-text-body);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--color-text-body);
}

.legal-content li {
    margin-bottom: 10px;
}

/* Footer Section */
footer {
    background-color: var(--color-navy-dark);
    color: #94A3B8;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about .logo {
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links-title {
    color: var(--color-white);
    font-family: var(--font-headings);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
