/* C-Money Website Styles */
:root {
    --primary: #d11111;
    --primary-dark: #991b1b;
    --background-light: #f8f7f5;
    --background-dark: #0f172a;
    --card-dark: #1e293b;
    --accent-red: #e63946;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--background-dark);
    color: #f1f5f9;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--primary);
    color: white;
}

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

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    border-radius: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 0.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(209, 17, 17, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--card-dark);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 6rem;
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0 8rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    z-index: 10;
    order: 2;
}

@media (min-width: 1024px) {
    .hero-content {
        order: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.125rem;
    border: 1px solid rgba(209, 17, 17, 0.3);
    background-color: rgba(209, 17, 17, 0.1);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
}

.hero-badge-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background-color: var(--primary);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-dot::after {
    content: '';
    position: relative;
    display: inline-flex;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--primary);
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-badge-text {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-title-highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 32rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image-wrapper {
    position: relative;
    order: 1;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-container {
    aspect-ratio: 4/5;
    border-radius: 0.125rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-overlay-text {
    text-align: center;
    padding: 1.5rem;
    transform: translateY(-200px);
}

.hero-overlay-headline {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    background-color: var(--primary);
    padding: 0.5rem 1rem;
    display: inline-block;
}

.hero-overlay-headline span {
    color: #ffffff;
}

.hero-overlay-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    max-width: 320px;
    margin: 0 auto;
    transform: translateY(200px);
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

.hero-price-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1.5rem;
    border-radius: 0.125rem;
    background-color: rgba(15, 23, 42, 1);
    backdrop-filter: blur(8px);
    border-left: 4px solid var(--primary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.hero-price-label {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 0.25rem;
}

.hero-price-value {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.hero-price-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.hero-price-fallback {
    font-size: 0.6rem;
    font-weight: 500;
    color: #94a3b8;
    margin-top: 0.2rem;
}

.hero-price-info {
    text-align: right;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}

/* Feature Banner */
/* Competitor Comparison Table */
.compare-table-section {
    padding: 4rem 0 6rem;
}

.compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.compare-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.compare-table thead {
    background: rgba(255, 255, 255, 0.03);
}

.compare-table th {
    padding: 1rem 0.75rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.compare-table .compare-feature-col {
    text-align: left;
    padding-left: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.compare-table th.compare-feature-col {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

.compare-table .compare-cmoney-col {
    background: rgba(209, 17, 17, 0.06);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.compare-table thead .compare-cmoney-col {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9375rem;
    border-top: 2px solid var(--primary);
}

.compare-price {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

.compare-table thead .compare-cmoney-col .compare-price {
    color: var(--primary);
    opacity: 0.8;
}

.compare-table td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.compare-table tbody tr:hover .compare-cmoney-col {
    background: rgba(209, 17, 17, 0.1);
}

.compare-yes {
    color: #22c55e;
    font-size: 1.25rem;
}

.compare-no {
    color: #ef4444;
    font-size: 1.25rem;
    opacity: 0.5;
}

.compare-partial {
    color: #f59e0b;
    font-size: 1.25rem;
}

.compare-savings-row {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-savings-row td {
    padding: 1rem 0.75rem;
    font-size: 0.9375rem;
    color: #22c55e;
}

.compare-savings-row .compare-cmoney-col {
    border-bottom: 2px solid var(--primary);
}

@media (max-width: 768px) {
    .compare-table-wrapper {
        margin: 0 -1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .compare-table {
        font-size: 0.8125rem;
    }
}

/* Pain Points Section */
.pain-points {
    padding: 6rem 0;
    background-color: rgba(15, 23, 42, 0.5);
}

.section-header {
    margin-bottom: 4rem;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
}

.section-label {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1px;
}

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

.pain-point-card {
    background-color: var(--background-dark);
    padding: 3rem;
    transition: background-color 0.3s ease;
}

.pain-point-card:hover {
    background-color: rgba(15, 23, 42, 0.8);
}

.pain-point-icon {
    color: var(--primary);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.pain-point-card:hover .pain-point-icon {
    transform: scale(1.1);
}

.pain-point-title {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.pain-point-description {
    color: #64748b;
    line-height: 1.75;
    font-size: 0.875rem;
}

/* Trades Section */
.trades {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trades-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .trades-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.trades-subtitle {
    color: #64748b;
    max-width: 24rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

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

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

.trade-card {
    padding: 1.25rem 1.5rem;
    background-color: var(--card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.3s ease;
    cursor: default;
}

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

.trade-card-icon {
    color: var(--primary);
}

.trade-card-text {
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trade-card-highlight {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
}

.cta-content {
    position: relative;
    background-color: var(--primary);
    padding: 3rem;
    border-radius: 0.125rem;
    overflow: hidden;
    box-shadow: 0 0 100px -20px rgba(209, 17, 17, 0.4);
}

@media (min-width: 1024px) {
    .cta-content {
        padding: 6rem;
    }
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image: repeating-linear-gradient(45deg, #000 0, #000 1px, transparent 0, transparent 50%);
    background-size: 8px 8px;
}

.cta-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 4rem;
    }
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 42rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
    .cta-description {
        font-size: 1.25rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-btn {
    background-color: var(--background-dark);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 0.125rem;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: background-color 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-btn:hover {
    background-color: black;
}

.cta-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.footer-brand {
    max-width: 24rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--primary);
    border-radius: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-logo-text {
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.footer-description {
    color: #64748b;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.125rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.footer-nav h4 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.625rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.footer-copyright {
    color: #64748b;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* Features Page Styles */
.features-hero {
    position: relative;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .features-hero {
        padding: 6rem 1.5rem;
    }
}

.features-hero-bg {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    text-align: center;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.033em;
}

@media (min-width: 768px) {
    .features-hero-title {
        font-size: 3.5rem;
    }
}

.features-hero-description {
    max-width: 42rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .features-hero-description {
        font-size: 1.25rem;
    }
}

/* Feature Cards Grid */
.features-section {
    padding: 2rem 1.5rem 4rem;
}

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

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

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

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--card-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(209, 17, 17, 0.5);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: rgba(209, 17, 17, 0.1);
    color: var(--primary);
}

.feature-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-card-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Nagging Feature Banner */
.nagging-banner {
    padding: 3rem 1.5rem;
}

.nagging-banner-content {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(to right, var(--primary), #ef4444, var(--primary));
}

.nagging-banner-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-radius: calc(1rem - 1px);
    background-color: var(--background-dark);
    padding: 2rem;
}

@media (min-width: 768px) {
    .nagging-banner-inner {
        flex-direction: row;
        padding: 3rem;
    }
}

.nagging-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(209, 17, 17, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.nagging-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
}

@media (min-width: 768px) {
    .nagging-title {
        font-size: 2.25rem;
    }
}

.nagging-title span {
    color: var(--primary);
    font-style: italic;
}

.nagging-description {
    font-size: 1.125rem;
    color: #94a3b8;
}

.nagging-highlight {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    color: white;
    font-weight: 800;
    font-style: italic;
    box-shadow: 0 4px 6px rgba(209, 17, 17, 0.2);
}

/* About Page Styles */
.about-hero {
    padding: 3rem 1.5rem 6rem;
}

@media (min-width: 1024px) {
    .about-hero {
        padding: 3rem 5rem 6rem;
    }
}

.about-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 864px) {
    .about-hero-grid {
        flex-direction: row;
        align-items: center;
    }
}

.about-hero-image {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.125rem;
    box-shadow: 20px 20px 0 0 var(--primary);
    filter: grayscale(100%) contrast(1.25);
}

@media (min-width: 480px) {
    .about-hero-image {
        aspect-ratio: 16/9;
    }
}

@media (min-width: 864px) {
    .about-hero-image {
        aspect-ratio: 4/5;
    }
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 864px) {
    .about-hero-content {
        width: 100%;
    }
}

.about-location-badge {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

@media (min-width: 480px) {
    .about-hero-title {
        font-size: 4rem;
    }
}

.about-hero-title span {
    color: var(--primary);
}

.about-hero-description {
    color: #94a3b8;
    font-size: 1.25rem;
    line-height: 1.75;
    font-weight: 500;
}

.narrative-highlight {
    color: var(--primary);
    font-weight: 700;
}

.about-quote {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 6px solid var(--primary);
    padding-left: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: rgba(209, 17, 17, 0.05);
}

.about-quote p {
    font-style: italic;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.75;
    color: #e2e8f0;
}

/* Blueprint Section */
.blueprint-section {
    padding: 4rem 0;
    margin-bottom: 6rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.blueprint-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    font-style: italic;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blueprint-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.blueprint-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-icon-filled {
    background-color: var(--primary);
    color: white;
    padding: 0.25rem;
    border-radius: 0.125rem;
}

.blueprint-line {
    width: 4px;
    background-color: rgba(209, 17, 17, 0.2);
    flex-grow: 1;
    min-height: 6rem;
}

.blueprint-content {
    padding-bottom: 4rem;
}

.blueprint-content:last-child {
    padding-bottom: 0;
}

.blueprint-step-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.blueprint-step-title.highlight {
    color: var(--primary);
}

.blueprint-step-description {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-top: 0.75rem;
    line-height: 1.75;
}

/* What Is / Isn't Grid */
.what-is-section {
    margin-bottom: 6rem;
}

.what-is-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.what-is-title span {
    color: var(--primary);
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.what-is-card {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-left: 8px solid var(--primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.what-is-card.muted {
    border-left-color: rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.what-is-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.what-is-card-header.muted {
    color: #64748b;
}

.what-is-card-title {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.what-is-card-description {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Mission Section */
.mission-section {
    margin-bottom: 6rem;
}

.mission-content {
    background-color: var(--primary);
    color: white;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 0.125rem;
}

.mission-bg-icon {
    position: absolute;
    right: -4rem;
    bottom: -4rem;
    opacity: 0.1;
    transform: rotate(12deg);
    font-size: 300px;
}

.mission-inner {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.mission-label {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    width: fit-content;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
}

@media (min-width: 768px) {
    .mission-title {
        font-size: 3rem;
    }
}

.mission-divider {
    width: 6rem;
    height: 0.5rem;
    background-color: white;
    margin-bottom: 2rem;
}

.mission-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.mission-location {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 0.25rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.mission-location-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.mission-location-title {
    font-weight: 900;
    font-size: 1.125rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.mission-location-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 6rem 1.5rem;
    background-color: #0f172a;
    border: 2px solid var(--primary);
    border-radius: 0.125rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
}

.about-cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.about-cta-description {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .about-cta-buttons {
        flex-direction: row;
    }
}

.about-cta-note {
    color: #64748b;
    margin-top: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 4rem 1rem;
    margin-bottom: 4rem;
}

.pricing-hero-bg {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    text-align: center;
    border-radius: 0.75rem;
}

.pricing-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.033em;
}

@media (min-width: 768px) {
    .pricing-hero-title {
        font-size: 3.5rem;
    }
}

.pricing-hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    line-height: 1.75;
}

.pricing-hero-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Pricing Card */
.pricing-card-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6rem;
}

.pricing-card {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--primary);
    background-color: var(--card-dark);
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 3rem;
    }
}

.pricing-card-glow {
    position: absolute;
    top: -6rem;
    right: -6rem;
    width: 12rem;
    height: 12rem;
    background-color: rgba(209, 17, 17, 0.3);
    filter: blur(80px);
    border-radius: 9999px;
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
}

.pricing-card-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.pricing-card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    background-color: var(--primary);
    color: white;
    padding: 0.375rem 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pricing-card-price-value {
    color: var(--primary);
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.pricing-card-price-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    font-weight: 500;
}

.pricing-card-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 500;
    border-left: 2px solid var(--primary);
    padding-left: 0.75rem;
    margin-top: 0.5rem;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

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

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
}

.pricing-feature .material-symbols-outlined {
    color: var(--primary);
}

.pricing-card-btn {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    height: 3.5rem;
    background-color: white;
    color: var(--background-dark);
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 10;
    border: none;
}

.pricing-card-btn:hover {
    background-color: #f1f5f9;
}

/* Value Comparison */
.value-section {
    margin-bottom: 6rem;
}

.value-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .value-title {
        font-size: 2.5rem;
    }
}

.value-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(39, 32, 27, 0.4);
}

.value-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.value-card-value {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: white;
}

.value-card-value.muted {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 4px;
}

.value-card-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.value-card-label.highlight {
    color: var(--primary);
}

.value-card-label.muted {
    color: #64748b;
}

.value-card.highlight {
    background-color: var(--primary);
    border: none;
    color: white;
    box-shadow: 0 20px 40px -10px rgba(209, 17, 17, 0.3);
}

.value-note {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 0.75rem;
    background-color: rgba(209, 17, 17, 0.1);
    border: 1px solid rgba(209, 17, 17, 0.2);
    text-align: center;
}

.value-note p {
    color: white;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    max-width: 768px;
    margin: 0 auto 5rem;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--card-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.faq-question .material-symbols-outlined {
    color: var(--primary);
}

.faq-answer {
    color: rgba(255, 255, 255, 0.6);
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.pricing-cta-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Nav Open State */
.nav.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    gap: 1.25rem;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav.nav-open .nav-link {
    font-size: 1rem;
    padding: 0.5rem 0;
}

/* Utility classes */
.text-primary {
    color: var(--primary);
}

.bg-primary {
    background-color: var(--primary);
}

.max-w-960 {
    max-width: 960px;
    margin: 0 auto;
}

.max-w-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Material Icons */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
