﻿/* =======================================================
   HASIB ERP ï¿½ Stylesheet v3 ï¿½ Clean Redesign
   ======================================================= */

/* -- 1. Variables --------------------------------------- */
:root {
    --brand:       #006FC9;
    --brand-deep:  #00528F;
    --brand-light: #057DE0;
    --brand-soft:  #E6F1FB;
    --accent:      #38BDF8;
    --text:        #0f172a;
    --muted:       #64748b;
    --line:        rgba(0, 111, 201, .12);
    --surface:     rgba(255, 255, 255, .92);
    --bg:          #F0F7FD;
    --radius:      0.75rem;
    --radius-lg:   1.25rem;
    --radius-xl:   1.75rem;
    --shadow-sm:   0 2px 10px rgba(0, 60, 120, .07);
    --shadow-md:   0 8px 28px rgba(0, 60, 120, .11);
    --shadow-lg:   0 24px 60px rgba(0, 60, 120, .16);
    --sun:         #f8b84e;
    --ink-soft:    #1f2937;
    --ease:        cubic-bezier(.4, 0, .2, 1);
    --t:           220ms;
}

/* -- 2. Font Faces -------------------------------------- */
@font-face {
    font-family: "Orange Avenue";
    src: url("../fonts/orange-avenue-demo.regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rustic Roadway";
    src: url("../fonts/RusticRoadway.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "White Scratches";
    src: url("../fonts/WhiteScratches-jEBX9.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* -- 3. Base -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Inter", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 8%, rgba(248,184,78,.2), transparent 22%),
        radial-gradient(circle at 92% 14%, rgba(5,125,224,.2), transparent 24%),
        linear-gradient(180deg, #F2F8FD 0%, #E8F1FA 45%, #F4F9FD 100%);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* -- 4. Keyframes --------------------------------------- */
@keyframes float-a {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    40%       { transform: translateY(-22px) rotate(4deg); }
    70%       { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes float-b {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    35%       { transform: translateY(-16px) rotate(-3deg); }
    65%       { transform: translateY(-6px) rotate(2deg); }
}

@keyframes blob-morph {
    0%, 100% { border-radius: 58% 42% 34% 66% / 62% 32% 68% 38%; }
    25%       { border-radius: 34% 66% 68% 32% / 50% 62% 38% 50%; }
    50%       { border-radius: 52% 48% 32% 68% / 44% 52% 58% 46%; }
    75%       { border-radius: 44% 56% 58% 42% / 66% 34% 52% 48%; }
}

@keyframes gradient-cycle {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer-sweep {
    0%   { transform: translateX(-160%) skewX(-14deg); }
    100% { transform: translateX(260%) skewX(-14deg); }
}

@keyframes slide-up-in {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,111,201,.35), 0 8px 24px rgba(0,111,201,.28); }
    50%       { box-shadow: 0 0 0 8px rgba(0,111,201,.0), 0 14px 34px rgba(0,111,201,.38); }
}

@keyframes pulse-play {
    0%, 100% { transform: scale(1); opacity: .7; }
    50%       { transform: scale(1.12); opacity: 1; }
}

@keyframes brush-paint-in {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 -3% 0 -3%); }
}

@keyframes brush-underline-in {
    from { background-size: 0% 0.42em; }
    to   { background-size: 100% 0.42em; }
}

@keyframes wiggle-callout {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50%       { transform: rotate(3deg) translateY(-4px); }
}

@keyframes arrow-draw-in {
    from { stroke-dashoffset: 240; }
    to   { stroke-dashoffset: 0; }
}

@keyframes sparkle-pop {
    0%, 100% { transform: scale(.85) rotate(-12deg); opacity: .45; }
    50%       { transform: scale(1.15) rotate(10deg); opacity: 1; }
}

@keyframes title-glow-in {
    from { opacity: 0; transform: translateY(28px) scale(.985); filter: blur(6px); }
    to   { opacity: 1; transform: translateY(0)    scale(1);     filter: blur(0); }
}

/* -- 5. Utilities --------------------------------------- */
.py-lg-6      { padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }
.section-space { padding: 5rem 0; }
.text-brand    { color: var(--brand) !important; }

/* -- 6. Navbar / Header --------------------------------- */
.site-header {
    background: rgba(240, 253, 250, .88);
    border-bottom: 1px solid rgba(0, 111, 201, .1);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 4px 22px rgba(0, 60, 120, .1);
}

.site-header .navbar         { padding-top: 0; padding-bottom: 0; }
.site-header .container.py-2 { padding-top: .25rem !important; padding-bottom: .25rem !important; }

.site-header .navbar-brand {
    margin: 0;
    height: 62px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.brand-logo { width: 62px; height: 62px; object-fit: contain; }

.site-header .brand-logo {
    width: 96px;
    height: 96px;
    transform: scale(1.55);
    transform-origin: left center;
}

.brand-name {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
}

.navbar-nav .nav-link {
    color: var(--muted);
    font-weight: 500;
    font-size: .92rem;
    padding: .5rem .8rem;
    position: relative;
    transition: color var(--t) var(--ease);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-light);
    transform: translateX(-50%);
    transition: width var(--t) var(--ease);
}

.navbar-nav .nav-link:hover          { color: var(--brand); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after  { width: 55%; }
.navbar-nav .nav-link.active         { color: var(--brand); }

/* -- 7. Buttons ----------------------------------------- */
.btn {
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 46px;
    padding: .65rem 1.45rem;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
                background var(--t) var(--ease), color var(--t) var(--ease);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
    width: 45%;
    transform: translateX(-160%) skewX(-14deg);
    pointer-events: none;
}
.btn:hover::before { animation: shimmer-sweep 480ms ease forwards; }

.btn i { font-size: .95em; }

.header-cta-group .btn,
.hero-cta-group .btn    { white-space: nowrap; }
.hero-cta-group .btn    { min-width: 200px; }

.btn-brand {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(0,111,201,.28);
}
.btn-brand:hover, .btn-brand:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,111,201,.4);
}

.btn-outline-brand {
    border: 1.5px solid rgba(0,111,201,.28);
    color: var(--brand-deep);
    background: rgba(255,255,255,.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.btn-outline-brand:hover, .btn-outline-brand:focus-visible {
    background: var(--brand-soft);
    border-color: var(--brand-light);
    color: var(--brand-deep);
    transform: translateY(-1px);
}

.cta-register {
    background: linear-gradient(135deg, #006FC9, #057DE0, #38BDF8);
    background-size: 200% 200%;
    animation: gradient-cycle 4s ease infinite;
    box-shadow: 0 10px 28px rgba(0,111,201,.32);
    color: #fff;
    border: none;
}
.cta-register:hover, .cta-register:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 38px rgba(0,111,201,.44);
    color: #fff;
}

.cta-trial {
    border: 1.5px solid rgba(5,125,224,.48);
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(224,248,248,.96));
    color: var(--brand-deep);
    box-shadow: 0 4px 16px rgba(0,111,201,.1);
}
.cta-trial:hover, .cta-trial:focus-visible {
    background: linear-gradient(135deg, rgba(240,253,250,1), rgba(209,246,245,1));
    border-color: rgba(0,111,201,.48);
    transform: translateY(-2px);
    color: var(--brand-deep);
}

.cta-signin {
    background: linear-gradient(135deg, #00528F, #006FC9);
    color: #fff;
    border: none;
    box-shadow: 0 8px 22px rgba(10,55,62,.28);
    animation: pulse-ring 3s ease-in-out infinite;
}
.cta-signin:hover, .cta-signin:focus-visible {
    transform: translateY(-2px);
    color: #fff;
}

.btn-whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; border: none; }
.btn-whatsapp:hover { color: #fff; transform: translateY(-1px); }

/* -- 8. Kicker Pills ------------------------------------ */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1rem;
    padding: .32rem .9rem;
    background: rgba(0,111,201,.08);
    border: 1px solid rgba(0,111,201,.16);
    border-radius: 999px;
}

.hero-section .kicker {
    font-family: "Orange Avenue", cursive;
    font-size: clamp(1.18rem, 2vw, 1.6rem);
    font-weight: 400;
    letter-spacing: .03em;
    text-transform: none;
    color: #084752;
    background: rgba(255,255,255,.88);
    border-color: rgba(8,71,82,.26);
    box-shadow: 0 8px 20px rgba(8,71,82,.12);
    text-shadow: 0 1px 0 rgba(255,255,255,.75);
    padding: .45rem 1.05rem;
}

/* -- 9. Hero Section ------------------------------------ */
.hero-section {
    position: relative;
    background: linear-gradient(132deg, #f8fdf9 0%, #ecf9f7 47%, #f4fff7 100%);
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,111,201,.13) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(248,184,78,.26), rgba(248,184,78,0));
    pointer-events: none;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    pointer-events: none;
    will-change: transform, border-radius;
}
.hero-blob-1 {
    width: 520px;
    height: 520px;
    top: -160px;
    left: -160px;
    background: radial-gradient(circle at 40% 40%, rgba(0,111,201,.2) 0%, rgba(5,125,224,.08) 55%, transparent 75%);
    animation: blob-morph 14s ease-in-out infinite, float-a 20s ease-in-out infinite;
}
.hero-blob-2 {
    width: 400px;
    height: 400px;
    top: 25%;
    right: -120px;
    background: radial-gradient(circle at 60% 40%, rgba(56,189,248,.18) 0%, rgba(0,111,201,.07) 55%, transparent 75%);
    animation: blob-morph 18s ease-in-out infinite reverse, float-b 24s ease-in-out infinite 4s;
}
.hero-blob-3 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    left: 36%;
    background: radial-gradient(circle at 50% 50%, rgba(5,125,224,.16) 0%, transparent 68%);
    animation: blob-morph 11s ease-in-out infinite 3s, float-a 17s ease-in-out infinite 7s;
}

.hero-section .container-fluid { position: relative; z-index: 1; }

.hero-anim-1 { animation: slide-up-in 700ms var(--ease)       both; }
.hero-anim-2 { animation: slide-up-in 700ms var(--ease)  80ms both; }
.hero-anim-3 { animation: slide-up-in 700ms var(--ease) 180ms both; }
.hero-anim-4 { animation: slide-up-in 700ms var(--ease) 280ms both; }
.hero-anim-5 { animation: slide-up-in 700ms var(--ease) 400ms both; }
.hero-anim-6 { animation: slide-up-in 700ms var(--ease) 520ms both; }

.hero-title {
    font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5.2vw, 4.7rem);
    letter-spacing: -.025em;
    line-height: 1.12;
    color: #0d1424;
    max-width: 17ch;
}

