/* ========================================
   PROFESSIONAL SQE1 PRACTICE WEBSITE STYLES
   High-resolution, modern design with visual effects
   ======================================== */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - SQE1 Practice App Theme */
    --primary-purple: #6650a4;
    --primary-purple-dark: #5568D3;
    --accent-pink: #D0BCFF;
    --accent-red: #B80000;

    /* Success & Status */
    --success-green: #4CAF50;
    --warning-yellow: #FF6F00;
    --error-red: #B80000;

    /* Neutrals - App Gray Scale */
    --dark-bg: #1F1F1F;
    --dark-secondary: #3A3A3A;
    --dark-tertiary: #444444;
    --gray-light: #EEEEEE;
    --gray-medium: #CCCCCC;
    --gray-dark: #666666;

    /* Text */
    --text-primary: #1F1F1F;
    --text-secondary: #666666;
    --text-light: #888888;

    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px;
    --card-radius: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

    /* Gradients - App Theme */
    --gradient-primary: linear-gradient(135deg, #6650a4 0%, #B80000 100%);
    --gradient-pink: linear-gradient(135deg, #D0BCFF 0%, #B80000 100%);
    --gradient-blue: linear-gradient(135deg, #6650a4 0%, #5568D3 100%);
    --gradient-green: linear-gradient(135deg, #4CAF50 0%, #E8F5E9 100%);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;

:root {
    --bg: #f5ebdd;
    --surface: #fff9f2;
    --surface-strong: #fff4ea;
    --border: #d8c6b2;
    --text: #1f1a17;
    --muted: #6a5d53;
    --brand: #a61b1b;
    --brand-dark: #7f1111;
    --accent: #0f766e;
    --shadow: 0 24px 80px rgba(39, 24, 12, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(166, 27, 27, 0.07), transparent 28%),
        linear-gradient(180deg, #f9efe4 0%, var(--bg) 100%);
    line-height: 1.65;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    color: var(--brand-dark);
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(245, 235, 221, 0.88);
    border-bottom: 1px solid rgba(111, 86, 68, 0.12);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
}

.brand {
    font-family: "Newsreader", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.97rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.site-nav a[aria-current="page"] {
    color: var(--text);
    border-color: var(--brand);
}

.store-cta,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.store-cta,
.primary-button {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 32px rgba(166, 27, 27, 0.22);
}

.store-cta:hover,
.primary-button:hover {
    color: #fff;
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.secondary-button {
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.5);
}

.secondary-button:hover {
    background: #fff;
    transform: translateY(-1px);
}

.block {
    width: 100%;
}

.hero-panel {
    padding: 72px 0 28px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 28px;
    align-items: start;
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
    color: var(--brand);
    font-weight: 800;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.08;
}

h1,
.site-footer h2 {
    font-family: "Newsreader", serif;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
}

h3 {
    font-size: 1.1rem;
}

.lead {
    font-size: 1.14rem;
    max-width: 62ch;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 0;
}

.fact-card,
.trust-card,
.content-section,
.sidebar-card {
    background: rgba(255, 249, 242, 0.92);
    border: 1px solid rgba(103, 78, 59, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.fact-card {
    padding: 28px;
}

.microcopy {
    font-size: 0.94rem;
    color: var(--muted);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.trust-card {
    padding: 18px;
    text-align: center;
    font-weight: 700;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
    padding-bottom: 72px;
}

.page-content {
    display: grid;
    gap: 20px;
}

.content-section {
    padding: 30px;
}

.content-section p {
    margin: 0 0 14px;
    color: var(--muted);
}

.bullet-list,
.related-links,
.site-footer ul {
    margin: 0;
    padding-left: 22px;
}

.bullet-list li,
.related-links li,
.site-footer li {
    margin: 0 0 8px;
}

.bullet-list.compact li {
    margin-bottom: 6px;
}

.callout {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 4px solid var(--accent);
    background: rgba(15, 118, 110, 0.08);
    color: var(--text);
    border-radius: 14px;
}

.page-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.sidebar-card {
    padding: 24px;
}

.faq-item {
    border-top: 1px solid rgba(103, 78, 59, 0.14);
    padding: 16px 0 0;
    margin-top: 16px;
}

.faq-item:first-of-type {
    margin-top: 0;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 12px;
}

.site-footer {
    background: #201814;
    color: #f0e2d6;
    padding: 44px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
}

.site-footer h2,
.site-footer h3,
.site-footer a {
    color: #fff4ea;
}

.site-footer p {
    color: rgba(255, 244, 234, 0.78);
}

@media (max-width: 980px) {
    .header-inner,
    .hero-grid,
    .content-layout,
    .footer-grid,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .page-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: min(100% - 20px, 1180px);
    }

    .header-inner {
        gap: 14px;
    }

    .site-nav {
        gap: 10px 14px;
    }

    .store-cta {
        width: 100%;
    }

    .hero-panel {
        padding-top: 48px;
    }

    .content-section,
    .fact-card,
    .sidebar-card {
        padding: 22px;
        border-radius: 20px;
    }
}
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-purple);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-purple);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--gray-medium);
    transition: var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-purple);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    background: #000;
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.app-screenshot {
    background: white;
    border-radius: 36px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.screenshot-header {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px 12px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.time {
    font-weight: 600;
    font-size: 14px;
}

.status-icons {
    display: flex;
    gap: 4px;
}

.screenshot-content {
    padding: 24px;
}

.welcome-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.trial-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFF7E6 0%, #FFE6CC 100%);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.trial-icon {
    font-size: 32px;
}

.trial-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

.trial-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
}

.trial-button {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: pulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-pink);
    bottom: -250px;
    left: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-blue);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

/* ========== SECTIONS ========== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: var(--section-padding) 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    border: 1px solid var(--gray-medium);
    border-radius: var(--card-radius);
    padding: 40px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 0.03;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

/* ========== PRICING SECTION ========== */
.pricing {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.pricing-popular {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding: 48px 40px 32px;
    border-bottom: 1px solid var(--gray-medium);
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 8px;
}

.amount {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 24px;
    color: var(--text-secondary);
    margin-top: 24px;
}

.pricing-trial {
    color: var(--success-green);
    font-weight: 600;
    font-size: 16px;
}

.pricing-features {
    padding: 40px;
}

.pricing-features h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-pricing {
    display: block;
    width: calc(100% - 80px);
    margin: 0 40px 32px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.pricing-footer {
    padding: 24px 40px 40px;
    background: var(--gray-light);
}

.pricing-footer p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: var(--section-padding) 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--gray-light);
    padding: 32px;
    border-radius: 20px;
    transition: var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.faq-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ========== DOWNLOAD SECTION ========== */
.download {
    padding: var(--section-padding) 0;
    background: var(--dark-bg);
    color: white;
}

.download-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-card h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.download-card > p {
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: white;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.btn-download:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.btn-download .small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    display: block;
    text-align: left;
}

.btn-download .large {
    font-size: 20px;
    font-weight: 700;
    display: block;
    text-align: left;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat span {
    color: var(--gray-medium);
    font-size: 14px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-secondary);
    color: var(--gray-medium);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--dark-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--dark-tertiary);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: var(--gray-dark);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .cta-buttons {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .phone-mockup {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .download-stats {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}
