/* ===================================
   INKEY - Landing Page Styles
   Diseño infantil y familiar
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Friendly & Playful */
    --primary: #6C5CE7;
    --primary-light: #A29BFE;
    --primary-dark: #5541D7;

    /* Secondary Colors */
    --secondary: #FF6B9D;
    --secondary-light: #FF8FB3;
    --accent: #00D9FF;
    --accent-green: #00E676;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #FF6B9D 50%, #00D9FF 100%);
    --gradient-soft: linear-gradient(135deg, #A29BFE 0%, #FF8FB3 100%);
    --gradient-hero: linear-gradient(180deg, #F8F5FF 0%, #FFF5F8 50%, #F5FDFF 100%);

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-500: #9E9E9E;
    --gray-700: #616161;
    --gray-900: #212121;
    --text-primary: #2D3436;
    --text-secondary: #636E72;

    /* Typography */
    --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* 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;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(108, 92, 231, 0.08);
    --shadow-md: 0 4px 20px rgba(108, 92, 231, 0.12);
    --shadow-lg: 0 8px 40px rgba(108, 92, 231, 0.16);
    --shadow-xl: 0 20px 60px rgba(108, 92, 231, 0.2);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

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

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-weight: 600;
    color: var(--text-secondary);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-note {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.note-1 { top: 15%; left: 10%; animation-delay: 0s; }
.note-2 { top: 25%; right: 15%; animation-delay: 1s; }
.note-3 { top: 60%; left: 5%; animation-delay: 2s; }
.note-4 { top: 70%; right: 10%; animation-delay: 3s; }
.note-5 { top: 40%; left: 15%; animation-delay: 4s; }
.note-6 { top: 50%; right: 20%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: calc(100vh - 100px);
    padding-bottom: 80px;
}

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

.hero-subtitle {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.hero-title {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
}

.hero-description {
    margin-top: var(--space-xl);
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.hero-cta {
    margin-top: var(--space-2xl);
}

.apple-icon {
    width: 24px;
    height: 24px;
}

.hero-platforms {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Device Mockup */
.hero-image {
    position: relative;
    z-index: 2;
}

.device-mockup {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 12px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
}

.device-screen {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #F8F5FF 0%, #FFF5F8 100%);
    padding: var(--space-lg);
}

.preview-header {
    text-align: center;
    margin-bottom: auto;
    padding-top: var(--space-xl);
}

.scale-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.preview-keyboard {
    display: flex;
    gap: 4px;
    padding: var(--space-md);
    margin-top: auto;
}

.key {
    flex: 1;
    height: 120px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.white-key {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.white-key.active {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(2px);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===================================
   TRUST BADGES
   =================================== */
.trust-badges {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header p {
    margin-top: var(--space-md);
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.feature-card {
    padding: var(--space-2xl);
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
}

.feature-card h3 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

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

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--gradient-hero);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: var(--space-lg);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.step-content h3 {
    margin-bottom: var(--space-sm);
}

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

.step-connector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
}

/* ===================================
   FOR FAMILIES
   =================================== */
.for-families {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.families-intro {
    margin-top: var(--space-lg);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.families-features {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.family-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-green);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}

.family-feature strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.family-feature p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.families-image {
    position: relative;
}

.image-decoration {
    position: absolute;
    inset: -20px;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: -10%;
    right: 10%;
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary-light);
    bottom: 10%;
    left: -5%;
    animation: pulse 4s ease-in-out infinite 1s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: var(--accent);
    bottom: 30%;
    right: -5%;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

.family-illustration {
    position: relative;
    z-index: 2;
    background: var(--gradient-soft);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl);
    text-align: center;
}

.big-emoji {
    font-size: 8rem;
}

.music-notes-float {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    font-size: 2rem;
}

.music-notes-float span {
    animation: bounce 2s ease-in-out infinite;
}

.music-notes-float span:nth-child(2) {
    animation-delay: 0.3s;
}

.music-notes-float span:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* ===================================
   USE CASES
   =================================== */
.use-cases {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

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

.case-card {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-emoji {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.case-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

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

/* ===================================
   DOWNLOAD SECTION
   =================================== */
.download {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.download-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.el-1 { top: 10%; left: 10%; animation-delay: 0s; }
.el-2 { top: 60%; left: 5%; animation-delay: 2s; }
.el-3 { top: 20%; right: 10%; animation-delay: 4s; }
.el-4 { top: 70%; right: 15%; animation-delay: 6s; }

.download-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.download-content h2 {
    color: var(--white);
}

.download-content h2 .gradient-text {
    background: linear-gradient(135deg, #FFE066 0%, #FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-content > p {
    margin-top: var(--space-md);
    font-size: 1.25rem;
    opacity: 0.9;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding: var(--space-lg) var(--space-2xl);
    background: var(--white);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.app-store-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.apple-logo {
    width: 36px;
    height: 36px;
}

.badge-text {
    text-align: left;
}

.badge-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.badge-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
}

.download-note {
    margin-top: var(--space-lg);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--text-primary);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin-top: var(--space-md);
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-brand .logo-text {
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.footer-column h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.made-with {
    font-size: 0.875rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        order: -1;
    }

    .device-mockup {
        max-width: 280px;
    }

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

    .families-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .families-features {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: var(--space-lg);
        background: var(--white);
        box-shadow: var(--shadow-lg);
        gap: var(--space-md);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

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

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: var(--space-md) 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

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

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

    .hero {
        padding-top: 80px;
    }

    .device-mockup {
        max-width: 240px;
    }

    .big-emoji {
        font-size: 5rem;
    }
}

/* ===================================
   LANGUAGE SELECTOR
   =================================== */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.lang-btn:hover {
    background: var(--gray-200);
    color: var(--text-primary);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: var(--space-sm);
    padding: var(--space-sm) 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 140px;
    z-index: 100;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown li a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.lang-dropdown li a:hover,
.lang-dropdown li a.active {
    background: var(--gray-50);
    color: var(--primary);
}

/* ===================================
   DEVICE MOCKUPS
   =================================== */
.iphone-mockup {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.iphone-mockup .mockup-frame {
    position: relative;
    padding: 12px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 44px;
    box-shadow:
        0 0 0 2px #3a3a3a,
        var(--shadow-xl);
}

.iphone-mockup .mockup-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-mockup .mockup-screen {
    position: relative;
    background: #000;
    border-radius: 36px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.iphone-mockup .mockup-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.iphone-mockup.small {
    max-width: 200px;
}

.iphone-mockup.small .mockup-frame {
    padding: 8px;
    border-radius: 32px;
}

.iphone-mockup.small .mockup-notch {
    top: 8px;
    width: 70px;
    height: 20px;
    border-radius: 0 0 14px 14px;
}

.iphone-mockup.small .mockup-screen {
    border-radius: 26px;
}

/* iPad Mockup */
.ipad-mockup {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.ipad-mockup .mockup-frame {
    position: relative;
    padding: 20px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 24px;
    box-shadow:
        0 0 0 2px #3a3a3a,
        var(--shadow-xl);
}

.ipad-mockup .mockup-camera {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #3a3a3a;
    border-radius: 50%;
}

.ipad-mockup .mockup-screen {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

/* ===================================
   SCREENSHOTS GALLERY
   =================================== */
.screenshots {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.screenshots-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.gallery-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.iphone-row {
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.ipad-row {
    margin-top: var(--space-xl);
}

.screenshot-caption {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Screenshots Responsive */
@media (max-width: 1024px) {
    .iphone-row {
        gap: var(--space-lg);
    }

    .iphone-mockup.small {
        max-width: 160px;
    }

    .ipad-mockup {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .iphone-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        max-width: 400px;
        margin: 0 auto;
    }

    .iphone-mockup.small {
        max-width: 100%;
    }

    .lang-selector {
        width: 100%;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
    }

    .lang-dropdown {
        position: static;
        margin-top: var(--space-sm);
        box-shadow: none;
        background: var(--gray-50);
    }
}

@media (max-width: 480px) {
    .iphone-row {
        grid-template-columns: 1fr;
        max-width: 220px;
    }

    .ipad-mockup .mockup-frame {
        padding: 10px;
        border-radius: 16px;
    }

    .ipad-mockup .mockup-screen {
        border-radius: 4px;
    }
}

/* ===================================
   FOOTER 4 COLUMNS
   =================================== */
@media (min-width: 769px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}
