/* TradingView Partner Page - Ultra Modern Styles */
:root {
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-850: #1f1f23;
    --gray-900: #18181b;
    --black: #09090b;
    --green: #22c55e;
    --gold: #fbbf24;
    --accent: #3b82f6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.page {
    min-height: 100vh;
    padding-top: var(--header-height);
}

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

/* Cover Hero */
.cover-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 50%, var(--black) 100%);
}

.cover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 12px var(--green);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 4px var(--green);
    }
}

/* Profile Section */
.profile-section {
    padding: 48px 0 32px;
}

.profile-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.profile-left {
    display: flex;
    gap: 28px;
    flex: 1;
    min-width: 300px;
}

.profile-logo {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
    border: 1px solid var(--gray-700);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.profile-info h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 6px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.badge {
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--black);
    box-shadow: 0 2px 12px rgba(251, 191, 36, 0.3);
}

.badge-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray-700);
    color: var(--gray-300);
}

.profile-desc {
    color: var(--gray-400);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.profile-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gray-800);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    transition: all 0.2s;
}

.tag:hover {
    border-color: var(--gray-700);
    background: rgba(255, 255, 255, 0.06);
}

.profile-right {
    text-align: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
}

.btn-cta.full {
    width: 100%;
    justify-content: center;
}

.btn-cta.large {
    padding: 18px 40px;
    font-size: 17px;
}

.cta-note {
    margin-top: 10px;
    font-size: 13px;
    color: var(--gray-500);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray-700);
    color: var(--white);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gray-600);
}

.btn-secondary.large {
    padding: 18px 36px;
}

/* Quick Features */
.quick-features {
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-850);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

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

@media (max-width: 500px) {
    .features-row {
        grid-template-columns: 1fr;
    }
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--gray-850), var(--gray-900));
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-pill:hover {
    border-color: var(--gray-700);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pill-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pill-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
}

.pill-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.pill-text span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Tabs */
.tabs-nav {
    position: sticky;
    top: var(--header-height);
    background: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-850);
    z-index: 100;
}

.tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    padding: 18px 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
}

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

.tab.active {
    color: var(--white);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--white), var(--gray-400));
}

/* Main Content */
.main-content {
    padding: 48px 0 100px;
}

/* Section */
.section {
    margin-bottom: 100px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--gray-400);
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.subsection-title {
    font-size: 24px;
    font-weight: 700;
    margin: 48px 0 28px;
}

/* Section Grid */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
}

@media (max-width: 900px) {
    .section-grid {
        grid-template-columns: 1fr;
    }

    .section-sidebar {
        order: -1;
    }
}

.section-main {
    min-width: 0;
}

/* Content Card */
.content-card {
    background: linear-gradient(135deg, var(--gray-850), var(--gray-900));
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 28px;
}

.content-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-card p {
    color: var(--gray-400);
    margin-bottom: 18px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-list li {
    color: var(--gray-300);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

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

/* Highlight Card */
.highlight-card {
    display: flex;
    gap: 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02));
    border-color: rgba(34, 197, 94, 0.3);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--green);
}

.highlight-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-content p {
    margin-bottom: 18px;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 700px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-card {
    background: linear-gradient(135deg, var(--gray-850), var(--gray-900));
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--white), var(--gray-200));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.step-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Sidebar */
.sidebar-card {
    background: linear-gradient(135deg, var(--gray-850), var(--gray-900));
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 28px;
}

.sidebar-card.sticky {
    position: sticky;
    top: calc(var(--header-height) + 80px);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.sidebar-logo {
    width: 52px;
    height: 52px;
    background: var(--gray-800);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.sidebar-header strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
}

.sidebar-header span {
    font-size: 13px;
    color: var(--gray-500);
}

.sidebar-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

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

.sidebar-stat .stat-value {
    font-size: 22px;
    font-weight: 800;
    display: block;
}

.sidebar-stat .stat-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sf-item {
    font-size: 14px;
    color: var(--gray-400);
}

.sf-item .check {
    color: var(--green);
    margin-right: 10px;
    font-weight: bold;
}

/* Modern Features Grid */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

@media (max-width: 600px) {
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
}

.feature-card-modern {
    position: relative;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card-modern:hover {
    border-color: var(--gray-600);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.03);
}

.fc-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card-modern:hover .fc-glow {
    opacity: 1;
}

.fc-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-850));
    border: 1px solid var(--gray-700);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.fc-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

.fc-content {
    position: relative;
    z-index: 1;
}

.fc-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.fc-content p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.fc-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-800);
    position: relative;
    z-index: 1;
}

.fc-stat {
    font-size: 12px;
    color: var(--gray-500);
}

.fc-stat span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: linear-gradient(180deg, var(--gray-850), var(--gray-900));
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.price-card.featured {
    border-color: var(--white);
    background: linear-gradient(180deg, var(--gray-800) 0%, var(--gray-900) 100%);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--white), var(--gray-200));
    color: var(--black);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.price-header {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-800);
}

.price-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.price {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-500);
}

.price-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.price-features li {
    font-size: 14px;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features li.disabled {
    color: var(--gray-600);
}

.price-features .check {
    color: var(--green);
    font-weight: bold;
}

.price-features .x {
    color: var(--gray-600);
}

.price-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.price-btn.secondary {
    background: var(--gray-800);
    color: var(--white);
    box-shadow: none;
}

.price-btn.secondary:hover {
    background: var(--gray-700);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Comparison */
.comparison-section {
    background: linear-gradient(135deg, var(--gray-850), var(--gray-900));
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    padding: 36px;
    overflow: hidden;
}

.comparison-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-800);
    font-size: 14px;
}

.comparison-table th {
    font-weight: 700;
    color: var(--gray-400);
    background: var(--gray-900);
}

.comparison-table td {
    color: var(--gray-400);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--white);
}

.comparison-table .highlight-col {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .green {
    color: var(--green) !important;
    font-weight: 700;
}

/* Chart */
.chart-container {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    overflow: hidden;
}

.chart-header {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-800);
    font-weight: 600;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s infinite;
}

.chart-iframe {
    width: 100%;
    height: 520px;
    border: none;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: linear-gradient(135deg, var(--gray-850), var(--gray-900));
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--gray-700);
}

.faq-q {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s;
}

.faq-q::after {
    content: '+';
    font-size: 24px;
    color: var(--gray-500);
    transition: transform 0.3s;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 28px 24px;
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA */
.cta-section {
    padding: 40px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--gray-850), var(--gray-900));
    border: 1px solid var(--gray-800);
    border-radius: 32px;
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    color: var(--gray-400);
    font-size: 18px;
    margin-bottom: 36px;
    position: relative;
}

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

/* Animations */
.animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .profile-left {
        flex-direction: column;
        text-align: center;
    }

    .profile-logo {
        margin: 0 auto;
    }

    .profile-header {
        justify-content: center;
    }

    .profile-tags {
        justify-content: center;
    }

    .profile-right {
        width: 100%;
    }

    .chart-iframe {
        height: 380px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-card h2 {
        font-size: 28px;
    }
}