/* =============================================
   GANADARA - Korean Learning App Landing Page
   Style matching imweb original design
   ============================================= */

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* === Variables === */
:root {
    --primary: #FF0DDF;
    --primary-dark: #E000C5;
    --primary-light: #FF6AE8;
    --bg-pink: #FFF0FD;
    --bg-gray: #F7F7F7;
    --bg-yellow: #FBFDDF;
    --bg-gradient: linear-gradient(135deg, #FFF0FD 0%, #FFF0FD 100%);
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #888888;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 24px;
    --container: 1200px;
    --header-height: 70px;
}

/* === Container === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

strong {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* === Buttons === */
.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-cta.large {
    padding: 20px 60px;
    font-size: 20px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   IMAGE LOADING OPTIMIZATION
   ============================================= */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
}

.floating-cta .btn-cta {
    box-shadow: 0 4px 20px rgba(255, 13, 223, 0.4);
}

.floating-cta .btn-cta:hover {
    box-shadow: 0 6px 30px rgba(255, 13, 223, 0.5);
}

/* === Header === */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary);
}

.flag-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 50%;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 160px;
    overflow: hidden;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: var(--bg-pink);
}

/* =============================================
   SECTION 1: HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 40px) 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    margin-bottom: 40px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* Hero Single Mockup */
.hero-mockup-single {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 360px;
    margin: 0 auto;
}

.hero-mockup-single img {
    width: 100%;
    height: auto;
    /* No shadow - image has its own natural shadow */
}

/* Legacy two-phone layout (for reference) */
.hero-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -40px;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
    width: 280px;
    transform-style: preserve-3d;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* No shadow - images have their own natural shadow */
}

.phone-left {
    transform: rotateY(15deg) rotateX(5deg) translateX(20px);
    z-index: 1;
}

.phone-right {
    transform: rotateY(-15deg) rotateX(5deg) translateX(-20px);
    z-index: 2;
}

/* =============================================
   SECTION 2: FEATURE INTRO
   ============================================= */
.section-intro {
    padding: 100px 24px;
    text-align: center;
    background: var(--white);
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-title.center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-pink);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

/* =============================================
   FEATURE SECTIONS (3-8)
   ============================================= */
.section-feature {
    padding: 100px 24px;
    background: var(--white);
}

