/* Reset and Base Styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

:root {
    --navy-blue: #00013b;
    --highlight-green: #1de604;
    --grey-white: #d9d9d9;
    --white: #ffffff;
    --black: #000000;
    --dark-grey: #333333;
    --light-grey: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #1de604 0%, #00b300 100%);
    --gradient-secondary: linear-gradient(135deg, #00013b 0%, #1a1a4a 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 1, 59, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 217, 217, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

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

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 3px solid var(--highlight-green);
    padding: 2px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    object-fit: cover;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
    border-color: var(--white);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--grey-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--highlight-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(29,230,4,0.04)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.typing-text {
    color: var(--white);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--grey-white);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.primary-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.secondary-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--highlight-green);
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.secondary-button:hover {
    background: var(--highlight-green);
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 230, 4, 0.3);
    text-decoration: none;
}

.hero-highlights {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey-white);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.highlight:last-child {
    margin-left: 30px;
}

.highlight:hover {
    color: var(--highlight-green);
    transform: translateY(-2px);
}

.highlight i {
    color: var(--highlight-green);
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 150px;
}

.phone-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.check-it-out {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.phone-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: var(--navy-blue);
    border-radius: 40px;
    padding: 8px;
    box-shadow: var(--shadow-heavy);
    border: 3px solid var(--highlight-green);
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.app-screenshot {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.app-screenshot.active {
    opacity: 1;
}

.carousel-btn {
    background: var(--gradient-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--grey-white);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--highlight-green);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--highlight-green);
    transform: scale(1.1);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy-blue);
    padding: 12px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    font-size: 0.85rem;
    min-width: 120px;
}

.card-1 {
    top: 5%;
    right: -120px;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    left: -20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: -100px;
    animation-delay: 4s;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.player-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.price-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.price-change.positive {
    color: #00b300;
}

.price-change.negative {
    color: #ff4444;
}

.card-price {
    font-size: 1.2rem;
    font-weight: 800;
}

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

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--white);
    color: var(--navy-blue);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,1,59,0.02)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.section-description {
    font-size: 1.2rem;
    color: var(--dark-grey);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--grey-white);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--highlight-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy-blue);
}

.feature-description {
    color: var(--dark-grey);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--gradient-secondary);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(29,230,4,0.04)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-description {
    color: var(--grey-white);
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--highlight-green);
    opacity: 0.3;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.step-description {
    color: var(--grey-white);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--light-grey);
    color: var(--navy-blue);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,1,59,0.02)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--grey-white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--highlight-green);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 10;
}

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

.faq-question:hover {
    background: rgba(29, 230, 4, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin: 0;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--highlight-green);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    padding: 20px 0 0 0;
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
    border-top: 1px solid rgba(29, 230, 4, 0.2);
}

.faq-answer p {
    color: var(--dark-grey);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gradient-secondary);
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(29,230,4,0.04)" stroke-width="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--grey-white);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* Join Team Section */
.join-team-section {
    margin-top: 80px;
    text-align: center;
}

.join-team-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-team-description {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.join-team-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: transparent;
    color: var(--green);
    text-decoration: none;
    border: 2px solid var(--green);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.join-team-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--green);
    transition: width 0.3s ease;
    z-index: -1;
}

.join-team-button:hover::before {
    width: 100%;
}

.join-team-button:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 230, 4, 0.3);
}

.join-team-button i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.join-team-button:hover i {
    transform: translateX(3px);
}

.primary-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

.secondary-button.large {
    padding: 18px 38px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--navy-blue);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(217, 217, 217, 0.1);
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--grey-white);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-link {
    display: block;
    color: var(--grey-white);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--highlight-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(217, 217, 217, 0.1);
}

.footer-copyright {
    color: var(--grey-white);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(29, 230, 4, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight-green);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--highlight-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
    }
    
    .nav-link {
        padding: 10px 15px;
        text-align: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .cta-button {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-visual {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-highlights {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
    
    .phone-mockup {
        width: 300px;
        height: 600px;
    }
    
    .phone-screen {
        border-radius: 28px;
    }
    
    .check-it-out {
        font-size: 1.1rem;
    }
    
    .phone-container {
        gap: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .floating-cards {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
    }
    
    .phone-screen {
        border-radius: 24px;
    }
    
    .check-it-out {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .step::after {
        display: none;
    }
}