/* ===================================
   SciLift Landing Page Styles
   =================================== */

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --primary: #E9C16C;
    --primary-dark: #D4A84A;
    --primary-light: #F0D08A;
    --primary-rgb: 233, 193, 108;

    /* Light Theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F0F1F3;
    --surface: #FFFFFF;
    --surface-elevated: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-tertiary: #8A8A8A;
    --border: rgba(0, 0, 0, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Z-index */
    --z-header: 100;
    --z-modal: 200;
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #0D0D0D;
    --bg-secondary: #141414;
    --bg-tertiary: #1A1A1A;
    --surface: #1A1A1A;
    --surface-elevated: #222222;
    --text-primary: #F5F5F5;
    --text-secondary: #AAAAAA;
    --text-tertiary: #777777;
    --border: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(30, 30, 30, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-base), color var(--transition-base);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

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

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

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

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #1A1A1A;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(var(--primary-rgb), 0.5);
}

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

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

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

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: var(--space-md) 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

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

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 36px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-left: auto;
    margin-right: var(--space-xl);
}

.nav__link {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--primary);
}

.nav__link:hover::after {
    width: 100%;
}

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

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    background: var(--primary);
    color: #1A1A1A;
}

.theme-toggle__icon--sun {
    display: block;
}

.theme-toggle__icon--moon {
    display: none;
}

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

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--bg-tertiary);
}

.nav__toggle-bar {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-lg);
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.active .nav__toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav__toggle.active .nav__toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active .nav__toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-3xl)) var(--space-3xl) var(--space-3xl);
    overflow: hidden;
}

.hero__bg-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out;
}

.hero__brand {
    display: block;
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(var(--primary-rgb), 0.4);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.5s ease-out 0.05s backwards;
}

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero__title-accent {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.4s backwards;
    padding: 30px 0;
    overflow: visible;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero__phone {
    position: relative;
    z-index: 2;
}

.hero__phone-frame {
    width: 280px;
    height: 560px;
    background: var(--surface-elevated);
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 25px 50px -12px var(--shadow-color),
        0 0 0 1px var(--border);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

.hero__phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.hero__download {
    position: absolute;
    right: -140px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero__download-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.hero__store-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero__store-badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    transition: all var(--transition-base);
    cursor: default;
    min-width: 160px;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.hero__store-badge:hover {
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.hero__store-badge svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.hero__store-name {
    font-size: var(--font-size-base);
    font-weight: 600;
}

.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px var(--shadow-color);
    animation: floatCard 5s ease-in-out infinite;
}

.hero__floating-card--1 {
    top: 15%;
    right: 0;
    animation-delay: 0s;
}

.hero__floating-card--2 {
    bottom: 20%;
    left: 0;
    animation-delay: 2.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.hero__floating-icon {
    font-size: var(--font-size-xl);
}

.hero__floating-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@media (max-width: 968px) {
    .hero {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: none;
    }

    .hero__content {
        order: 1;
    }

    .hero__visual {
        order: 2;
        margin-bottom: var(--space-xl);
    }

    .hero__title {
        font-size: var(--font-size-4xl);
    }

    .hero__description {
        margin: 0 auto var(--space-xl);
    }

    .hero__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__brand {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero__visual {
        order: 2;
        margin-bottom: var(--space-xl);
        width: 100%;
        overflow: visible;
    }

    .hero__phone-frame {
        width: 220px;
        height: 440px;
    }

    .hero__floating-card {
        display: none;
    }

    .hero__download {
        position: static !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
        margin-top: var(--space-xl);
        width: 100%;
    }

    .hero__store-badges {
        flex-direction: row;
    }

    .hero__store-badge {
        padding: var(--space-md) var(--space-lg);
        min-width: 130px;
        flex: 1;
        justify-content: center;
    }

    .hero__store-badge svg {
        width: 20px;
        height: 20px;
    }

    .hero__store-name {
        font-size: var(--font-size-sm);
    }

    .hero__scroll-indicator {
        display: none;
    }
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

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

.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
}

.feature-card__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.feature-card__description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

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

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

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

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about__text .section-badge {
    display: inline-block;
}

.about__text .section-title {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.about__description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.about__description strong {
    color: var(--primary);
}

.about__stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about__stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
    font-weight: 500;
}

.about__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: start;
    margin-top: var(--space-2xl);
}

.about__image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.about__image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    animation: float 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

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

    .about__text .section-title {
        text-align: center;
    }

    .about__stats {
        justify-content: center;
    }

    .about__visual {
        order: -1;
        margin-bottom: var(--space-sm);
        margin-top: 0;
    }

    .about__image-wrapper {
        width: 150px;
        height: 150px;
    }

    .about__image {
        width: 120px;
        height: 120px;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.contact__card {
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact__card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact__content {
    position: relative;
    z-index: 1;
}

.contact__content .section-title {
    margin-bottom: var(--space-lg);
}

.contact__description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

.contact__content .btn {
    max-width: 100%;
    word-break: break-all;
}

@media (max-width: 640px) {
    .contact__card {
        padding: var(--space-2xl) var(--space-lg);
    }

    .contact__content .btn {
        font-size: var(--font-size-sm);
        padding: var(--space-md) var(--space-lg);
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-2xl);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
}

.footer__logo {
    height: 32px;
    width: auto;
    margin-bottom: var(--space-sm);
}

.footer__tagline {
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}

.footer__links {
    display: flex;
    gap: var(--space-xl);
}

.footer__link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--primary);
}

.footer__bottom {
    text-align: center;
}

.footer__copyright {
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}

@media (max-width: 640px) {
    .footer__content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
        align-items: center;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact__content .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Privacy Policy Page
   =================================== */
.privacy {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    min-height: 100vh;
}

.privacy__content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.privacy__intro {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border);
}

.privacy__section {
    margin-bottom: var(--space-2xl);
}

.privacy__section:last-of-type {
    margin-bottom: 0;
}

.privacy__heading {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.privacy__heading::before {
    content: '';
    width: 4px;
    height: 1.2em;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
}

.privacy__subheading {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.privacy__text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.privacy__text:last-child {
    margin-bottom: 0;
}

.privacy__text--muted {
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
    font-style: italic;
}

.privacy__list {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.privacy__list li {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    position: relative;
}

.privacy__list li::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-lg));
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.privacy__list a {
    color: var(--primary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.privacy__list a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.privacy__content a {
    color: var(--primary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.privacy__content a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.privacy__footer {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
    text-align: center;
}

@media (max-width: 768px) {
    .privacy {
        padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    }

    .privacy__content {
        padding: var(--space-xl);
        border-radius: var(--radius-xl);
    }

    .privacy__heading {
        font-size: var(--font-size-lg);
    }

    .privacy__subheading {
        font-size: var(--font-size-base);
    }
}