/* Reset & Base */
.new-geo-pricing-outer {
    font-family: 'Inter', sans-serif;
    color: #333333;
    line-height: 1.7;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    position: relative;
    background-color: #FFFFFF;
}

.new-geo-pricing-outer * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Ambient Background */
.new-geo-pricing-outer .ambient-glow {
    position: absolute;
    top: -10vw;
    left: -10vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(2, 60, 150, 0.05) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: floatGlow 15s ease-in-out infinite alternate;
}

.new-geo-pricing-outer .ambient-glow.right {
    top: auto;
    bottom: -10vw;
    left: auto;
    right: -10vw;
    background: radial-gradient(circle, rgba(15, 82, 184, 0.03) 0%, transparent 60%);
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5vw, 5vw) scale(1.1); }
    100% { transform: translate(-5vw, 10vw) scale(0.9); }
}

/* Typography */
.new-geo-pricing-outer h1,
.new-geo-pricing-outer h2,
.new-geo-pricing-outer h3,
.new-geo-pricing-outer h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--ems-primary);
    letter-spacing: -0.02em;
}

.new-geo-pricing-outer p {
    color: #555555;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
}

.new-geo-pricing-outer strong {
    color: var(--ems-primary);
    font-weight: 800;
}

.new-geo-pricing-outer h2.gradient-text {
    background: linear-gradient(135deg, var(--ems-primary), var(--ems-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Layout */
.new-geo-pricing-outer .geo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero */
.new-geo-pricing-outer .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 2rem;
    background: linear-gradient(180deg, #f5f8fc 0%, #FFFFFF 100%);
    overflow: hidden;
    perspective: 1000px;
}

.new-geo-pricing-outer .hero-grid-bg {
    position: absolute;
    bottom: -20%;
    left: -50%;
    width: 200%;
    height: 100%;
    background-image:
        linear-gradient(rgba(2, 60, 150, 0.1) 2px, transparent 2px),
        linear-gradient(90deg, rgba(2, 60, 150, 0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    transform-origin: bottom center;
    transform: perspective(600px) rotateX(75deg);
    z-index: 0;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    animation: gridMove 10s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: perspective(600px) rotateX(75deg) translateY(0); }
    100% { transform: perspective(600px) rotateX(75deg) translateY(60px); }
}

.new-geo-pricing-outer .hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(2, 60, 150, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.new-geo-pricing-outer .hero-content {
    max-width: 900px;
    z-index: 10;
}

.new-geo-pricing-outer .badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(2, 60, 150, 0.05);
    border: 1px solid rgba(2, 60, 150, 0.25);
    color: var(--ems-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(2, 60, 150, 0.05);
    animation: pulseBadge 3s infinite alternate;
}

@keyframes pulseBadge {
    from { box-shadow: 0 0 10px rgba(2, 60, 150, 0.02); }
    to { box-shadow: 0 0 25px rgba(2, 60, 150, 0.10); }
}

.new-geo-pricing-outer .hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ems-primary), var(--ems-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.new-geo-pricing-outer .hero .intro-text {
    font-size: 1.35rem;
    color: #8e8f94;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Nav Links Grid Design */
.new-geo-pricing-outer .nav-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 4rem auto 2rem;
    max-width: 1200px;
    padding: 0 1.25rem;
    position: relative;
    z-index: 10;
}

.new-geo-pricing-outer .nav-link-card {
    background: #ffffff;
    border: 1px solid rgba(2, 60, 150, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.new-geo-pricing-outer .nav-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(2, 60, 150, 0.1);
    border-color: rgba(2, 60, 150, 0.2);
}

.new-geo-pricing-outer .nav-link-num {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ems-primary), #0a7a6a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 60, 150, 0.25);
}

.new-geo-pricing-outer .nav-link-text {
    color: var(--ems-primary);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.new-geo-pricing-outer .nav-link-card:hover .nav-link-text {
    color: var(--ems-accent);
}

/* Stat Cards Row */
.new-geo-pricing-outer .stat-cards-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
}

.new-geo-pricing-outer .stat-card {
    background: #FFFFFF;
    border: 1px solid rgba(2, 60, 150, 0.3);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 240px;
    box-shadow: 0 10px 20px rgba(2, 60, 150, 0.03);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.new-geo-pricing-outer .stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 60, 150, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.new-geo-pricing-outer .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 60, 150, 0.08);
}

.new-geo-pricing-outer .stat-card:hover::before {
    opacity: 1;
}

.new-geo-pricing-outer .stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--ems-primary), var(--ems-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-geo-pricing-outer .stat-card .stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8e8f94;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.new-geo-pricing-outer .stat-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Split Sections */
.new-geo-pricing-outer .section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.new-geo-pricing-outer .section-split.reverse {
    direction: rtl;
}

.new-geo-pricing-outer .section-split.reverse > * {
    direction: ltr;
}

.new-geo-pricing-outer .content-box {
    padding-right: 2rem;
}

.new-geo-pricing-outer .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* Visual Box */
.new-geo-pricing-outer .visual-box {
    position: relative;
    background: linear-gradient(145deg, #f5f8fc, #FFFFFF);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(2, 60, 150, 0.3);
    box-shadow: 0 15px 35px rgba(2, 60, 150, 0.05);
    overflow: hidden;
    z-index: 1;
}

.new-geo-pricing-outer .visual-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(2, 60, 150, 0.03) 0%, transparent 50%);
    animation: rotateBG 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

/* Benchmark Box */
.new-geo-pricing-outer .benchmark-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(2, 60, 150, 0.08);
}

.new-geo-pricing-outer .benchmark-row:last-child {
    border-bottom: none;
}

.new-geo-pricing-outer .benchmark-label {
    flex: 1;
    font-size: 1.05rem;
    color: #555555;
    font-weight: 500;
}

.new-geo-pricing-outer .benchmark-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ems-primary);
    white-space: nowrap;
}

.new-geo-pricing-outer .benchmark-value.fast {
    background: linear-gradient(135deg, var(--ems-primary), var(--ems-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-geo-pricing-outer .benchmark-bar-wrap {
    width: 160px;
    background: rgba(2, 60, 150, 0.07);
    border-radius: 50px;
    height: 8px;
    overflow: hidden;
}

.new-geo-pricing-outer .benchmark-bar {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--ems-primary), var(--ems-accent));
    width: 0%;
    transition: width 1s ease;
}

/* Region cards */
.new-geo-pricing-outer .region-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.new-geo-pricing-outer .region-card {
    background: #FFFFFF;
    border: 1px solid rgba(2, 60, 150, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 8px 20px rgba(2, 60, 150, 0.03);
    position: relative;
    overflow: hidden;
}

.new-geo-pricing-outer .region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--ems-primary), var(--ems-accent));
}

