/* ============================================
   GIFTURE — App Promotion Website v2
   Brand Colors: Red #EF3E36  |  Blue #1B4DB1
   Font: Inter (Google Fonts)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --red: #EF3E36;
    --red-light: #FEF2F2;
    --red-medium: #FCA5A5;
    --red-dark: #C62828;
    --blue: #1B4DB1;
    --blue-light: #EEF2FF;
    --blue-medium: #93B4F5;
    --blue-dark: #0D2F7A;
    --dark: #0F172A;
    --dark-secondary: #1E293B;
    --dark-card: #1a2236;
    --gray-900: #0F172A;
    --gray-800: #1E293B;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --gray-50: #F8FAFC;
    --white: #FFFFFF;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 60px -15px rgba(0, 0, 0, 0.18);
    --shadow-2xl: 0 40px 80px -20px rgba(0, 0, 0, 0.22);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv11', 'ss01';
}

::selection {
    background-color: var(--blue);
    color: var(--white);
}

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

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

/* ---------- Utility ---------- */
.text-accent {
    color: var(--red);
    position: relative;
}

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

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

.section-light {
    background-color: var(--gray-50);
}

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

/* ---------- Section Headers ---------- */
.section-header {
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--blue);
    background-color: var(--blue-light);
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-badge-dark {
    background-color: rgba(27, 77, 177, 0.15);
    color: var(--blue-medium);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--gray-500);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    padding: 14px 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid transparent;
    z-index: 1050;
}

.navbar.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-size: 1.4rem;
    color: var(--dark) !important;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.navbar-brand img {
    border-radius: 10px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue) !important;
    background-color: var(--blue-light);
}

.navbar-toggler {
    color: var(--dark);
    padding: 6px 10px;
}

/* ---------- Language Switcher ---------- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background-color: var(--gray-100);
    border-radius: 50px;
    padding: 3px;
    border: 1px solid var(--gray-200);
}

.lang-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1.4;
}

.lang-option:hover {
    color: var(--blue);
}

.lang-option.active {
    background-color: var(--blue);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(27, 77, 177, 0.3);
}

.btn-primary-custom {
    background-color: var(--blue);
    color: var(--white) !important;
    border: 2px solid var(--blue);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.88rem;
    transition: var(--transition);
    letter-spacing: 0.2px;
}

.btn-primary-custom:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 77, 177, 0.35);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 700px;
    height: 700px;
    top: -25%;
    right: -15%;
    background-color: var(--blue-light);
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: -8%;
    background-color: var(--red-light);
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 15%;
    background-color: var(--blue-light);
    opacity: 0.3;
}

.hero-content {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    background-color: var(--blue-light);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(27, 77, 177, 0.1);
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.8;
}

.hero-buttons {
    margin-bottom: 48px;
}

.app-store-badge-link {
    display: inline-block;
    transition: var(--transition);
}

.app-store-badge-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.app-store-img {
    height: 52px;
    width: auto;
    border-radius: var(--radius-sm);
}

.app-store-img-lg {
    height: 58px;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background-color: var(--gray-200);
}

/* Hero Phone */
.hero-phone-col {
    position: relative;
    z-index: 2;
}

.hero-phone {
    position: relative;
    display: inline-block;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background-color: #000;
    border-radius: 44px;
    padding: 10px;
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255,255,255,0.1) inset;
    margin: 0 auto;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background-color: #000;
    border-radius: 0 0 24px 24px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    background-color: var(--gray-100);
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    z-index: 5;
    border: 1px solid var(--gray-100);
}

.floating-card i {
    font-size: 1.15rem;
}

