/* ==========================================================================
   GLOBAL
   ========================================================================== */
html,
body {
    scroll-behavior: smooth;
}

/* ==========================================================================
   FOOTER / HEADER LINK HOVER EFFECTS (Sunrise Theme)
   Used for .footer-link in header nav + footer
   ========================================================================== */

.footer-link {
    position: relative;
    padding-left: 1.35rem;
    display: inline-block;
    transition: all 0.35s ease;
}

.footer-link .arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    opacity: 0;
    font-weight: 500;
    color: #F5D3A8; /* warm sunrise gold */
    transition: all 0.35s ease;
}

.footer-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F5D3A8, #7C8CF8);
    box-shadow: 0 0 6px rgba(245, 211, 168, 0.45);
    transform: translateX(-50%);
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
    color: #0E5F63;
    transform: translateY(-1px);
}

.footer-link:hover .arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    color: #0E5F63;
    text-shadow: 0 0 6px rgba(245, 211, 168, 0.55);
}

.footer-link:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(245, 211, 168, 0.6);
}

/* ==========================================================================
   FLOATING ELEMENTS (Hero Phone, Tags)
   ========================================================================== */

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%      { transform: translateY(-10px); opacity: 1; }
}

.animate-float {
    animation: floatSoft 4s ease-in-out infinite;
}

.floating-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #ffffff;
    font-size: 14px;
    animation: floatSoft 5s ease-in-out infinite;
}

/* ==========================================================================
   HERO PARTICLES (.particle) – Small soft dots
   ========================================================================== */

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    filter: blur(1px);
    animation: floatSoft 6s ease-in-out infinite;
}

/* ==========================================================================
   CANDLESTICK FLOATERS (Stock Theme)
   ========================================================================== */

.candle {
    position: absolute;
    bottom: 10%;
    width: 6px;
    height: 40px;
    background: #14B8A6; /* keep greenish for trading vibe */
    border-radius: 3px;
    opacity: 0.55;
    animation: candleFloat 4s ease-in-out infinite;
}

.candle::before {
    content: "";
    position: absolute;
    left: 2px;
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    top: -10px;
}

@keyframes candleFloat {
    0%   { transform: translateY(0) scaleY(1);   opacity: 0.5; }
    50%  { transform: translateY(-15px) scaleY(1.1); opacity: 0.85; }
    100% { transform: translateY(0) scaleY(1);   opacity: 0.5; }
}

/* ==========================================================================
   WHATSAPP FLOAT BUTTON (Desktop + Mobile)
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #073142, #0C5A64);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.whatsapp-bubble {
    position: fixed;
    bottom: 95px;
    right: 22px;
    background: #ffffff;
    border: 2px solid #1CC8A0;
    color: #083B42;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    animation: bubbleFade 0.35s ease-out;
    z-index: 99998;
}

@keyframes bubbleFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* MOBILE SIZES */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
    .whatsapp-bubble {
        font-size: 13px;
        padding: 8px 16px;
        bottom: 75px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 44px;
        height: 44px;
        bottom: 14px;
        right: 14px;
    }
    .whatsapp-float img {
        width: 22px;
        height: 22px;
    }
    .whatsapp-bubble {
        font-size: 12px;
        padding: 6px 13px;
        bottom: 65px;
        right: 14px;
    }
}

/* ==========================================================================
   SCROLL ANIMATION ENGINE (DIRECTION-BASED)
   ========================================================================== */

[data-animate] {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="up"]    { transform: translateY(40px); }
[data-animate="left"]  { transform: translateX(-40px); }
[data-animate="right"] { transform: translateX(40px); }

.animate-in {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) !important;
}

/* ==========================================================================
   INVESTOR SECTION CARDS (card-style, card-inner, card-title, card-text)
   Premium Sunrise Theme
   ========================================================================== */

.card-style {
    padding: 2px;
    border-radius: 22px;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.65),
        rgba(255,255,255,0.25)
    );

    box-shadow:
        0 12px 35px rgba(0,0,0,0.15),
        inset 0 0 0 rgba(255,255,255,0.3);
}

