:root {
    --navy: #0B1F4D;
    --deep-blue: #123A8F;
    --sky: #277fd3;
    --cyan: #7ED7FF;
    --white: #ffffff;
    --light-bg: #f0f4ff;
    --card-bg: rgba(255,255,255,0.06);
    --border-glass: rgba(255,255,255,0.12);
    --text-muted-light: rgba(255,255,255,0.65);
    --gradient-hero: linear-gradient(135deg, #081B4B 0%, #123A8F 45%, #1a5abf 100%);
    --gradient-accent: linear-gradient(135deg, #4DA8FF, #7ED7FF);
    --font-display: "Plus Jakarta Sans", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
    --timeline-line: #2e2e3a;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: #1a1a2e;
}

/* ── NAVBAR ── */
#mainNav {
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(8, 27, 75, 0.97) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white) !important;
    letter-spacing: -0.5px;
}

.navbar-brand img {
    height: 40px;
}

.navbar-brand span {
    color: var(--sky);
}

.nav-link {
    color: rgba(255,255,255,0.82) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem !important;
    transition: color 0.25s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--gradient-accent);
    transition: left 0.3s, right 0.3s;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--cyan) !important;
}

.nav-link:hover::after {
    left: 0.85rem;
    right: 0.85rem;
}

.btn-nav-login {
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 8px;
    padding: 0.4rem 1.1rem !important;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.25s;
}

.btn-nav-login:hover {
    border-color: var(--sky);
    color: var(--sky) !important;
    text-decoration: none;
}

.btn-nav-cta {
    background: var(--gradient-accent);
    color: var(--navy) !important;
    border-radius: 8px;
    padding: 0.4rem 1.3rem !important;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(77,168,255,0.45);
    text-decoration: none;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── HERO ── */
#hero {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 218px;
}

#hero:after {
    content: "";
    background-image: url('../images/hero_pattern.png');
    width: 100%;
    height: 229px;
    position: absolute;
    bottom: -22px;
    left: 0;
    z-index: 0;
    background-size: cover;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(77,168,255,0.15);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(77,168,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(77,168,255,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-headline .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    color: var(--text-muted-light);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 520px;
}

.btn-hero-primary {
    background: var(--gradient-accent);
    color: var(--navy);
    border: none;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(77,168,255,0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(77,168,255,0.55);
    color: var(--navy);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(77,168,255,0.08);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.trust-badge i {
    color: var(--cyan);
    font-size: 0.85rem;
}

.hero-img-wrap {
    position: relative;
}

.hero-img-wrap img {
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

.floating-card {
    position: absolute;
    background: rgb(45 45 48 / 63%);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    animation: floatCard 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.floating-card i {
    font-size: 1.2rem;
    color: var(--cyan);
}

.fc-1 {
    bottom: 12%;
    left: -10%;
    animation-delay: 0s;
}

.fc-2 {
    top: 10%;
    right: -8%;
    animation-delay: 1.5s;
}

.fc-3 {
    top: 50%;
    left: -12%;
    animation-delay: 0.75s;
}

/* ── SECTIONS SHARED ── */
.section-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, rgba(77,168,255,0.15), rgba(126,215,255,0.15));
    border: 1px solid rgba(77,168,255,0.3);
    color: var(--sky);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-title {
    /* font-family: var(--font-display); */
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-sub {
    color: #556083;
    font-size: 1rem;
    line-height: 1.7;
}

/* ── BENEFITS ── */
#benefits {
    padding: 60px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.benefit-card {
    background: #f7f7f7;
    border: 1px solid #e4ecf8;
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(18,58,143,0.12);
    border-color: rgba(77,168,255,0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(77,168,255,0.12), rgba(126,215,255,0.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sky);
    margin-bottom: 1.2rem;
}

.benefit-icon img {
    height: 40px;
}

.benefit-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #6472a0;
    font-size: 0.88rem;
    line-height: 1.65;
}

/* Services/what we offer */
#services {
    padding: 150px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

#services:before {
    content: "";
    background-image: url('../images/white_pattern.png');
    width: 100%;
    height: 88px;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 0;
    background-size: cover;
}

#services:after {
    content: "";
    background-image: url('../images/bottom_white_pattern.png');
    width: 100%;
    height: 88px;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 0;
    background-size: cover;
}

#services .section-title {
    color: var(--white);
}

#services .section-sub {
    color: var(--text-muted-light);
}

#services .btn-hero-primary {
    width: max-content !important;
}

