/* ============================================
   ARES PROTOCOL - GOD OF WAR THEME
   Red & Black Color Scheme
   ============================================ */

:root {
    /* Primary Colors - God of War Ares Theme */
    --blood-red: #C41E3A;
    --crimson: #DC143C;
    --dark-crimson: #8B0000;
    --fire-red: #FF4136;
    --ember: #E25822;
    
    /* Dark Colors */
    --void-black: #0A0A0A;
    --shadow: #121212;
    --charcoal: #1A1A1A;
    --steel: #2A2A2A;
    --iron: #3A3A3A;
    
    /* Light Colors */
    --bone: #F5F5F5;
    --ash: #E0E0E0;
    --smoke: #B0B0B0;
    --slate: #808080;
    
    /* Gradients */
    --gradient-fire: linear-gradient(135deg, var(--blood-red) 0%, var(--fire-red) 50%, var(--ember) 100%);
    --gradient-dark: linear-gradient(180deg, var(--shadow) 0%, var(--void-black) 100%);
    --gradient-steel: linear-gradient(135deg, var(--charcoal) 0%, var(--steel) 100%);
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(196, 30, 58, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-elevated: 0 8px 48px rgba(0, 0, 0, 0.6);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--void-black);
    color: var(--bone);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 30, 58, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--bone);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ash);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--crimson);
}

.nav-cta {
    background: var(--gradient-fire);
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-md);
    color: var(--bone) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--bone);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        var(--void-black);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: var(--space-4xl);
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(196, 30, 58, 0.2);
    border: 1px solid var(--blood-red);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--crimson);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    color: var(--ash);
}

.title-emphasis {
    display: block;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--smoke);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-fire);
    color: var(--bone);
}

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

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

.btn-secondary:hover {
    border-color: var(--crimson);
    color: var(--crimson);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--crimson);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--smoke);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--iron);
}

.hero-phone {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Phone Mockup */
.phone-frame {
    width: 280px;
    height: 580px;
    background: var(--charcoal);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-elevated), var(--shadow-glow);
    border: 1px solid var(--iron);
}

.phone-frame.large {
    width: 300px;
    height: 620px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--shadow);
    border-radius: 32px;
    overflow: hidden;
}

.screen-header {
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: center;
}

.screen-time {
    font-size: 0.875rem;
    font-weight: 600;
}

.screen-content {
    padding: var(--space-md);
}

.app-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.app-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--crimson);
    letter-spacing: 0.1em;
}

.app-subtitle {
    font-size: 0.75rem;
    color: var(--smoke);
}

.workout-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border: 1px solid var(--iron);
}

.workout-card.secondary {
    border-color: rgba(196, 30, 58, 0.3);
}

.workout-type {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--crimson);
    margin-bottom: var(--space-xs);
}

.workout-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.workout-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--ash);
}

.detail-icon {
    color: var(--blood-red);
    opacity: 0.7;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(196, 30, 58, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--crimson);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--smoke);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: var(--shadow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--gradient-steel);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--iron);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(196, 30, 58, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--crimson);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--smoke);
    font-size: 0.95rem;
}

/* ============================================
   TRAINING DISCIPLINES
   ============================================ */

.training {
    background: var(--void-black);
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.discipline-card {
    position: relative;
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--iron);
    transition: all 0.3s ease;
}

.discipline-card:hover {
    border-color: var(--blood-red);
    transform: translateY(-4px);
}

.discipline-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    opacity: 0.2;
}

.discipline-bg.crossfit {
    background: linear-gradient(135deg, var(--fire-red), var(--ember));
}

.discipline-bg.hyrox {
    background: linear-gradient(135deg, var(--blood-red), var(--dark-crimson));
}

.discipline-bg.bodybuilding {
    background: linear-gradient(135deg, var(--crimson), var(--blood-red));
}

.discipline-bg.powerlifting {
    background: linear-gradient(135deg, var(--dark-crimson), var(--void-black));
}

.discipline-content {
    position: relative;
    padding: var(--space-xl);
    padding-top: 100px;
}