.card-inner {
    border-radius: 22px;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(22px);

    border: 1px solid rgba(255,255,255,0.45);
    padding: 2.2rem 1.8rem;
    text-align: center;

    box-shadow:
        inset 0 0 18px rgba(255,255,255,0.35),
        0 6px 18px rgba(0,0,0,0.08);
}

/* Titles */
.card-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #073142;
    letter-spacing: -0.3px;
}

/* Description */
.card-text {
    font-size: 0.98rem;
    color: rgba(7,49,66,0.70);
    font-weight: 400;
    margin-top: 6px;
    line-height: 1.55;
}

/* Icon container styling */
.card-icon img {
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.8),
        rgba(255,255,255,0.55)
    );
    padding: 18px;
    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);

    box-shadow:
        inset 0 0 12px rgba(255,255,255,0.5),
        0 6px 20px rgba(0,0,0,0.10);
}

/* Optional stroke icons */
.icon {
    width: 42px;
    height: 42px;
    stroke: #F5D3A8;
    fill: none;
    stroke-width: 1.5;
}

/* Hide scrollbar utility */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }


/* ==========================================================================
   ADVANCED PREMIUM ANIMATED RINGS (Sunrise Theme)
   Used in hand + phone section
   ========================================================================== */

/* ============================================================
   SUNRISE-THEME ANIMATED RINGS (Matches Hero Section)
============================================================ */

.ring {
    position: absolute;
    border-radius: 9999px;
    border-style: solid;
    border-width: 1.5px;

    /* Warm sunrise ring border */
    border-color: rgba(255, 235, 215, 0.35);

    /* Soft warm glow */
    box-shadow:
        0 0 28px rgba(255, 210, 160, 0.28),
        inset 0 0 24px rgba(255, 200, 150, 0.20);

    animation:
        ringRotate 22s linear infinite,
        ringPulse 7s ease-in-out infinite,
        ringGlow 8s ease-in-out infinite;

    pointer-events: none;
}

/* Ring Sizes */
.ring-xl { width: 520px; height: 520px; animation-duration: 26s, 7s, 8s; }
.ring-lg { width: 380px; height: 380px; animation-duration: 20s, 6s, 7s; animation-direction: reverse; }
.ring-md {
    width: 260px;
    height: 260px;
    border-width: 1.8px;
    box-shadow:
        0 0 32px rgba(255, 210, 160, 0.33),
        inset 0 0 26px rgba(255, 200, 150, 0.25);
    animation-duration: 16s, 5s, 6s;
}

/* Rotation */
@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Breathing Pulse */
@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50%      { transform: scale(1.06); opacity: 0.95; }
}

/* Glow Flicker */
@keyframes ringGlow {
    0% {
        box-shadow:
            0 0 20px rgba(255, 210, 160, 0.25),
            inset 0 0 18px rgba(255, 180, 130, 0.18);
    }
    50% {
        box-shadow:
            0 0 40px rgba(255, 200, 150, 0.45),
            inset 0 0 32px rgba(255, 170, 120, 0.30);
    }
    100% {
        box-shadow:
            0 0 20px rgba(255, 210, 160, 0.25),
            inset 0 0 18px rgba(255, 180, 130, 0.18);
    }
}


/* ==========================================================================
   SOLVITAS AI PARTICLE SYSTEM (#aiParticles + .ai-particle)
   Used in investor section left column
   ========================================================================== */

#aiParticles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 3;
}

/* Base particle (Sunrise pastel glow) */
.ai-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.85),
        rgba(232, 183, 155, 0.45),
        transparent
    );
    opacity: 0;
    filter: blur(2px);
    animation:
        particleFloat 9s ease-in-out infinite,
        particleFade 9s ease-in-out infinite;
}

/* Sizes */
.ai-small {
    width: 4px;
    height: 4px;
}
.ai-medium {
    width: 7px;
    height: 7px;
}
.ai-large {
    width: 11px;
    height: 11px;
}

/* Floating physics */
@keyframes particleFloat {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(24px, -28px); }
    100% { transform: translate(0, 0); }
}

