:root {
    /* Color Variables - Matching App Theme */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;
    
    --accent-color: #10b981;
    --accent-dark: #059669;
    --accent-light: #34d399;
    
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Spacing */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */
    
    /* Border Radius */
    --radius-sm: 0.375rem;  /* 6px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-2xl: 1.5rem;   /* 24px */
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
    
    /* Breakpoints */
    --bp-sm: 640px;
    --bp-md: 768px;
    --bp-lg: 1024px;
    --bp-xl: 1280px;
    --bp-2xl: 1536px;
    
    /* Container */
    --container-padding: var(--space-md);
    --container-max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

@media (min-width: 768px) {
    h1 {
        font-size: var(--text-5xl);
    }
    
    h2 {
        font-size: var(--text-4xl);
    }
    
    h3 {
        font-size: var(--text-3xl);
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: var(--text-6xl);
    }
}

p {
    margin-bottom: var(--space-md);
    color: var(--gray-700);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Ensure all text elements use dark gray color */
li, span, label, input, select, textarea, td, th {
    color: var(--gray-700);
}

/* Exception for text inside buttons and colored backgrounds */
.btn *, 
.hero *, 
.feature-card *,
.language-card *,
.download__buttons * {
    color: inherit;
}

/* Footer text should remain lighter for contrast on dark background */
.footer * {
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    user-select: none;
    white-space: nowrap;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
        padding: var(--space-lg) var(--space-xl);
        font-size: var(--text-lg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: var(--z-fixed);
    transition: all var(--transition-fast);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--container-padding);
    min-height: 70px;
}

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

.nav__logo {
    width: 40px;
    height: 40px;
}

.nav__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
}

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

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav__link {
    font-weight: var(--font-medium);
    color: var(--gray-700);
    transition: color var(--transition-fast);
}

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

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

.language-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--gray-100);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.language-toggle:hover {
    background-color: var(--gray-200);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--gray-700);
    transition: all var(--transition-fast);
}

/* Mobile Navigation */
@media (max-width: 1023px) {
    .nav__list {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu.active .nav__list {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-xl);
        background-color: var(--white);
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }
}

/* Hero Section */
.hero {
    padding: calc(70px + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
    position: relative;
}

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

@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
    }
}

.hero__content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero__content {
        text-align: left;
    }
}

.hero__title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: var(--text-5xl);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: var(--text-6xl);
    }
}

.hero__description {
    font-size: var(--text-lg);
    color: var(--gray-700);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
}

@media (min-width: 1024px) {
    .hero__description {
        font-size: var(--text-xl);
        max-width: none;
    }
}

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

@media (min-width: 640px) {
    .hero__cta {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .hero__cta {
        justify-content: flex-start;
    }
}

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

@media (min-width: 1024px) {
    .hero__badges {
        justify-content: flex-start;
    }
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.badge__icon {
    font-size: var(--text-base);
}

/* Hero Image */
.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__phone {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(var(--shadow-2xl));
}

@media (min-width: 768px) {
    .hero__phone {
        max-width: 400px;
    }
}

.hero__floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    animation: float 3s ease-in-out infinite;
}

.translation-card {
    top: 10%;
    right: -10%;
    width: 200px;
}

.voice-card {
    bottom: 20%;
    left: -15%;
    width: 150px;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
}

.arrow {
    color: var(--primary-color);
    font-weight: var(--font-bold);
}

.card-content p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
}

.source {
    color: var(--gray-700);
    font-weight: var(--font-medium);
}

.target {
    color: var(--primary-color);
    font-weight: var(--font-medium);
}

.voice-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-color);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.pulse {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Section Styles */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    margin-bottom: var(--space-lg);
}

.section__description {
    font-size: var(--text-lg);
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Features Section */
.features {
    background-color: var(--gray-50);
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

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

.feature-card__icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    display: block;
}

.feature-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.feature-card__description {
    color: var(--gray-700);
    margin-bottom: 0;
}

/* How It Works Section */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

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

@media (max-width: 767px) {
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
}

.step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    font-family: var(--font-heading);
}

.step__content h3 {
    margin-bottom: var(--space-sm);
}

.step__content p {
    margin-bottom: 0;
}

.step__image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Languages Section */
.languages {
    background-color: var(--gray-50);
}

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

.language-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.language-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.language-card__flag {
    font-size: var(--text-2xl);
}

.language-card__name {
    font-weight: var(--font-medium);
    color: var(--gray-700);
}

/* Download Section */
.download {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

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

@media (min-width: 1024px) {
    .download__content {
        grid-template-columns: 1fr auto;
        gap: var(--space-4xl);
    }
}

.download__title {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.download__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
}

.download__stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 767px) {
    .download__stats {
        justify-content: center;
    }
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    font-family: var(--font-heading);
    color: var(--white);
}

.stat__label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.download__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .download__buttons {
        flex-direction: row;
        gap: var(--space-lg);
    }
}

.download-btn {
    display: block;
    transition: transform var(--transition-fast);
}

.download-btn:hover {
    transform: scale(1.05);
}

.download-btn__image {
    height: 60px;
    width: auto;
}

.download__image {
    display: flex;
    justify-content: center;
}

.download__phones {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact {
    background-color: var(--gray-50);
}

.contact__content {
    display: flex;
    justify-content: center;
}

.contact__info {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item__icon {
    font-size: var(--text-3xl);
    flex-shrink: 0;
}

.contact-item__content {
    text-align: center;
}

.contact-item__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

.contact-item__text {
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-4xl);
    }
}

.footer__brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer__brand {
        text-align: left;
    }
}

.footer__logo {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-md);
}

.footer__title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer__description {
    color: var(--gray-300);
    margin-bottom: 0;
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 640px) {
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer__column {
    text-align: center;
}

@media (min-width: 640px) {
    .footer__column {
        text-align: left;
    }
}

.footer__heading {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: var(--space-sm);
}

.footer__link {
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--white);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-700);
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
    }
}

.footer__copyright {
    color: var(--gray-300);
    margin-bottom: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: var(--text-xl);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Print styles */
@media print {
    .header,
    .nav__toggle,
    .back-to-top {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .hero {
        padding-top: 0;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for better accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .language-card,
    .contact__form {
        border-width: 2px;
    }
}

/* Coming Soon Section */
.coming-soon {
    text-align: center;
    padding: var(--space-2xl);
    background-color: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--gray-300);
}

.coming-soon__text {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.coming-soon__description {
    color: var(--gray-700);
    margin-bottom: 0;
}