.hero-anim-2 { animation: title-glow-in 800ms cubic-bezier(.5,0,.2,1) 80ms both; }

/* -- Brush highlight (yellow paint behind word) ---------- */
.brush-highlight {
    position: relative;
    display: inline-block;
    padding: 0 .12em;
    z-index: 0;
    white-space: nowrap;
}
.brush-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 16%;
    bottom: 2%;
    background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 60' preserveAspectRatio='none'%3E%3Cpath d='M3,32 C40,12 90,40 150,22 C220,8 260,42 297,28 L295,46 C250,64 200,38 140,52 C80,66 40,46 5,55 Z' fill='%23fbbf24'/%3E%3C/svg%3E") center/100% 100% no-repeat;
    z-index: -1;
    transform: rotate(-1.4deg);
    clip-path: inset(0 100% 0 0);
    animation: brush-paint-in 880ms cubic-bezier(.65,0,.35,1) 720ms forwards;
}
.brush-text { position: relative; z-index: 1; }

/* -- Brush underline (blue squiggle under word) ---------- */
.brush-underline {
    position: relative;
    display: inline-block;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 18' preserveAspectRatio='none'%3E%3Cpath d='M4,11 Q56,3 110,10 T216,7' stroke='%2338bdf8' stroke-width='5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
    background-position: 0 100%;
    background-size: 0% 0.42em;
    background-repeat: no-repeat;
    padding-bottom: 0.16em;
    animation: brush-underline-in 760ms cubic-bezier(.65,0,.35,1) 1250ms forwards;
}

