/*
 * WeTheNorth Market - Official Style Sheet
 * WTN Dark Red Theme - Canadian Darknet Excellence
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #d11515;
    --primary-dark: #a01010;
    --primary-light: #ff2020;
    --bg-dark: #0a0a0a;
    --bg-medium: #111111;
    --bg-light: #1a1a1a;
    --bg-card: #151515;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --success: #00c853;
    --warning: #ffc107;
    --danger: #ff1744;
    --radius: 12px;
    --radius-sm: 8px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-light);
    padding: 1rem 2rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(209, 21, 21, 0.4);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: var(--bg-light);
}

.nav-links a.btn-primary {
    background: var(--primary);
    color: white;
}

.nav-links a.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(209, 21, 21, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 50%, var(--bg-dark) 100%);
    overflow: hidden;
    text-align: center;
}

.hero-small {
    padding: 4rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(209, 21, 21, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(209, 21, 21, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(209, 21, 21, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg {
    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"><circle cx="50" cy="50" r="1" fill="%23d11515" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-small h1 {
    font-size: 2.5rem;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(209, 21, 21, 0.2);
    border: 1px solid var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--primary-light);
}

.hero-tagline::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(0, 200, 83, 0); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-light);
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(209, 21, 21, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(209, 21, 21, 0.5);
    color: white;
}

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

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

.arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(5px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 2rem;
}

.section-dark {
    background: var(--bg-medium);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(209, 21, 21, 0.3);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   FEATURES DETAILED
   ============================================ */
.features-detailed {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-detail {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-detail:hover {
    border-color: var(--primary);
}

.feature-detail .feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.feature-detail h3 {
    margin-bottom: 0.5rem;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stats-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.stats-card .value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stats-card .label {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Stats Summary */
.stats-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.stats-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.stats-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Stats Table */
.stats-table-container {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--bg-light);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th,
.stats-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
}

.stats-table th {
    background: var(--bg-medium);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.stats-table tr:last-child td {
    border-bottom: none;
}

.stats-table tr:hover td {
    background: rgba(209, 21, 21, 0.05);
}

/* ============================================
   STEPS / GUIDE
   ============================================ */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

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

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(209, 21, 21, 0.3);
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* ============================================
   CRYPTO SECTION
   ============================================ */
.crypto-section {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 600px;
    margin: 3rem auto 0;
}

.crypto-section h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.crypto-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
}

.crypto-card img {
    width: 40px;
    height: 40px;
}

.crypto-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.crypto-change {
    font-size: 0.875rem;
}

.crypto-change.positive {
    color: var(--success);
}

.crypto-change.negative {
    color: var(--danger);
}

/* ============================================
   NAV CARDS
   ============================================ */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-card {
    display: block;
    background: var(--bg-card);
    border: 2px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.nav-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.nav-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================
   CTA BOX
   ============================================ */
.cta-box {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-medium));
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   WARNING BOX
   ============================================ */
.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--warning);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h4 {
    color: var(--warning);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================
   SEO CONTENT BOX
   ============================================ */
.seo-content-box {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin: 2rem 0;
}

.seo-content-box h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.seo-content-box p {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================
   INTRO CONTENT
   ============================================ */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ============================================
   HISTORY
   ============================================ */
.history-block {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
}

.history-block:hover {
    border-color: var(--primary);
}

.history-block h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.history-content h4 {
    margin-bottom: 0.75rem;
}

.history-content p {
    margin-bottom: 0;
}

/* ============================================
   COMPARISON
   ============================================ */
.comparison-block {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
}

.comparison-block h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.comparison-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.comparison-content ul {
    list-style: none;
}

.comparison-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.comparison-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ============================================
   VERIFICATION
   ============================================ */
.verification-content {
    max-width: 800px;
    margin: 0 auto;
}

.verification-steps {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
}

.verification-steps ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.verification-steps li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-light);
}

.verification-steps li:last-child {
    border-bottom: none;
}

/* ============================================
   TROUBLESHOOTING
   ============================================ */
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.troubleshoot-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.troubleshoot-card:hover {
    border-color: var(--primary);
}

.troubleshoot-card h4 {
    color: var(--danger);
    margin-bottom: 0.75rem;
}

.troubleshoot-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item h4 {
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item h4:hover {
    background: var(--bg-light);
}

.faq-item h4::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    color: var(--text-secondary);
}

/* ============================================
   RESOURCES
   ============================================ */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.resource-list {
    background: var(--bg-card);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.resource-list h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.resource-list ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.resource-list ul li:last-child {
    border-bottom: none;
}

.resource-list a {
    color: var(--text-secondary);
}

.resource-list a:hover {
    color: var(--primary);
}

/* ============================================
   TIMESTAMP
   ============================================ */
.timestamp {
    text-align: center;
    padding: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid var(--bg-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-medium);
    border-top: 1px solid var(--bg-light);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .history-block {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .feature-detail {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