/* Opacity fade */
@keyframes particleFade {
    0%   { opacity: 0.25; }
    40%  { opacity: 0.9; }
    100% { opacity: 0.25; }
}

/* ==========================================================================
   FOOTER BACKGROUND PATTERN
   ========================================================================== */

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(700px circle at 70% 40%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(900px circle at 20% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.4;
}

/* ==========================================================================
   NEON BORDER (Red Disclaimer Box)
   ========================================================================== */

@keyframes neonPulse {
    0% {
        box-shadow:
            0 0 4px rgba(255, 60, 60, 0.4),
            0 0 8px rgba(255, 60, 60, 0.3);
    }
    50% {
        box-shadow:
            0 0 8px rgba(255, 60, 60, 0.7),
            0 0 14px rgba(255, 60, 60, 0.5);
    }
    100% {
        box-shadow:
            0 0 4px rgba(255, 60, 60, 0.4),
            0 0 8px rgba(255, 60, 60, 0.3);
    }
}

.neon-border {
    animation: neonPulse 2s ease-in-out infinite;
}

/* ==========================================================================
   HERO SERVICES CARDS UNDER HERO (premium-card + premium-icon)
   ========================================================================== */

.premium-card {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* Premium Icon Style */
.premium-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        inset 0 0 12px rgba(255, 255, 255, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(12px);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        inset 0 0 14px rgba(255, 255, 255, 0.7),
        0 10px 28px rgba(0, 0, 0, 0.2);
}

/* Premium Titles & Descriptions */
.premium-title {
    color: #073142;
    font-size: 1.25rem;
    font-weight: 700;
}

.premium-desc {
    color: rgba(7, 49, 66, 0.7);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ============================================================
   HERO SERVICES — FINAL CLEAN ANIMATION ENGINE
   ============================================================ */

.services-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 220px;
    overflow: hidden;
}

/* STACKED STATES */
.services-stack {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

/* ACTIVE CARD SECTION */
.services-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    z-index: 3;
    pointer-events: auto;
}

/* GOING OUT */
.services-out-down {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    z-index: 1;
}

/* COMING FROM TOP */
.services-coming-up {
    opacity: 1 !important;
    transform: translateY(-40px) !important;
    z-index: 2;
}


/* ==========================================================================
   MOBILE OPTIMIZATION FOR INVESTOR SECTION
   ========================================================================== */

@media (max-width: 768px) {

    /* Disable sticky pinning */
    #leftPinArea .sticky {
        position: static !important;
        top: auto !important;
    }

    /* Smaller rings on mobile */
    .ring-xl {
        width: 260px;
        height: 260px;
    }
    .ring-lg {
        width: 200px;
        height: 200px;
    }
    .ring-md {
        width: 140px;
        height: 140px;
    }

    .ring {
        box-shadow:
            0 0 14px rgba(255, 255, 255, 0.25),
            0 0 30px rgba(232, 183, 155, 0.35);
    }

    /* Particle tweaks */
    .ai-particle {
        animation-duration: 11s !important;
        opacity: 0.5;
    }

    /* Hand image smaller */
    #leftPinArea img {
        width: 190px !important;
    }

    /* Cards tighter on mobile */
    .card-inner {
        padding: 1.2rem !important;
    }
    .card-title {
        font-size: 1.1rem !important;
    }
    .card-text {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    /* No forced scroll on card column */
    #cardColumn {
        height: auto !important;
        overflow: visible !important;
    }
}

@media (max-width: 480px) {
    .ring-xl {
        width: 220px;
        height: 220px;
    }
    .ring-lg {
        width: 160px;
        height: 160px;
    }
    .ring-md {
        width: 120px;
        height: 120px;
    }

    .ai-particle {
        opacity: 0.4 !important;
        animation-duration: 12s !important;
    }
}