/* -- Hand-drawn callout sticker -------------------------- */
.hero-cta-group { position: relative; }

.hero-callout {
    position: absolute;
    top: -78px;
    right: 0;
    pointer-events: none;
    z-index: 5;
    width: 215px;
    height: 150px;
    animation: slide-up-in 700ms var(--ease) 1100ms both,
               wiggle-callout 4s ease-in-out 1900ms infinite;
}

.hero-callout-note.price-tag {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .12rem;
    padding: .55rem 1rem .6rem;
    min-width: 200px;
    color: #7c2d12;
    background:
        radial-gradient(circle at 12px 50%, transparent 5px, transparent 5.5px, rgba(255,255,255,0) 6px),
        linear-gradient(135deg, #fff8e1 0%, #fde68a 55%, #fbbf24 100%);
    border: 1.5px solid rgba(180,83,9,.55);
    border-radius: .85rem;
    box-shadow:
        0 14px 28px rgba(180,83,9,.28),
        0 2px 0 rgba(255,255,255,.65) inset,
        0 -2px 0 rgba(180,83,9,.08) inset;
    transform: rotate(5deg);
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

/* Punched holes on the left edge so it reads like a price tag */
.hero-callout-note.price-tag::before,
.hero-callout-note.price-tag::after {
    content: "";
    position: absolute;
    left: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff7e6;
    box-shadow:
        0 0 0 1.5px rgba(180,83,9,.55) inset,
        0 1px 2px rgba(180,83,9,.18);
}
.hero-callout-note.price-tag::before { top: 10px; }
.hero-callout-note.price-tag::after  { bottom: 10px; }

.price-tag-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #b45309;
}

.price-tag-amount {
    display: inline-flex;
    align-items: baseline;
    gap: .3rem;
    margin: .05rem 0 .1rem;
}

.price-tag-currency {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .04em;
    color: #92400e;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(180,83,9,.3);
    padding: .12rem .38rem;
    border-radius: .35rem;
    transform: translateY(-1px);
}

.price-tag-number {
    font-family: "Orange Avenue", "Rustic Roadway", cursive;
    font-size: 2.05rem;
    font-weight: 400;
    line-height: 1;
    color: #7c2d12;
    text-shadow: 0 1px 0 rgba(255,255,255,.55);
    letter-spacing: -.005em;
}

.price-tag-zeros {
    font-size: .55em;
    top: -.7em;
    margin-left: .04em;
    letter-spacing: .04em;
    font-weight: 400;
    position: relative;
}

.price-tag-period {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .02em;
    color: #92400e;
    opacity: .92;
}

.hero-callout-arrow {
    position: absolute;
    bottom: -20px;
    left: -8px;
    width: 78px;
    height: 78px;
    transform: rotate(8deg);
}

.hero-callout-arrow path {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: arrow-draw-in 950ms cubic-bezier(.7,0,.3,1) 1500ms forwards;
}
.hero-callout-arrow .callout-arrow-head {
    animation-delay: 2200ms;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

/* -- Floating sparkles ----------------------------------- */
.hero-sparkle {
    position: absolute;
    color: #fbbf24;
    pointer-events: none;
    font-size: 1.4rem;
    z-index: 1;
    text-shadow: 0 4px 14px rgba(251,191,36,.55);
    animation: sparkle-pop 3.4s ease-in-out infinite;
}
.hero-sparkle-1 { top: 14%;    left: 42%;  animation-delay: 0s;    color: #fbbf24; }
.hero-sparkle-2 { top: 56%;    right: 6%;  animation-delay: 1.1s;  color: #38bdf8; font-size: 1.05rem; }
.hero-sparkle-3 { bottom: 16%; left: 18%;  animation-delay: 2.2s;  color: #057DE0; font-size: 1.2rem; }

.hero-script {
    font-family: "Orange Avenue", cursive;
    display: inline-block;
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
    color: #0b4f59;
    letter-spacing: .025em;
    line-height: 1.15;
    opacity: 1;
    text-shadow: 0 1px 0 rgba(255,255,255,.8), 0 7px 18px rgba(0,111,201,.12);
    margin-top: .1rem;
}

.hero-lead {
    color: var(--ink-soft);
    font-size: 1.05rem;
    max-width: 62ch;
}

.hero-proof {
    color: var(--brand-deep);
    font-weight: 600;
}

.hero-highlight,
.hero-proof {
    position: relative;
    display: inline;
}

/* -- 10. Badge Soft ------------------------------------- */
.badge-soft {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .38rem .82rem;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.76);
    color: var(--brand-deep);
    font-size: .83rem;
    font-weight: 500;
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.badge-soft:hover {
    background: var(--brand-soft);
    border-color: rgba(0,111,201,.28);
    transform: translateY(-1px);
}

/* -- 11. Stat Cards ------------------------------------- */
.stat-card {
    border: 1px solid var(--line);
    background: var(--surface);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.75rem 1rem;
    text-align: center;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,111,201,.22);
}
.stat-card h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--brand);
    letter-spacing: -.03em;
    line-height: 1;
}

/* -- 12. Glass / Generic Cards -------------------------- */
.glass-card,
.feature-card,
.step-card,
.pricing-card,
.video-demo-card,
.cta-mini,
.testimonial {
    border: 1px solid rgba(255,255,255,.75);
    background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(245,252,251,.92) 100%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}

.glass-card:hover,
.feature-card:hover,
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,111,201,.22);
}

