/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #1565C0;
    --orange: #FF6B00;
    --green: #2ECC71;
    --navy: #0D1B2A;
    --slate900: #0f172a;
    --slate800: #1e293b;
    --slate700: #334155;
    --slate600: #475569;
    --slate500: #64748b;
    --slate400: #94a3b8;
    --slate200: #e2e8f0;
    --slate100: #f1f5f9;
    --slate50: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .04);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--slate800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--slate900);
    margin-bottom: 16px;
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--slate500);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-md {
    padding: 12px 28px;
    font-size: .95rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: .875rem;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 0, .35);
}

.btn-orange:hover {
    background: #e55f00;
    box-shadow: 0 6px 28px rgba(255, 107, 0, .5);
    transform: translateY(-1px);
}

.btn-outline-blue {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline-blue:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-gray {
    background: transparent;
    color: var(--slate700);
    border: 2px solid var(--slate200);
}

.btn-outline-gray:hover {
    background: var(--slate50);
}

/* ── header ── */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    padding: 20px 0;
    transition: all .3s;
}

#header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, .97);
    border-bottom-color: var(--slate200);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 60px;
    object-fit: cover;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--slate600);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    margin-left: 8px;
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 9px;
    width: 24px;
    height: 2px;
    background: var(--slate700);
    border-radius: 5px;
    transition: .3s ease;
}

.hamburger span:nth-child(1) {
    top: 12px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 28px;
}

/* Open State */

.hamburger.active span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    max-width: calc(100vw - 40px);

    background: #fff;
    border-radius: 16px 0 0 16px;
    border: 1px solid var(--slate200);
    padding: 18px 24px;
    box-shadow: var(--shadow-md);

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
    transition: all .35s ease;

    pointer-events: none;
    z-index: 999;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--slate100);
    font-weight: 500;
    color: var(--slate700);
}

.mobile-menu .btn {
    display: flex;
    color: #fff;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

/* ── Hero ── */
#hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--slate50) 0%, #ebf4ff 50%, var(--white) 100%);
    overflow: hidden;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Ccircle cx='20' cy='20' r='1' fill='%231565C0' fill-opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, .08);
    border: 1px solid rgba(255, 107, 0, .25);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    color: var(--slate900);
    margin-bottom: 24px;
}

.hero-title .gradient {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--slate600);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-checks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem;
    color: var(--slate500);
}

.hero-check svg {
    color: var(--green);
}

/* Hero SVG illustration */
.hero-svg-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-svg-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, .12) 0%, rgba(21, 101, 192, .1) 60%, transparent 100%);
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.hero-svg {
    width: 100%;
    max-width: 420px;
    position: relative;
}

.cloud-back {
    animation: float 5s ease-in-out infinite;
}

.cloud-front {
    animation: float 6s ease-in-out infinite 0.5s;
}

.server-box {
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* ── Trust Badges (Splide) ── */
#trust {
    background: #fff;
    border-top: 1px solid var(--slate200);
    border-bottom: 1px solid var(--slate200);
    padding: 40px 0;
}

.badge-slide {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--slate50);
    border: 1px solid var(--slate200);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-sm);
    transition: all .2s;
}

.badge-slide:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(21, 101, 192, .25);
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}

.badge-icon svg {
    width: 20px;
    height: 20px;
}

.badge-label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--slate700);
    white-space: nowrap;
}

.splide__track {
    padding: 8px 0 !important;
}

/* ── Features ── */
#features {
    padding: 96px 0;
    background: var(--slate50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--slate200);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    cursor: default;
}

.feature-card:hover {
    border-color: rgba(21, 101, 192, .35);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(21, 101, 192, .1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 107, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--orange);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--slate900);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: .95rem;
    color: var(--slate500);
    line-height: 1.65;
}

/* ── Pricing ── */
#pricing {
    padding: 96px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
}

.price-card {
    background: #fff;
    border: 1px solid var(--slate200);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.price-card.popular {
    border: 2px solid var(--blue);
    background: var(--blue);
    transform: translateY(-20px);
    box-shadow: 0 16px 48px rgba(21, 101, 192, .30);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 107, 0, .4);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--slate500);
    margin-bottom: 12px;
}

.popular .plan-name {
    color: #fff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.plan-price .amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--slate900);
    line-height: 1;
}

.popular .plan-price .amount {
    color: #fff;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--slate400);
    font-weight: 500;
}

