:root {
    --primary-blue: #4b7cde;
    --light-blue: #6b9aef;
    --soft-blue: #8eb3f5;
    --pale-blue: #b8d4fc;
    --accent-blue: #2e5bb8;
    --deep-blue: #1e4a9f;
    
    --neutral-gray: #d5d5d5;
    
    --blue: #4b7cde;
    --bg: #f7f9ff;
    --bg-2: #ffffff;
    --ink: #121629;
    --muted: #5a6278;
    --line: #e6e9f2;
    --soft: rgba(75, 124, 222, .12);

    --radius: 14px;
    --wrap: 1180px;

    --fast: 220ms cubic-bezier(.22, .8, .36, 1);
    --slow: 700ms cubic-bezier(.22, .8, .36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    position: relative;
}

/* ========= utility ========= */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 28px)
}

.center {
    text-align: center
}

.grad {
    background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.muted {
    color: var(--muted)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
    transition: transform var(--fast), box-shadow var(--fast), background var(--fast), border-color var(--fast);
    white-space: nowrap;
    will-change: transform;
    border: none;
}

.btn:active {
    transform: translateY(1px) scale(.99)
}

.btn.solid {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    box-shadow: 0 10px 24px rgba(75, 124, 222, .22)
}

.btn.solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(75, 124, 222, .28)
}

.btn.ghost {
    background: #fff;
    border: 1px solid var(--line)
}

.btn.ghost:hover {
    border-color: color-mix(in srgb, var(--blue) 40%, var(--line))
}

.btn.outline {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink)
}

.btn.outline:hover {
    border-color: color-mix(in srgb, var(--primary-blue) 45%, var(--line))
}

/* ===== Glass Nav ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px
}

.brand {
    font-weight: 900;
    letter-spacing: .2px;
    font-size: 1.2rem
}

.brand .a,
.brand .i {
    background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.links {
    display: flex;
    gap: 16px;
    align-items: center
}

.link {
    color: var(--muted);
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--fast);
}

.link:hover {
    background: var(--soft);
    color: var(--ink)
}

/* ===== ANIMATED BACKGROUND (Blue Only) ===== */
.animated-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Mesh gradient overlay - Blue shades only */
.mesh-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(75, 124, 222, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 154, 239, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(46, 91, 184, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(142, 179, 245, 0.06) 0%, transparent 40%);
    opacity: 1;
}

/* Floating gradient orbs - Blue only */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(75, 124, 222, 0.25), transparent 70%);
    top: -200px;
    left: -100px;
    animation: float-orb-1 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 154, 239, 0.28), transparent 70%);
    top: 20%;
    right: -100px;
    animation: float-orb-2 25s ease-in-out infinite;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(142, 179, 245, 0.20), transparent 70%);
    bottom: -100px;
    left: 30%;
    animation: float-orb-3 30s ease-in-out infinite;
}

@keyframes float-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -80px) scale(1.1); }
    66% { transform: translate(-30px, 60px) scale(0.9); }
}

@keyframes float-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 70px) scale(0.95); }
    66% { transform: translate(40px, -50px) scale(1.05); }
}

@keyframes float-orb-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, -60px) scale(1.08); }
}

/* ===== Sections ===== */
.section {
    padding: clamp(64px, 12vw, 120px) 0;
    content-visibility: auto;
    contain-intrinsic-size: 900px;
    transition: transform var(--slow);
    position: relative;
}

.section.light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95))
}

.hero {
    padding-top: calc(100px + 6vh)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(24px, 5vw, 56px);
    align-items: center
}

.badge {
    display: inline-flex;
    gap: .6rem;
    align-items: center;
    padding: .5rem .9rem;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(75, 124, 222, .15), rgba(107, 154, 239, .12));
    color: #2b3353;
}

.hero h1 {
    font-size: clamp(30px, 5.6vw, 56px);
    line-height: 1.05;
    margin-top: 16px;
}

.lead {
    margin-top: 12px;
    color: var(--muted);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
}

.cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

.trust {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

/* Lottie Containers */
.vis {
    position: relative
}

.lottie-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1/1;
    margin: 0 auto;
    filter: drop-shadow(0 20px 60px rgba(75, 124, 222, .15));
}

.lottie-ai-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    margin: 0 auto;
}

/* ===== Problem cards ===== */
.grid-4 {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(12, 1fr);
    margin-top: 24px;
}

.card {
    grid-column: span 3;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 10px 36px rgba(75, 124, 222, .08);
    transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--blue) 30%, var(--line));
    box-shadow: 0 20px 50px rgba(75, 124, 222, .14);
}

.emoji {
    font-size: 26px;
    margin-bottom: 12px;
}

.card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.card p {
    color: var(--muted);
    line-height: 1.5;
}

.card.stat .big {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px
}

/* ===== Solution split ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    margin-top: 48px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 28px rgba(75, 124, 222, .08);
    transition: all var(--fast);
    backdrop-filter: blur(10px);
}

.li:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 36px rgba(75, 124, 222, .14);
}

.ico {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--soft);
    font-size: 22px
}

.li h3 {
    margin-bottom: 4px;
    font-size: 17px;
}

.li p {
    color: var(--muted);
    line-height: 1.5;
}

/* ===== Typography ===== */
.kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    margin-bottom: 12px;
}

.sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--muted);
    line-height: 1.5;
}

/* ===== Features ===== */
.grid-feature {
    margin-top: 24px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(12, 1fr);
}

.fcard {
    grid-column: span 4;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 10px 36px rgba(75, 124, 222, .08);
    transition: all var(--fast);
    backdrop-filter: blur(10px);
}

.fcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(75, 124, 222, .14);
}

.fcard.wide {
    grid-column: span 6
}

.fcard.featured {
    outline: 2px solid var(--primary-blue);
    outline-offset: -1px;
}

.ficon {
    font-size: 26px;
    margin-bottom: 12px;
}

.fcard h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.fcard p {
    color: var(--muted);
    line-height: 1.5;
}

.metric {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(75, 124, 222, .12), rgba(107, 154, 239, .10));
    font-weight: 800;
    font-size: 13px;
}

/* ===== Steps ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.step {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 10px 36px rgba(75, 124, 222, .08);
    transition: all var(--fast);
    backdrop-filter: blur(10px);
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(75, 124, 222, .16);
}

.num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 24px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: #fff;
    box-shadow: 0 8px 24px rgba(75, 124, 222, .30);
}

.step h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.step p {
    color: var(--muted);
    line-height: 1.5;
}

.mini {
    font-size: 22px;
    margin-top: 12px;
}

/* ===== Comparison table ===== */
.tablewrap {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: auto;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 36px rgba(75, 124, 222, .08);
    margin-top: 32px;
    backdrop-filter: blur(10px);
}

.table {
    width: 100%;
    border-collapse: collapse
}

.table thead th {
    font-size: .95rem;
    text-align: left;
    padding: 14px 16px;
    color: #253051;
    background: linear-gradient(135deg, rgba(75, 124, 222, .12), rgba(107, 154, 239, .10));
    border-bottom: 1px solid var(--line)
}

.table tbody td {
    padding: 14px 16px;
    color: var(--muted);
    border-bottom: 1px solid #f0f3fb
}

.table tbody tr:hover {
    background: #fbfcff
}

.table .best {
    background: rgba(75, 124, 222, .12);
    color: #1f2b4f;
    font-weight: 900
}

/* ===== CTA & Footer ===== */
.cta-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 48px 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(75, 124, 222, .14);
    backdrop-filter: blur(10px);
}

.cta-box .title {
    margin-bottom: 16px;
}

.cta-box .sub {
    margin-bottom: 24px;
}

.cta-box .note {
    color: var(--muted);
    margin-top: 12px;
    font-size: 14px;
}

.footer {
    margin-top: clamp(56px, 10vw, 100px);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.footgrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding: clamp(36px, 6vw, 54px) 0;
}

.footgrid>* {
    grid-column: span 3
}

.footgrid h4 {
    margin-bottom: 12px;
    font-size: 15px;
}

.footgrid a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin: .35rem 0;
    transition: color var(--fast);
}

.footgrid a:hover {
    color: #1f2b4f
}

.footbtm {
    border-top: 1px solid var(--line);
    color: var(--muted);
    padding: 16px 0;
    text-align: center;
    font-size: 14px;
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #f4f6ff;
    border: 1px solid var(--line);
    color: #2b3353;
    transition: all var(--fast);
    text-decoration: none;
    margin: 0;
}

.social a:hover {
    background: var(--soft);
    transform: translateY(-2px);
}

/* ===== Reveal animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity var(--slow), transform var(--slow);
    will-change: transform, opacity
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ===== Responsive ===== */
@media (max-width: 1060px) {
    .hero-grid {
        grid-template-columns: 1fr
    }
    
    .split {
        grid-template-columns: 1fr;
    }
    
    .lottie-ai-container {
        order: -1;
        max-width: 350px;
    }
}

@media (max-width: 900px) {
    .grid-4 .card {
        grid-column: span 6
    }

    .grid-feature .fcard {
        grid-column: span 6
    }

    .footgrid>* {
        grid-column: span 6
    }
    
    .links .link {
        display: none;
    }
}

@media (max-width: 680px) {
    .grid-4 .card {
        grid-column: span 12
    }

    .grid-feature .fcard,
    .grid-feature .fcard.wide {
        grid-column: span 12
    }

    .steps {
        grid-template-columns: 1fr
    }

    .footgrid>* {
        grid-column: span 12
    }
    
    .lottie-container {
        max-width: 100%;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important
    }
    
    .gradient-orb {
        animation: none !important;
    }
}

/* ========= SVG ANIMATIONS ========= */

/* Hero Animation - Resume Analysis */
.hero-animation {
  width: 100%;
  height: 100%;
  max-width: 550px;
  filter: drop-shadow(0 20px 60px rgba(75, 124, 222, 0.15));
}

.data-line {
  animation: shimmer 2.5s ease-in-out infinite;
}