.section-wrap {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 40px;
    align-items: start;
}

/* ══════════════════
       LEFT COLUMN
    ══════════════════ */
.left-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── CLOUD SECURITY IMAGE CARD ── */
.img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0d1117;
    border: 1px solid #1e2230;
    aspect-ratio: 16/8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease 0.65s forwards;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,45,85,0.08);
}

.img-wrap:hover .cloud-scene {
    transform: scale(1.02);
}

/* ══════════════════
       TIMELINE (right)
    ══════════════════ */
.timeline-col {
    position: relative;
    padding-top: 8px;
    animation: fadeIn 0.5s ease 0.3s forwards;
}

/* vertical dashed line */
.timeline-line {
    position: absolute;
    left: 17px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: repeating-linear-gradient( to bottom, var(--timeline-line) 0, var(--timeline-line) 6px, transparent 6px, transparent 12px );
    z-index: 0;
}

.timeline-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* dot */
.tl-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(255,45,85,0.4);
    animation: dotPulse 3s ease-in-out infinite;
    transition: transform 0.2s;
}

.tl-dot:hover {
    transform: scale(1.15);
}

.tl-dot svg,.tl-dot i {
    width: 24px;
    height: 24px;
    color: var(--cyan);
    text-align: center;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgb(207 196 198 / 40%);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255,45,85,0);
    }
}

.timeline-item:nth-child(2) .tl-dot {
    animation-delay: 1s;
}

.timeline-item:nth-child(3) .tl-dot {
    animation-delay: 2s;
}

/* card */
.tl-card {
    background: var(--navy);
    border: 1px solid #2a2a32;
    border-radius: 18px;
    padding: 20px 18px;
    flex: 1;
    transform: translateX(30px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tl-card.visible {
    animation: slideLeft 0.55s cubic-bezier(.22,1,.36,1) forwards;
}

.tl-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transform: translateX(0) translateY(-3px) !important;
    border-color: #3a3a48;
}

.tl-step {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 6px;
}

.tl-title {
    font-size: 1rem;
    font-weight: 700;
    color: var( --text-muted-light);
    margin-bottom: 8px;
}

.tl-desc {
    font-size: 0.88rem;
    color: #6472a0;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ── Card 1 widget: update bar ── */
.update-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111114;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.update-bar-inner {
    flex: 1;
    height: 5px;
    background: #2a2a32;
    border-radius: 99px;
    overflow: hidden;
}

.update-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--cyan);
    border-radius: 99px;
    animation: barFill 2.5s ease 1.8s forwards;
}

@keyframes barFill {
    to {
        width: 75%;
    }
}

.update-pct {
    font-size: 11px;
    color: var(--white);
    white-space: nowrap;
}

.update-label {
    font-size: 11px;
    color: var(--white);
}

/* ── Card 2 widget: shield badge ── */
.shield-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111114;
    border: 1px solid #2a2a32;
    border-radius: 99px;
    padding: 7px 14px;
    font-size: 12px;
    color: var(--white);
}

.shield-badge svg {
    width: 16px;
    height: 16px;
    color: var(--cyan);
}

.cloud-dots {
    display: flex;
    gap: 4px;
}

.cloud-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    animation: blinkDot 1.6s ease-in-out infinite;
}

.cloud-dot:nth-child(2) {
    animation-delay: 0.3s;
    background: #ff6b84;
}

.cloud-dot:nth-child(3) {
    animation-delay: 0.6s;
    background: #ff9fad;
}

@keyframes blinkDot {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

/* ── Card 3 (partial) ── */
.tl-card.partial {
    padding-bottom: 30px;
}

/* ══════════
       KEYFRAMES
    ══════════ */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* pricing */
#pricing {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    display: block;
    color: var(--navy);
    line-height: 1;
}

/* ── FEATURES ── */
#features {
    /* padding: 150px 0; */
    /* background: var(--light-bg); */
    /* position: relative; */
    /* overflow: hidden; */
}

#features:before {
    content: "";
    /* background-image: url('../images/white_pattern.png'); */
    width: 100%;
    height: 88px;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 0;
    background-size: cover;
}