.glass-card,
.feature-card,
.step-card,
.cta-mini,
.testimonial {
    padding: 1.5rem;
}

/* -- 13. Section Head ----------------------------------- */
.section-head {
    max-width: 760px;
    margin-bottom: 2.25rem;
}
.section-head h2,
h2.fw-bold {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--text);
    line-height: 1.18;
}

.section-head p {
    font-size: 1.02rem;
}

/* -- 14. About Section ---------------------------------- */
#about {
    position: relative;
}

#about::before {
    content: "";
    position: absolute;
    inset: 2.2rem 1rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at 8% 16%, rgba(248,184,78,.18), transparent 26%),
        radial-gradient(circle at 88% 84%, rgba(5,125,224,.15), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.6), rgba(238,251,248,.65));
    border: 1px solid rgba(0,111,201,.1);
    pointer-events: none;
}

#about .container {
    position: relative;
    z-index: 1;
}

#about h2 {
    max-width: 20ch;
}

#about .col-lg-6:first-child .text-muted {
    color: #435669 !important;
    font-size: 1rem;
}

#about .glass-card {
    border: 1px solid rgba(255,255,255,.92);
    background: linear-gradient(168deg, rgba(255,255,255,.98) 0%, rgba(243,252,250,.96) 100%);
    box-shadow: 0 18px 44px rgba(0,60,120,.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: 430px;
}

#about .glass-card h3 {
    font-weight: 800;
    color: var(--brand-deep);
    margin-bottom: .9rem;
}

#about .glass-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .6rem;
    overflow-y: auto;
    padding-right: .25rem;
}

#about .glass-card ul::-webkit-scrollbar {
    width: 7px;
}

#about .glass-card ul::-webkit-scrollbar-thumb {
    background: rgba(0,111,201,.26);
    border-radius: 999px;
}

#about .glass-card ul::-webkit-scrollbar-track {
    background: rgba(0,111,201,.08);
    border-radius: 999px;
}

#about .glass-card ul li {
    position: relative;
    border-radius: .85rem;
    padding: .72rem .8rem .72rem .95rem;
    border: 1px solid rgba(0,111,201,.13);
    background: rgba(255,255,255,.9);
    line-height: 1.5;
}

#about .glass-card ul li strong {
    color: #173b45;
}

#about .col-12:first-child .glass-card ul li {
    border-left: 4px solid rgba(239,68,68,.38);
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,242,242,.86));
}

#about .col-12 .glass-card ul li {
    border-left: 4px solid rgba(56,189,248,.42);
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(238,253,245,.9));
}

