/* OneSignal custom prompt */
.onesignal-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 16, 24, 0.75);
    backdrop-filter: blur(4px);
    z-index: 99999 !important;
    padding: 16px;
    pointer-events: auto !important;
}

.onesignal-modal {
    background: var(--card-bg, rgba(13, 24, 41, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    max-width: 420px;
    width: 100%;
    min-height: 280px;
    padding: 32px 28px 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    text-align: center;
    color: var(--text-primary, #ffffff);
    animation: onesignal-modal-in 0.4s ease forwards;
    transform: translateY(30px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.onesignal-modal-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.onesignal-modal-header p {
    margin: 0;
    color: var(--text-secondary, #a0a0a0);
    font-size: 15px;
}

.onesignal-bell {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 12px;
}

.onesignal-modal-actions {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.onesignal-modal-button {
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.onesignal-modal-button.onesignal-accept {
    background: var(--button-bg, var(--primary-color, #d4af37));
    color: var(--button-color, #0d1829);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.onesignal-modal-button.onesignal-accept:hover {
    background: var(--button-hover-bg, var(--button-bg, var(--primary-color, #d4af37)));
    color: var(--button-hover-color, var(--button-color, #0d1829));
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.45);
}

.onesignal-modal-button.onesignal-decline {
    background: var(--onesignal-decline-bg, rgba(255, 255, 255, 0.08));
    color: var(--onesignal-decline-color, var(--text-secondary, #a0a0a0));
}

.onesignal-modal-button.onesignal-decline:hover {
    transform: translateY(-3px);
    background: var(--onesignal-decline-hover-bg, rgba(255, 255, 255, 0.15));
}

@keyframes onesignal-modal-in {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

body.ios-modal-open {
    overflow: hidden;
}

.ios-install-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    background: var(--body-bg, #0a1018);
    backdrop-filter: blur(4px);
    z-index: 9998;
}

.ios-install-modal {
    width: 100%;
    max-width: 100%;
    background: var(--card-bg, #0d1829);
    border: none;
    border-radius: 18px 18px 0 0;
    padding: 24px 20px 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    color: var(--text-primary, #ffffff);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: ios-modal-in 0.3s ease forwards;
    transform: translateY(100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    box-sizing: border-box;
    max-height: 90vh;
}

.ios-install-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary, #ffffff);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ios-install-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.ios-install-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--card-color, #d4af37);
    padding: 0;
}

.ios-install-steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0 0 16px;
}

.ios-install-step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
}

.ios-install-step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--card-color, #d4af37);
    color: var(--card-bg, #0d1829);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.ios-install-step-text {
    margin: 0;
    padding: 0;
    color: var(--text-primary, #ffffff);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.ios-install-step-text strong {
    color: var(--card-color, #d4af37);
    font-weight: 600;
}

.ios-install-scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0 0;
    color: var(--card-color, #d4af37);
    opacity: 0.7;
}

.ios-install-scroll-indicator svg {
    width: 28px;
    height: 28px;
}



@keyframes ios-modal-in {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 520px) {
    .onesignal-modal {
        min-height: 320px;
        padding: 28px 20px 36px;
        max-width: calc(100vw - 32px);
    }

    .onesignal-modal-header h3 {
        font-size: 20px;
    }

    .onesignal-modal-header p {
        font-size: 14px;
    }

    .onesignal-modal-actions {
        margin-top: 28px;
        gap: 10px;
    }

    .onesignal-modal-button {
        padding: 14px 20px;
        font-size: 14px;
        flex: 1;
        min-width: 120px;
    }

    .ios-install-modal {
        width: 100%;
        padding: 20px 16px 16px;
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        max-height: 85vh;
        overflow: visible;
    }

    .ios-install-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .ios-install-steps-list {
        gap: 14px;
    }

    .ios-install-step-text {
        font-size: 13px;
    }

    .ios-install-step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

@media (max-height: 660px) {
    .ios-install-modal {
        max-height: 68vh;
        padding: 16px 14px 14px;
        padding-bottom: max(14px, env(safe-area-inset-bottom));
    }

    .ios-install-title {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .ios-install-steps-list {
        gap: 12px;
    }
}

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

/* :root bloğundaki statik renk tanımları kaldırıldı - sadece veritabanından gelen dinamik renkler kullanılacak */
:root {
    /* Renkler API'den gelecek ve JavaScript ile uygulanacak */
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--body-bg, #0a1018);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    padding: 20px 0;
    background: var(--header-bg, rgba(13, 24, 41, 0.9));
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    border: 1px solid var(--primary-color);
}

.site-button {
    padding: 12px 32px;
    background: var(--button-bg, #122642);
    border: 2px solid var(--primary-color);
    color: var(--button-color, #ffffff);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.site-button:hover {
    background: var(--button-hover-bg, var(--primary-color, #3b82f6));
    color: var(--button-hover-color, var(--button-color, #ffffff));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border-color: var(--button-hover-bg, var(--primary-color, #3b82f6));
}

.hero {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--content-bg-start, #0d1829) 0%, var(--content-bg-end, #0a1018) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.download-btn {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 50px;
    overflow: hidden;
    background: #ffffff;
    padding: 8px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex: 0 1 auto;
}

.download-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.download-icon {
    width: auto;
    height: 45px;
    display: block;
}

.ios-btn .download-icon,
.android-btn .download-icon {
    height: 45px;
}

.desktop-btn .download-icon {
    height: 45px;
}


.hero-phone {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease 0.3s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.model-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.steps-section {
    padding: 80px 0;
    background: var(--body-bg);
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.step-image {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-screenshot {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-screenshot {
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.4);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.step-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--card-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--card-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 8px 0;
    border-bottom: 3px solid var(--card-color);
    display: inline-block;
    width: 100%;
    text-align: center;
}

.step-phone {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.step-phone-frame {
    width: 180px;
    height: 360px;
    background: linear-gradient(145deg, #1a2a3a, #0d1829);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.step-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #0a0a0a;
    border-radius: 0 0 15px 15px;
    z-index: 2;
}

.step-phone-screen {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.safari-bar {
    background: #fff;
    padding: 40px 12px 12px;
    border-bottom: 1px solid #e0e0e0;
}

.safari-url {
    background: #f0f0f0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    color: #666;
    text-align: center;
}

.step-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.step-label {
    background: var(--button-bg);
    color: var(--button-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid var(--primary-color);
}

.step-content-center {
    padding: 30px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: #fff;
}

.app-logo-small {
    animation: bounce 2s ease-in-out infinite;
}

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

.step-text-box {
    text-align: center;
}

.step-text-box h3 {
    font-size: 11px;
    color: #333;
    margin-bottom: 8px;
}

.step-label-inline {
    background: var(--button-bg);
    color: var(--button-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid var(--primary-color);
}

.share-menu {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

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

.step-screen-dark {
    background: #1a1a1a;
}

.install-card {
    padding: 24px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.install-header {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.install-instructions {
    list-style: none;
    font-size: 9px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.install-instructions li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 12px;
}

.install-instructions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.install-icon {
    margin-top: 12px;
}

.step-home-screen {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 50px 16px 16px;
}

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

.home-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.home-app span {
    font-size: 9px;
    color: #fff;
    text-align: center;
}

.home-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.home-icon.blue { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.home-icon.green { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.home-icon.red { background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%); }
.home-icon.purple { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.home-icon.orange { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.home-icon.gold {
    background: var(--primary-color);
    position: relative;
}

.highlight-app {
    position: relative;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.9));
    }
}

.step-label-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--button-bg);
    color: var(--button-color);
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid var(--primary-color);
}

.step-description {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
}

.telegram-section {
    padding: 80px 0;
    background: var(--body-bg);
}

.telegram-card {
    border-radius: 24px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.telegram-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.telegram-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5f76e8 0%, #3b82f6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 1;
}

.telegram-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid rgba(13, 24, 41, 0.9);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.telegram-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.telegram-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.telegram-button {
    flex-shrink: 0;
    padding: 18px 36px;
    background: linear-gradient(135deg, #5f76e8 0%, #3b82f6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.telegram-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #4c63d2 0%, #2563eb 100%);
}

.footer {
    padding: 40px 0;
    text-align: center;
    background: var(--footer-bg, rgba(13, 24, 41, 0.8));
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-phone {
        display: flex;
        justify-content: center;
    }

    .hero-title {
        font-size: 40px;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }

    .social-icons {
        justify-content: center;
    }

    .logo-text {
        font-size: 20px;
    }

    .site-button {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .download-buttons {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .download-btn {
        padding: 6px 16px;
    }

    .download-icon {
        height: 40px;
    }

    .ios-btn .download-icon,
    .android-btn .download-icon,
    .desktop-btn .download-icon {
        height: 40px;
    }

    .model-image {
        max-width: 400px;
    }

    .section-title {
        font-size: 28px;
        padding: 0 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-image {
        max-width: 250px;
    }

    .telegram-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        gap: 30px;
    }

    .telegram-title {
        font-size: 20px;
    }

    .telegram-button {
        width: 100%;
    }
}

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

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .download-buttons {
        gap: 10px;
        justify-content: center;
    }

    .download-icon {
        height: 50px;
    }

    .ios-btn .download-icon,
    .android-btn .download-icon {
        height: 50px;
    }

    .desktop-btn .download-icon {
        height: 40px;
    }

    .model-image {
        max-width: 300px;
    }

    .step-card {
        padding: 24px;
    }

    .footer p {
        font-size: 11px;
        line-height: 1.6;
    }

    .telegram-card {
        padding: 30px 20px;
        gap: 24px;
    }

    .telegram-icon {
        width: 60px;
        height: 60px;
    }

    .telegram-icon svg {
        width: 40px;
        height: 40px;
    }

    .telegram-title {
        font-size: 18px;
    }

    .telegram-button {
        padding: 14px 24px;
        font-size: 13px;
    }

    .step-image {
        max-width: 220px;
    }

    .step-screenshot {
        border-radius: 25px;
    }
}
