:root{
  
  --fs-xxxl: clamp(2.4rem, 4vw, 3rem);      
  --fs-xxl: clamp(2rem, 3.2vw, 2.5rem);      
  --fs-xl: 1.9rem;                        

 
  --fs-lg: 1.25rem;                        
  --fs-1_2: 1.2rem;  

 
  --fs-md: 1.1rem;                          
  --fs-base: 1.5rem;                           
  --fs-sm: 1.2rem;                          
  --fs-xs: 0.82rem;                          
  --fs-tiny: 0.75rem;                        

 
  --fs-1_25: 1.25rem;             
  --fs-0_96: 0.96rem;             
  --fs-0_95: 0.95rem;
  --fs-0_88: 0.88rem;
  --fs-2_1: 2.1rem;               
  --fs-1_9: 1.9rem;              

 
  --fw-bold: 700;
  --fw-semibold: 600;
  --fw-medium: 500;
  --fw-normal: 400;

 
  --lh-hero-title: 1.1;
  --lh-title: 1.2;
  --lh-normal: 1.65;

}

body.gf-page,
.gf-page {
    background: radial-gradient(circle at top left, #eff6ff, #f8fafc 55%);
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.gf-page .container {
    width: 90%;
    max-width: var(--container);
    margin-inline: auto;
}


.gf-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-dark);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.gf-gradient {
    background: linear-gradient(90deg, #2563eb, #22c55e);
    -webkit-background-clip: text;
    color: transparent;
}



.gf-hero {
    padding: 4.5rem 0 4rem;
}

.gf-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.gf-hero__title {
    font-size: clamp(2.3rem, 3.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.gf-hero__subtitle {
    font-size: var(--fs-sm);
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 1.2rem;
}

.gf-hero-list {
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    font-size: 0.92rem;
    color: var(--text);
}

.gf-hero-list li {
    font-size: var(--fs-md);
    display: flex;
    align-items: flex-start;
}

.gf-hero-list li::before {
    content: "✓";
    color: #16a34a;
    margin-right: 0.5rem;
    font-weight: 700;
    margin-top: 1px;
}

.gf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.gf-metrics-grid {
    font-size: var(--fs-md);
    margin-top: 30px;
}


.gf-hero__visual {
    display: flex;
    justify-content: flex-end;
}


.upgraded-map-card {
    background: #fff;
    border-radius: 26px;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: var(--shadow-strong);
    max-width: 430px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: floatCard 8s ease-in-out infinite;
}


@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}


.gf-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
    font-size: 0.82rem;
}

.gf-map-title {
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gf-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}


.ui-map {
    height: 190px;
    border-radius: 20px;
    background: #020617;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}


.ui-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from 0deg,
        rgba(0, 255, 180, 0.15),
        transparent 45%
    );
    animation: radarRotate 4s linear infinite;
}

@keyframes radarRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.ui-map::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #38bdf8;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
    animation: moveTruck 6s ease-in-out infinite;
}

@keyframes moveTruck {
    0% {
        transform: translate(40px, 60px);
    }
    30% {
        transform: translate(130px, 20px);
    }
    60% {
        transform: translate(200px, 110px);
    }
    100% {
        transform: translate(40px, 60px);
    }
}



.gf-map-alerts {
    display: grid;
    gap: 0.6rem;
}

.upgraded-alert {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(12px);
    backdrop-filter: blur(6px);
}


.gf-pill--blue {
    background: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
}

.gf-pill--yellow {
    background: rgba(234, 179, 8, 0.18);
    color: #92400e;
}

.gf-pill--green {
    background: rgba(22, 163, 74, 0.18);
    color: #166534;
}


.upgraded-alert.active {
    animation: upgradedPop 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.upgraded-alert.active:nth-child(2) {
    animation-delay: 0.15s;
}

.upgraded-alert.active:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes upgradedPop {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.glow-card {
    position: relative;
}

.glow-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at top,
        rgba(37, 99, 235, 0.18),
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: -1;
    width: 300px;
}

.glow-card:hover::before {
    opacity: 1;
}



.gf-flow {
    padding: 3rem 0 3.5rem;
}

.gf-flow__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: flex-start;
}

.gf-flow-list {
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.6rem;
    font-size: 0.93rem;
}

.gf-flow-list li strong {
    margin-right: 0.25rem;
    color: var(--accent);
}


.gf-timeline {
    position: relative;
    padding-left: 1.2rem;
}

.gf-timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--accent),
        rgba(148, 163, 184, 0.3)
    );
}

.gf-timeline-item {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 1.4rem;
}

.gf-timeline-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    left: 0;
    top: 0.25rem;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.22);
}

.gf-timeline-content h3 {
    font-size: var(--fs-base);
    margin-bottom: 0.25rem;
}

.gf-timeline-content p {
    font-size: var(--fs-sm);
    color: var(--muted);
}



.bl-section {
    background: #0b1020;
    color: #e5e7eb;
   
}

.bl-section .section__title {
    color: #f9fafb;
}

.bl-section .section__subtitle {
    color: #cbd5f5;
}


.bl-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}


