:root {
    /* Color Palette */
    --background: 0 0% 100%;
    /* Default to white for light mode */
    --tw-bg-opacity: 1;
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --secondary: #3b82f6;
    --bg-light: hsl(var(--background) / var(--tw-bg-opacity));
    --bg-alt: #f8fafc;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --white: #ffffff;
    --dark: #0f172a;
    --error: #ef4444;
    --success: #2563EB;
    --problem-bg: rgba(239, 68, 68, 0.08);
    --solution-bg: rgba(37, 99, 235, 0.08);
    --border: #e2e8f0;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --background: 222 47% 11%;
    /* #0f172a converted to HSL */
    --bg-light: #0f172a;
    --bg-alt: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --border: #334155;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.5s ease;
    overflow-x: hidden;
    position: relative;
}

.bg-background {
    background-color: hsl(var(--background) / var(--tw-bg-opacity, 1));
}

/* Background Glows */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::before {
    top: -10%;
    left: -20%;
}

body::after {
    bottom: -10%;
    right: -20%;
}

[data-theme="dark"] body::before,
[data-theme="dark"] body::after {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0) 70%);
}

h1,
h2,
h3,
h4,
h5,
.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-padding {
    padding: var(--section-padding);
}

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

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

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

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

/* Layout Grid */
.grid {
    display: grid;
    gap: 32px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(var(--bg-light), 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.25rem;
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

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

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

.btn-secondary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background-color: #f1f5f9;
    transform: scale(1.05);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Theme Toggle */
.theme-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-btn:hover {
    background-color: var(--bg-alt);
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-ctas {
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1))
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-image {
    position: relative;
}

.phone-container {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Sections Header */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

/* Cards */
.card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

/* Problem vs Solution */
.card-problem {
    border: 1px solid rgba(239, 68, 68, 0.2);
    background-color: var(--problem-bg);
}

.card-solution {
    border: 1px solid rgba(245, 158, 11, 0.2);
    background-color: var(--solution-bg);
}

.card-icon {
    font-size: 2rem;
    /* margin-bottom: 24px; */
}

.card-icon.error {
    color: var(--error);
}

.card-icon.success {
    color: var(--success);
}

.list-items {
    margin-top: 24px;
}

.list-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
}

[data-theme="dark"] .list-items li {
    background: var(--bg-alt);
}

.list-items li i {
    color: var(--text-secondary);
    width: 20px;
}

.card-problem .list-items li i {
    color: var(--error);
}

.card-solution .list-items li i {
    color: var(--primary);
}

/* Features */
.feature-card {
    text-align: center;
    padding: 48px 32px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-card h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

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

/* Steps */
.how-it-works {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-alt));
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting line (desktop only) */
@media (min-width: 992px) {
    .steps-container::before {
        content: '';
        position: absolute;
        top: 45px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
        z-index: 0;
    }
}

/* Vertical line for tablet/mobile */
@media (max-width: 991px) {
    .steps-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 50px;
    }

    .steps-container::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: linear-gradient(to bottom, transparent, var(--border), transparent);
        z-index: 0;
        transform: translateX(-50%);
    }
}

.step {
    position: relative;
    z-index: 1;
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.step-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.8;
}

.step h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Use Cases Redesign */
.use-cases {
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    z-index: 0;
    transform: translate(-50%, -50%);
}

.use-case-card {
    background: var(--bg-alt);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .use-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.use-case-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #1D4ED8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

[data-theme="dark"] .use-case-title {
    color: white;
}

.use-case-content {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

[data-theme="dark"] .use-case-content {
    color: rgba(255, 255, 255, 0.7);
}

.smart-info {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
}

/* Gallery Redesign */
.gallery {
    padding-bottom: 120px;
}

.gallery-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 40px;
}

.gallery-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 40px 0;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    perspective: 1000px;
    -webkit-overflow-scrolling: touch;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 300px;
    scroll-snap-align: center;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--dark);
    background: var(--dark);
    transition: var(--transition);
    filter: brightness(0.7);
}

.gallery-item.active img {
    filter: brightness(1);
    transform: scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.4);
    border-color: var(--primary);
}

.screen-info {
    margin-top: 24px;
    text-align: center;
    opacity: 0.5;
    transition: var(--transition);
}

.gallery-item.active .screen-info {
    opacity: 1;
    transform: translateY(-5px);
}

.screen-info h5 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.screen-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Scroll Indicators */
.scroll-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.scroll-hint i {
    animation: bounceX 2s infinite;
}

@keyframes bounceX {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* Privacy Redesign */
.privacy {
    position: relative;
    background-color: var(--bg-light);
}

.privacy-card {
    background: linear-gradient(145deg, var(--bg-alt), var(--bg-light));
    border-radius: 32px;
    padding: 60px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

.privacy-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.privacy-info h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.privacy-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.privacy-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

[data-theme="dark"] .privacy-feature {
    background: rgba(255, 255, 255, 0.03);
}

.privacy-feature:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.privacy-feature i {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
}

.privacy-feature strong {
    display: block;
    margin-bottom: 4px;
}

.privacy-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.privacy-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-shield {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed var(--primary);
    position: relative;
    padding: 20px;
}

.trust-shield::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .privacy-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .privacy-card {
        padding: 40px 24px;
    }

    .privacy-feature {
        text-align: left;
    }

    .privacy-visual {
        order: -1;
        margin-bottom: 40px;
    }
}

/* Feedback & Final CTA Redesign */
.feedback-card {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-light) 100%);
    padding: 80px 40px;
    border-radius: 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    z-index: 0;
}

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

.feedback-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feedback-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.final-cta {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9;
}

/* Footer Redesign */
.footer {
    padding: 100px 0 40px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.link-group h5 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 28px;
    position: relative;
}

.link-group h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.link-group ul li {
    margin-bottom: 16px;
}

.link-group a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .link-group h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .final-cta h2 {
        font-size: 2.25rem;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s all ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s all ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s all ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Legal Pages Styling */
.legal-header {
    text-align: center;
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.legal-header h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

[data-theme="dark"] .legal-header h1 {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.legal-content-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
    line-height: 1.8;
}

[data-theme="dark"] .legal-content-card {
    background: rgba(255, 255, 255, 0.02);
}

.legal-content-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .legal-content-card h3 {
    color: white;
}

.legal-content-card h3:first-child {
    margin-top: 0;
}

.legal-content-card h4,
.legal-content-card h5 {
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.legal-content-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.legal-content-card ul {
    margin-bottom: 24px;
    margin-left: 24px;
    color: var(--text-secondary);
    list-style-type: disc;
}

.legal-content-card li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.legal-content-card strong {
    color: var(--text-primary);
}

[data-theme="dark"] .legal-content-card strong {
    color: white;
}

/* Icons utility */
.icon-xs {
    width: 14px;
    height: 14px;
}

.icon-sm {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

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

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

    .section-padding {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .legal-header h1 {
        font-size: 2.5rem;
    }

    .legal-content-card {
        padding: 32px 24px;
        font-size: 1rem;
    }
}