#features:after {
    content: "";
    /* background-image: url('../images/bottom_white_pattern.png'); */
    width: 100%;
    height: 88px;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 0;
    background-size: cover;
}

.features-img {
    border-radius: 18px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 695px;
    box-shadow: 0 20px 60px rgba(18,58,143,0.15);
}

.feature-item {
    display: flex;
    gap: 1.1rem;
    padding: 1.25rem;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid #e4ecf8;
    margin-bottom: 1rem;
    transition: all 0.3s;
    cursor: default;
}

.feature-item:hover {
    transform: translateX(6px);
    border-color: rgba(77,168,255,0.4);
    box-shadow: 0 8px 24px rgba(18,58,143,0.1);
}

.feature-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(77,168,255,0.15), rgba(126,215,255,0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sky);
}

.feature-item h6 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.88rem;
    color: #6472a0;
    margin: 0;
    line-height: 1.55;
}

/* ── FAQ ── */
#faq {
    padding: 80px 0;
    /* background: var(--white); */
}

.faq-item {
    border: 1px solid #e4ecf8;
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(77,168,255,0.35);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f7;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    user-select: none;
    transition: background 0.25s;
}

.faq-question:hover {
    background: #f7f9ff;
}

.faq-arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #cae6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--sky);
    transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
    background: var(--sky);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    background: #f7f7f7;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 1.5rem;
    font-size: 0.88rem;
    color: #556083;
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

/* ── FOOTER ── */
footer {
    background: #060e24;
    padding: 150px 0 2rem;
    position: relative;
    color: rgba(255,255,255,0.55);
    overflow: hidden;
}

footer:before {
    content: "";
    /* background-image: url('../images/white_pattern.png'); */
    width: 100%;
    height: 85px;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 0;
    background-size: cover;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: left;
}

.footer-brand img {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.footer-brand span {
    color: var(--sky);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin-top: 0.75rem;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.25s, padding-left 0.25s;
}

.footer-link:hover {
    color: var(--sky);
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 2.5rem 0 1.5rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 8px;
    transition: all 0.25s;
}

.social-btn:hover {
    background: var(--deep-blue);
    color: #fff;
    border-color: var(--deep-blue);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.cert-badge i {
    color: var(--sky);
    font-size: 0.8rem;
}

.cta-float-icon {
    position: absolute;
    font-size: 3.5rem;
    opacity: 0.06;
    color: var(--cyan);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── BACK TO TOP ── */
#backTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(77,168,255,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s;
    z-index: 999;
}

#backTop.show {
    opacity: 1;
    transform: translateY(0);
}

/* innerpg banner */
.innerpgbanner {
    color: var(--white);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    text-align: center;
    align-items: center;
    padding: 120px 0;
}

.uk-form-manage-body h3 {
    font-size: 18px;
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid #e7e7e7;
    font-weight: bold;
}

.uk-text-orange {
    color: var(--sky) !important;
}

/* thankyou page */
.card-wrapper {
    text-align: center;
    padding: 40px 20px 50px;
    max-width: 600px;
    width: 100%;
}

/* ── Illustration ── */
.illustration {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 10px;
}

/* Watermark "Thank You!" */
.watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 800;
    color: #e8e8e8;
    letter-spacing: -1px;
    white-space: nowrap;
    user-select: none;
    z-index: 0;
}

/* Gold coin circle (background) */
.coin-bg {
    position: absolute;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at 35% 35%, #ffe97a, #f5b800);
    border-radius: 50%;
    bottom: 55px;
    left: 50%;
    transform: translateX(-20%);
    z-index: 1;
    box-shadow: inset -4px -4px 10px rgba(0,0,0,0.12);
}

.coin-bg::after {
    content: '$';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    color: rgba(0,0,0,0.10);
}

