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

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    height: 36px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-badge {
    background: var(--orange-gradient);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-md);
}

/* Progress Navigation */
.progress-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.progress-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.progress-step:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.progress-step.active::before {
    opacity: 1;
}

.progress-step.active {
    color: white;
    box-shadow: var(--shadow-glow);
}

.progress-step.completed {
    background: rgba(255,80,29,0.1);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.progress-step .step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    background: var(--gray-200);
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.progress-step.active .step-num {
    background: rgba(255,255,255,0.3);
    color: white;
}

.progress-step.completed .step-num {
    background: var(--primary-red);
    color: white;
}

.progress-step .step-label {
    font-size: 0.8rem;
    font-weight: 600;
    display: none;
}

@media (min-width: 1024px) {
    .progress-step .step-label {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding: 160px 2rem 120px;
    background: var(--dark-800);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        radial-gradient(circle at 20% 50%, var(--primary-red) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--primary-gold) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, var(--primary-blue) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-icon {
    width: 90px;
    height: 90px;
    background: var(--orange-gradient);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-glow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero h1 {
    color: white;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

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

.hero p {
    color: var(--gray-400);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--orange-gradient);
    color: white;
    box-shadow: 0 6px 24px rgba(255,80,29,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(255,80,29,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

/* Main Content */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

/* Section */
.section {
    margin-bottom: 6rem;
    scroll-margin-top: 120px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-number {
    width: 70px;
    height: 70px;
    background: var(--orange-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.section-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 26px;
    background: var(--orange-gradient);
    opacity: 0.3;
    z-index: -1;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Phone Mockup */
.screenshot-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.phone-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    background: #1f2937;
    border-radius: 42px;
    padding: 14px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 2px 4px rgba(255,255,255,0.05);
}

.phone-screen {
    background: var(--gray-100);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 26px;
    background: #1f2937;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
    color: var(--gray-500);
    padding: 2rem;
    text-align: center;
}

.screenshot-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.screenshot-placeholder p {
    font-size: 0.9rem;
    font-weight: 600;
}

.screenshot-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    border-left: 4px solid var(--primary-red);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-point:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.info-point-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255,80,29,0.1) 0%, rgba(255,215,0,0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-point-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.info-point-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Download Section */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.download-card:hover::before {
    transform: scaleX(1);
}

.download-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-xl), 0 0 0 6px rgba(255,80,29,0.1);
    transform: translateY(-6px);
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.store-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.store-icon.apple { background: linear-gradient(135deg, #1a1a1a 0%, #434343 100%); }
.store-icon.google { background: linear-gradient(135deg, #34a853 0%, #4285f4 50%, #ea4335 100%); }
.store-icon.huawei { background: linear-gradient(135deg, #c7112b 0%, #fa1a3c 100%); }

.download-card-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.3rem;
}

.download-card-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.download-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 14px;
}

.download-card-body span {
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 600;
}

.download-card-body i {
    color: var(--primary-red);
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.download-card:hover .download-card-body i {
    transform: translateX(4px);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--orange-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,80,29,0.1) 0%, rgba(255,215,0,0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-red);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
}

.step-item:hover {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(255,80,29,0.02) 0%, rgba(255,215,0,0.02) 100%);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-item-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-item-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.6rem;
}

.step-item-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

/* Device Cards */
.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.device-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.device-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.device-card-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.device-card-header.android {
    background: linear-gradient(135deg, #3DDC84 0%, #34a853 100%);
}

.device-card-header.ios {
    background: linear-gradient(135deg, #1a1a1a 0%, #434343 100%);
}

.device-card-header i {
    font-size: 2.5rem;
    color: white;
}

.device-card-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
}

.device-card-header p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.device-card-body {
    padding: 2rem;
}

.device-card-body .instruction {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.device-card-body .instruction:last-child {
    border-bottom: none;
}

.device-card-body .instruction i {
    color: var(--primary-red);
    font-size: 1.1rem;
    width: 24px;
}

.device-card-body .instruction span {
    color: var(--gray-700);
    font-size: 1rem;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.accordion-item {
    background: white;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
    border-color: var(--gray-300);
}

.accordion-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.accordion-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255,80,29,0.1) 0%, rgba(255,215,0,0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.3rem;
}

.accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.accordion-header .chevron {
    color: var(--gray-400);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}

.accordion-body {
    padding: 0 2rem 2rem;
}

/* Tip Box */
.tip-box {
    background: linear-gradient(135deg, rgba(255,80,29,0.08) 0%, rgba(255,215,0,0.08) 100%);
    border-left: 5px solid var(--primary-red);
    border-radius: 0 20px 20px 0;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.tip-box i {
    color: var(--primary-red);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.tip-box h4 {
    color: var(--primary-red);
    font-weight: 800;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.tip-box p {
    color: var(--gray-800);
    font-size: 1rem;
    line-height: 1.7;
}

/* Admin Grid */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.admin-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.admin-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.admin-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--orange-gradient);
}

.admin-card-icon {
    width: 72px;
    height: 72px;
    background: var(--orange-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255,80,29,0.3);
}

.admin-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.admin-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.admin-steps {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.admin-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: all 0.3s ease;
}

.admin-step:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.admin-step i {
    color: var(--primary-red);
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--dark-800);
    padding: 6rem 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 30% 50%, var(--primary-red) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, var(--primary-gold) 0%, transparent 40%);
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: var(--orange-gradient);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-glow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.contact-section h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.contact-section > .contact-content > p {
    color: var(--gray-400);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--orange-gradient);
    color: white;
    padding: 22px 44px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(255,80,29,0.4);
}

.contact-email:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 50px rgba(255,80,29,0.5);
}

/* Footer */
.footer {
    background: var(--dark-900);
    padding: 2.5rem;
    text-align: center;
}

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

.footer a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1.25rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .logo-container {
        width: 100%;
        justify-content: space-between;
    }

    .progress-nav {
        width: 100%;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 0.25rem;
    }

    .progress-nav::-webkit-scrollbar {
        display: none;
    }

    .progress-step {
        padding: 8px 10px;
        flex-shrink: 0;
    }

    .progress-step .step-num {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .hero {
        padding: 140px 1.5rem 100px;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .main-content {
        padding: 4rem 1.25rem;
    }

    .screenshot-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .download-grid,
    .feature-grid,
    .device-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

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

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

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

/* Step with Screenshot Layout - Mobile First */
.step-with-screenshot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* Tablet and up: Screenshot sol, content sağ */
@media (min-width: 768px) {
    .step-with-screenshot {
        grid-template-columns: 380px 1fr;
        gap: 3rem;
    }
}

/* Large screens: Biraz daha geniş screenshot */
@media (min-width: 1200px) {
    .step-with-screenshot {
        grid-template-columns: 420px 1fr;
        gap: 4rem;
    }
}
