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

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1F2937;
    line-height: 1.6;
}

/* Header Navigation - Updated Design */
.header {
    background: #F8FAFC;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

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

/* Logo Section */
.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-text {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #111827;
}

/* Navigation Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Earn Free Credits Button */
.btn-earn-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2563EB;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
}

.btn-earn-credits:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

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

.btn-earn-credits svg {
    color: white;
    stroke-width: 1.5;
}

/* Navigation Links */
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    transition: all 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-link:hover {
    background: rgba(37, 99, 235, 0.15);
    color: #111827;
}

.nav-link svg {
    color: #6B7280;
}

.nav-link:hover svg {
    color: #111827;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    padding-right: 8px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1F2937;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* More Dropdown Items - 只针对导航栏的More下拉菜单 */
.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #D1D5DB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #FFFFFF;
}

.dropdown-menu .dropdown-item svg {
    width: 16px;
    height: 16px;
    color: #9CA3AF;
    flex-shrink: 0;
}

.dropdown-menu .dropdown-item:hover svg {
    color: #FFFFFF;
}

/* Icon Buttons - Round Style */
.icon-btn-round {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    color: #374151;
    margin-left: 6px;
}

.icon-btn-round:hover {
    background: #F9FAFB;
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-1px);
}

.icon-btn-round svg {
    display: block;
}

/* Legacy icon button support */
.icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: #6B7280;
}

.icon-btn:hover {
    background: rgba(37, 99, 235, 0.15);
    color: #111827;
}

.icon-btn svg {
    display: block;
}

/* Main Content */
.main-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 48px 48px 0;
}

/* Hero Section Full */
.hero-section-full {
    margin-bottom: 64px;
}

.hero-wrapper {
    max-width: 1824px;
    margin: 0 auto;
}

.hero-card-gradient {
    background: linear-gradient(157deg, rgba(37, 99, 235, 0.20) 0%, rgba(37, 99, 235, 0) 100%);
    border-radius: 24px;
    padding: 64px;
    position: relative;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 384px;
    gap: 64px;
    max-width: 1152px;
    margin: 0 auto;
}

.hero-text-content {
    padding-top: 73px;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
}

.hero-description-text {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 48px;
}