.new-geo-pricing-outer .region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(2, 60, 150, 0.08);
}

.new-geo-pricing-outer .region-card .region-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ems-primary);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.new-geo-pricing-outer .region-card .region-state {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ems-accent);
    background: rgba(2, 60, 150, 0.06);
    padding: 2px 10px;
    border-radius: 20px;
}

.new-geo-pricing-outer .region-card p {
    font-size: 0.98rem;
    margin-bottom: 0;
    color: #555555;
}

/* List Items */
.new-geo-pricing-outer .list-items {
    list-style: none;
    margin-top: 1.5rem;
}

.new-geo-pricing-outer .list-items li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: #555555;
    font-size: 1.15rem;
    font-weight: 400;
}

.new-geo-pricing-outer .list-items li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ems-primary);
    font-weight: 800;
}

/* Highlight Quote */
.new-geo-pricing-outer .highlight-quote {
    background: rgba(2, 60, 150, 0.03);
    border-left: 4px solid var(--ems-primary);
    padding: 1.5rem 2rem;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ems-primary);
    font-weight: 500;
}

/* Grid */
.new-geo-pricing-outer .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.new-geo-pricing-outer .feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(2, 60, 150, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 20px rgba(2, 60, 150, 0.02);
    position: relative;
    z-index: 1;
}

.new-geo-pricing-outer .feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(2, 60, 150, 0.03), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.new-geo-pricing-outer .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 60, 150, 0.08);
    border-color: rgba(2, 60, 150, 0.15);
}

.new-geo-pricing-outer .feature-card:hover::before {
    opacity: 1;
}

.new-geo-pricing-outer .feature-card h3 {
    color: var(--ems-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.new-geo-pricing-outer .feature-card .card-tag {
    display: block;
    color: var(--ems-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.new-geo-pricing-outer .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(2, 60, 150, 0.08), rgba(15, 82, 184, 0.04));
    border: 1px solid rgba(2, 60, 150, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

/* Divider & Accent */
.new-geo-pricing-outer .section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 60, 150, 0.15), transparent);
}

.new-geo-pricing-outer .accent-bar {
    height: 4px;
    width: 60px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ems-primary), var(--ems-accent));
    margin-bottom: 2rem;
}