.floating-card-1 {
    top: 20%;
    left: -40px;
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card-1 i {
    color: var(--red);
}

.floating-card-2 {
    bottom: 22%;
    right: -40px;
    animation: floatCard 5s ease-in-out infinite 2s;
}

.floating-card-2 i {
    color: var(--blue);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ==========================================
   FEATURE CARDS
   ========================================== */
.feature-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.feature-card:hover::after {
    background-color: var(--blue);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: var(--radius-lg);
    font-size: 1.4rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

.feature-icon-red {
    background-color: var(--red-light);
    color: var(--red);
}

.feature-card:hover .feature-icon-red {
    background-color: var(--red);
    color: var(--white);
}

.feature-icon-blue {
    background-color: var(--blue-light);
    color: var(--blue);
}

.feature-card:hover .feature-icon-blue {
    background-color: var(--blue);
    color: var(--white);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ==========================================
   DISCOVER SECTION
   ========================================== */
.discover-row {
    padding: 20px 0;
}

.discover-phone {
    position: relative;
}

.phone-mockup-discover {
    width: 260px;
    height: 540px;
    border-radius: 40px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

.phone-mockup-discover .phone-screen {
    border-radius: 32px;
}

.discover-content {
    padding: 20px 0;
}

.discover-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background-color: rgba(27, 77, 177, 0.15);
    color: var(--blue-medium);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.discover-icon-red {
    background-color: rgba(239, 62, 54, 0.15);
    color: var(--red-medium);
}

.discover-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.discover-desc {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 24px;
}

.discover-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discover-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--gray-300);
    padding: 8px 0;
    font-weight: 500;
}

.discover-list li i {
    color: var(--blue-medium);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ==========================================
   HOW IT WORKS — STEP CARDS
   ========================================== */
.step-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--radius-xl);
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.step-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: var(--blue-light);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: var(--blue-light);
    color: var(--blue);
    font-size: 1.7rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.step-icon-red {
    background-color: var(--red-light);
    color: var(--red);
}

.step-card:hover .step-icon {
    background-color: var(--blue);
    color: var(--white);
    transform: scale(1.1);
}

.step-card:hover .step-icon-red {
    background-color: var(--red);
    color: var(--white);
}

.step-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ==========================================
   SCREENSHOTS
   ========================================== */
.screenshots-carousel {
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
    padding-bottom: 12px;
}

.screenshots-carousel::-webkit-scrollbar {
    height: 6px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background-color: var(--gray-300);
    border-radius: 3px;
}

.screenshots-carousel > .row {
    flex-wrap: nowrap;
    min-width: max-content;
}

.screenshot-col {
    min-width: 200px;
    max-width: 240px;
    flex: 0 0 auto;
}

.screenshot-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid var(--gray-200);
    transition: var(--transition);
    background-color: var(--white);
    position: relative;
}

.screenshot-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-label {
    text-align: center;
    padding: 14px 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-600);
    background-color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-top: 1px solid var(--gray-100);
    transition: var(--transition);
}

.screenshot-card:hover .screenshot-label {
    color: var(--blue);
    background-color: var(--blue-light);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background-color: var(--white);
}

.cta-card {
    background-color: var(--dark);
    border-radius: var(--radius-2xl);
    padding: 70px 56px;
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
}

.cta-circle-1 {
    width: 600px;
    height: 600px;
    top: -50%;
    right: -15%;
    background-color: var(--blue);
    opacity: 0.06;
}

.cta-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -50%;
    left: -10%;
    background-color: var(--red);
    opacity: 0.05;
}

.cta-circle-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 40%;
    background-color: var(--blue);
    opacity: 0.04;
}

.cta-text-col {
    position: relative;
    z-index: 2;
}

.cta-phone-col {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 36px;
    max-width: 400px;
    line-height: 1.8;
}

.cta-store-btn {
    display: inline-block;
}

.phone-mockup-cta {
    width: 240px;
    height: 500px;
    border-radius: 38px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.phone-mockup-cta .phone-screen {
    border-radius: 30px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-section {
    background-color: var(--gray-900);
    padding: 64px 0 28px;
    color: var(--gray-400);
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-brand img {
    border-radius: 10px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--gray-400);
    max-width: 300px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 0.86rem;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 40px 0 20px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background-color: var(--blue);
    color: var(--white);
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background-color: var(--blue-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(27, 77, 177, 0.45);
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }
.delay-5 { animation-delay: 0.6s; }

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Large desktops */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.2rem;
    }
    .phone-mockup {
        width: 300px;
        height: 620px;
    }
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.3rem;
    }
    .cta-card {
        padding: 50px 40px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-content {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
    }

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

    .hero-phone-col {
        margin-top: 40px;
    }

    .floating-card-1 {
        left: 5%;
    }

    .floating-card-2 {
        right: 5%;
    }

    .lang-switcher {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .discover-content {
        text-align: center;
        padding-top: 40px;
    }

    .discover-list li {
        justify-content: center;
    }

    .cta-card {
        padding: 40px 28px;
        text-align: center;
    }

    .cta-subtitle {
        margin: 0 auto 32px;
    }

    .cta-store-btn {
        margin: 0 auto;
    }

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

    .phone-mockup-discover {
        width: 220px;
        height: 460px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .phone-mockup {
        width: 220px;
        height: 460px;
        border-radius: 36px;
        padding: 8px;
    }

    .phone-screen {
        border-radius: 30px;
    }

    .phone-mockup::before {
        width: 90px;
        height: 26px;
    }

    .phone-mockup-cta {
        width: 200px;
        height: 420px;
        border-radius: 32px;
    }

    .phone-mockup-discover {
        width: 200px;
        height: 420px;
        border-radius: 32px;
    }

    .cta-title {
        font-size: 1.65rem;
    }

    .discover-title {
        font-size: 1.5rem;
    }

    .floating-card {
        padding: 10px 16px;
        font-size: 0.76rem;
    }

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

    .section-header {
        margin-bottom: 44px;
    }

    .screenshot-label {
        padding: 10px 6px;
        font-size: 0.72rem;
    }

    .screenshot-col {
        min-width: 160px;
        max-width: 200px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.85rem;
        letter-spacing: -0.8px;
    }

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

    .feature-card,
    .step-card {
        padding: 28px 22px;
    }

    .app-store-img {
        height: 44px;
    }

    .app-store-img-lg {
        height: 48px;
    }

    .cta-card {
        padding: 32px 20px;
        border-radius: var(--radius-xl);
    }

    .screenshot-card {
        border-radius: var(--radius-lg);
    }
}

/* ---------- Legal Pages (Privacy & Terms) ---------- */
.legal-content {
    line-height: 1.8;
    color: var(--gray-600);
}

.legal-content h4 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h5 {
    color: var(--dark-secondary);
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.35rem;
}

.legal-content a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--red);
    text-decoration: underline;
}