#about .glass-card:hover {
    transform: translateY(-4px);
}

/* -- 15. Feature Tabs ----------------------------------- */
.feature-search-bar {
    border: 1px solid rgba(255,255,255,.8);
    background: rgba(255,255,255,.88);
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.ai-assistant-card {
    position: relative;
    border: 1px solid rgba(255,255,255,.84);
    background: linear-gradient(140deg, rgba(255,255,255,.98) 0%, rgba(226,247,244,.96) 52%, rgba(255,247,233,.9) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 56px rgba(0,111,201,.18);
    padding: 1.45rem;
    margin-bottom: 1.1rem;
    overflow: hidden;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.ai-assistant-card::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(245,158,11,.26), rgba(245,158,11,0));
    pointer-events: none;
}

.ai-assistant-card::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(5,125,224,.24), rgba(5,125,224,0));
    pointer-events: none;
}

.ai-assistant-card > * {
    position: relative;
    z-index: 1;
}

.ai-strategy-ribbon {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    border-radius: 999px;
    background: rgba(15,114,128,.1);
    border: 1px solid rgba(0,111,201,.25);
    padding: .4rem .75rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--brand-deep);
}

.ai-assistant-card .soon-pill {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    margin-right: 0;
}

.ai-assistant-card h3 {
    color: var(--brand-deep);
    font-weight: 800;
    letter-spacing: -.015em;
}

.ai-assistant-card h4 {
    color: var(--brand);
    font-weight: 700;
}

.ai-strategy-stack {
    border-radius: 1rem;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(0,111,201,.16);
    padding: .9rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.ai-strategy-item {
    border-radius: .85rem;
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(236,248,247,.95));
    border: 1px solid rgba(0,111,201,.12);
    padding: .72rem .78rem;
}

.ai-strategy-item p {
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.45;
}

.ai-query-card {
    border-radius: 1rem;
    border: 1px solid rgba(0,111,201,.16);
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,251,249,.94));
    padding: .9rem;
    box-shadow: 0 12px 24px rgba(0,111,201,.08);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}

.ai-query-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0,111,201,.28);
    box-shadow: 0 18px 30px rgba(0,111,201,.12);
}

.ai-query-list {
    margin: 0;
    padding-left: 1.05rem;
    color: #425a67;
    font-size: .88rem;
    line-height: 1.55;
}

.ai-query-list li + li {
    margin-top: .32rem;
}
.feature-search-bar .input-group-text {
    border-color: rgba(0,111,201,.18);
    background: rgba(0,111,201,.07);
    color: var(--brand);
}
.feature-search-feedback {
    min-height: 1.2rem;
    margin-top: .5rem;
    font-size: .87rem;
    color: var(--muted);
}

.feature-tabs-wrap { align-items: start; }

.feature-tabs-nav {
    gap: .4rem;
    position: sticky;
    top: 90px;
}
.feature-tabs-nav .nav-link {
    border: 1px solid rgba(255,255,255,.75);
    border-radius: var(--radius);
    background: rgba(255,255,255,.88);
    color: var(--brand-deep);
    font-weight: 600;
    font-size: .88rem;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all var(--t) var(--ease);
}
.feature-tabs-nav .nav-link:hover {
    background: var(--brand-soft);
    border-color: rgba(0,111,201,.26);
    transform: translateX(3px);
}
.feature-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(0,111,201,.28);
}
.feature-tabs-nav .nav-link.feature-tab-disabled {
    opacity: .38;
    pointer-events: none;
}

.feature-panel {
    border: 1px solid rgba(255,255,255,.8);
    background: var(--surface);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.75rem;
}
.feature-panel h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    color: var(--brand-deep);
    margin-bottom: 1rem;
}
.feature-detail-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
}
.feature-detail-list li + li { margin-top: .7rem; }

.soon-pill {
    display: inline-block;
    padding: .1rem .5rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    margin-right: .4rem;
}

/* -- 16. Screenshots ------------------------------------ */
.shot-card {
    display: block;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255,255,255,.75) !important;
    background: var(--surface) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: .65rem;
    cursor: pointer;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.shot-card:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,111,201,.28) !important;
}
.shot-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: .75rem;
    margin-bottom: .55rem;
    display: block;
}
.shot-card span {
    font-weight: 600;
    font-size: .87rem;
    color: var(--text);
    padding: 0 .2rem;
}

/* -- 17. Video Demos ------------------------------------ */
.video-demo-card { padding: 1rem; }