#servicesSection .sol-card {
    background: linear-gradient(
        180deg,
        #F5F7FB 0%,     /* soft white with blue tint */
        #ECEFF5 40%,    /* softer middle */
        #E6E9F0 100%    /* slightly darker bottom like your reference */
    );

    border-radius: 26px;
    padding: 26px;

    /* subtle glossy top highlight */
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.8),
        inset 0 -1px 4px rgba(0, 0, 0, 0.04),
        0 8px 20px rgba(0, 0, 0, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.6);

    transition: all 0.3s ease;
}

#servicesSection .sol-card:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, 0.9),
        inset 0 -1px 4px rgba(0, 0, 0, 0.06),
        0 12px 26px rgba(0, 0, 0, 0.12);
}

/* INNER WRAPPER */
#servicesSection .sol-card-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ICON CIRCLE */
#servicesSection .sol-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TITLE – Deep Blue-Teal */
#servicesSection .sol-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 6px;
    color: #1D3B47; /* NEW */
}

/* TEXT – Soft Gray-Blue */
#servicesSection .sol-card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4F6670; /* NEW */
}


/* READ MORE LINK */
#servicesSection .sol-card-link {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: #1CC8A0; /* TEAL */
    transition: 0.25s ease;
}

#servicesSection .sol-card-link:hover {
    color: #39E6BD; /* lighter teal on hover */
    transform: translateX(4px);
}

/* ============================================
   MINIMAL TEAL RINGS — LIKE THE REFERENCE IMAGE
   ============================================ */

#servicesSection .ring {
    position: absolute;
    border-radius: 9999px;

    /* Very thin, soft teal stroke */
    border: 1px solid rgba(28, 200, 160, 0.28);

    /* Extremely soft glow around it */
    box-shadow:
        0 0 25px rgba(28, 200, 160, 0.15);

    /* No shine, no gradient overlay */
    background: transparent;

    /* Clean rotation + slow breathing */
    animation:
        ringRotate 22s linear infinite,
        ringFade 6s ease-in-out infinite;
}

/* Bigger, softer rings like the image */
#servicesSection .ring-xxl {
    width: 560px;
    height: 560px;
}
#servicesSection .ring-xl {
    width: 460px;
    height: 460px;
}
#servicesSection .ring-lg {
    width: 360px;
    height: 360px;
}
#servicesSection .ring-md {
    width: 260px;
    height: 260px;
}

/* ============================================
   ANIMATIONS (Simple & Elegant)
   ============================================ */

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Slight fade breathing effect */
@keyframes ringFade {
    0%,100% { opacity: 0.55; }
    50%     { opacity: 0.85; }
}

/* ============================
   Solvitas About — Animations & Styling
   Tailwind 3.x compatible
   ============================ */

/* HERO GRADIENT OVERLAY */
.solvitas-hero-gradient {
    background:
        radial-gradient(circle at 0% 0%, rgba(123, 92, 255, 0.45), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(37, 208, 200, 0.30), transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(15, 61, 145, 0.85), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.85;
    animation: solvitasGradientShift 26s ease-in-out infinite alternate;
}

/* FLOATING PARTICLES */
.solvitas-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
    opacity: 0.45;
    animation: solvitasFloat 20s linear infinite;
}

.solvitas-particle:nth-child(1) { top: 12%; left: 15%; animation-duration: 18s; }
.solvitas-particle:nth-child(2) { top: 30%; right: 10%; animation-duration: 22s; }
.solvitas-particle:nth-child(3) { bottom: 18%; left: 22%; animation-duration: 20s; }
.solvitas-particle:nth-child(4) { bottom: 8%; right: 18%; animation-duration: 24s; }
.solvitas-particle:nth-child(5) { top: 55%; left: 48%; animation-duration: 26s; }

/* PREMIUM GLOW RINGS */
.solvitas-ring {
    position: relative;
    border-radius: 9999px;
    border: 1px solid rgba(37, 208, 200, 0.35);
    box-shadow:
        0 0 18px rgba(37, 208, 200, 0.25),
        inset 0 0 22px rgba(37, 208, 200, 0.15);
    backdrop-filter: blur(3px);
    animation: solvitasRingRotate 26s linear infinite,
               solvitasRingPulse 7s ease-in-out infinite;
}

.solvitas-ring-xl {
    width: 420px;
    height: 420px;
}

