/* ========================================
   CLANYCOM - Premium Community Platform
   Modern Dark Theme with Sky Blue Accents
   ======================================== */

/* CSS Variables */
:root {
    --color-black: #0D0D0D;
    --color-black-light: #1A1A1A;
    --color-black-dark: #050505;
    --color-sky-blue: #38BDF8;
    --color-sky-blue-light: #7DD3FC;
    --color-sky-blue-dark: #0EA5E9;
    --color-gray-soft: #9CA3AF;
    --color-gray-dark: #6B7280;
    --color-white: #FFFFFF;
    --color-white-dim: #E5E7EB;
    
    --gradient-primary: linear-gradient(135deg, var(--color-sky-blue) 0%, var(--color-sky-blue-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
    --gradient-glow: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.3);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gray-dark);
}

.btn-outline:hover {
    border-color: var(--color-sky-blue);
    color: var(--color-sky-blue);
    transform: translateY(-2px);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-gray-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

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

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    color: var(--color-gray-soft);
    margin-bottom: 40px;
    max-width: 540px;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-sky-blue);
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray-soft);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-ui {
    position: relative;
    width: 100%;
    height: 100%;
}

.ui-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatUI 6s ease-in-out infinite;
}

.card-1 {
    width: 320px;
    height: 200px;
    top: 10%;
    left: 10%;
    padding: 20px;
}

.card-2 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-delay: -2s;
}

.card-3 {
    width: 280px;
    height: 200px;
    bottom: 10%;
    left: 20%;
    padding: 16px;
    animation-delay: -4s;
}

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

.ui-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ui-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
}

.ui-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ui-line {
    height: 8px;
    background: var(--color-gray-dark);
    border-radius: 4px;
    width: 100%;
}

.ui-line.short {
    width: 60%;
}

.ui-message {
    height: 12px;
    background: var(--color-gray-dark);
    border-radius: 4px;
    margin-bottom: 8px;
    width: 100%;
}

.voice-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-sky-blue);
}

.voice-indicator i {
    font-size: 32px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    height: 100%;
}

.video-slot {
    background: var(--color-black-light);
    border-radius: var(--radius-md);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--color-gray-soft);
}

/* Features Section */
.features {
    padding: 120px 24px;
    background: var(--color-black);
}

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

.feature-card {
    background: var(--color-black-light);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--color-white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-gray-soft);
    font-size: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 24px;
    background: var(--color-black-light);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(56, 189, 248, 0.2);
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step p {
    color: var(--color-gray-soft);
    font-size: 15px;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-sky-blue), transparent);
    margin-bottom: 100px;
}

/* UI Preview Section */
.ui-preview {
    padding: 120px 24px;
    background: var(--color-black);
}

.preview-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.preview-card {
    background: var(--color-black-light);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.preview-header {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    background: var(--color-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--color-gray-dark);
}

.preview-dot:nth-child(1) { background: #FF5F57; }
.preview-dot:nth-child(2) { background: #FEBC2E; }
.preview-dot:nth-child(3) { background: #28C840; }

.preview-content {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 500px;
}

.preview-sidebar {
    background: var(--color-black);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-main {
    display: flex;
    flex-direction: column;
}

.preview-channel-bar {
    height: 60px;
    background: rgba(56, 189, 248, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-messages {
    flex: 1;
    padding: 24px;
    background: linear-gradient(180deg, var(--color-black-light) 0%, var(--color-black) 100%);
}

.preview-input {
    height: 80px;
    background: var(--color-black-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Communities Section */
.communities {
    padding: 120px 24px;
    background: var(--color-black-light);
}

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

.community-card {
    background: var(--color-black);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
}

.community-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.3);
}

.community-icon {
    width: 64px;
    height: 64px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--color-sky-blue);
}

.community-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.community-card p {
    color: var(--color-gray-soft);
    font-size: 15px;
}

/* CTA Section */
.cta {
    padding: 120px 24px;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta p {
    font-size: 20px;
    color: var(--color-gray-soft);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--color-black-dark);
    padding: 80px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .logo {
    width: 48px;
    height: 48px;
}

.footer-brand p {
    color: var(--color-gray-soft);
    font-size: 15px;
}

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

.footer-column h4 {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column h4 i {
    color: var(--color-sky-blue);
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray-soft);
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a i {
    font-size: 14px;
    color: var(--color-gray-dark);
    width: 16px;
}

.footer-column a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer-column a:hover i {
    color: var(--color-sky-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--color-gray-soft);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-legal a i {
    font-size: 12px;
}

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

.footer-social a {
    color: var(--color-gray-soft);
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-black-light);
}

.footer-social a:hover {
    color: var(--color-white);
    background: var(--color-sky-blue);
    transform: translateY(-3px);
}

.copyright {
    color: var(--color-gray-soft);
    font-size: 14px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content p {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid,
    .communities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .features-grid,
    .communities-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-connector {
        width: 2px;
        height: 60px;
        background: linear-gradient(180deg, var(--color-sky-blue), transparent);
        margin: 0 auto;
    }
    
    .cta h2 {
        font-size: 36px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--gradient-dark);
    position: relative;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
}

.page-hero-content p {
    font-size: 20px;
    color: var(--color-gray-soft);
    max-width: 600px;
    margin: 0 auto;
}

/* Download Options */
.download-options {
    padding: 100px 24px;
    background: var(--color-black);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.download-card {
    background: var(--color-black-light);
    padding: 48px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.3);
}

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

.download-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.download-card p {
    color: var(--color-gray-soft);
    margin-bottom: 32px;
}

/* Browser Page */
.browser-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.browser-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
}

.browser-content p {
    font-size: 20px;
    color: var(--color-gray-soft);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.browser-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.browser-feature {
    text-align: center;
    padding: 24px;
}

.browser-feature i {
    font-size: 48px;
    color: var(--color-sky-blue);
    margin-bottom: 16px;
}

.browser-feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.browser-feature p {
    font-size: 14px;
    color: var(--color-gray-soft);
}

/* Compatibility Section */
.compatibility {
    padding: 80px 24px;
    background: var(--color-black-light);
    text-align: center;
}

.compatibility h2 {
    font-size: 36px;
    margin-bottom: 48px;
}

.browsers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.browser {
    text-align: center;
}

.browser i {
    font-size: 64px;
    color: var(--color-gray-soft);
    margin-bottom: 16px;
    transition: var(--transition);
}

.browser:hover i {
    color: var(--color-sky-blue);
}

.browser h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.browser p {
    font-size: 13px;
    color: var(--color-gray-dark);
}

/* Comparison Table */
.comparison {
    padding: 100px 24px;
    background: var(--color-black);
}

.comparison h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-black-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 24px;
    background: rgba(56, 189, 248, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 700;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.feature-name {
    color: var(--color-white);
}

.browser-col, .app-col {
    text-align: center;
    color: var(--color-gray-soft);
}

.browser-col i, .app-col i {
    font-size: 18px;
}

.browser-col i.fa-check, .app-col i.fa-check {
    color: var(--color-sky-blue);
}

.browser-col i.fa-times, .app-col i.fa-times {
    color: var(--color-gray-dark);
}

/* Getting Started Steps */
.getting-started {
    padding: 100px 24px;
    background: var(--color-black-light);
}

.getting-started h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--color-gray-soft);
    font-size: 15px;
}