.video-topbar {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: 0 .2rem .75rem;
}
.video-topbar span            { width: 10px; height: 10px; border-radius: 50%; }
.video-topbar span:nth-child(1) { background: #ff6b6b; }
.video-topbar span:nth-child(2) { background: #ffd76a; }
.video-topbar span:nth-child(3) { background: #51cf66; }

.demo-video {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #002B50, #006FC9, #057DE0);
}
@media (min-width: 992px) { .demo-video { aspect-ratio: 21/9; } }

.demo-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 280ms ease;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: .32rem .65rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,.48);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.play-indicator {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0,0,0,.46);
    animation: pulse-play 2s ease-in-out infinite;
}

.video-caption { padding: .9rem .3rem .25rem; }

/* -- 18. How It Works ----------------------------------- */
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-card span {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    margin-bottom: .8rem;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    box-shadow: 0 6px 20px rgba(0,111,201,.28);
}

/* -- 19. Pricing ---------------------------------------- */
.pricing-card { position: relative; padding: 2rem 1.75rem; }
.pricing-card {
    border-top: 4px solid transparent;
}
.pricing-card:hover {
    border-top-color: rgba(0,111,201,.55);
}
.pricing-featured {
    border-color: rgba(0,111,201,.32) !important;
    box-shadow: 0 28px 64px rgba(0,111,201,.26) !important;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(223,246,243,.98)) !important;
    border-top-color: rgba(0,111,201,.7) !important;
}
.pricing-featured:hover { transform: translateY(-8px) !important; }

.best-value {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    padding: .28rem .65rem;
    border-radius: 999px;
}

.price-line { color: var(--muted); margin-bottom: 1.25rem; font-size: .95rem; }

.pricing-featured .price-line {
    color: var(--brand-deep);
    font-weight: 700;
    font-size: 1.05rem;
}

/* -- 20. Forms ------------------------------------------ */
.form-control, .form-select {
    border-radius: var(--radius);
    border: 1.5px solid rgba(0,111,201,.14);
    font-size: .95rem;
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.form-control:focus, .form-select:focus {
    border-color: var(--brand-light);
    box-shadow: none;
}

.form-control,
.form-select {
    box-shadow: none;
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--text); }
.form-status { min-height: 1.5rem; font-size: .9rem; }
.form-status.is-success { color: #059669; }
.form-status.is-error   { color: #dc2626; }

/* -- 21. Testimonials ----------------------------------- */
.testimonial {
    border-left: 3px solid var(--brand-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: rgba(224,247,246,.7);
    box-shadow: var(--shadow-sm);
}

/* -- 22. Feature Icon ----------------------------------- */
.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: .75rem;
    font-size: 1.25rem;
    color: var(--brand);
    background: linear-gradient(135deg, rgba(0,111,201,.12), rgba(5,125,224,.12));
}

/* -- 23. CTA Mini --------------------------------------- */
.cta-mini { text-align: center; }

/* -- 24. Footer ----------------------------------------- */
.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(240,253,250,.6);
}
.footer-copy { color: var(--muted); font-weight: 500; font-size: .87rem; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--brand); }

/* -- 25. WhatsApp Float --------------------------------- */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(22,163,74,.38);
    z-index: 1030;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 14px 34px rgba(22,163,74,.48);
}

/* -- 26. Modal ------------------------------------------ */
.modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: 0 36px 88px rgba(0,0,0,.2);
}

/* -- 27. Scroll Reveal ---------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}
.reveal-delay  { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal-delay-3 { transition-delay: 360ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -- 28. Responsive ------------------------------------- */
@media (max-width: 991.98px) {
    .feature-tabs-nav           { position: static; top: auto; }
    .site-header .brand-logo    { width: 86px; height: 86px; transform: scale(1.42); }
    .hero-cta-group .btn        { min-width: 0; width: 100%; }
    .site-header .navbar-brand  { height: 56px; }
    .brand-logo                 { width: 56px; height: 56px; }
    .section-space              { padding: 3.5rem 0; }
    .py-lg-6                    { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
    .hero-section               { min-height: unset; }
    .hero-title                 { color: #0d1424; }
    .hero-callout               { display: none !important; }
    .ai-assistant-card          { padding: 1.1rem; }
    #about::before              { inset: .8rem .4rem; border-radius: 1.3rem; }
    #about h2                   { max-width: none; }
    #about .glass-card          { max-height: none; }
    #about .glass-card ul       { overflow: visible; padding-right: 0; }
}

@media (max-width: 575.98px) {
    .site-header .brand-logo    { width: 72px; height: 72px; transform: scale(1.3); }
    .hero-title                 { font-size: 2.1rem; }
    .hero-section .kicker       { font-size: 1.05rem; }
    .hero-script                { font-size: 1.45rem; }
    .site-header .navbar-brand  { height: 50px; }
    .brand-logo                 { width: 50px; height: 50px; }
    .whatsapp-float             { width: 48px; height: 48px; right: .75rem; bottom: .75rem; }
    .hero-sparkle               { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .hero-title { color: #0d1424; }
    .brush-highlight::before { clip-path: inset(0 -3% 0 -3%); }
    .brush-underline { background-size: 100% 0.42em; }
    .hero-callout-arrow path { stroke-dashoffset: 0; }
}

/* =======================================================
   v4 marketing UI upgrade
   ======================================================= */

/* Hero result card -------------------------------------- */
.hero-result-card { position: relative; overflow: hidden; }
.hero-result-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(248,184,78,.22), transparent 70%);
    pointer-events: none;
}

.hero-stat {
    border-radius: var(--radius);
    padding: .85rem .9rem;
    background: linear-gradient(135deg, rgba(0,111,201,.06), rgba(5,125,224,.04));
    border: 1px solid rgba(0,111,201,.12);
}
.hero-stat-number {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    color: var(--brand-deep);
    letter-spacing: -.02em;
    line-height: 1;
}
.hero-stat-number span {
    font-size: .55em;
    font-weight: 700;
    color: var(--brand);
    margin-left: .15em;
}

.hero-perk-list { display: grid; gap: .55rem; }
.hero-perk-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: #334155;
    font-size: .92rem;
    line-height: 1.4;
}
.perk-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: #fff;
    font-size: .82rem;
    box-shadow: 0 4px 10px rgba(0,111,201,.28);
}

