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

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --accent-color: #14b8a6;
    --success-color: #10b981;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-grey: #f0f3f7;
    --bg-dark: #0f172a;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(100, 116, 139, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo-myclub {
    color: var(--text-dark);
}

.logo-db {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.logo-icon {
    height: 1.5em;
    width: auto;
    margin-right: 0.4em;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav CTA button */
.nav-cta {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #24395B 100%);
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
    text-align: center;
    margin-top: 73px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(30, 58, 95, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(15, 23, 42, 0.4) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bg-white);
    line-height: 1.1;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--bg-white);
    color: #10b981;
    padding: 1.1rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e3a5f;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-grey);
}

.features-overview {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.features-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.features-intro:last-child {
    margin-bottom: 0;
}

.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-highlight {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(100, 116, 139, 0.1);
}

.feature-highlight h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.feature-highlight ul {
    list-style: none;
}

.feature-highlight ul li {
    padding: 0.85rem 0;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(100, 116, 139, 0.08);
    position: relative;
    padding-left: 1.75rem;
}

.feature-highlight ul li:last-child {
    border-bottom: none;
}

.feature-highlight ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.featured-highlight {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05), rgba(15, 23, 42, 0.05));
    border: 2px solid #1e3a5f;
}

.featured-highlight h3 {
    color: #1e3a5f;
}

.highlight-result {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.problem-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.problem-box {
    background: #1e3a5f;
    padding: 2.5rem;
    border-radius: 16px;
}

.problem-box .feature-icon {
    color: var(--primary-color);
}

.problem-box h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.problem-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

.problem-section .highlight-text {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
}

.problem-message {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.problem-tagline {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: var(--bg-white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(100, 116, 139, 0.1);
}

.benefits-list li strong {
    color: #1e3a5f;
    font-size: 1.2rem;
    font-weight: 700;
}

.benefits-image {
    background: linear-gradient(135deg, #1e3a5f 0%, #24395B 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--bg-white);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.benefits-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.benefits-image h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
}

.benefits-image p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    position: relative;
}

.benefits-tagline {
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Detailed Features Section */
.detailed-features {
    padding: 120px 0;
    background: var(--bg-grey);
}


.features-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.section-footnote {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(100, 116, 139, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 1.25rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.features .feature-icon,
.features .feature-card h3 {
    color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid rgba(100, 116, 139, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.03), rgba(15, 23, 42, 0.03));
    border: 2px solid #1e3a5f;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
}

.pricing-card.nfp-featured {
    background: #ecfdf5;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
}

.pricing-card.nfp-featured .pricing-header h3 {
    color: #1e3a5f;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #1e3a5f, #24395B);
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.pricing-icon {
    font-size: 1.1em;
    color: #1e3a5f;
    margin-right: 0.4em;
}

.nfp-featured .pricing-icon {
    color: var(--primary-color);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.pricing-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-medium);
    margin-right: 0.25rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.period {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.pricing-billing {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.custom-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.85rem 0;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(100, 116, 139, 0.08);
    position: relative;
    padding-left: 1.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-button {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #1e3a5f;
    color: #1e3a5f;
    background: var(--bg-white);
}

.pricing-button:hover {
    background: #1e3a5f;
    color: var(--bg-white);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

.pricing-button.primary {
    background: linear-gradient(135deg, #1e3a5f, #24395B);
    color: var(--bg-white);
    border: none;
}

.pricing-button.primary:hover {
    box-shadow: 0 12px 30px rgba(30, 58, 95, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.pricing-footer {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background: var(--bg-grey);
    border-radius: 16px;
}

.pricing-footer p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
}

.pricing-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

.pricing-guarantee {
    margin-top: 2.5rem;
    text-align: center;
    padding: 2.5rem;
    background: #1e3a5f;
    border-radius: 16px;
}

.pricing-guarantee-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.pricing-guarantee h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-guarantee p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.security-note {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem;
    background: #1e3a5f;
    border-radius: 16px;
}

.security-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.security-note h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.security-note p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Price Guarantee Section */
.price-guarantee {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05), rgba(15, 23, 42, 0.05));
    position: relative;
    overflow: hidden;
}

.price-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(30, 58, 95, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 23, 42, 0.06) 0%, transparent 50%);
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.guarantee-text h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.guarantee-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.guarantee-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(30, 58, 95, 0.2);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.08);
    margin-bottom: 2.5rem;
}

.guarantee-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(100, 116, 139, 0.1);
}

.guarantee-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.guarantee-list li strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.guarantee-list li span {
    display: block;
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.guarantee-footer {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    padding: 1.5rem;
    background: rgba(30, 58, 95, 0.05);
    border-radius: 8px;
}

.guarantee-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge {
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
    border: 3px solid #1e3a5f;
}

.badge-icon {
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.guarantee-badge h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.guarantee-badge p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.guarantee-years {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-top: 1.5rem;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-grey);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid rgba(100, 116, 139, 0.1);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a5f, #24395B);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: #ecfdf5;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1e3a5f;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

.cta-section .cta-button {
    background: var(--primary-color);
    color: var(--bg-white);
}

.cta-section .cta-contact {
    font-size: 2rem;
    margin-bottom: 0;
    color: #1e3a5f;
    font-weight: 300;
}

.cta-contact a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.cta-contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.65);
}

.footer-col a {
    color: var(--bg-white);
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.65);
}

.footer-section > :last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--bg-white);
    text-decoration: underline;
}

.footer-section a.logo:hover {
    text-decoration: none;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.footer-brand .logo-myclub {
    color: var(--bg-white);
}

.footer-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 0.5rem;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Page Hero (for secondary pages) */
.page-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #24395B 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 73px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(30, 58, 95, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(15, 23, 42, 0.4) 0%, transparent 50%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bg-white);
    line-height: 1.1;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Content Section (for secondary pages) */
.content-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.content-section.alt {
    background: var(--bg-grey);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-wrapper p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-wrapper li {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Vision Grid (About page) */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vision-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(100, 116, 139, 0.1);
}

.vision-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.vision-card p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Sponsor Benefits Grid */
.sponsor-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sponsor-benefit {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(100, 116, 139, 0.1);
}

.sponsor-benefit h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.sponsor-benefit p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Business Benefits */
.business-benefits {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.business-benefit {
    padding: 2rem;
    background: var(--bg-grey);
    border-radius: 12px;
}

.business-benefit h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.business-benefit p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Use Cases */
.use-case {
    max-width: 900px;
    margin: 0 auto;
}

.use-case-header {
    margin-bottom: 2.5rem;
}

.use-case-type {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a5f, #24395B);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.use-case-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.use-case-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.use-case-content h3:first-child {
    margin-top: 0;
}

.use-case-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.use-case-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.use-case-content ul li {
    padding: 1rem 0;
    padding-left: 1.75rem;
    border-bottom: 1px solid rgba(100, 116, 139, 0.1);
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.use-case-content ul li:last-child {
    border-bottom: none;
}

.use-case-content ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.use-case-content ul li strong {
    color: var(--text-dark);
}

.use-case-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-type-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(100, 116, 139, 0.1);
}

.use-case-type-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

.use-case-type-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(100, 116, 139, 0.1);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .feature-highlight {
        padding: 2rem;
    }

    .features-intro {
        font-size: 1.05rem;
    }

    .steps {
        gap: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

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

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .amount {
        font-size: 3.5rem;
    }

    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .guarantee-text h2 {
        font-size: 2rem;
    }

    .guarantee-box {
        padding: 2rem;
    }

    .guarantee-badge {
        padding: 3rem 2rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-wrapper h2 {
        font-size: 1.75rem;
    }
}
