@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

:root {
    /* Modern Color Palette */
    --primary: #6366F1;
    --primary-light: #818CF8;
    --primary-dark: #4F46E5;
    --secondary: #EC4899;
    --accent: #14B8A6;
    --bg-dark: #0F172A;
    --bg-light: #F8FAFC;
    --surface: #1E293B;
    --surface-light: #FFFFFF;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #F8FAFC;
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
    --gradient-hero: linear-gradient(135deg, #EEF2FF 0%, #FCE7F3 50%, #F0FDFA 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 0.75rem 3rem;
    box-shadow: var(--shadow-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.nav-logo img {
    height: 44px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

nav a:hover::after {
    width: 100%;
}

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

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 3rem 4rem;
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    animation: fadeUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--primary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-icon {
    font-size: 1.2rem;
}

/* Hero Phones */
.hero-phones {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 600px;
    z-index: 1;
}

.phone-mockup {
    position: absolute;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-screen {
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

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

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

.phone-center {
    width: 260px;
    height: 540px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.phone-center .phone-screen {
    width: 236px;
    height: 516px;
}

.phone-left {
    width: 200px;
    height: 420px;
    left: 5%;
    z-index: 2;
    opacity: 0.9;
    transform: perspective(1000px) rotateY(15deg) translateX(-20px);
    animation: floatLeft 6s ease-in-out infinite;
}

.phone-left .phone-screen {
    width: 176px;
    height: 396px;
}

.phone-right {
    width: 200px;
    height: 420px;
    right: 5%;
    z-index: 2;
    opacity: 0.9;
    transform: perspective(1000px) rotateY(-15deg) translateX(20px);
    animation: floatRight 6s ease-in-out infinite;
}

.phone-right .phone-screen {
    width: 176px;
    height: 396px;
}

.phone-mockup:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

.phone-left:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-10px) scale(1.02);
}

.phone-right:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px) scale(1.02);
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: floatRandom 4s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 5%;
    animation-delay: 1s;
}

.float-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 3rem;
    background: var(--surface-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: var(--gradient-hero);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 2rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.screenshots-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.screenshot-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.screenshot-item:nth-child(1) { transition-delay: 0.1s; }
.screenshot-item:nth-child(2) { transition-delay: 0.2s; }
.screenshot-item:nth-child(3) { transition-delay: 0.3s; }
.screenshot-item:nth-child(4) { transition-delay: 0.4s; }
.screenshot-item:nth-child(5) { transition-delay: 0.5s; }

.screenshot-phone {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 32px;
    padding: 10px;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
    overflow: hidden;
}

.screenshot-phone img {
    width: 200px;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.screenshot-item:hover .screenshot-phone {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.screenshot-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.label-icon {
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 3rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-section .cta-buttons {
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-note {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -200px;
    left: -100px;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -150px;
    right: -50px;
}

/* Footer */
footer {
    padding: 3rem;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

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

.footer-brand span {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-links .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatLeft {
    0%, 100% {
        transform: perspective(1000px) rotateY(15deg) translateX(-20px) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(15deg) translateX(-20px) translateY(-15px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: perspective(1000px) rotateY(-15deg) translateX(20px) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-15deg) translateX(20px) translateY(-15px);
    }
}

@keyframes floatRandom {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(-5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 3rem;
    background: var(--surface-light);
    overflow: hidden;
}

.feature-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-showcase.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-showcase.reverse {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
    max-width: 480px;
}

.showcase-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.showcase-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.showcase-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.showcase-phone {
    flex-shrink: 0;
    position: relative;
}

.phone-frame {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.phone-frame img {
    width: 240px;
    height: 500px;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-highlight {
    position: absolute;
    top: 50px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 18px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: floatHighlight 3s ease-in-out infinite;
    z-index: 20;
}

.phone-highlight::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid var(--primary);
}

.phone-highlight.bottom {
    top: auto;
    bottom: 100px;
    right: auto;
    left: -30px;
}

.phone-highlight.bottom::before {
    left: auto;
    right: -8px;
    border-left: 10px solid var(--secondary);
    border-right: none;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 7rem;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-phones {
        min-height: 450px;
    }
    
    .phone-center {
        width: 220px;
        height: 460px;
    }
    
    .phone-center .phone-screen {
        width: 196px;
        height: 436px;
    }
    
    .phone-left,
    .phone-right {
        width: 160px;
        height: 340px;
    }
    
    .phone-left .phone-screen,
    .phone-right .phone-screen {
        width: 136px;
        height: 316px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        pointer-events: none;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }
    
    .hero-phones {
        min-height: 380px;
        width: 100%;
    }
    
    .phone-left,
    .phone-right {
        display: none;
    }
    
    .phone-center {
        position: relative;
        width: 240px;
        height: 500px;
    }
    
    .phone-center .phone-screen {
        width: 216px;
        height: 476px;
    }
    
    .features,
    .screenshots,
    .cta-section,
    .how-it-works {
        padding: 4rem 1.5rem;
    }
    
    .feature-showcase {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .feature-showcase.reverse {
        flex-direction: column;
    }
    
    .showcase-content {
        text-align: center;
        max-width: 100%;
    }
    
    .showcase-number {
        font-size: 3rem;
    }
    
    .feature-list {
        display: inline-block;
        text-align: left;
    }
    
    .phone-frame img {
        width: 200px;
        height: 420px;
    }
    
    .phone-highlight {
        right: -20px;
        font-size: 0.75rem;
        padding: 10px 14px;
    }
    
    .phone-highlight.bottom {
        left: -20px;
    }
    
    .screenshots-carousel {
        gap: 1.5rem;
    }
    
    .screenshot-phone img {
        width: 160px;
        height: 340px;
    }
    
    .cta-note {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    footer {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .screenshot-phone img {
        width: 140px;
        height: 300px;
    }
    
    .screenshot-label {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .showcase-content h3 {
        font-size: 1.4rem;
    }
    
    .showcase-content > p {
        font-size: 1rem;
    }
    
    .phone-frame img {
        width: 180px;
        height: 380px;
    }
    
    .phone-highlight,
    .phone-highlight.bottom {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin-top: -20px;
        transform: translateY(0);
    }
    
    .phone-highlight::before,
    .phone-highlight.bottom::before {
        display: none;
    }
}
