/* ============================================================
   GEO SERVICE PAGE STYLES
   ============================================================ */

.geo-page {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fff;
}

/* ── Utilities ── */
.geo-text-green { color: #10b981; }
.geo-text-blue  { color: #0ea5e9; }
.geo-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0b1c3b;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.geo-badge {
    display: inline-block;
    padding: 7px 20px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 50px;
    color: #059669;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* ── HERO ── */
.geo-hero {
    padding: 110px 0 90px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 40%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}
.geo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,185,129,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,185,129,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}
.geo-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}
.geo-hero__title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    color: #0b1c3b;
    margin-bottom: 22px;
}
.geo-hero__title .highlight {
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.geo-hero__desc {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}
.geo-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-geo-primary {
    padding: 14px 36px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(16,185,129,0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-geo-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16,185,129,0.45);
    color: #fff;
}
.btn-geo-outline {
    padding: 14px 36px;
    border: 2px solid #10b981;
    color: #059669;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-geo-outline:hover {
    background: #10b981;
    color: #fff;
    transform: translateY(-3px);
}

/* ── AI Chat Mockup ── */
.geo-chat-mockup {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1), 0 0 0 2px rgba(16,185,129,0.15);
    animation: chatFloat 6s ease-in-out infinite;
    max-width: 480px;
    margin: 0 auto;
}
@keyframes chatFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.geo-chat__header {
    background: linear-gradient(90deg, #f8fafc, #fff);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.geo-chat__dots { display: flex; gap: 8px; margin-right: 20px; }
.geo-chat__dots span { width: 14px; height: 14px; border-radius: 50%; display: block; }
.geo-chat__dots span:nth-child(1) { background: #ff5f57; }
.geo-chat__dots span:nth-child(2) { background: #febc2e; }
.geo-chat__dots span:nth-child(3) { background: #28c840; }
.geo-chat__title { font-weight: 800; color: #0f172a; font-size: 15px; letter-spacing: 0.5px; }

.geo-chat__body { padding: 24px; position: relative; }
.geo-chat__msg {
    padding: 16px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
    max-width: 85%;
    position: relative;
    opacity: 0;
}
.geo-chat__msg--user {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 6px;
    animation: msgInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}
.geo-chat__msg--ai {
    background: #fff;
    color: #0f172a;
    border: 2px solid #bbf7d0;
    margin-right: auto;
    border-bottom-left-radius: 6px;
    box-shadow: 0 10px 20px rgba(16,185,129,0.1);
    animation: msgInLeft 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2.2s forwards;
}

/* Typing indicator for AI */
.geo-chat__body::before {
    content: '...';
    position: absolute;
    left: 24px;
    top: 90px;
    font-size: 28px;
    line-height: 0;
    color: #94a3b8;
    letter-spacing: 3px;
    opacity: 0;
    visibility: hidden;
    animation: typingShow 1s ease 1s forwards, typingHide 0.2s ease 2.1s forwards;
    z-index: 10;
}

@keyframes msgInRight {
    0% { opacity: 0; transform: translateX(30px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes msgInLeft {
    0% { opacity: 0; transform: translateX(-30px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes typingShow {
    0% { opacity: 0; transform: translateY(5px); visibility: visible; }
    10% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
@keyframes typingHide {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

.geo-chat__content strong { 
    color: transparent;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    -webkit-background-clip: text;
    font-weight: 900;
}
.geo-chat__citations {
    margin-top: 14px;
    display: flex; gap: 10px; flex-wrap: wrap;
}
.geo-cite {
    background: #f8fafc; border: 1px solid #e2e8f0;
    padding: 6px 14px; border-radius: 20px;
    font-size: 12px; color: #475569; font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.3s ease;
    cursor: default;
}
.geo-cite i { color: #10b981; }
.geo-cite:hover {
    background: #ecfdf5;
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(16,185,129,0.2);
}

/* Casestudy Card Redesign removed - replaced with full width version */

/* Stats bar */
.geo-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(16,185,129,0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(16,185,129,0.15);
}
.geo-stat-item {
    background: #fff;
    padding: 28px 24px;
    text-align: center;
    transition: background 0.3s;
}
.geo-stat-item:hover { background: #f0fdf4; }
.geo-stat-item .num {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.geo-stat-item .label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

/* ── WHAT IS GEO ── */
.geo-what {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}
.geo-what__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}
.geo-what__visual {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
/* AI Overview Search Mockup */
.geo-aio-mockup {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f1f5f9;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.aio-search-bar {
    background: #fff;
    border-radius: 30px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    gap: 12px;
}
.gsm-icon { color: #94a3b8; font-size: 16px; }
.gsm-typing-text {
    flex: 1;
    font-size: 14px;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #334155;
    animation: typingText 3s steps(35, end) infinite alternate;
}
.gsm-search-btn { color: #3b82f6; font-size: 16px; }

@keyframes typingText {
    0%, 10% { width: 0; opacity: 1; }
    70%, 100% { width: 100%; opacity: 1; }
}

.aio-results {
    flex: 1;
    position: relative;
}

.gsm-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: hideLoader 6s infinite;
}
.gsm-shimmer {
    height: 14px;
    background: linear-gradient(90deg, #e2e8f0 25%, #f8fafc 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: shimmerLoad 1.5s infinite linear;
}
.gsm-shimmer.short { width: 60%; }

@keyframes shimmerLoad {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes hideLoader {
    0%, 40% { opacity: 1; visibility: visible; }
    45%, 100% { opacity: 0; visibility: hidden; }
}

.gsm-ai-box {
    background: linear-gradient(145deg, #ffffff, #f0fdf4);
    border: 2px solid #bbf7d0;
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    animation: showResult 6s infinite;
    box-shadow: 0 15px 30px rgba(16,185,129,0.1);
}

@keyframes showResult {
    0%, 45% { opacity: 0; visibility: hidden; transform: translateY(10px); }
    50%, 95% { opacity: 1; visibility: visible; transform: translateY(0); }
    100% { opacity: 0; visibility: hidden; transform: translateY(-10px); }
}

.gsm-ai-header {
    display: flex; align-items: center; gap: 8px;
    color: #10b981; font-weight: 800; font-size: 15px;
    margin-bottom: 12px;
}
.gsm-ai-content {
    font-size: 14px; color: #334155; line-height: 1.6;
}
.gsm-ai-content strong {
    color: #10b981;
}

.gsm-citations {
    margin-top: 16px;
}
.gsm-cite-card {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid #e2e8f0;
    padding: 8px 12px; border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.gsm-cite-card i { color: #10b981; font-size: 14px; }
.gsm-cite-info { display: flex; flex-direction: column; }
.gsm-cite-title { font-size: 12px; font-weight: 700; color: #0f172a; line-height: 1.2; }
.gsm-cite-url { font-size: 10px; color: #64748b; }

.gsm-organic-box {
    margin-top: 20px;
    opacity: 0;
    animation: showResult 6s infinite;
    animation-delay: 0.2s;
}
.org-title { height: 16px; width: 50%; background: #bfdbfe; border-radius: 4px; margin-bottom: 8px; }
.org-desc { height: 12px; width: 100%; background: #e2e8f0; border-radius: 4px; }

.geo-what__text .geo-section-title { margin-bottom: 24px; }
.geo-what__text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}
.geo-check-list { list-style: none; padding: 0; margin: 0; }
.geo-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}
.geo-check-list li i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.geo-what__cards-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.geo-premium-card {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}
.geo-premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, #10b981, #38bdf8);
    opacity: 0;
    transition: opacity 0.3s;
}
.geo-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.2);
}
.geo-premium-card:hover::before { opacity: 1; }
.geo-pc-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #059669; font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.geo-premium-card:hover .geo-pc-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}
.geo-premium-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.geo-premium-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .geo-what__hero { grid-template-columns: 1fr; gap: 40px; }
    .geo-what__cards-new { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .geo-what__cards-new { grid-template-columns: 1fr; }
}

/* ── SPORTY ROADMAP ── */
.geo-roadmap-sporty {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.geo-roadmap-sporty::before {
    content: '';
    position: absolute;
    top: 0; right: -20%;
    width: 60%; height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(16,185,129,0.03) 10px, rgba(16,185,129,0.03) 20px);
    transform: skewX(-15deg);
    pointer-events: none;
}
.geo-roadmap__header { margin-bottom: 60px; position: relative; z-index: 2; }
.geo-badge--neon {
    background: rgba(16,185,129,0.1);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.3);
}
.geo-text-white { color: #fff !important; }
.geo-text-neon { color: #34d399; text-shadow: 0 0 20px rgba(52,211,153,0.4); }
.geo-roadmap__desc {
    color: #94a3b8 !important;
    font-size: 16px;
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.8;
}

.geo-roadmap__track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
    z-index: 2;
}
.geo-track-line {
    position: absolute;
    top: 0; bottom: 0; left: 40px;
    width: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}
.geo-track-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #34d399;
    box-shadow: 0 0 15px #34d399;
    animation: trackFlow 4s linear infinite;
    transform-origin: top;
}
@keyframes trackFlow {
    0% { transform: scaleY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

.geo-track-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}
.geo-track-step:last-child { margin-bottom: 0; }

.geo-step-num {
    position: absolute;
    left: 0;
    width: 84px;
    height: 84px;
    background: #1e293b;
    border: 2px solid #34d399;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    transform: skewX(-10deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), inset 0 0 15px rgba(52,211,153,0.2);
    z-index: 2;
    transition: all 0.3s ease;
}
.geo-step-num span {
    transform: skewX(10deg);
}
.geo-track-step:hover .geo-step-num {
    transform: skewX(-10deg) scale(1.1);
    background: #34d399;
    color: #0f172a;
    box-shadow: 0 0 30px rgba(52,211,153,0.6);
}

.geo-step-card {
    background: rgba(30,41,59,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 4px solid #34d399;
    border-radius: 16px;
    padding: 32px 40px;
    transform: skewX(-3deg);
    transition: all 0.4s ease;
    width: 100%;
}
.geo-step-card-inner {
    transform: skewX(3deg);
}
.geo-track-step:hover .geo-step-card {
    transform: skewX(0deg) translateX(10px);
    background: rgba(30,41,59,0.95);
    border-color: rgba(52,211,153,0.3);
}

.geo-step-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.geo-step-sub {
    display: block;
    font-size: 14px;
    color: #34d399;
    font-weight: 600;
    margin-bottom: 16px;
}
.geo-step-card p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .geo-track-line { left: 20px; }
    .geo-step-num { width: 60px; height: 60px; font-size: 24px; left: -10px; }
    .geo-track-step { padding-left: 70px; }
    .geo-step-card { padding: 24px; transform: none; }
    .geo-step-card-inner { transform: none; }
    .geo-track-step:hover .geo-step-card { transform: none; }
}


/* ── BENEFITS ── */
.geo-benefits {
    padding: 90px 0;
    background: #fff;
}
.geo-benefits__inner {
    max-width: 800px;
    margin: 0 auto;
}
.geo-footer__bottom p { margin: 0; opacity: 0.6; }

/* ── MARKET DATA ── */
.geo-market-data {
    padding: 80px 0;
    background: #fff;
}
.geo-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.geo-data-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.geo-data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}
.geo-data-card h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
}
.geo-data-card.global h3 { color: #1e3a8a; }
.geo-data-card.vn h3 { color: #10b981; }
.geo-data-card p {
    color: #475569;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.5;
}
.geo-data-card .source {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 20px;
    display: block;
}
.geo-data-quote {
    background: #0f172a;
    color: #fff;
    padding: 24px;
    text-align: center;
    border-radius: 16px;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    border-left: 4px solid #34d399;
}
.geo-data-quote span {
    color: #34d399;
}
@media (max-width: 1024px) {
    .geo-data-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .geo-data-grid { grid-template-columns: 1fr; }
}

.geo-benefits__list { margin-top: 30px; }
.geo-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 24px;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
}
.geo-benefit-item:hover {
    border-color: #10b981;
    background: #f0fdf4;
    transform: translateX(8px);
}
.geo-benefit-item__icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
}
.geo-benefit-item__text h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}
.geo-benefit-item__text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── KPI FRAMEWORK ── */
.geo-kpi-framework { 
    padding: 100px 0; 
    background: #f8fafc; 
    position: relative;
    overflow: hidden;
}
/* Sporty background pattern */
.geo-kpi-framework::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    z-index: 0;
}
.geo-kpi-framework .container {
    position: relative;
    z-index: 1;
}
.geo-kpi-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px; 
    margin-top: 50px; 
}
.geo-kpi-card { 
    background: #fff; 
    border: 2px solid transparent; 
    border-radius: 20px; 
    padding: 32px; 
    display: flex; 
    gap: 24px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
/* Fresh animated border effect */
.geo-kpi-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, #10b981, #38bdf8);
    transition: all 0.5s ease;
}
.geo-kpi-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16,185,129,0.2);
    box-shadow: 0 20px 40px rgba(16,185,129,0.12);
}
.geo-kpi-card:hover::before {
    left: 0;
}
.geo-kpi-num { 
    font-size: 48px; 
    font-weight: 900; 
    font-style: italic;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    opacity: 0.9;
    letter-spacing: -2px;
    padding-right: 8px;
}
.geo-kpi-content h4 { 
    font-size: 22px; 
    font-weight: 800; 
    color: #0f172a; 
    margin-bottom: 10px; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.geo-kpi-content p { 
    font-size: 15px; 
    color: #475569; 
    margin-bottom: 16px; 
    line-height: 1.6; 
}
.geo-kpi-content .kpi-reason { 
    font-size: 13px; 
    color: #059669; 
    background: rgba(16,185,129,0.1);
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    margin: 0; 
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.geo-kpi-content .kpi-reason::before {
    content: '\f0eb'; /* lightbulb icon if FontAwesome is loaded */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.geo-kpi-baseline { background: #e0f2fe; color: #0284c7; padding: 16px 24px; border-radius: 8px; margin-top: 30px; font-size: 14.5px; font-weight: 500; text-align: center; }

/* ── COMMITMENTS ── */
.geo-commitments { padding: 100px 0; background: #fff; position: relative; overflow: hidden; }
/* Decorative fresh gradient blur */
.geo-commitments::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, rgba(16,185,129,0.04) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.geo-commitments .container { position: relative; z-index: 1; }
.geo-commit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.geo-commit-box { 
    background: #fff;
    border-radius: 24px; 
    padding: 40px 40px 40px 44px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative;
    overflow: hidden;
}
.geo-commit-box.yes { 
    border: 2px solid #bbf7d0; 
    box-shadow: 0 10px 40px rgba(16,185,129,0.04); 
}
.geo-commit-box.no { 
    border: 2px solid #e2e8f0; 
    box-shadow: 0 10px 40px rgba(15,23,42,0.03); 
}
/* Left sporty accent */
.geo-commit-box::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 6px;
    transition: all 0.4s ease;
}
.geo-commit-box.yes::after { background: linear-gradient(180deg, #10b981, #0ea5e9); }
.geo-commit-box.no::after { background: linear-gradient(180deg, #64748b, #cbd5e1); }

.geo-commit-box.yes:hover { transform: translateY(-8px); border-color: #10b981; box-shadow: 0 20px 40px rgba(16,185,129,0.12); }
.geo-commit-box.no:hover { transform: translateY(-8px); border-color: #94a3b8; box-shadow: 0 20px 40px rgba(15,23,42,0.08); }
.geo-commit-box:hover::after { width: 10px; }

.geo-commit-header { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.geo-commit-icon { 
    width: 48px; height: 48px; 
    border-radius: 14px; 
    display: flex; align-items: center; justify-content: center; 
    color: #fff; font-size: 20px;
    transform: skewX(-8deg);
}
.geo-commit-box.yes .geo-commit-icon { 
    background: linear-gradient(135deg, #10b981, #059669); 
    box-shadow: 4px 4px 15px rgba(16,185,129,0.3);
}
.geo-commit-box.no .geo-commit-icon { 
    background: linear-gradient(135deg, #64748b, #475569); 
    box-shadow: 4px 4px 15px rgba(100,116,139,0.2);
}
.geo-commit-icon i { transform: skewX(8deg); }
.geo-commit-header h3 { font-size: 24px; font-weight: 800; margin: 0; color: #0f172a; text-transform: uppercase; letter-spacing: 0.5px; }

.geo-commit-box ul { list-style: none; padding: 0; margin: 0; }
.geo-commit-box li { 
    position: relative; 
    padding-left: 32px; 
    margin-bottom: 20px; 
    font-size: 15px; 
    color: #334155; 
    line-height: 1.7; 
    font-weight: 500;
}
.geo-commit-box li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    font-size: 16px;
}
.geo-commit-box.yes li::before { content: '\f00c'; color: #10b981; }
.geo-commit-box.no li::before { content: '\f068'; color: #94a3b8; }

/* ── ABOUT FORZA ── */
.geo-about { padding: 100px 0; background: #f8fafc; position: relative; overflow: hidden; }
/* Decorative sporty background */
.geo-about::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 100%; height: 120px;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(16,185,129,0.03) 10px, rgba(16,185,129,0.03) 20px);
    z-index: 0;
}
.geo-about .container { position: relative; z-index: 1; }
.geo-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.geo-about-card { 
    background: #fff; 
    border-radius: 24px; 
    padding: 40px; 
    border: 2px solid transparent; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.geo-about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #e2e8f0;
}
.geo-about-card.primary { 
    background: linear-gradient(135deg, #10b981, #0ea5e9); 
    color: #fff; 
    border: none; 
    box-shadow: 0 15px 40px rgba(16,185,129,0.2);
}
.geo-about-card.primary:hover {
    box-shadow: 0 25px 50px rgba(16,185,129,0.3);
    transform: translateY(-8px) scale(1.02);
}
/* Sporty accent for normal cards */
.geo-about-card:not(.primary)::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 6px;
    background: #38bdf8;
    transition: all 0.3s ease;
}
.geo-about-card:not(.primary):hover::before { width: 100px; background: #10b981; }

.geo-about-card h4 { font-size: 22px; font-weight: 900; color: #0ea5e9; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.geo-about-card.primary h4 { color: #fff; }
.geo-about-card p { font-size: 15px; color: #475569; line-height: 1.7; margin: 0; }
.geo-about-card.primary p { color: rgba(255,255,255,0.95); }

@media (max-width: 768px) {
    .geo-kpi-grid, .geo-commit-grid, .geo-about-grid { grid-template-columns: 1fr; }
}

/* ── PROCESS ── */
.geo-process {
    padding: 90px 0;
    background: linear-gradient(135deg, #0b1c3b, #1e3a8a);
    position: relative;
    overflow: hidden;
}
.geo-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
.geo-process .geo-section-title { color: #fff; }
.geo-process .section-sub { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 700px; margin: 0 auto 60px; text-align: center; line-height: 1.8; }

.geo-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 50px;
}
.geo-process__steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #0ea5e9);
    opacity: 0.4;
    z-index: 0;
}
.geo-step {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.geo-step:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(16,185,129,0.5);
    transform: translateY(-6px);
}
.geo-step__num {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(16,185,129,0.4);
}
.geo-step h4 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.geo-step p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

/* ── TARGET AUDIENCE ── */
.geo-audience {
    padding: 90px 0;
    background: #f8fbff;
}
.geo-audience__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.geo-audience-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.geo-audience-card:hover {
    border-color: #10b981;
    box-shadow: 0 15px 40px rgba(16,185,129,0.1);
    transform: translateY(-6px);
}
.geo-audience-card .aud-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
}
.geo-audience-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.geo-audience-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── CTA SECTION ── */
.geo-cta {
    padding: 90px 0;
    background: #fff;
}
.geo-cta__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(11,28,59,0.15);
}
.geo-cta__info {
    background: linear-gradient(135deg, #0b1c3b, #1e3a8a);
    padding: 60px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.geo-cta__info::before {
    content: '\f3c5';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 200px;
    position: absolute;
    right: -40px; bottom: -60px;
    color: rgba(255,255,255,0.05);
}
.geo-cta__info h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}
.geo-cta__info h2 span {
    color: #6ee7b7;
}
.geo-cta__info p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.geo-cta__info .cta-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.geo-cta__info .cta-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}
.geo-cta__info .cta-perk i {
    color: #6ee7b7;
    font-size: 16px;
    flex-shrink: 0;
}

.geo-cta__form {
    background: #fff;
    padding: 60px 50px;
}
.geo-cta__form h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}
.geo-cta__form .form-sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}
.geo-form-group {
    margin-bottom: 18px;
}
.geo-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.geo-form-group input,
.geo-form-group select,
.geo-form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
}
.geo-form-group input:focus,
.geo-form-group select:focus,
.geo-form-group textarea:focus {
    border-color: #10b981;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.1);
}
.geo-form-group textarea { resize: vertical; min-height: 100px; }
.btn-geo-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(16,185,129,0.3);
    font-family: 'Inter', sans-serif;
}
.btn-geo-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16,185,129,0.45);
}
.geo-form-notice {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 14px;
}
.geo-form-message {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 14px;
    display: none;
}
.geo-form-message.success { background: #dcfce7; color: #15803d; display: block; }
.geo-form-message.error   { background: #fee2e2; color: #dc2626; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .geo-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .geo-hero__title { font-size: 40px; }
    .geo-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .geo-what__inner { grid-template-columns: 1fr; }
    .geo-services__grid { grid-template-columns: repeat(2, 1fr); }
    .geo-benefits__inner { grid-template-columns: 1fr; }
    .geo-process__steps { grid-template-columns: repeat(3, 1fr); }
    .geo-process__steps::before { display: none; }
    .geo-audience__grid { grid-template-columns: repeat(2, 1fr); }
    .geo-cta__box { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .geo-hero { padding: 80px 0 60px; }
    .geo-hero__title { font-size: 32px; }
    .geo-hero__actions { flex-direction: column; }
    .geo-section-title { font-size: 24px; }
    .geo-services__grid { grid-template-columns: 1fr; }
    .geo-process__steps { grid-template-columns: repeat(2, 1fr); }
    .geo-audience__grid { grid-template-columns: 1fr; }
    .geo-what__cards { grid-template-columns: 1fr; }
    .geo-cta__info, .geo-cta__form { padding: 40px 30px; }
    
    /* Optimize cards layout on mobile */
    .geo-kpi-card { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 16px; 
        padding: 24px; 
    }
    .geo-commit-box { 
        padding: 24px 20px 24px 30px; 
    }
    .geo-commit-header {
        align-items: flex-start;
        gap: 12px;
    }
}

/* Center Contact Form 7 Submit Button */
.geo-cta__form .wpcf7-submit {
    display: block !important;
    margin: 20px auto 0 !important;
}

