/* ==========================================================================
   FotoFit - Premium App Landing Page & Privacy Policy Stylesheet
   Design Token System, Glassmorphism, Responsive Grid & Modern Animations
   ========================================================================== */

:root {
    /* Color Palette */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #60a5fa;
    --primary-glow: rgba(37, 99, 235, 0.35);
    --secondary: #3b82f6;
    --accent-emerald: #10b981;
    --accent-purple: #8b5cf6;
    
    /* Dark Theme Surface Colors */
    --bg-dark: #090d16;
    --bg-card: rgba(17, 24, 39, 0.75);
    --bg-card-hover: rgba(31, 41, 55, 0.85);
    --bg-input: rgba(15, 23, 42, 0.9);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-card-hover: rgba(59, 130, 246, 0.4);
    
    /* Typography Colors */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    /* Status Colors */
    --green-badge: #22c55e;
    --orange-badge: #f97316;
    
    /* Layout Variables */
    --nav-height: 76px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 35px rgba(37, 99, 235, 0.25);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 45%);
    background-attachment: fixed;
}

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

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

input, select, button {
    font-family: inherit;
}

.hidden {
    display: none !important;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-green { color: var(--accent-emerald) !important; }
.text-blue { color: var(--primary-light) !important; }
.text-center { text-align: center; }

/* ================= Navbar ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-card);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.brand-text {
    color: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link.active {
    color: var(--primary-light);
}

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

.btn-playstore-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-playstore-nav:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.badge-nav {
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    color: var(--text-main);
    font-size: 1.4rem;
}

/* ================= Hero Section ================= */
.hero-section {
    position: relative;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-emerald);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.pill-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.3px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
}

.btn-primary-playstore {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-primary-playstore:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.play-icon-wrap {
    font-size: 2rem;
    color: #38ef7d;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.play-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-subtext {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-maintext {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.badge-coming-soon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--orange-badge), #ea580c);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
    text-transform: uppercase;
}

.btn-secondary-tool {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--primary-light);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-secondary-tool:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: var(--accent-emerald);
}

/* Phone Frame Mockup */
.hero-mockup-wrapper {
    display: flex;
    justify-content: center;
}

.phone-frame {
    position: relative;
    width: 290px;
    height: 590px;
    background: #111827;
    border-radius: 46px;
    border: 8px solid #1f2937;
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 40px var(--primary-glow);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background: #1f2937;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 10;
}

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

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* ================= Section Headers ================= */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 99, 235, 0.25);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* ================= Web Tool Section ================= */
.tool-section {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
}

.web-tool-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.tool-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.tool-controls, .tool-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-controls h3, .tool-preview h3 {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-card);
}

.upload-dropzone {
    border: 2px dashed rgba(59, 130, 246, 0.3);
    background: var(--bg-input);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.upload-dropzone:hover, .upload-dropzone.dragover {
    border-color: var(--primary-light);
    background: rgba(37, 99, 235, 0.08);
}

.drop-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.drop-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.drop-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.file-types-tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 12px;
    color: var(--text-dim);
}

.file-loaded-info {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.file-icon {
    font-size: 2rem;
    color: var(--accent-emerald);
}

.file-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.file-name {
    font-weight: 600;
    word-break: break-all;
}

.file-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.btn-remove-file {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-remove-file:hover {
    background: #ef4444;
    color: #fff;
}

.form-select, .input-group input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-select:focus, .input-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.preset-selector-wrap label, .input-group label, .target-size-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.dimension-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.target-size-group input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 4px;
}

.btn-process-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-process-image:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-process-image:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tool Preview */
.preview-canvas-wrap {
    min-height: 240px;
    background: var(--bg-input);
    border: 1px dashed var(--border-card);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    text-align: center;
}

.preview-placeholder i {
    font-size: 3rem;
}

.output-canvas {
    max-width: 100%;
    max-height: 280px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-badge {
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);

}

.stat-value {
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-download-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-emerald);
    color: #fff;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-download-result:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* App CTA Upgrade Box */
.app-cta-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.app-cta-icon img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}

.app-cta-info h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.app-cta-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.btn-app-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-app-cta:hover {
    background: var(--primary-hover);
}

/* ================= Features Grid ================= */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-card-hover);
    box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.2);
}

.highlight-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.bg-blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.bg-indigo { background: linear-gradient(135deg, #4f46e5, #6366f1); }
.bg-purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.bg-teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.bg-emerald { background: linear-gradient(135deg, #059669, #10b981); }
.bg-orange { background: linear-gradient(135deg, #ea580c, #f97316); }

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

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================= Presets Section ================= */
.presets-section {
    padding: 90px 0;
    background: rgba(15, 23, 42, 0.3);
    border-top: 1px solid var(--border-card);
}

.preset-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.preset-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.preset-tab:hover, .preset-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.presets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.preset-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.preset-item-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.preset-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.preset-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preset-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

.preset-tag.banking { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.preset-tag.ssc { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.preset-tag.state { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.preset-tag.general { background: rgba(16, 185, 129, 0.2); color: #34d399; }

.preset-item-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.preset-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.preset-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 4px;
}

.preset-row strong {
    color: var(--text-main);
}

/* ================= Screenshots Section ================= */
.screenshots-section {
    padding: 100px 0;
}

.screenshot-carousel-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.screenshot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.screenshot-card:hover {
    transform: translateY(-10px);
}

.screenshot-phone {
    width: 100%;
    border-radius: 24px;
    border: 4px solid #1f2937;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: 16px;
    background: #000;
}

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

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

.screenshot-caption h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.screenshot-caption p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ================= Download Banner ================= */
.download-banner-section {
    padding: 60px 0 100px 0;
}

.download-banner-card {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e1b4b 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.download-banner-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: var(--primary-glow);
    filter: blur(100px);
    pointer-events: none;
}

.download-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.banner-app-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.download-banner-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-banner-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.download-cta-row {
    display: flex;
    justify-content: center;
}

.btn-playstore-banner {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #000;
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.btn-playstore-banner:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.btn-playstore-banner i {
    font-size: 2.2rem;
    color: #38ef7d;
}

.banner-btn-txt {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.banner-btn-txt span {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.banner-btn-txt strong {
    font-size: 1.3rem;
}

.badge-banner-cs {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--orange-badge);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* ================= Privacy Policy Page ================= */
.privacy-section {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 100px;
}

.privacy-header {
    margin-bottom: 40px;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.btn-back-home:hover {
    transform: translateX(-4px);
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.privacy-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.privacy-date {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.privacy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-card);
}

.privacy-body {
    line-height: 1.8;
    color: #cbd5e1;
}

.privacy-box-highlight {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.privacy-box-highlight i {
    font-size: 2rem;
    color: var(--primary-light);
}

.privacy-box-highlight h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 6px;
}

.privacy-body h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-top: 32px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-card);
}

.privacy-body p {
    margin-bottom: 16px;
}

.privacy-body code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88rem;
    color: var(--primary-light);
}

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

.contact-box {
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.contact-box i {
    font-size: 1.8rem;
    color: var(--primary-light);
}

/* ================= Footer ================= */
.footer {
    background: #050810;
    border-top: 1px solid var(--border-card);
    margin-top: auto;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 380px;
    line-height: 1.6;
}

.footer-links h4, .footer-app h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: var(--transition);
}

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

.footer-app p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.badge-footer-cs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--border-card);
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-dim);
}

.footer-credit a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: #fff;
}

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

    .hero-pill {
        margin: 0 auto 20px auto;
    }

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

    .hero-trust-badges {
        justify-content: center;
    }

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

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

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

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

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: #0f172a;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border-card);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .features-grid, .presets-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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