/* Phone */
.phone {
    position: absolute;
    width: 72px;
    height: 128px;
    background: linear-gradient(160deg, #3a9fd8, #2672b0);
    border-radius: 14px;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 8px 24px rgba(38,114,176,0.35);
}

.phone-screen {
    position: absolute;
    top: 10px;
    left: 7px;
    right: 7px;
    bottom: 10px;
    background: #e8f5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen svg {
    width: 32px;
    height: 32px;
}

.phone-btn {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: #4caf50;
    border-radius: 4px;
}

/* Hand */
.hand {
    position: absolute;
    width: 58px;
    height: 68px;
    background: linear-gradient(160deg, #fdd5b0, #f4a96a);
    border-radius: 10px 10px 14px 14px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.hand::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 4px;
    width: 14px;
    height: 16px;
    background: #f4a96a;
    border-radius: 6px 6px 0 0;
    box-shadow: 18px 0 0 #f4a96a, 36px 0 0 #f4a96a;
}

/* Credit card */
.card-chip {
    position: absolute;
    width: 90px;
    height: 56px;
    background: linear-gradient(135deg, #e53935, #c62828);
    border-radius: 8px;
    bottom: 20px;
    left: calc(50% - 82px);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.20);
    overflow: hidden;
}

.card-chip::after {
    content: 'XXXX XXXX XXXX 2522';
    position: absolute;
    bottom: 6px;
    left: 6px;
    font-size: 6px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    font-family: monospace;
}

.card-chip-stripe {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 14px;
    background: rgba(0,0,0,0.18);
}

.card-blue {
    position: absolute;
    width: 90px;
    height: 56px;
    background: linear-gradient(135deg, #1e4fad, #1a3d8a);
    border-radius: 8px;
    bottom: 14px;
    left: calc(50% - 76px);
    z-index: 1;
}

/* Floating coins */
.floating-coin {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #a06400;
    z-index: 5;
}

.coin-large {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 35% 30%, #ffe97a, #f5b800);
    font-size: 22px;
    top: 14px;
    left: 50%;
    transform: translateX(-30%);
    box-shadow: 0 4px 12px rgba(245,184,0,0.4);
    animation: floatUp 2s ease-in-out infinite alternate;
}

.coin-small {
    width: 34px;
    height: 34px;
    background: radial-gradient(circle at 35% 30%, #ffe97a, #f5b800);
    font-size: 15px;
    top: 30px;
    right: 52px;
    box-shadow: 0 3px 8px rgba(245,184,0,0.35);
    animation: floatUp 2s ease-in-out 0.4s infinite alternate;
}

/* Sparkles */
.sparkle {
    position: absolute;
    z-index: 6;
    color: #f5b800;
    font-size: 14px;
    animation: twinkle 1.6s ease-in-out infinite alternate;
}

.sp1 {
    top: 56px;
    left: 44px;
}

.sp2 {
    top: 80px;
    right: 42px;
    animation-delay: 0.5s;
}

@keyframes floatUp {
    from {
        transform: translateY(0) translateX(-30%);
    }

    to {
        transform: translateY(-10px) translateX(-30%);
    }
}

@keyframes floatUp2 {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-8px);
    }
}

.coin-small {
    animation-name: floatUp2;
}

@keyframes twinkle {
    from {
        opacity: 0.4;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: #e8e8e8;
    margin: 0 auto 28px;
}

/* Text */
.order-title {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
}

.order-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 28px;
}

/* Back to Home link */
.back-link {
    display: inline-block;
    color: var(--sky);
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.75;
}

/* Entrance animation */
.card-wrapper {
    animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    #mainNav {
        background-color: rgba(8, 27, 75, 0.97) !important;
    }

    #hero:after {
        height: 89px;
        bottom: 0;
    }

    .hero-img-wrap {
        margin-top: 2.5rem;
    }

    .floating-card {
        display: none;
    }

    .section-wrap {
        grid-template-columns: 1fr;
    }

    .tl-card {
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    #hero {
        padding: 100px 0 128px;
    }

    .hero-img-wrap {
        margin-top: 2.5rem;
    }

    #stats .stat-divider {
        display: none;
    }

    #mainNav {
        background-color: rgba(8, 27, 75, 0.97) !important;
    }

    #hero:after {
        height: 89px;
        bottom: 0;
    }

    #hero a,.trust-badge {
        flex: 100%;
    }

    #hero a {
        text-align: center;
    }

    .floating-card {
        display: none;
    }

    .section-eyebrow {
        font-size: 0.68rem;
    }

    p {
        font-size: 14px !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        border: none;
    }

    .section-wrap {
        grid-template-columns: 1fr;
    }

    .timeline-col {
        padding-top: 0;
    }

    .tl-card {
        transform: translateX(0);
    }

    p {
        font-size: 14px !important;
    }

    .features-img {
        min-height: auto;
    }

    .uk-padding-remove-top {
        padding: 10px !important;
    }
}