.discipline-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--crimson);
}

.discipline-card p {
    color: var(--smoke);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.discipline-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.discipline-card li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--ash);
}

.discipline-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blood-red);
    border-radius: 50%;
}

/* ============================================
   INTELLIGENCE SECTION
   ============================================ */

.intelligence {
    background: var(--shadow);
}

.intel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.intel-text .section-tag,
.intel-text .section-title,
.intel-text .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.intel-features {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.intel-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.intel-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(196, 30, 58, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.intel-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--crimson);
}

.intel-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.intel-info p {
    font-size: 0.875rem;
    color: var(--smoke);
}

.intel-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Intelligence Screen */
.intelligence-screen {
    padding: var(--space-md);
}

.intel-screen-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.intel-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--ash);
}

.pr-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.pr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.pr-label {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--smoke);
}

.pr-badge {
    font-size: 0.5rem;
    padding: 2px 6px;
    background: var(--blood-red);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.pr-lift {
    font-size: 0.875rem;
    color: var(--ash);
}

.pr-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--crimson);
}

.pr-value span {
    font-size: 1rem;
    color: var(--smoke);
}

.pr-change {
    font-size: 0.75rem;
    color: #4CAF50;
}

.cycle-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border: 1px solid var(--iron);
}

.cycle-header {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--smoke);
    margin-bottom: var(--space-sm);
}

.cycle-phase {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.phase-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.phase-week {
    font-size: 0.75rem;
    color: var(--smoke);
}

.cycle-bar {
    height: 6px;
    background: var(--iron);
    border-radius: 3px;
    overflow: hidden;
}

.cycle-progress {
    height: 100%;
    background: var(--gradient-fire);
    border-radius: 3px;
}

.readiness-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--iron);
}

.readiness-header {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--smoke);
    margin-bottom: var(--space-xs);
}

.readiness-score {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
}

.readiness-score span {
    font-size: 1.25rem;
}

.readiness-factors {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-sm);
}

.factor {
    font-size: 0.625rem;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.factor.good {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.factor.ok {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    background: var(--void-black);
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--gradient-steel);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--iron);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-fire);
}

.pricing-badge {
    display: inline-block;
    background: var(--blood-red);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
}

.pricing-header p {
    color: var(--smoke);
}

.pricing-amount {
    margin: var(--space-xl) 0;
    display: flex;
    align-items: flex-start;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--crimson);
    margin-top: 8px;
}

.price {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--crimson);
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--crimson);
    margin-top: 8px;
}

.period {
    font-size: 1rem;
    color: var(--smoke);
    margin-left: var(--space-sm);
    align-self: flex-end;
    margin-bottom: 12px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    stroke: var(--crimson);
    min-width: 20px;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download {
    background: 
        radial-gradient(ellipse at center, rgba(196, 30, 58, 0.1) 0%, transparent 70%),
        var(--shadow);
}

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

.download-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.download-subtitle {
    color: var(--smoke);
    margin-bottom: var(--space-xl);
}

.download-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--charcoal);
    border: 1px solid var(--iron);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.store-button:hover {
    border-color: var(--blood-red);
    background: var(--steel);
}

.store-text {
    text-align: left;
}

.store-label {
    display: block;
    font-size: 0.7rem;
    color: var(--smoke);
}

.store-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--void-black);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--iron);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}

.footer-links a {
    color: var(--smoke);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    text-align: right;
}

.footer-contact p {
    font-size: 0.875rem;
    color: var(--smoke);
    margin-bottom: var(--space-xs);
}

.contact-email {
    color: var(--crimson);
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--iron);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--slate);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-phone {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        padding-left: var(--space-lg);
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .intel-content {
        grid-template-columns: 1fr;
    }
    
    .intel-text .section-tag,
    .intel-text .section-title,
    .intel-text .section-subtitle {
        text-align: center;
    }
    
    .intel-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--shadow);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid var(--iron);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    .stat-divider {
        display: none;
    }
    
    .disciplines-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .store-button {
        justify-content: center;
    }
}