.solvitas-ring-md {
    width: 280px;
    height: 280px;
}

/* INVESTOR BENEFIT CARDS */
.sol-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 61, 145, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    text-align: left;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.sol-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(123, 92, 255, 0.10), rgba(37, 208, 200, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
    border-color: rgba(15, 61, 145, 0.18);
}

.sol-card:hover::before {
    opacity: 1;
}

.sol-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
    animation: floatY 5s ease-in-out infinite;
}

.sol-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0F3D91;
    margin-bottom: 0.4rem;
}

.sol-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
}

/* CENTRAL VISION CARD */
.sol-vision-card {
    position: relative;
    border-radius: 1.75rem;
    padding: 2.25rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.sol-vision-halo {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0, rgba(123, 92, 255, 0.18), transparent 60%),
        radial-gradient(circle at 100% 0, rgba(37, 208, 200, 0.16), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(15, 61, 145, 0.16), transparent 60%);
    opacity: 0.55;
    filter: blur(12px);
    pointer-events: none;
}

.sol-vision-card > * {
    position: relative;
    z-index: 1;
}

/* FADE-UP ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.7s ease-out both;
}

.animate-fade-up-delay {
    animation: fadeUp 0.9s ease-out both;
}

/* KEYFRAME ANIMATIONS */
@keyframes solvitasGradientShift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate3d(0, -10px, 0) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 10px, 0) scale(1.03);
        opacity: 0.85;
    }
}

@keyframes solvitasFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.35;
    }
    50% {
        transform: translate3d(12px, -28px, 0) scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: translate3d(-6px, -56px, 0) scale(0.9);
        opacity: 0.25;
    }
}

@keyframes solvitasRingRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes solvitasRingPulse {
    0%, 100% {
        box-shadow:
        0 0 18px rgba(37, 208, 200, 0.20),
        inset 0 0 20px rgba(37, 208, 200, 0.12);
    }
    50% {
        box-shadow:
        0 0 32px rgba(123, 92, 255, 0.38),
        inset 0 0 26px rgba(37, 208, 200, 0.25);
    }
}

@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* RESPONSIVE TWEAKS */
@media (max-width: 640px) {
    .solvitas-ring-xl {
        width: 260px;
        height: 260px;
    }
    .solvitas-ring-md {
        width: 200px;
        height: 200px;
    }
    .sol-vision-card {
        padding: 1.75rem 1.4rem;
    }
}
/* =============================
   FORM INPUTS
   ============================= */
.solvitas-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e5e7eb;
    color: #111827;
    outline: none;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.solvitas-input:focus {
    border-color: #0F3D91;
    box-shadow: 0 0 0 3px rgba(15,61,145,0.15);
    background: #ffffff;
}

/* =============================
   CONTACT CHIPS
   ============================= */
.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    background: rgba(15,61,145,0.25);
    border: 1px solid rgba(148,163,184,0.5);
    font-size: 0.8rem;
    color: #e5e7eb;
}

/* =============================
   OFFICE CARDS
   ============================= */
.office-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 24px 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15,23,42,0.06);
    position: relative;
    overflow: hidden;
}
.office-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(123,92,255,0.12), transparent 60%),
                radial-gradient(circle at bottom right, rgba(37,208,200,0.14), transparent 60%);
    opacity: 0.55;
    pointer-events: none;
}
.office-card > * {
    position: relative;
    z-index: 1;
}