.data-line:nth-child(1) { animation-delay: 0s; }
.data-line:nth-child(2) { animation-delay: 0.3s; }
.data-line:nth-child(3) { animation-delay: 0.6s; }
.data-line:nth-child(4) { animation-delay: 0.9s; }

@keyframes shimmer {
  0% { opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; }
}

.beam {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: beam-flow 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(75, 124, 222, 0.3));
}

.beam-1 { animation-delay: 0s; }
.beam-2 { animation-delay: 0.5s; }
.beam-3 { animation-delay: 1s; }

@keyframes beam-flow {
  0% { stroke-dashoffset: 20; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 20; }
}

.score-ring {
  animation: pulse-ring 2s ease-in-out infinite;
}

.score-ring-inner {
  animation: pulse-ring-inner 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% {
    r: 65px;
    opacity: 0.3;
  }
  50% {
    r: 70px;
    opacity: 0.1;
  }
}

@keyframes pulse-ring-inner {
  0%, 100% {
    r: 55px;
    opacity: 0.6;
  }
  50% {
    r: 52px;
    opacity: 0.3;
  }
}

.score-text {
  animation: score-bounce 2s ease-in-out infinite;
}

@keyframes score-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* AI Brain Animation */
.ai-brain-animation {
  width: 100%;
  height: 100%;
  max-width: 400px;
}

.ring {
  transform-origin: 150px 150px;
  will-change: transform;
}

.ring-1 {
  animation: rotate-cw 8s linear infinite;
}

.ring-2 {
  animation: rotate-ccw 12s linear infinite;
}

@keyframes rotate-cw {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-ccw {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.core-pulse {
  animation: pulse-core 1.5s ease-in-out infinite;
}

@keyframes pulse-core {
  0%, 100% {
    r: 10px;
    opacity: 1;
  }
  50% {
    r: 6px;
    opacity: 0.6;
  }
}

.dot {
  will-change: transform;
}

.dot-1 {
  animation: orbit-1 6s linear infinite;
  transform-origin: 150px 150px;
}

.dot-2 {
  animation: orbit-2 6s linear infinite;
  transform-origin: 150px 150px;
}

.dot-3 {
  animation: orbit-3 6s linear infinite;
  transform-origin: 150px 150px;
}

.dot-4 {
  animation: orbit-4 6s linear infinite;
  transform-origin: 150px 150px;
}

@keyframes orbit-1 {
  from { transform: rotate(0deg) translateY(-105px) rotate(0deg); }
  to { transform: rotate(360deg) translateY(-105px) rotate(-360deg); }
}

@keyframes orbit-2 {
  from { transform: rotate(90deg) translateY(-95px) rotate(-90deg); }
  to { transform: rotate(450deg) translateY(-95px) rotate(-450deg); }
}

@keyframes orbit-3 {
  from { transform: rotate(180deg) translateY(-105px) rotate(-180deg); }
  to { transform: rotate(540deg) translateY(-105px) rotate(-540deg); }
}

@keyframes orbit-4 {
  from { transform: rotate(270deg) translateY(-95px) rotate(-270deg); }
  to { transform: rotate(630deg) translateY(-95px) rotate(-630deg); }
}

.line {
  animation: line-glow 2s ease-in-out infinite;
  stroke-linecap: round;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.5s; }
.line-3 { animation-delay: 1s; }
.line-4 { animation-delay: 1.5s; }

@keyframes line-glow {
  0%, 100% { opacity: 0.4; stroke-width: 1.5px; }
  50% { opacity: 0.8; stroke-width: 2px; }
}

/* Animation Container */
.animation-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1060px) {
  .animation-container {
    max-width: 450px;
  }
}

@media (max-width: 680px) {
  .animation-container {
    max-width: 100%;
  }
  
  .hero-animation {
    max-width: 100%;
  }
  
  .ai-brain-animation {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .data-line,
  .beam,
  .score-ring,
  .score-ring-inner,
  .score-text,
  .ring,
  .core-pulse,
  .dot,
  .line {
    animation: none !important;
  }
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 3rem 2rem;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px; /* Reduced from 900px */
    margin: 0 auto;
    padding-bottom: 39.38%; /* 16:9 ratio for 700px width */
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(75, 124, 222, 0.15);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .video-section {
        padding: 2rem 1.5rem;
    }
    
    .video-container {
        max-width: 100%;
        padding-bottom: 20%;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 2rem 1rem;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.col.vis {
    min-width: 0;
}

.floating-signup-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #3e87fd, #4b7cde);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(62, 135, 253, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(62, 135, 253, 0.6);
    background: linear-gradient(135deg, #4b7cde, #3e87fd);
}

.floating-signup-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .floating-signup-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 14px;
    }
}
@media (max-width: 800px) {
  .nav .links .pricing-link {
    display: inline-block !important;
    background: #fff;
    color: #333;
    margin: 0 8px;
    padding: 8px 16px;
    border-radius: 16px;
    font-weight: 600;
  }
  .nav .links .link:not(.pricing-link) {
    display: none;
  }
}
