/* ===========================
   Open Banking Page Styles
   =========================== */

/* Hero Section */
.ob-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ob-hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ob-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.ob-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(240, 98, 146, 0.1));
    z-index: 1;
}

.ob-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.ob-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ob-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.hero-feature-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

/* Card Stack Visual */
.ob-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bank-network {
    position: relative;
    width: 350px;
    height: 350px;
}

.bank-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bank-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.bank-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: 0.7s;
}

.bank-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 1.4s;
}

.ob-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* MCP Integration Section */
.ob-mcp {
    padding: 100px 0;
    background: var(--white);
}

.mcp-integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mcp-integration-text .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mcp-integration-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mcp-integration-text .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.integration-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    align-items: flex-start;
}

.benefit-box i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-box p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.mcp-cta {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(240, 98, 146, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.mcp-cta p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.integration-diagram {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
}

.payment-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.flow-node {
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 3px 15px var(--shadow);
    min-width: 150px;
    text-align: center;
}

.flow-node i {
    font-size: 2rem;
    color: var(--primary-color);
}

.flow-node.mcp {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
}

.flow-node.mcp i {
    color: var(--white);
}

.flow-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.flow-branches {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.branch {
    position: relative;
}

.branch::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 25px;
    background: var(--primary-color);
}

.flow-node.method {
    font-size: 0.9rem;
}

/* Registration Section */
.ob-registration {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    margin-top: 3rem;
}

.registration-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-info .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.registration-steps {
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.registration-benefits {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.registration-benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.registration-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.registration-benefits i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.registration-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px var(--shadow);
}

.registration-form h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.registration-form > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-consent {
    margin: 2rem 0;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 1.2rem 2rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.tier-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Features Section */
.ob-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.feature-list li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Merchant Account Section */
.ob-registration {
    padding: 100px 0;
    background: var(--white);
}

.merchant-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.merchant-text .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.comparison-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.comparison-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

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

.comparison-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
}

.comparison-item.ours {
    border: 3px solid var(--primary-color);
    position: relative;
}

.comparison-item.ours::before {
    content: 'Recommended';
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.comparison-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.price-highlight {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-main {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.price-desc {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

.comparison-features {
    list-style: none;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.comparison-features i.fa-check {
    color: #4caf50;
    font-size: 1.1rem;
}

.comparison-features i.fa-times {
    color: #ff5252;
    font-size: 1.1rem;
}

.savings-banner {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.savings-banner i {
    font-size: 2rem;
}

.merchant-benefits {
    margin-bottom: 3rem;
}

.merchant-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Section */
.ob-pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-calculator {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.calculator-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 50px var(--shadow);
    overflow: hidden;
}

.calculator-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 2.5rem;
    text-align: center;
}

.calculator-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.calculator-header p {
    opacity: 0.95;
}

.calculator-body {
    padding: 2.5rem;
}

.slider-container {
    margin-bottom: 3rem;
}

.slider-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

#cardVolumeSlider,
#obVolumeSlider,
#obValueSlider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    outline: none;
    -webkit-appearance: none;
}

#cardVolumeSlider::-webkit-slider-thumb,
#obVolumeSlider::-webkit-slider-thumb,
#obValueSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

#cardVolumeSlider::-moz-range-thumb,
#obVolumeSlider::-moz-range-thumb,
#obValueSlider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

.slider-value {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-breakdown {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.breakdown-item.total {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
}

.breakdown-value {
    font-weight: 600;
    color: var(--primary-color);
}

.breakdown-divider {
    height: 2px;
    background: var(--primary-color);
    margin: 1rem 0;
    opacity: 0.2;
}

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

.pricing-tiers h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.tier-item {
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.tier-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.tier-range {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.calculator-footer {
    text-align: center;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.pricing-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
}

.pricing-features h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.included-features {
    list-style: none;
}

.included-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.included-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.breakdown-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.breakdown-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* CTA Section */
.ob-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats .stat i {
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.cta-stats .stat:hover i {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.25));
    border-color: rgba(255, 255, 255, 0.6);
}

.cta-stats .stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-stats .stat span {
    display: block;
    font-size: 1rem;
    opacity: 0.95;
    color: white;
}

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

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

.cta-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .ob-hero-content {
        grid-template-columns: 1fr;
    }

    .bank-network {
        margin-top: 3rem;
    }

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

    .mcp-integration-content {
        grid-template-columns: 1fr;
    }

    .registration-content {
        grid-template-columns: 1fr;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        gap: 3rem;
    }
    
    .cta-stats .stat i {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .cta-stats .stat strong {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .ob-hero {
        padding: 120px 0 80px;
    }

    .ob-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .card-stack {
        width: 250px;
        height: 300px;
    }

    .card-icon {
        width: 110px;
        height: 110px;
        font-size: 2.5rem;
    }

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

    .comparison-box {
        padding: 2rem 1.5rem;
    }

    .cp-cta .cta-content h2, 
    .cta-content h2,
    .ob-cta .cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

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

    .cta-stats {
        gap: 2.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .cta-stats .stat i {
        width: 65px;
        height: 65px;
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-stats .stat strong {
        font-size: 2rem;
    }
    
    .cta-stats .stat span {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }

    .cta-stat .stat-number {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .cta-note {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ob-hero {
        padding: 100px 0 60px;
    }
    
    .ob-hero h1 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-stats .stat i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .cta-stats .stat strong {
        font-size: 1.75rem;
    }
    
    .cta-stats .stat span {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}
}