.office-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}
.office-badge-corporate {
    background: linear-gradient(135deg, #0A3A3F 0%, #0E5F63 100%);
    color: #ffffff;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;

    /* ROUND BADGE */
    border-radius: 9999px;
}
.office-badge-registered { background: #25D0C8; }
.office-badge-branch { background: #7B5FFF; }
.office-badge-support {
    background: linear-gradient(135deg, #0A3A3F 0%, #0E5F63 100%);
    color: #ffffff;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;

    /* ROUND BADGE */
    border-radius: 9999px;
}

.office-text {
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.55;
}
.office-hours {
    color: #4b5563;
    font-size: 0.82rem;
    line-height: 1.55;
}
.office-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid #0F3D91;
    background: linear-gradient(135deg, #0A3A3F 0%, #0E5F63 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.office-link-btn i {
    font-size: 0.75rem;
}
.office-link-btn:hover {
    transform: translateY(-1px);
    background: #091f63;
    box-shadow: 0 12px 30px rgba(15,61,145,0.35);
}

/* =============================
   QUICK CONNECT CARDS
   ============================= */
.quick-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15,23,42,0.06);
    transition: all 0.3s ease;
    text-align: left;
}
.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15,23,42,0.14);
}
.quick-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0E5F63;
}
.quick-card-text {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-top: 0.35rem;
}
.quick-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,61,145,0.08);
    color: #0F3D91;
    font-size: 0.9rem;
}

/* =============================
   FLOATING CONTACT WIDGET
   ============================= */
.contact-floating-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 9999px;
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(22,163,74,0.55);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-floating-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(22,163,74,0.65);
    background: #16a34a;
}
.contact-floating-icon {
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* =============================
   SIMPLE FADE-UP ANIMATION
   ============================= */
@keyframes fadeUpSolvitas {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.animate-fade-up {
    animation: fadeUpSolvitas 0.7s ease-out both;
}
.animate-fade-up-delay {
    animation: fadeUpSolvitas 0.95s ease-out both;
}

/* Filter pills */
.pricing-filter-pill {
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0F3D91;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-filter-pill.is-active {
    background: #0F3D91;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(15,61,145,0.35);
}

/* Pricing cards */
.pricing-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 20px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 32px rgba(15,23,42,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15,23,42,0.16);
    border-color: rgba(37,208,200,0.55); /* TEAL */
}

.plan-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,61,145,0.08);
    color: #0F3D91;
    font-size: 0.95rem;
}
.plan-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0F3D91;
}
.plan-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 2px;
}
.plan-metrics {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 12px;
    margin-top: 6px;
}
.metric-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}
.metric-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
}
.plan-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.plan-note {
    font-size: 0.7rem;
    color: #6b7280;
}
.plan-cta {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 9999px;
    background: #0F3D91;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(15,61,145,0.45);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.plan-cta:hover {
    background: #091f63;
    box-shadow: 0 14px 36px rgba(15,61,145,0.55);
    transform: translateY(-1px);
}

/* Floating widget & quick-card/contact styles reused from earlier page */
.contact-floating-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 9999px;
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(22,163,74,0.55);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-floating-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(22,163,74,0.65);
    background: #16a34a;
}
.contact-floating-icon {
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* FILTER BUTTONS */
.filter-btn {
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 14px;
    background: #f0f4ff;
    border: 1px solid #d3ddff;
    transition: .25s ease;
}
.filter-btn:hover { background: #e5ecff; }
.filter-btn.active {
    background: linear-gradient(135deg, #0A3A3F 0%, #0E5F63 100%);
    border-color: #0F3D91;
    color: white;
}

/* PRICING CARDS */
.pricing-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #e6e9f0;
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    transition: .3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ICON CIRCLE */
.plan-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123,92,255,0.12);
    color: #0F3D91;
    font-size: 18px;
}

/* TITLES */
.plan-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0F3D91;
}

/* METRICS */
.plan-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}
.metric-label {
    font-size: 12px;
    color: #6b7280;
}
.metric-value {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* FOOTER */
.plan-footer {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.plan-note {
    font-size: 11px;
    color: gray;
}
.plan-cta {
    padding: 6px 16px;
    border-radius: 8px;
    background: #0F3D91;
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: .25s ease;
}
.plan-cta:hover { background: #10377b; }

#sigPad {
  touch-action: none; /* prevents scroll + zoom gestures */
}

.ua-wrap::before{
  content:'';
  position:fixed;
  inset:0;
  background:url('/assets/img/solvitas-logo.png') center center no-repeat;
  background-size:420px;
  opacity:0.04;
  pointer-events:none;
  z-index:0;
}

.ua-container{
  position:relative;
  z-index:1;
}
