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

:root {
    --primary-color: #007AFF;
    --primary-dark: #0051D5;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F7;
    --bg-tertiary: #FAFAFA;
    --border-color: #D2D2D7;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    position: relative;
    min-height: 100vh;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-secondary);
}

.cta-button {
    background: var(--primary-color);
    color: #FFFFFF !important;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

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

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    z-index: 999;
    padding: 24px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    display: block;
    padding: 16px 0;
    color: var(--text-primary) !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    border: none !important;
    outline: none !important;
}

.mobile-menu ul li a:link,
.mobile-menu ul li a:visited,
.mobile-menu ul li a:active {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

.mobile-menu ul li a:hover {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 160px 24px 100px;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 980px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(56px, 8vw, 112px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: -3px;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.title-line.highlight {
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 21px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Animated Background Orbs */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #FF2D55 0%, #FF9500 100%);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

/* Hero App Icons */
.hero-app-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.app-icon {
    position: absolute;
    opacity: 0;
    animation: iconFadeIn 0.8s ease forwards, iconFloat 6s ease-in-out infinite;
}

.icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
}

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

/* Icon positions and sizes - side columns only (no icons behind text) */
/* Row 1 */
.icon-1 {
    width: 80px;
    height: 80px;
    top: 8%;
    left: 6%;
    animation-delay: 1.2s, 0s;
}

.icon-2 {
    width: 80px;
    height: 80px;
    top: 8%;
    right: 6%;
    animation-delay: 1.4s, 1s;
}

/* Row 2 */
.icon-3 {
    width: 78px;
    height: 78px;
    top: 24%;
    left: 8%;
    animation-delay: 1.6s, 2s;
}

.icon-4 {
    width: 78px;
    height: 78px;
    top: 24%;
    right: 8%;
    animation-delay: 1.8s, 0.5s;
}

/* Row 3 */
.icon-5 {
    width: 82px;
    height: 82px;
    top: 40%;
    left: 6%;
    animation-delay: 2s, 1.5s;
}

.icon-6 {
    width: 82px;
    height: 82px;
    top: 40%;
    right: 6%;
    animation-delay: 2.2s, 2.5s;
}

/* Row 4 */
.icon-7 {
    width: 80px;
    height: 80px;
    top: 56%;
    left: 8%;
    animation-delay: 2.4s, 3s;
}

.icon-8 {
    width: 80px;
    height: 80px;
    top: 56%;
    right: 8%;
    animation-delay: 2.6s, 0.8s;
}

/* Row 5 */
.icon-9 {
    width: 78px;
    height: 78px;
    top: 72%;
    left: 6%;
    animation-delay: 2.8s, 1.8s;
}

.icon-10 {
    width: 78px;
    height: 78px;
    top: 72%;
    right: 6%;
    animation-delay: 3s, 2.2s;
}

/* Row 6 */
.icon-11 {
    width: 80px;
    height: 80px;
    top: 88%;
    left: 8%;
    animation-delay: 3.2s, 3.5s;
}

.icon-12 {
    width: 80px;
    height: 80px;
    top: 88%;
    right: 8%;
    animation-delay: 3.4s, 1.2s;
}

@keyframes iconFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-20px) rotate(1deg);
    }
}


/* App Showcase Section */
.app-showcase {
    padding: 120px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.app-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-8px);
}

.app-image {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.app-mockup {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    width: auto;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.app-card:hover .app-mockup {
    transform: scale(1.02);
}

.app-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.app-description {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.app-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
}

.app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-label {
    font-size: 10px;
    opacity: 0.9;
}

.badge-name {
    font-size: 14px;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.service-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: var(--bg-primary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-top: 64px;
    position: relative;
}

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

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.08;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Support Section */
.support {
    padding: 120px 0;
    background: var(--bg-primary);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.support-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.support-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: var(--primary-dark);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

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

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
    font-family: inherit;
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 24px 0;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
}

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

.contact-form {
    margin-top: 48px;
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231D1D1F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Discord Section */
.discord-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.discord-card {
    max-width: 900px;
    margin: 64px auto 0;
    background: var(--bg-secondary);
    border-radius: 32px;
    padding: 60px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.discord-card-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}

.discord-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.discord-icon {
    font-size: 64px;
}

.discord-text {
    flex: 1;
}

.discord-text h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.discord-text > p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.discord-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.discord-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
}

.feature-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: 8px;
    flex-shrink: 0;
}

.discord-button {
    background: #5865F2;
    color: #FFFFFF;
    margin-top: 8px;
}

.discord-button:hover {
    background: #4752C4;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

@media (max-width: 768px) {
    .discord-card {
        padding: 40px 32px;
    }

    .discord-card-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .discord-icon-wrapper {
        margin: 0 auto;
    }

    .discord-features {
        align-items: flex-start;
    }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 48px;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
        margin-top: 16px;
    }
}

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

.footer-brand p {
    color: var(--text-secondary);
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

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

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .app-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .badge-icon {
        font-size: 16px;
    }

    .badge-name {
        font-size: 12px;
    }

    .app-mockup {
        max-height: 400px;
    }

    .hero-app-icons {
        display: none;
    }
}

@media (max-width: 1024px) {
    .app-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    /* Row 1 */
    .icon-1 { top: 8%; left: 5%; }
    .icon-2 { top: 8%; right: 5%; }
    
    /* Row 2 */
    .icon-3 { top: 24%; left: 7%; }
    .icon-4 { top: 24%; right: 7%; }
    
    /* Row 3 */
    .icon-5 { top: 40%; left: 5%; }
    .icon-6 { top: 40%; right: 5%; }
    
    /* Row 4 */
    .icon-7 { top: 56%; left: 7%; }
    .icon-8 { top: 56%; right: 7%; }
    
    /* Row 5 */
    .icon-9 { top: 72%; left: 5%; }
    .icon-10 { top: 72%; right: 5%; }
    
    /* Row 6 */
    .icon-11 { top: 88%; left: 7%; }
    .icon-12 { top: 88%; right: 7%; }
}

@media (min-width: 1400px) {
    /* Row 1 */
    .icon-1 { width: 90px; height: 90px; top: 8%; left: 8%; }
    .icon-2 { width: 90px; height: 90px; top: 8%; right: 8%; }
    
    /* Row 2 */
    .icon-3 { width: 88px; height: 88px; top: 24%; left: 10%; }
    .icon-4 { width: 88px; height: 88px; top: 24%; right: 10%; }
    
    /* Row 3 */
    .icon-5 { width: 94px; height: 94px; top: 40%; left: 8%; }
    .icon-6 { width: 94px; height: 94px; top: 40%; right: 8%; }
    
    /* Row 4 */
    .icon-7 { width: 92px; height: 92px; top: 56%; left: 10%; }
    .icon-8 { width: 92px; height: 92px; top: 56%; right: 10%; }
    
    /* Row 5 */
    .icon-9 { width: 90px; height: 90px; top: 72%; left: 8%; }
    .icon-10 { width: 90px; height: 90px; top: 72%; right: 8%; }
    
    /* Row 6 */
    .icon-11 { width: 92px; height: 92px; top: 88%; left: 10%; }
    .icon-12 { width: 92px; height: 92px; top: 88%; right: 10%; }
}

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

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

    .section-subtitle {
        font-size: 18px;
    }

    .app-showcase,
    .services,
    .process,
    .about,
    .contact {
        padding: 80px 0;
    }
}
