/* ===== CSS VARIABLES ===== */
:root {
    --navy-900: #0A1628;
    --navy-800: #0B1D51;
    --navy-700: #112D6E;
    --navy-600: #1A3F8B;
    --navy-500: #2456A8;
    --navy-400: #3B6FC4;
    --navy-300: #6B9BE0;
    --navy-200: #A3C4F3;
    --navy-100: #D6E5FA;
    --navy-50: #EDF2FC;

    --accent: #2563EB;
    --accent-hover: #1D4ED8;
    --accent-light: rgba(37, 99, 235, 0.1);

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;

    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-lighter: #F1F5F9;

    --border: #E2E8F0;
    --border-light: #F1F5F9;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-full);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-white);
    padding: 14px 32px;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-nav {
    background: var(--accent);
    color: var(--text-white);
    padding: 10px 24px;
    font-size: 0.9rem;
}

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

/* ===== SECTION COMMON ===== */
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title.light {
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.8);
}

/* ===== SIMPLE HEADER ===== */
.simple-header {
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    text-align: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-800);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ===== HERO ===== */
.hero {
    padding: 80px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--navy-50) 0%, var(--bg-white) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 32px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.badge-flag {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--navy-800);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--navy-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 24px;
}

.hero-price {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-800);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.stars {
    color: #F59E0B;
    font-size: 1rem;
    letter-spacing: 2px;
}

.hero-image-area {
    max-width: 900px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ===== PAYMENT BANNER ===== */
.payment-banner {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.payment-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.payment-img:hover {
    opacity: 1;
}

/* Dark background variant */
.final-cta .payment-banner {
    margin-top: 24px;
}

.final-cta .payment-img,
.cta-section .payment-img {
    filter: brightness(1.3);
    opacity: 0.7;
}

.final-cta .payment-img:hover,
.cta-section .payment-img:hover {
    opacity: 1;
}

/* ===== LIBRARY IMAGE ===== */
.library-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* ===== PLACEHOLDER IMAGE ===== */
.placeholder-image {
    background: var(--bg-lighter);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    min-height: 300px;
}

.placeholder-image i {
    font-size: 3rem;
    opacity: 0.4;
}

.placeholder-wide {
    min-height: 350px;
}

/* ===== TR BANNER ===== */
.tr-banner {
    padding: 32px 0;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
}

.tr-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-white);
    text-align: left;
}

.tr-flag {
    font-size: 3rem;
    flex-shrink: 0;
}

.tr-banner-inner strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 4px;
}

.tr-banner-inner p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
}

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

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy-800);
}

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

/* ===== COMPARISON ===== */
.comparison {
    padding: 100px 0;
    background: var(--bg-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.comparison-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-good {
    background: var(--bg-white);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.comparison-good .comparison-header {
    color: var(--accent);
}

.comparison-good li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.comparison-good li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.comparison-bad {
    background: var(--bg-white);
    border: 1px solid var(--border);
}

.comparison-bad .comparison-header {
    color: #DC2626;
}

.comparison-bad li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.comparison-bad li i {
    color: #DC2626;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== LIBRARY ===== */
.library {
    padding: 100px 0;
}

.library-image-area {
    max-width: 800px;
    margin: 0 auto 48px;
}

.library-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 28px 20px;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--navy-100);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.benefit-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--text-white);
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy-800);
}

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

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
}

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

.step-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--navy-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--navy-700);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy-800);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    background: var(--navy-50);
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.step-card:hover .step-img {
    transform: scale(1.04);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    text-align: center;
}

.cta-price-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
}

.cta-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text-white);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.cta-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

.cta-price-old {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
}

.cta-price-new {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
}

.cta-price-note {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
}

.payment-icons.light-icons {
    color: rgba(255,255,255,0.4);
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.category-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
    color: var(--navy-700);
}

.category-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 6px;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== DEAL COMPARISON ===== */
.deal {
    padding: 100px 0;
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.deal-card {
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
}

.deal-bad {
    background: var(--bg-lighter);
    border: 1px solid var(--border);
}

.deal-bad h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deal-bad li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.deal-bad li i {
    color: #DC2626;
    margin-top: 4px;
    flex-shrink: 0;
}

.deal-price-bad {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
    font-weight: 700;
    color: #DC2626;
}

.deal-good {
    background: var(--bg-white);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.deal-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-white);
    padding: 4px 18px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.deal-good h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deal-good li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.deal-good li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.deal-price-good {
    margin-top: 24px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-800);
}

.deal-price-good strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--navy-300);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy-800);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    text-align: center;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 340px;
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.footer-payment-logos {
    margin-top: 16px;
}

.paytr-badge {
    max-width: 280px;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.paytr-badge:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

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

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
/* Hero sıralaması — hem mobil hem masaüstünde aynı:
   1) İlk görsel  2) CTA (buton+ödeme)  3) Badge  4) Diğer görseller */
.hero .container {
    display: flex;
    flex-direction: column;
}
.hero .hero-img-1 { order: 1; margin-bottom: 24px; }
.hero .hero-cta   { order: 2; margin-bottom: 24px; }
.hero .hero-badge { order: 3; margin-bottom: 24px; }
.hero .hero-img-2 { order: 4; margin-bottom: 24px; }
.hero .hero-img-3 { order: 5; }

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .benefits-grid,
    .testimonials-grid,
    .comparison-grid,
    .deal-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .library-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-price-box {
        padding: 32px 24px;
    }

    .cta-price-new {
        font-size: 2.8rem;
    }

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

    .tr-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-price {
        flex-direction: column;
        gap: 4px;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

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

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

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

    .payment-icons {
        font-size: 1.4rem;
        gap: 12px;
    }

    .container {
        padding: 0 16px;
    }
}