/* CTA Section */
.new-geo-pricing-outer .cta-section {
    background: linear-gradient(135deg, var(--ems-primary) 0%, var(--ems-accent) 100%);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.new-geo-pricing-outer .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: rotateBG 25s linear infinite;
    pointer-events: none;
}

.new-geo-pricing-outer .cta-section h2 {
    color: white;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: white;
}

.new-geo-pricing-outer .cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    max-width: 760px;
    margin: 0 auto 1.5rem auto;
}

.new-geo-pricing-outer .cta-section p:last-child {
    margin-bottom: 0;
}

/* Reveal animation */
.new-geo-pricing-outer .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.new-geo-pricing-outer .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .new-geo-pricing-outer .section-split { grid-template-columns: 1fr; gap: 2rem; }
    .new-geo-pricing-outer .section-split.reverse { direction: ltr; }
    .new-geo-pricing-outer .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .new-geo-pricing-outer .content-box { padding-right: 0; }
    .new-geo-pricing-outer .stat-card { flex: 1 1 calc(50% - 1.5rem); }
    .new-geo-pricing-outer .region-grid { grid-template-columns: 1fr; }
    .new-geo-pricing-outer .nav-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .new-geo-pricing-outer .grid-3 { grid-template-columns: 1fr; }
    .new-geo-pricing-outer .stat-card { flex: 1 1 100%; padding: 1.5rem 1.25rem; }
    .new-geo-pricing-outer .geo-container { padding: 2.5rem 1.25rem; }
    .new-geo-pricing-outer .hero { padding-top: 4rem; padding-bottom: 1.5rem; }
    .new-geo-pricing-outer .hero h1 { font-size: clamp(1.9rem, 7vw, 3rem); letter-spacing: 0.02em; }
    .new-geo-pricing-outer .hero .intro-text { font-size: 1.1rem; }
    .new-geo-pricing-outer .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
    .new-geo-pricing-outer .highlight-quote { font-size: 1.05rem; padding: 1.25rem; }
    .new-geo-pricing-outer .benchmark-row { flex-wrap: wrap; gap: 0.75rem; padding: 1rem 0; }
    .new-geo-pricing-outer .benchmark-label { flex: 1 1 100%; font-size: 0.95rem; }
    .new-geo-pricing-outer .benchmark-bar-wrap { flex: 1 1 auto; width: auto; min-width: 80px; }
    .new-geo-pricing-outer .benchmark-value { font-size: 1.05rem; white-space: nowrap; }
    .new-geo-pricing-outer .visual-box { padding: 1.75rem 1.25rem; }
    .new-geo-pricing-outer .feature-card { padding: 1.75rem 1.25rem; }
    .new-geo-pricing-outer .cta-section { padding: 2.75rem 1.5rem; }
    .new-geo-pricing-outer p { font-size: 1rem; }
    .new-geo-pricing-outer .list-items li { font-size: 1rem; }
    .new-geo-pricing-outer .nav-links-grid { grid-template-columns: 1fr; margin: 3rem auto 1.5rem; }
    .new-geo-pricing-outer .nav-link-card { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
    .new-geo-pricing-outer .geo-container { padding: 2rem 1rem; }
    .new-geo-pricing-outer .hero { padding-top: 3rem; }
    .new-geo-pricing-outer .hero h1 { font-size: clamp(1.6rem, 8.5vw, 2.4rem); }
    .new-geo-pricing-outer .hero .intro-text { font-size: 1rem; }
    .new-geo-pricing-outer .badge { font-size: 0.75rem; padding: 6px 16px; letter-spacing: 0.06em; }
    .new-geo-pricing-outer .stat-card .stat-value { font-size: 2rem; }
    .new-geo-pricing-outer .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
    .new-geo-pricing-outer .highlight-quote { font-size: 0.95rem; padding: 1rem; }
    .new-geo-pricing-outer .benchmark-value { font-size: 1rem; }
    .new-geo-pricing-outer .feature-card h3 { font-size: 1.2rem; }
    .new-geo-pricing-outer .stat-cards-wrapper { gap: 1rem; }
    .new-geo-pricing-outer .visual-box { border-radius: 16px; }
    .new-geo-pricing-outer .feature-card { border-radius: 16px; padding: 1.5rem 1rem; }
    .new-geo-pricing-outer .cta-section { border-radius: 20px; padding: 2.25rem 1rem; }
    .new-geo-pricing-outer .region-card { border-radius: 16px; padding: 1.5rem 1.25rem; }
}