.section-feature.alt-bg {
    background: var(--bg-pink);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-text {
    max-width: 500px;
}

.feature-title {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-desc {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.8;
}

.feature-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.feature-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 400px; /* 280px * 1.3 * 1.1 */
    border-radius: 0;
    overflow: visible;
    /* No shadow - mockup images have their own natural shadow */
}

.phone-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.buddy-character,
.roadmap-graphic {
    max-width: 400px;
}

.buddy-character img,
.roadmap-graphic img {
    width: 100%;
    height: auto;
}

/* =============================================
   SECTION 9: CONTENT OVERVIEW
   ============================================= */
.section-content {
    padding: 100px 24px;
    background: var(--bg-pink);
    text-align: center;
}

.section-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.section-desc.center {
    text-align: center;
}

/* =============================================
   ROLLING BANDS ANIMATION
   ============================================= */
.rolling-bands {
    margin-top: 60px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rolling-band {
    width: 100%;
    overflow: hidden;
}

.band-track {
    display: flex;
    width: 200%;
}

.band-track img {
    width: 50%;
    height: auto;
    flex-shrink: 0;
}

/* Left-scrolling animation */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Right-scrolling animation */
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.band-left .band-track {
    animation: scrollLeft 60s linear infinite;
}

.band-right .band-track {
    animation: scrollRight 75s linear infinite;
}

/* =============================================
   MOCKUP CAROUSEL (Swipeable)
   ============================================= */
.mockup-carousel {
    position: relative;
    width: 400px;
    overflow: hidden;
    cursor: grab;
}

.mockup-carousel:active {
    cursor: grabbing;
}

.mockup-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    touch-action: pan-y pinch-zoom;
}

.mockup-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.mockup-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.mockup-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.mockup-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.mockup-carousel-dot.active {
    background: var(--primary);
}

/* =============================================
   SHORTFORM VIDEO SECTION
   ============================================= */
.section-shortform {
    padding: 40px 24px 80px;
    background: var(--white);
}

.shortform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.shortform-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.shortform-card:hover {
    transform: translateY(-4px);
}

.shortform-thumb {
    position: relative;
    display: block;
    aspect-ratio: 9/16;
    overflow: hidden;
    cursor: pointer;
}

.shortform-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shortform-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.shortform-thumb .play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid var(--primary);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.shortform-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.shortform-title {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Video Modal (Fullscreen Player) */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    aspect-ratio: 9/16;
    z-index: 1;
}

/* Landscape video (16:9 course videos) */
.video-modal.landscape .video-modal-content {
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-modal-content iframe,
.video-modal-content video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-modal-close:hover {
    transform: scale(1.1);
}

/* =============================================
   SECTION 10: VIDEO THUMBNAILS
   ============================================= */
.section-videos {
    padding: 60px 24px 100px;
    background: var(--bg-pink);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid var(--primary);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.video-title {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.video-cta {
    text-align: center;
}

.link-arrow {
    font-size: 18px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow:hover {
    color: var(--primary-dark);
}

/* =============================================
   SECTION 11: MADE BY NATIVE KOREANS
   ============================================= */
.section-native {
    padding: 100px 24px;
    background: var(--white);
}

.native-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.native-card {
    background: var(--bg-gray);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.native-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.native-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.native-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.native-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* =============================================
   SECTION 12: PRICING
   ============================================= */
.section-pricing {
    padding: 100px 24px;
    background: var(--bg-gray);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 12px;
}

.section-subtitle.center {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 60px auto 0;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.pricing-plan {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.pricing-options {
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: right;
}

.price-amount.highlight {
    color: var(--primary);
}

.price-row-sub {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 8px 0 12px;
    border-bottom: 1px solid #eee;
}

.price-original {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.pricing-card hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 24px 0;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 8px 0;
}

/* =============================================
   SECTION 13: 7 DAYS FREE TRIAL CTA
   ============================================= */
.section-trial {
    position: relative;
    padding: 100px 24px;
    overflow: hidden;
}

.trial-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-yellow);
    z-index: -1;
}

.trial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trial-title {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.trial-desc {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.trial-mockups {
    display: flex;
    justify-content: center;
}

.trial-mockups .phone-mockup {
    transform: rotateY(-10deg) rotateX(5deg);
}

/* =============================================
   SECTION 14: FAQ
   ============================================= */
.section-faq {
    padding: 100px 24px;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 2px solid #ddd;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon::before {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 24px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* =============================================
   SECTION 15: FINAL CTA
   ============================================= */
.section-final-cta {
    padding: 80px 24px;
    background: var(--white);
    text-align: center;
}

/* =============================================
   SECTION 16: FOOTER
   ============================================= */
#footer {
    padding: 60px 24px 40px;
    background: var(--white);
    color: var(--text-dark);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.3s ease;
    /* Reset for button elements */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.footer-link:hover {
    color: var(--text-dark);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #e0e0e0;
}

.social-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(40%);
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.footer-bottom .company-name {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* =============================================
   MODALS
   ============================================= */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
    padding: 24px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    padding: 24px 24px 0;
    font-size: 24px;
    color: var(--text-dark);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Iframe Modal (Terms, Privacy) */
.iframe-modal .iframe-modal-content {
    max-width: 900px;
    width: 100%;
    height: 85vh;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.iframe-modal .modal-close {
    z-index: 10;
    background: var(--white);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.iframe-modal iframe {
    width: 100%;
    height: 100%;
    flex: 1;
    border: none;
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .iframe-modal .iframe-modal-content {
        height: 90vh;
        max-height: 90vh;
        border-radius: var(--radius-md);
    }

    .modal {
        padding: 16px;
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .feature-grid,
    .feature-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .feature-text {
        text-align: center;
        max-width: 100%;
    }

    .trial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trial-text {
        order: 1;
    }

    .trial-mockups {
        order: 2;
    }

    .native-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .shortform-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero-mockups {
        flex-direction: column;
        gap: 20px;
    }

    .phone-mockup {
        width: 220px;
    }

    .phone-left,
    .phone-right {
        transform: none;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shortform-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .mockup-carousel {
        width: 330px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .shortform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .phone-mockup {
        width: 180px;
    }

    .mockup-carousel {
        width: 300px;
    }

    .btn-cta {
        padding: 14px 32px;
        font-size: 16px;
    }

    .btn-cta.large {
        padding: 16px 40px;
        font-size: 18px;
    }
}