.btn-call-anywhere {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F59E0B;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.btn-call-anywhere:hover {
    background: #D97706;
    transform: translateY(-2px);
}

.flag-inline {
    width: 24px;
    height: 24px;
}

.hero-pricing-text {
    font-size: 16px;
    font-weight: 600;
    color: #4B5563;
    margin-bottom: 10px;
}

.hero-pricing-text strong {
    font-weight: 700;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #EFF6FF;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.badge-icon {
    width: 20px;
    height: 20px;
}

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

/* Phone Dialer Widget */
.phone-dialer-widget {
    background: #EFF6FF;
    border-radius: 24px;
    padding: 48px 32px 32px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
    position: relative;
}

.dialer-settings-icon {
    position: absolute;
    top: 48px;
    right: 48px;
    cursor: pointer;
}

.dialer-settings-icon img {
    width: 20px;
    height: 20px;
}

.dialer-balance {
    background: #BFDBFE;
    border-radius: 9999px;
    padding: 7px 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.dialer-balance span {
    font-size: 14px;
    font-weight: 500;
    color: #1E40AF;
}

.balance-add-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialer-input-section {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 8px;
}

/* 拨号器国家选择器容器 */
.dialer-country-selector {
    display: inline-block;
    min-width: 80px;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 400;
    color: #1F2937;
}

.country-code img {
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.phone-input {
    flex: 1;
    border: none;
    border-bottom: 2px solid #D1D5DB;
    background: transparent;
    font-size: 20px;
    color: #1F2937;
    padding: 8px 0;
    outline: none;
}

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

.clear-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.clear-btn img {
    width: 16px;
    height: 16px;
}

.add-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #1E40AF;
    color: #1E40AF;
    padding: 7px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 24px;
    transition: all 0.2s;
}

.add-contact-btn:hover {
    background: rgba(30, 64, 175, 0.05);
}

.add-contact-btn img {
    width: 16px;
    height: 16px;
}

.dialpad-grid {
    display: grid;
    grid-template-columns: repeat(3, 64px);
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.dial-key {
    width: 64px;
    height: 64px;
    background: #E5E7EB;
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.dial-key:hover {
    background: #D1D5DB;
    transform: scale(1.05);
}

.dial-key:active {
    transform: scale(0.95);
}

.key-num {
    font-size: 20px;
    font-weight: 500;
    color: #1F2937;
}

.key-letters {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
}

.dialer-actions-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.dial-action-btn {
    width: 48px;
    height: 48px;
    background: #E5E7EB;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    color: #1F2937;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.dial-action-btn:hover {
    background: #D1D5DB;
}

.call-btn-large {
    width: 64px;
    height: 64px;
    background: #2563EB;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.call-btn-large:hover {
    background: #1E40AF;
    transform: scale(1.1);
}

.call-btn-large img {
    width: 28px;
    height: 28px;
}

.product-hunt-badge {
    text-align: center;
    margin-top: 24px;
}

.product-hunt-badge img {
    height: 54px;
    width: auto;
}

/* Three Steps Section */
.three-steps-section {
    text-align: center;
    margin-bottom: 80px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-main {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 48px;
}

.steps-grid-three {
    display: grid;
    grid-template-columns: 256px auto 256px auto 256px;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

.step-card-large {
    background: rgba(230, 255, 240, 0.80);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.30);
    padding: 32px;
    text-align: center;
}

.step-icon-circle {
    width: 56px;
    height: 56px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon-circle img {
    width: 24px;
    height: 24px;
}

.step-card-large h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.step-card-large p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 24px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item-small {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.feature-item-small img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.feature-item-small span {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.80);
}

.step-arrow-icon {
    width: auto;
    height: 24px;
}

.btn-cta-large {
    background: #2563EB;
    color: #000000;
    border: none;
    padding: 18px 48px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #F2F2F2;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: #1E40AF;
    transform: translateY(-2px);
}

/* Modal Overlay Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

/* Business Section */
.business-section {
    margin-bottom: 80px;
    max-width: 855px;
    margin-left: auto;
    margin-right: auto;
}

.business-card {
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #BFDBFE;
    padding: 45px;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.10), 0px 20px 25px -5px rgba(0, 0, 0, 0.10);
    text-align: center;
    position: relative;
}

.business-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.business-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1E40AF;
    margin-bottom: 8px;
}

.business-subtitle {
    font-size: 20px;
    color: #374151;
    margin-bottom: 32px;
}

.business-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.business-feature-card {
    background: #DBEAFE;
    border-radius: 8px;
    border: 1px solid #BFDBFE;
    padding: 29px 25px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.business-feature-icon {
    width: 24px;
    height: 24px;
    background: #BFDBFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.business-feature-icon img {
    width: 16px;
    height: 16px;
}

.business-feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 8px;
}

.business-feature-card p {
    font-size: 16px;
    color: #374151;
}

.btn-enterprise {
    background: #2563EB;
    color: #000000;
    border: none;
    padding: 18px 41px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #F2F2F2;
    transition: all 0.3s;
}

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

/* Video Demo Section */
.video-demo-section {
    text-align: center;
    margin-bottom: 80px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-text {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 32px;
}

.video-placeholder {
    background: rgba(230, 255, 240, 0.80);
    border-radius: 16px;
    border: 2px solid rgba(37, 99, 235, 0.30);
    height: 188px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0) 100%);
}

.video-description {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 24px;
}

/* Why Choose Section */
.why-choose-section {
    text-align: center;
    margin-bottom: 80px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card-bg {
    background: #EFF6FF;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}

.feature-card-bg.short {
    min-height: 212px;
}

.feature-icon-round {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon-round img {
    width: 24px;
    height: 24px;
}

.feature-card-bg h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.feature-card-bg p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 16px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2563EB;
    text-decoration: none;
}

.feature-link img {
    width: 12px;
    height: 12px;
}

.explore-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.explore-subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 24px;
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
    margin-bottom: 80px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: #EFF6FF;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
    padding: 25px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial-card.tall {
    grid-row: span 2;
}

.stars-rating {
    width: 80px;
    height: auto;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.60);
}

.ready-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.ready-subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 24px;
}

/* Comparison Section */
.comparison-section {
    text-align: center;
    margin-bottom: 80px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
    padding: 18px 24px;
}

.comparison-cell {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.comparison-cell.highlight {
    color: #1E40AF;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    border-bottom: 1px solid #E5E7EB;
    padding: 24px;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    text-align: left;
}

.comparison-feature strong {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    display: block;
    margin-bottom: 4px;
}

.comparison-feature span {
    font-size: 14px;
    color: #6B7280;
}

.comparison-cell img {
    width: 20px;
    height: 20px;
}

.comparison-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.comparison-cta-text {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 24px;
}

/* Calculator Section */
.calculator-section {
    text-align: center;
    margin-bottom: 80px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-promo-banner {
    background: rgba(230, 255, 240, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.50);
    border-radius: 8px;
    padding: 11px 25px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.enterprise-promo-banner span {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.80);
}

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

.calculator-widget {
    background: rgba(230, 255, 240, 0.80);
    border: 1px solid rgba(37, 99, 235, 0.30);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
}

.calculator-inputs-row {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.calculator-inputs-row span {
    font-size: 18px;
    font-weight: 500;
    color: #111827;
}

.country-select-calc {
    border: none;
    border-bottom: 2px solid #3B82F6;
    background: transparent;
    font-size: 16px;
    color: #1F2937;
    padding: 12px;
    outline: none;
    min-width: 224px;
}

/* 计算器国家选择器容器 */
.country-select-calc-container {
    display: inline-block;
    min-width: 224px;
    position: relative;
    z-index: 200;
}

.country-select-calc-container .country-selector-wrapper {
    z-index: 200;
}

.country-select-calc-container .country-selector-button {
    border: none;
    border-bottom: 2px solid #3B82F6;
    background: transparent;
    padding: 12px;
    border-radius: 0;
    min-width: 224px;
    justify-content: flex-start;
    position: relative;
    z-index: 201;
}

.country-select-calc-container .country-selector-button:hover {
    background: rgba(59, 130, 246, 0.05);
}

.country-select-calc-container .country-selector-dropdown {
    z-index: 202;
}

.country-select-calc-container .country-code {
    font-size: 16px;
    color: #1F2937;
}

.calculator-type-row {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.calculator-type-row span {
    font-size: 18px;
    font-weight: 500;
    color: #111827;
}

.type-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E5E7EB;
    border: none;
    padding: 9px 16px;
    border-radius: 9999px;
    font-size: 16px;
    color: #1F2937;
    cursor: pointer;
    transition: all 0.2s;
}

.type-btn.active {
    background: #2563EB;
    color: #000000;
}

.type-btn img {
    width: 16px;
    height: 16px;
}

.calculator-result {
    background: #DBEAFE;
    border-radius: 8px;
    padding: 12px;
    max-width: 332px;
    margin: 0 auto;
}

.calculator-result p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}

.calculator-result h3 {
    font-size: 20px;
    color: #000000;
}

.calculator-result strong {
    font-weight: 700;
}

/* FAQ Section Detailed */
.faq-section-detailed {
    margin-bottom: 80px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    border: 1px solid #EFF6FF;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item-detailed {
    border-bottom: 1px solid #EFF6FF;
}

.faq-item-detailed:last-child {
    border-bottom: none;
}

.faq-question-detailed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question-detailed:hover {
    background: rgba(230, 255, 240, 0.50);
}

.faq-question-detailed h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
}

/* Footer Comprehensive */
.footer-comprehensive {
    background: #EFF6FF;
    border-radius: 12px;
    margin: 80px 48px 0;
    padding: 32px 144px;
}

.footer-container {
    max-width: 1536px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 17px;
}

.footer-description {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 16px;
    color: #1F2937;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #2563EB;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-contact img {
    width: 16px;
    height: 16px;
    margin-top: 4px;
}

.footer-contact span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
}

.contact-link a {
    font-size: 16px;
    color: #1F2937;
    text-decoration: none;
}

.linkedin-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.linkedin-link img {
    width: 16px;
    height: 16px;
}

.linkedin-link span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
}

.footer-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.section-full {
    grid-column: 1 / 3;
}

.companies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 16px;
}

.company-category {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 8px;
}

.company-links {
    list-style: none;
}

.company-links li {
    margin-bottom: 8px;
}

.company-links a {
    font-size: 16px;
    color: #1F2937;
    text-decoration: none;
}

.section-countries {
    grid-column: 3 / 5;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 32px;
    margin-top: 16px;
}

.country-item a {
    font-size: 16px;
    color: #1F2937;
    text-decoration: none;
}

.view-all {
    margin-top: 20px;
}

.view-all a {
    font-size: 16px;
    color: #1F2937;
    text-decoration: none;
}

.section-comparisons {
    grid-column: 1 / 3;
}

.comparisons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 16px;
}

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

