﻿:root {
    --grad-1: #005CFF;
    --grad-2: #C63AF4;
    --grad-3: #FF8F00;
    --logo-navy: #0A1A2F;
    --muted: #6b7280;
    --card: #ffffff;
    --page-bg: #fcfdff;
}

/* Base */
body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--page-bg);
    color: var(--logo-navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

.small-muted {
    color: var(--muted);
}

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 6px 18px rgba(10,15,30,0.04);
}

.logo-img {
    height: 75px;
}

/* Gradient Title */
.gradient-text {
    background: linear-gradient(90deg, var(--grad-1), var(--grad-2), var(--grad-3));
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Buttons */
.btn-primary-gg {
    border: none;
    color: #fff;
    background: linear-gradient(90deg,var(--grad-2),var(--grad-1));
    box-shadow: 0 10px 30px rgba(12,63,255,0.08);
    padding: 10px 18px;
    border-radius: 12px;
}

.btn-outline-gg {
    border-radius: 12px;
    border: 1px solid rgba(10,20,40,0.06);
    color: var(--logo-navy);
    background: #fff;
}

.section {
    padding: 80px 0;
}

/* Cards */
.card-ghost {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(16,24,40,0.04);
    height: 100%;
}

/* Icon circle with gradient */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(16,24,40,0.06);
}

.g1 {
    background: linear-gradient(135deg,var(--grad-1),var(--grad-2));
}

.g2 {
    background: linear-gradient(135deg,var(--grad-2),var(--grad-3));
}

.g3 {
    background: linear-gradient(135deg,var(--grad-3),var(--grad-1));
}

.g4 {
    background: linear-gradient(135deg,#00D4FF,#7A1FFF);
}

.g5 {
    background: linear-gradient(135deg,#00C2A8,#C63AF4);
}

.g6 {
    background: linear-gradient(135deg,#FFB100,#FF5B7D);
}

/* Feature grid */
.feature-title {
    font-weight: 700;
    color: var(--logo-navy);
    margin-top: 8px;
}

.feature-desc {
    color: var(--muted);
    margin-bottom: 0;
}

/* Screens carousel */
.phone-frame {
    border-radius: 18px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(12,28,60,0.12);
    border: 1px solid rgba(10,15,40,0.04);
}

.mock-phone {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f6fb;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* How it works */
.step-bubble {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-right: 14px;
}

/* Testimonials */
.testimonial {
    border-radius: 10px;
    padding: 18px;
    background: linear-gradient(180deg,#ffffff,#fbfdff);
    box-shadow: 0 8px 30px rgba(10,20,40,0.04);
}

/* Footer */
footer {
    background: #071238;
    color: #e6f0ff;
    padding: 48px 0;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .section {
        padding: 48px 0;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }
}
