/* ============================================
   GeoFarmer Landing Page Styles
   Bootstrap 4.3.1 compatible
   ============================================ */

:root {
    --gf-green: #6BA508;
    --gf-green-light: #a7b647;
    --gf-green-dark: #859139;
    --gf-orange: #EC7D22;
    --gf-orange-light: #ea9c25;
    --gf-dark: #0f172a;
    --gf-muted: #64748b;
    --gf-bg: #FAFAFA;
    --gf-card: #ffffff;
    --gf-border: #e2e8f0;
    --gf-radius: 10px;
    --gf-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --gf-shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
}

/* Smooth scroll with fixed-nav offset */
html {
    scroll-behavior: smooth;
}

.intelligence-section,
.climatic-section,
.solutions-section,
#partners {
    scroll-margin-top: 80px;
}

/* Typography */
.landing-page {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--gf-bg);
    color: var(--gf-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 {
    font-weight: 700;
    color: var(--gf-dark);
}

.landing-page p {
    color: var(--gf-muted);
    line-height: 1.7;
}

/* Navbar */
.landing-nav {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    padding: 0.75rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1050;
}

.landing-nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.landing-nav .navbar-brand img {
    height: 36px;
}

.landing-nav .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gf-dark) !important;
    transition: color 0.2s;
    padding: 0.5rem 1rem !important;
}

.landing-nav .nav-link:hover {
    color: var(--gf-green) !important;
}

.btn-gf-primary {
    background-color: var(--gf-dark);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-gf-primary:hover {
    background-color: rgba(15,23,42,0.9);
    color: #fff;
}

.btn-gf-green {
    background-color: var(--gf-green);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-gf-green:hover {
    background-color: #5a8c07;
    color: #fff;
}

.btn-gf-outline {
    background-color: var(--gf-card);
    color: var(--gf-dark);
    border: 1px solid var(--gf-border);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-gf-outline:hover {
    background-color: var(--gf-bg);
    color: var(--gf-dark);
    text-decoration: none;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--gf-green), var(--gf-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-section .hero-blob-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
    height: 700px;
    background: rgba(107,165,8,0.05);
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(30%, -40%);
    pointer-events: none;
}

.hero-section .hero-blob-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: rgba(236,125,34,0.05);
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(-30%, 30%);
    pointer-events: none;
}

.hero-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    background: rgba(107,165,8,0.1);
    color: var(--gf-green);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
}

.hero-badge .pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gf-green);
    animation: pulse-ring 2s ease-in-out infinite;
}

.hero-badge .pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gf-green);
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.75; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-checks {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.8125rem;
    color: var(--gf-muted);
}

.hero-checks .check-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.hero-checks .fa-check-circle {
    color: var(--gf-green);
}

/* Hero Preview Card */
.hero-preview {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.hero-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partners Strip */
.partners-section {
    padding: 3rem 0;
    border-top: 1px solid var(--gf-border);
    border-bottom: 1px solid var(--gf-border);
    background: var(--gf-card);
}

.partners-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gf-muted);
    margin-bottom: 1.5rem;
}

.partner-scroll {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 0 1rem;
}

.partner-track {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    /* Animation disabled — to re-enable: animation: partner-scroll 25s linear infinite; */
}

.partner-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gf-dark);
    white-space: nowrap;
}

@keyframes partner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

/* Intelligence Cards */
.intelligence-section {
    padding: 5rem 0;
}

.intelligence-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding-bottom: 0;
}

.intelligence-card {
    min-width: 0;
    max-width: none;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    box-shadow: var(--gf-shadow);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.intelligence-card:hover {
    transform: translateY(-4px);
}

.intelligence-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}

.intelligence-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.intelligence-card p {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
}