.bl-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    font-size: 0.92rem;
    margin-top: 1.2rem;
}

.bl-list li::before {
    content: "•";
    color: #60a5fa;
    margin-right: 0.4rem;
}


.bl-compare {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1.2rem;
    align-items: center;
}

.bl-card {
    background: rgba(15, 23, 42, 0.98);
    border-radius: 22px;
    padding: 1.4rem 1.5rem 1.7rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    font-size: 0.9rem;
}

.bl-card h3 {
    font-size: 1rem;
    margin-bottom: 0.9rem;
}

.bl-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    display: grid;
    gap: 0.4rem;
}

.bl-card ul li span:first-child {
    color: #9ca3af;
    margin-right: 0.25rem;
}


.bl-tag {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
}

.bl-tag--red {
    background: rgba(248, 113, 113, 0.18);
    color: #fecaca;
}

.bl-tag--green {
    background: rgba(34, 197, 94, 0.18);
    color: #bbf7d0;
}

.bl-warning {
    font-size: 0.82rem;
    color: #fecaca;
}

.bl-warning i {
    margin-right: 0.3rem;
}

.bl-note {
    font-size: 0.8rem;
    color: #bfdbfe;
    margin-top: 0.5rem;
}


.bl-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bl-arrow i {
    font-size: 1.6rem;
    color: #38bdf8;
}



.bl-pricing {
    background: #020617;
    color: #e5e7eb;
    padding: 3.2rem 0 3.6rem;
}

.bl-pricing-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    justify-content: space-between;
}

.bl-pricing-box {
    background: #020617;
    border-radius: 22px;
    padding: 1.7rem 1.9rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    min-width: 270px;
}

.bl-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.6rem;
}

.bl-price-main {
    font-size: 2rem;
    font-weight: 700;
}

.bl-price-sub {
    font-size: 0.85rem;
    color: #9ca3af;
}

.bl-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.85rem;
    display: grid;
    gap: 0.35rem;
}

.bl-pricing-list li::before {
    content: "✓";
    color: #22c55e;
    margin-right: 0.4rem;
}



.gf-value {
    padding: 3.3rem 0 3.4rem;
}

.gf-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
    margin-top: 2rem;
}

.gf-value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    font-size: 0.93rem;
}

.gf-value-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.4rem;
}

.gf-value-card p {
    color: var(--muted);
}

.gf-value-icon {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
}

.gf-value-icon i {
    color: var(--accent);
}





.alert-seq.active {
    animation: alertPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.alert-seq.active:nth-child(2) {
    animation-delay: 0.15s;
}

.alert-seq.active:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes alertPop {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}







@media (max-width: 1024px) {
  .section {
    padding: 4.2rem 0;
  }

 
  .gf-hero {
    padding-top: 6rem; 
    padding-bottom: 3rem;
  }

  .gf-hero__inner {
   
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
  }

  .gf-flow__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .bl-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

 
  .gf-metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .metric-value {
    font-size: 1.4rem;
  }

  .gf-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upgraded-cta {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}


@media (max-width: 960px) {
 
  .gf-hero__inner,
  .gf-flow__inner,
  .bl-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

 
  .gf-hero__visual {
    order: -1;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .upgraded-map-card {
    max-width: 100%;
    width: 460px;   
    margin-inline: auto;
  }

 
  .gf-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

 
  .bl-compare {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .bl-arrow {
    display: none;
  }

 
  .bl-pricing-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  
  .bl-pricing-box {
    width: 100%;
  }

 
  .upgraded-cta {
    grid-template-columns: minmax(0, 1fr);
    padding: 3rem 2rem;
    gap: 2.5rem;
    text-align: center;
  }

  .cta-orb {
    width: 260px;
    height: 260px;
    right: -50px;
    top: -50px;
    opacity: 0.4;
  }
  
 
  .cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cta-sub {
    margin-inline: auto;
  }
}


@media (max-width: 720px) {
  .gf-page .container {
    width: 92%;
  }

  .gf-hero {
    padding: 6rem 0 3rem;
  }

  .gf-hero__title {
    font-size: 2.1rem;
    text-align: center;
  }
  
  .gf-hero__subtitle {
    text-align: center;
    margin-inline: auto;
  }
  
  .gf-hero__actions {
    justify-content: center;
  }
  
  .gf-hero-list {
    max-width: 350px;
    margin-inline: auto;
    margin-bottom: 2rem;
  }

 
  .gf-metrics-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gf-value-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gf-flow {
    padding: 3.5rem 0 3.6rem;
  }

  .gf-value {
    padding: 3.6rem 0 3.6rem;
  }

  .gf-cta {
    padding: 3rem 0;
  }
}


@media (max-width: 520px) {
  .gf-hero__title {
    font-size: 1.9rem;
  }

  .upgraded-map-card {
    padding: 1.2rem;
    width: 100%;
  }

  .ui-map {
    height: 160px;
  }

  .gf-value-card {
    padding: 1.25rem 1.15rem;
  }

  .upgraded-cta {
    padding: 2.2rem 1.2rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-sub {
    font-size: 0.95rem;
  }
}
