/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: white;
    color: #1F2937;
    line-height: 1.5;
}

/* Header - Now using unified navbar.html component */
/* Old header styles commented out
.header {
    width: 100%;
    height: 64px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.header-content {
    width: 100%;
    max-width: 1920px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon-box {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    font-family: 'Inter', sans-serif;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #111827;
}
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rates-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1F2937;
    font-size: 14px;
    transition: color 0.2s;
}

.rates-link:hover {
    color: #2563EB;
}

.rates-link img {
    width: 18px;
    height: 18px;
}

.btn-make-call {
    padding: 10px 16px;
    background: #F59E0B;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-make-call:hover {
    background: #8E1FE0;
    transform: translateY(-1px);
}

.divider-vertical {
    width: 1px;
    height: 24px;
    background: #D1D5DB;
}

.icon-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.icon-btn:hover {
    opacity: 0.7;
}

.icon-btn img {
    width: 18px;
    height: 18px;
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 64px 336px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

/* Payment Panel */
.payment-panel {
    background: rgba(230, 255, 240, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.panel-header img {
    width: 20px;
    height: 20px;
}

.panel-header h1 {
    font-size: 19px;
    font-weight: 700;
    color: black;
}

/* Team Banner */
.team-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(230, 255, 240, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.5);
    border-radius: 8px;
    padding: 11px 25px;
    margin-bottom: 16px;
}

.team-banner span {
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

.btn-enterprise {
    padding: 6px 16px;
    background: #2563EB;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.btn-enterprise:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
}

/* Description */
.description {
    margin-bottom: 16px;
}

.description p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 8px;
}

.rate-calculator-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: underline;
    transition: color 0.2s;
}

.rate-calculator-link:hover {
    color: #2563EB;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 24px 0;
}

/* Amount Section */
.amount-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-label {
    font-size: 13px;
    font-weight: 500;
    color: black;
    display: block;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.amount-btn {
    position: relative;
    height: 50px;
    background: white;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    color: #1F2937;
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn:hover {
    border-color: #2563EB;
    transform: translateY(-1px);
}

.amount-btn.active {
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid #2563EB;
    color: black;
    font-weight: 500;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.badge {
    position: absolute;
    top: -7px;
    right: -8px;
    padding: 3px 8px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
}

.badge-primary {
    background: #2563EB;
    color: white;
}

.badge-blue {
    background: #2563EB;
    color: white;
}

.badge-yellow {
    background: #EAB308;
    color: black;
}

/* Custom Amount */
.custom-label {
    font-size: 13px;
    font-weight: 500;
    color: black;
    margin-top: 8px;
}

.custom-amount-input {
    position: relative;
    height: 50px;
    background: white;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.currency-symbol {
    position: absolute;
    left: 12px;
    top: 15px;
    font-size: 14px;
    color: #6B7280;
}

.custom-amount-input input {
    width: 100%;
    height: 100%;
    padding: 0 16px 0 32px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #1F2937;
    outline: none;
}

.custom-amount-input:focus-within {
    border-color: #2563EB;
}

/* Checkbox Options */
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.checkbox-option:hover {
    border-color: #2563EB;
}

.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-option label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-option img {
    width: 20px;
    height: 20px;
}

.option-title {
    font-size: 13px;
    font-weight: 500;
    color: black;
}

.option-badge {
    display: inline-block;
    padding: 2px 8px;
    margin-left: 8px;
    background: #DBEAFE;
    color: #1E3A8A;
    font-size: 11px;
    font-weight: 500;
    border-radius: 9999px;
}

/* Promo Input */
.promo-input {
    width: 100%;
    height: 42px;
    padding: 0 13px;
    background: white;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 15px;
    color: #1F2937;
    outline: none;
    transition: border-color 0.2s;
}

.promo-input::placeholder {
    color: #9CA3AF;
}

.promo-input:focus {
    border-color: #2563EB;
}

/* Minutes Info */
.minutes-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    margin-top: 8px;
}

.minutes-info img {
    width: 24px;
    height: 24px;
}

.minutes-info strong {
    font-size: 16px;
    font-weight: 700;
    color: black;
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    height: 56px;
    background: #2563EB;
    color: black;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    margin-top: 8px;
}

.btn-checkout:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0px 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-checkout:active {
    transform: translateY(0);
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 24px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 9999px;
    margin-top: 16px;
}

.guarantee-badge img {
    width: 24px;
    height: 24px;
}

.guarantee-badge span {
    font-size: 13px;
    font-weight: 500;
    color: #1E40AF;
}

/* VAT Notice */
.vat-notice {
    text-align: center;
    font-size: 13px;
    color: #4B5563;
    margin-top: 8px;
}

/* Info Panel */
.info-panel {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 19px;
    font-weight: 700;
    color: black;
    margin-bottom: 32px;
}

.info-title em {
    font-style: italic;
    font-weight: 400;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.feature-item strong {
    font-weight: 500;
    color: black;
}

.testimonial {
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.testimonial p {
    font-size: 13px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: rgba(230, 255, 240, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.faq-header img {
    width: 20px;
    height: 20px;
}

.faq-header h2 {
    font-size: 19px;
    font-weight: 700;
    color: black;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 500;
    color: black;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.faq-item a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: underline;
}

.faq-item a:hover {
    color: #2563EB;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .main-container {
        padding: 48px 100px;
    }
}

@media (max-width: 1200px) {
    .main-container {
        padding: 40px 60px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-panel {
        order: 2;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 32px 20px;
    }
    
    .header-content {
        padding: 0 12px;
    }
    
    .logo-text {
        display: none;
    }
    
    .rates-link span {
        display: none;
    }
    
    .amount-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-banner {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-panel {
        padding: 20px;
    }
    
    .panel-header h1 {
        font-size: 16px;
    }
}