.icon-green { background: rgba(107,165,8,0.1); color: var(--gf-green); }
.icon-blue { background: rgba(66,153,225,0.1); color: #4299E1; }
.icon-purple { background: rgba(128,90,213,0.1); color: #805AD5; }
.icon-orange { background: rgba(246,173,85,0.1); color: #F6AD55; }
.icon-red { background: rgba(229,62,62,0.1); color: #E53E3E; }

/* SVG Sparklines */
.sparkline-container {
    height: 80px;
    width: 100%;
}

.sparkline-container svg {
    width: 100%;
    height: 100%;
}

/* Climatic Section */
.climatic-section {
    padding: 5rem 0;
    background: var(--gf-bg);
    border-top: 1px solid var(--gf-border);
    border-bottom: 1px solid var(--gf-border);
}

.stat-card {
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    padding: 1.5rem;
    box-shadow: var(--gf-shadow);
}

.stat-card .stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat-card .stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gf-muted);
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gf-dark);
}

.stat-card .stat-badge {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.stat-badge-green { color: var(--gf-green); }
.stat-badge-red { color: #E53E3E; }
.stat-badge-muted { color: var(--gf-muted); }

/* Solutions Tabs */
.solutions-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--gf-border);
}

.solutions-tabs .nav-link {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gf-muted);
    border: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.solutions-tabs .nav-link.active {
    background: var(--gf-dark);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.solutions-tabs .nav-link:not(.active):hover {
    color: var(--gf-dark);
}

.tab-wrapper {
    display: inline-flex;
    padding: 4px;
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: 12px;
    box-shadow: var(--gf-shadow);
}

.solution-panel {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gf-border);
    border-radius: 1.5rem;
    box-shadow: var(--gf-shadow-lg);
    overflow: hidden;
    margin-top: 2rem;
}

.solution-content {
    padding: 3rem 4rem;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-green { background: rgba(107,165,8,0.1); color: var(--gf-green); }
.badge-blue { background: rgba(66,153,225,0.1); color: #4299E1; }
.badge-orange { background: rgba(246,173,85,0.1); color: #F6AD55; }

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gf-dark);
    font-size: 0.9375rem;
}

.solution-features .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    margin-top: 2px;
}

.check-green { background: rgba(107,165,8,0.15); color: var(--gf-green); }
.check-blue { background: rgba(66,153,225,0.15); color: #4299E1; }
.check-orange { background: rgba(246,173,85,0.15); color: #F6AD55; }

.solution-sidebar {
    background: var(--gf-card);
    border-left: 1px solid var(--gf-border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.solution-sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gf-bg), rgba(250,250,250,0.5));
    opacity: 0.5;
}

.solution-sidebar > * {
    position: relative;
    z-index: 1;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.sidebar-header h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
}

.period-badge {
    font-size: 0.6875rem;
    font-weight: 500;
    background: rgba(100,116,139,0.1);
    color: var(--gf-muted);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.mini-stat {
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: 8px;
    padding: 1rem;
}

.mini-stat .mini-label {
    font-size: 0.6875rem;
    color: var(--gf-muted);
    margin-bottom: 0.25rem;
}

.mini-stat .mini-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gf-dark);
}

.mini-stat .mini-trend {
    font-size: 0.6875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.sidebar-chart-area {
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.sidebar-chart-area .chart-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gf-dark);
}

/* Footer */
.landing-footer {
    padding: 5rem 0 2.5rem;
    border-top: 1px solid var(--gf-border);
    background: var(--gf-bg);
}

.landing-footer .footer-brand img {
    height: 32px;
    margin-bottom: 1.25rem;
}

.landing-footer .footer-tagline {
    font-size: 0.8125rem;
    color: var(--gf-muted);
    max-width: 280px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.landing-footer h5 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gf-dark);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--gf-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gf-green);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gf-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gf-dark);
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--gf-border);
}

.social-links a:hover {
    background: var(--gf-green);
    color: #fff;
    border-color: var(--gf-green);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gf-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--gf-muted);
}

.footer-bottom a {
    color: var(--gf-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--gf-dark);
}

/* CTA Link */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gf-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-link:hover {
    color: var(--gf-green);
    text-decoration: none;
}

/* ============================================
   Demo Request Modal
   ============================================ */
.demo-modal-content {
    border-radius: 1rem;
    border: 1px solid var(--gf-border);
}

.demo-modal-content .modal-header {
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid var(--gf-border);
}

.demo-modal-content .modal-body {
    padding: 1.5rem 2rem 2rem;
}

.demo-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gf-dark);
    margin-bottom: 0.375rem;
    display: block;
}

.demo-input {
    border-radius: var(--gf-radius) !important;
    border: 1px solid var(--gf-border) !important;
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
    font-family: 'Montserrat', sans-serif;
}

.demo-input:focus {
    border-color: var(--gf-green) !important;
    box-shadow: 0 0 0 3px rgba(107,165,8,0.12) !important;
    outline: none;
}

/* ============================================
   Platform Capabilities
   ============================================ */
.capabilities-section {
    padding: 5rem 0;
    background: var(--gf-card);
    border-top: 1px solid var(--gf-border);
    border-bottom: 1px solid var(--gf-border);
    scroll-margin-top: 80px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.capability-card {
    background: var(--gf-bg);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.capability-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gf-shadow-lg);
}

.capability-card .cap-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.capability-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gf-dark);
}

.capability-card p {
    font-size: 0.8125rem;
    color: var(--gf-muted);
    line-height: 1.6;
    margin: 0;
}