.comparison-links li {
    margin-bottom: 12px;
}

.comparison-links a {
    font-size: 16px;
    color: #1F2937;
    text-decoration: none;
}

.section-google-voice {
    grid-column: 3 / 5;
}

.google-voice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 24px;
    margin-top: 16px;
}

.gv-item a {
    font-size: 16px;
    color: #1F2937;
    text-decoration: none;
    line-height: 1.5;
}

.section-more {
    grid-column: 1 / 5;
}

.more-links {
    list-style: none;
    margin-top: 16px;
}

.more-links li {
    margin-bottom: 12px;
}

.more-links a {
    font-size: 16px;
    color: #1F2937;
    text-decoration: none;
}

.footer-legal {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.70);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    font-size: 16px;
    color: #1F2937;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1400px) {
    .hero-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .hero-title-large {
        font-size: 56px;
    }
    
    .steps-grid-three {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-arrow-icon {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 24px 16px 0;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-card-gradient {
        padding: 32px 24px;
    }
    
    .hero-title-large {
        font-size: 42px;
    }
    
    .hero-description-text {
        font-size: 18px;
    }
    
    .section-title-main {
        font-size: 24px;
    }
    
    .business-features-grid,
    .features-grid-large,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-comprehensive {
        padding: 32px 24px;
        margin: 40px 16px 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Buy Number Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 480px;
    background: #2D3748;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    max-height: 80vh;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.modal-title-section {
    flex: 1;
    padding-right: 12px;
}

.modal-title {
    font-size: 15px;
    font-weight: 400;
    color: #E5E7EB;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.modal-subtitle {
    font-size: 13px;
    color: #9CA3AF;
    line-height: 1.5;
    margin: 0;
}

.modal-close {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-search {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.modal-country-btn {
    height: 40px;
    padding: 0 12px;
    background: #374151;
    border: 1px solid #4B5563;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.modal-country-btn:hover {
    background: #4B5563;
}

.modal-area-input {
    flex: 1;
    height: 40px;
    padding: 0 12px;
    background: #374151;
    border: 1px solid #4B5563;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.modal-area-input:focus {
    outline: none;
    border-color: #10B981;
}

.modal-area-input::placeholder {
    color: #6B7280;
}

.modal-search-btn {
    height: 40px;
    padding: 0 20px;
    background: #10B981;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.modal-search-btn:hover {
    background: #059669;
}

.modal-numbers-section {
    /* No border needed in modal */
}

.modal-numbers-title {
    font-size: 14px;
    font-weight: 500;
    color: #E5E7EB;
    margin: 0 0 12px 0;
}

.modal-numbers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
}

/* Custom scrollbar for modal numbers list */
.modal-numbers-list::-webkit-scrollbar {
    width: 6px;
}

.modal-numbers-list::-webkit-scrollbar-track {
    background: #2D3748;
    border-radius: 3px;
}

.modal-numbers-list::-webkit-scrollbar-thumb {
    background: #4B5563;
    border-radius: 3px;
}

.modal-numbers-list::-webkit-scrollbar-thumb:hover {
    background: #6B7280;
}

.modal-number-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #374151;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal-number-item:hover {
    background: #4B5563;
}

.modal-number-info {
    flex: 1;
}

.modal-number-phone {
    font-size: 15px;
    font-weight: 500;
    color: white;
    margin: 0 0 4px 0;
}

.modal-number-price {
    font-size: 12px;
    color: #9CA3AF;
    margin: 0;
}

.modal-buy-btn {
    height: 32px;
    padding: 0 16px;
    background: #10B981;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-buy-btn:hover {
    background: #059669;
}

.modal-buy-btn:active {
    transform: scale(0.95);
}

@media (max-width: 640px) {
    .modal-search {
        flex-direction: column;
    }

    .modal-search-btn {
        width: 100%;
    }
}

/* Modal Country Selector Overrides */
#modalCountrySelectorContainer .country-selector-wrapper {
    position: relative;
    flex-shrink: 0;
}

#modalCountrySelectorContainer .country-selector-button {
    height: 40px;
    padding: 0 12px;
    background: #374151 !important;
    border: 1px solid #4B5563 !important;
    border-radius: 8px;
    color: white !important;
    font-size: 14px;
}

#modalCountrySelectorContainer .country-selector-button:hover {
    background: #4B5563 !important;
}

#modalCountrySelectorContainer .country-selector-dropdown {
    background: #374151;
    border: 1px solid #4B5563;
    margin-top: 4px;
}

#modalCountrySelectorContainer .country-search-input {
    background: #2D3748;
    border: 1px solid #4B5563;
    color: white;
}

#modalCountrySelectorContainer .country-search-input::placeholder {
    color: #6B7280;
}

#modalCountrySelectorContainer .country-option {
    color: white;
}

#modalCountrySelectorContainer .country-option:hover {
    background: #4B5563;
}

#modalCountrySelectorContainer .country-option.selected {
    background: #10B981;
    color: white;
}

#modalCountrySelectorContainer .country-name,
#modalCountrySelectorContainer .country-dialing-code {
    color: #E5E7EB;
}



/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: white;
    color: #111827;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: 500;
    z-index: 2000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-left: 4px solid #2563EB;
}

.notification-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-toast.success {
    border-left-color: #10B981;
}

.notification-toast.error {
    border-left-color: #DC2626;
}

.notification-toast.info {
    border-left-color: #3B82F6;
}