.popular .plan-price .period {
    color: rgba(255, 255, 255, .65);
}

.plan-desc {
    font-size: .9rem;
    color: var(--slate500);
    margin-bottom: 28px;
}

.popular .plan-desc {
    color: rgba(255, 255, 255, .7);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--slate600);
}

.popular .plan-features li {
    color: #fff;
}

.check-icon {
    color: var(--green);
    flex-shrink: 0;
}

.popular .check-icon {
    color: var(--orange);
}

.popular .btn-orange {
    box-shadow: 0 4px 16px rgba(255, 107, 0, .5);
}

/* ── How It Works ── */
#how {
    padding: 96px 0;
    background: var(--slate50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-line {
    position: absolute;
    top: 32px;
    left: calc(16.66% + 16px);
    right: calc(16.66% + 16px);
    height: 2px;
    background: var(--slate200);
    z-index: 0;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--slate200);
    border-radius: var(--radius);
    padding: 36px 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(21, 101, 192, .35);
    border: 4px solid #fff;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--slate900);
    margin-bottom: 10px;
}

.step-card p {
    font-size: .9rem;
    color: var(--slate500);
}

.how-cta {
    text-align: center;
    margin-top: 56px;
}

/* ── Testimonials ── */
#reviews {
    padding: 96px 0;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--slate200);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all .3s;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(21, 101, 192, .25);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--orange);
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.review-text {
    font-size: .95rem;
    color: var(--slate600);
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--slate100);
    padding-top: 16px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(21, 101, 192, .1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
}

.author-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--slate900);
}

.author-role {
    font-size: .8rem;
    color: var(--slate500);
}

/* ── FAQ ── */
#faq {
    padding: 96px 0;
    background: var(--slate50);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--slate200);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color .2s;
}

.faq-item.open {
    border-color: rgba(21, 101, 192, .35);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--slate800);
    font-family: 'Poppins', sans-serif;
    transition: color .2s;
}

.faq-item.open .faq-question {
    color: var(--blue);
}

.faq-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--slate400);
    transition: transform .3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s;
    font-size: .95rem;
    color: var(--slate600);
    line-height: 1.7;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 240px;
    padding-bottom: 22px;
}

/* ── CTA Banner ── */
#cta {
    padding: 96px 0;
    background: var(--blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='.06'/%3E%3C/svg%3E");
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

#cta h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    margin-bottom: 16px;
}

#cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 40px;
}

#cta .sub-note {
    margin-top: 20px;
    font-size: .875rem;
    color: rgba(255, 255, 255, .55);
}

.btn-orange-xl {
    padding: 20px 52px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 0 32px rgba(255, 107, 0, .5);
    transition: all .25s;
    display: inline-block;
}

.btn-orange-xl:hover {
    background: #e55f00;
    transform: scale(1.04);
    box-shadow: 0 0 44px rgba(255, 107, 0, .65);
}

/* ── Footer ── */
footer {
    background: var(--slate900);
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 60px 0 32px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 40px;
}

footer img {
    height: 120px;
    object-fit: cover;
    margin-bottom: -20px;
}

.footer-about {
    font-size: .925rem;
    color: var(--slate400);
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 32px;
}

.footer-links button {
    font-size: .9rem;
    color: var(--slate400);
    transition: color .2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.footer-links button:hover {
    color: var(--orange);
}

.footer-disclosure {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: .8rem;
    color: var(--slate400);
    line-height: 1.6;
    max-width: 560px;
}

.footer-disclosure strong {
    color: var(--slate300, #cbd5e1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 28px;
    display: flex;
    justify-content: center;
}

.footer-bottom p {
    font-size: .85rem;
    color: var(--slate500);
}

/* ── Scroll animations ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns,
    .hero-checks {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-svg-wrap {
        display: none;
    }

    .features-grid,
    .pricing-grid,
    .steps-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: none;
    }

    .steps-line {
        display: none;
    }


}


@media (max-width: 767px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #hero {
        padding: 130px 0 50px;
    }

    #header {
        padding: 16px 0;
    }

    .btn-orange-xl {
        padding: 14px 32px;
        font-size: 1rem;
    }

    #cta p {
        margin-bottom: 24px;
    }

    #cta,
    #faq,
    #reviews,
    #how,
    #pricing,
    #features {
        padding: 60px 0;
    }

    .container{
        padding: 0 20px;
    }
}