/* Stat icon ---------------------------------------------- */
.stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto .6rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: var(--brand);
    background: linear-gradient(135deg, rgba(0,111,201,.12), rgba(5,125,224,.16));
    border: 1px solid rgba(0,111,201,.16);
}

/* Industries strip -------------------------------------- */
.industries-strip {
    background: linear-gradient(90deg, rgba(0,111,201,.06), rgba(5,125,224,.04), rgba(248,184,78,.06));
    border-top: 1px solid rgba(0,111,201,.1);
    border-bottom: 1px solid rgba(0,111,201,.1);
}
.industries-label {
    text-align: center;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-deep);
    margin-bottom: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.industries-label i { color: var(--sun); }

.industries-scroller {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.industries-track {
    display: flex;
    gap: 2.2rem;
    width: max-content;
    animation: industries-marquee 38s linear infinite;
}
.industries-track span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    color: var(--brand-deep);
    font-size: .98rem;
    padding: .35rem .65rem;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(0,111,201,.14);
    border-radius: 999px;
    white-space: nowrap;
}
.industries-track span i { color: var(--brand); }

@keyframes industries-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* About pillars ----------------------------------------- */
.about-pillar {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,111,201,.18);
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand-deep);
    box-shadow: 0 2px 6px rgba(0,111,201,.08);
}
.about-pillar i { color: var(--brand); }

.about-solutions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .6rem;
}
.about-solutions ul li {
    position: relative;
    padding: .65rem .8rem .65rem 1rem;
    border-radius: .85rem;
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(238,253,245,.9));
    border-left: 4px solid var(--brand-light);
    font-size: .92rem;
    line-height: 1.55;
}

/* Steps timeline ---------------------------------------- */
.steps-timeline { position: relative; }
.steps-timeline::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: repeating-linear-gradient(90deg, rgba(0,111,201,.45) 0, rgba(0,111,201,.45) 8px, transparent 8px, transparent 16px);
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
}
@media (max-width: 1199.98px) {
    .steps-timeline::before { display: none; }
}

.step-card {
    position: relative;
    z-index: 1;
    padding-top: 2.4rem !important;
}
.step-card .step-number {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.step-icon {
    display: block;
    margin: .35rem auto .9rem;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    line-height: 56px;
    text-align: center;
    font-size: 1.65rem;
    color: var(--brand);
    background: linear-gradient(135deg, rgba(0,111,201,.12), rgba(5,125,224,.12));
    border: 1px solid rgba(0,111,201,.14);
}

/* Benefit grid ------------------------------------------ */
.benefit-item {
    height: 100%;
    padding: 1.1rem 1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,.85), rgba(236,250,247,.82));
    border: 1px solid rgba(0,111,201,.12);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,111,201,.14);
    border-color: rgba(0,111,201,.28);
}
.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: .65rem;
    font-size: 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    box-shadow: 0 6px 16px rgba(0,111,201,.28);
}
.benefit-item h3 { color: var(--brand-deep); margin-bottom: .35rem; }

/* Testimonials ------------------------------------------ */
.testimonial {
    position: relative;
    padding: 1.1rem 1.1rem 1rem 3.6rem !important;
    border-radius: var(--radius) !important;
    background: rgba(255,255,255,.85) !important;
    border-left: 3px solid var(--brand-light);
}
.testimonial-avatar {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: .82rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-deep), var(--brand-light));
    box-shadow: 0 5px 12px rgba(0,111,201,.3);
}
.testimonial-quote {
    position: absolute;
    top: -8px;
    left: 52px;
    font-size: 2.4rem;
    color: rgba(5,125,224,.35);
    line-height: 1;
}
.testimonial-meta strong { color: var(--brand-deep); font-size: .92rem; }

/* Pricing upgrades -------------------------------------- */
.pricing-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(0,111,201,.1);
    border: 1px solid rgba(0,111,201,.2);
    padding: .25rem .65rem;
    border-radius: 999px;
    margin-bottom: .85rem;
}
.pricing-tag-featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    border-color: rgba(245,158,11,.3);
}