.cap-badge-coming {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    background: rgba(236,125,34,0.12);
    color: var(--gf-orange);
}

/* ============================================
   Stats Banner
   ============================================ */
.stats-section {
    background: var(--gf-dark);
    padding: 3rem 0;
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gf-green);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stats-section .stat-label-main {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.125rem;
}

.stats-section .stat-unit {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   How It Works
   ============================================ */
.how-section {
    position: relative;
    padding: 5rem 0;
    background-image: url('../images/home/fields-bkgrnd-p-1600.jpeg');
    background-size: cover;
    background-position: center;
}

.how-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.82);
}

.how-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.how-step img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.how-step h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.how-step p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9375rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   Integration Ecosystem
   ============================================ */
.integration-section {
    padding: 5rem 0;
    background: var(--gf-bg);
    border-top: 1px solid var(--gf-border);
    scroll-margin-top: 80px;
}

.integration-card {
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--gf-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gf-shadow-lg);
}

.integration-card img {
    max-height: 56px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

.integration-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gf-dark);
    padding: 0.5rem 0;
}

.integration-card-coming {
    opacity: 0.75;
}

.integration-desc {
    font-size: 0.75rem;
    color: var(--gf-muted);
    margin: 0;
}

.status-live {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    background: rgba(107,165,8,0.12);
    color: var(--gf-green);
}

.status-coming {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    background: rgba(236,125,34,0.12);
    color: var(--gf-orange);
}

/* ============================================
   Use Cases
   ============================================ */
.use-cases-section {
    padding: 5rem 0;
    border-top: 1px solid var(--gf-border);
    scroll-margin-top: 80px;
}

.use-case-card {
    position: relative;
    border-radius: var(--gf-radius);
    overflow: hidden;
    height: 320px;
    cursor: default;
}

.use-case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.use-case-card:hover img {
    transform: scale(1.04);
}

.use-case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.use-case-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #fff;
}

.use-case-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.375rem;
}

.use-case-content p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   Social Proof
   ============================================ */
.social-proof-section {
    padding: 4rem 0;
    background: var(--gf-bg);
    border-top: 1px solid var(--gf-border);
    border-bottom: 1px solid var(--gf-border);
    scroll-margin-top: 80px;
}

.social-proof-card {
    background: var(--gf-dark);
    border-radius: 1.5rem;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.social-proof-quote {
    flex: 1;
}

.social-proof-icon {
    font-size: 2rem;
    color: var(--gf-green);
    margin-bottom: 1rem;
    display: block;
}

.social-proof-card blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin: 0 0 1rem;
    border: none;
    padding: 0;
}

.social-proof-card cite {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gf-green);
    font-style: normal;
}

.social-proof-logos {
    text-align: center;
    flex-shrink: 0;
}

.proof-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.875rem;
}

.proof-names {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.proof-names span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
}

/* Responsive */
/* Partner name pill styling */
.partner-name {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1.125rem;
    border: 1px solid var(--gf-border);
    border-radius: 50px;
    background: var(--gf-card);
    font-size: 0.9375rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-name:hover {
    opacity: 0.85;
}

.partner-track:hover {
    animation-play-state: paused;
}

/* Stat card hover */
.stat-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--gf-shadow-lg);
}

/* Intelligence card icon — slightly larger for visual anchoring */
.intelligence-card .card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.375rem;
}

/* Responsive */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-preview {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .solution-content {
        padding: 2rem;
    }

    .solution-sidebar {
        border-left: none;
        border-top: 1px solid var(--gf-border);
    }

    .hero-checks {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-section {
        padding-top: 6rem;
        min-height: auto;
    }

    .hero-preview {
        height: 280px;
    }

    /* Intelligence cards: single column stack on mobile */
    .intelligence-scroll {
        grid-template-columns: 1fr;
    }

    .intelligence-card {
        min-width: 0;
        max-width: 100%;
    }

    /* Hero CTA: full-width stack on mobile */
    .hero-ctas {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .hero-ctas .btn-gf-primary,
    .hero-ctas .btn-gf-outline {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 1rem;
    }

    /* Stats: smaller numbers on mobile */
    .stats-section .stat-number {
        font-size: 2.25rem;
    }

    /* Social proof: stack on mobile */
    .social-proof-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    /* Use case cards: shorter on mobile */
    .use-case-card {
        height: 260px;
    }
}

/* Accessibility: respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-badge .pulse-dot::before {
        animation: none;
    }

    .partner-track {
        animation: none;
    }

    .intelligence-card,
    .stat-card {
        transition: none;
    }
}