.pricing-card .price-line {
    font-size: 1.1rem;
    color: var(--brand-deep);
    margin-bottom: .6rem;
}
.price-amount {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--text);
    letter-spacing: -.02em;
}
.pricing-featured .price-amount {
    background: linear-gradient(135deg, var(--brand-deep), var(--brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-period {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 500;
    margin-left: .35rem;
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .55rem;
}
.pricing-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: #334155;
    font-size: .94rem;
    line-height: 1.45;
}
.pricing-feature-list li i { color: #38BDF8; font-size: 1.05rem; flex-shrink: 0; margin-top: 2px; }

.pricing-guarantee {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 500;
}
.pricing-guarantee i { color: var(--brand); margin-right: .25rem; }

/* Contact perks ----------------------------------------- */
.contact-perks {
    display: grid;
    gap: .55rem;
}
.contact-perks li {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--brand-deep);
    font-weight: 500;
    font-size: .95rem;
}
.contact-perks i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0,111,201,.1);
    color: var(--brand);
    font-size: .9rem;
}

/* Final CTA banner -------------------------------------- */
.final-cta-section { padding: 0 0 4.5rem; }
.final-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 3rem 2.25rem;
    color: #fff;
    background:
        radial-gradient(circle at 12% 20%, rgba(248,184,78,.32), transparent 45%),
        radial-gradient(circle at 88% 80%, rgba(5,125,224,.4), transparent 50%),
        linear-gradient(135deg, #002B50 0%, #006FC9 55%, #057DE0 100%);
    box-shadow: 0 30px 70px rgba(0,60,120,.32);
}
.final-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .4;
    pointer-events: none;
}
.final-cta-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
}
.final-cta-blob-1 {
    width: 240px; height: 240px;
    top: -80px; left: -60px;
    background: radial-gradient(circle, rgba(248,184,78,.45), transparent 70%);
    animation: float-a 22s ease-in-out infinite;
}
.final-cta-blob-2 {
    width: 280px; height: 280px;
    bottom: -100px; right: -80px;
    background: radial-gradient(circle, rgba(5,125,224,.6), transparent 70%);
    animation: float-b 26s ease-in-out infinite 4s;
}

.final-cta-kicker {
    background: rgba(255,255,255,.18) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,.25) !important;
    margin-bottom: .85rem;
}
.final-cta-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    letter-spacing: -.02em;
    line-height: 1.2;
    color: #fff;
}
.final-cta-lead { color: rgba(255,255,255,.92); font-size: 1.02rem; max-width: 56ch; }
.final-cta-lead strong { color: #fde68a; }

.final-cta-primary {
    background: #fff;
    color: var(--brand-deep) !important;
    border: none;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.final-cta-primary:hover { color: var(--brand-deep) !important; transform: translateY(-2px); }

.final-cta-section .btn-outline-light {
    border: 1.5px solid rgba(255,255,255,.55);
    color: #fff;
    background: rgba(255,255,255,.06);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.final-cta-section .btn-outline-light:hover {
    background: rgba(255,255,255,.18);
    color: #fff;
}

/* Footer redesign --------------------------------------- */
.site-footer {
    background:
        radial-gradient(circle at 5% 0%, rgba(248,184,78,.08), transparent 30%),
        radial-gradient(circle at 95% 100%, rgba(5,125,224,.1), transparent 30%),
        linear-gradient(180deg, rgba(240,253,250,.7), rgba(255,255,255,.92));
    border-top: 1px solid var(--line);
}
.footer-logo { width: 96px; height: auto; }
.footer-tagline { color: var(--muted); font-size: .94rem; max-width: 36ch; line-height: 1.55; }
.footer-heading {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-deep);
    margin-bottom: .9rem;
}
.footer-list { display: grid; gap: .45rem; margin: 0; }
.footer-list a {
    color: var(--muted);
    font-weight: 500;
    font-size: .92rem;
    transition: color var(--t) var(--ease), padding-left var(--t) var(--ease);
}
.footer-list a:hover { color: var(--brand); padding-left: .25rem; }
.footer-list-note { color: var(--muted); font-size: .9rem; margin-bottom: .9rem; }

.footer-socials { display: flex; gap: .55rem; margin-top: 1rem; }
.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0,111,201,.1);
    color: var(--brand) !important;
    font-size: 1rem;
    transition: transform var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
}
.footer-socials a:hover {
    background: var(--brand);
    color: #fff !important;
    transform: translateY(-2px);
}

.footer-divider {
    margin: 2rem 0 1.2rem;
    border-color: rgba(0,111,201,.18);
    opacity: 1;
}

/* Footer-scoped button colors (defeat .site-footer a override) */
.site-footer .btn-brand,
.site-footer .btn-brand:hover,
.site-footer .btn-brand:focus-visible {
    color: #fff !important;
}
.site-footer .btn-outline-brand,
.site-footer .btn-outline-brand:hover,
.site-footer .btn-outline-brand:focus-visible {
    color: var(--brand-deep) !important;
}
.footer-copy { color: var(--muted); font-size: .85rem; margin-bottom: 0; }

@media (max-width: 991.98px) {
    .final-cta-card { padding: 2rem 1.4rem; }
    .final-cta-section .text-lg-end { text-align: left !important; }
    .testimonial { padding-left: 3.4rem !important; }
    .industries-track { gap: 1.5rem; animation-duration: 30s; }
    .steps-timeline::before { display: none; }
}
