:root {
    --dio-bg-dark: #020617;
    --dio-navy: #0f172a;
    --dio-text: #e2e8f0;
    --dio-muted: #94a3b8;

    --dio-cyan: #22d3ee;
    --dio-cyan-soft: rgba(34, 211, 238, 0.18);

    --dio-purple: #818cf8;
    --dio-gradient: linear-gradient(135deg, #22d3ee, #818cf8);
    --dio-border: rgba(255, 255, 255, 0.08);
    --dio-text-dim: #94a3b8;
}

body {
    background: var(--dio-bg-dark);
    color: var(--dio-text);
    font-family:
        "Inter",
        -apple-system,
        sans-serif;
    line-height: 1.6;
}
/* ===============================
   DIOCTA PREMIUM NAVBAR
================================ */

.main-header {
    transition: all 0.35s ease;
    z-index: 999;
}

/* glass navbar surface */
.navbar {
    background: rgba(2, 6, 23, 0.75) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* subtle glow border line */
.navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 211, 238, 0.8),
        transparent
    );
    opacity: 0.7;
}

/* brand */
.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    color: #fff !important;
}

.brand-dot {
    color: var(--dio-cyan);
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.7);
}

/* nav links */
.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--dio-muted) !important;
    transition: 0.3s ease;
    padding: 6px 0;
}

/* gradient underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--dio-gradient);
    border-radius: 2px;
    transition: 0.35s ease;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===============================
   PREMIUM CTA BUTTON
================================ */

.diocta-btn {
    background: var(--dio-gradient);
    border: none;
    padding: 10px 22px;
    border-radius: 14px;
    font-weight: 600;
    color: #000 !important;
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.35);
    transition: 0.35s ease;
}

.diocta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.45);
}

/* ===============================
   PREMIUM MOBILE TOGGLER
================================ */

.premium-toggler {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.premium-toggler span {
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
    border-radius: 2px;
    transition: 0.3s ease;
}

.premium-toggler:hover span {
    background: var(--dio-cyan);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.7);
}

/* ===============================
   SCROLL DEPTH EFFECT
================================ */

.main-header.scrolled .navbar {
    background: rgba(2, 6, 23, 0.92) !important;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6);
}
.ultra-hero {
    position: relative;
    padding: 140px 0;
    background: #020617;
    color: #fff;
    overflow: hidden;
}

/* animated aurora light */
.aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(34, 211, 238, 0.15),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(129, 140, 248, 0.15),
            transparent 40%
        );
    animation: auroraMove 14s infinite alternate ease-in-out;
}

@keyframes auroraMove {
    from {
        transform: translateY(-20px);
    }
    to {
        transform: translateY(20px);
    }
}

/* floating glow orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
    animation: float 10s infinite alternate ease-in-out;
}

.orb1 {
    width: 360px;
    height: 360px;
    background: #22d3ee;
    top: -60px;
    left: 5%;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: #818cf8;
    bottom: -40px;
    right: 5%;
}

@keyframes float {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(40px);
    }
}

/* subtle tech grid */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px
    );
    background-size: 40px 40px;
    mask-image: radial-gradient(circle, black, transparent 75%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
}

.hero-content span {
    background: linear-gradient(90deg, #fff, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: #94a3b8;
    margin: 20px 0 30px;
    font-size: 18px;
}

.hero-features span {
    margin-right: 18px;
    font-size: 14px;
    color: #cbd5f5;
}
/* ================= HERO PRICING ================= */

.hero-pricing {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* main price */
.price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 800;
    color: #fff;
}

.price-badge .currency {
    font-size: 18px;
    color: var(--dio-cyan);
}

.price-badge .amount {
    font-size: 38px;
    background: linear-gradient(90deg, #22d3ee, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-badge .label {
    font-size: 13px;
    color: var(--dio-text-dim);
    margin-left: 6px;
}

/* advance highlight */
.advance-note {
    font-size: 15px;
    color: #22d3ee;
    font-weight: 600;
}

/* balance note */
.balance-note {
    font-size: 13px;
    color: #94a3b8;
}

/* mobile */
@media (max-width: 768px) {
    .price-badge .amount {
        font-size: 32px;
    }
}
/* status pill */
.status-pill {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    margin-bottom: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 8px #22d3ee;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}
/* glowing animated border wrapper */
.tactical-card {
    position: relative;
    background: var(--dio-bg-dark);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1px; /* Gap for border beam */
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(8, 171, 193, 0.4);
}

.border-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0%,
        var(--dio-cyan) 25%,
        transparent 50%
    );
    animation: rotate-beam 4s linear infinite;
    z-index: 1;
}

.card-inner {
    background: var(--dio-bg-dark);
    border-radius: 23px;
    padding: 48px;
    position: relative;
    z-index: 2;
}

.card-inner h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.sub-label {
    color: var(--dio-text-dim);
    font-size: 0.9rem;
    margin-bottom: 35px;
}
.tactical-card option {
    background: var(--dio-bg-dark);
    color: #fff;
}
/* --- Form Micro-Interactions --- */
.input-group-dio {
    margin-bottom: 25px;
}
.input-group-dio label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--dio-text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.input-group-dio input,
.input-group-dio select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--dio-border);
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.input-group-dio input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--dio-cyan);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
    outline: none;
}

/* --- The Main Button --- */
.btn-deploy-glow {
    width: 100%;
    background: var(--dio-cyan);
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(34, 211, 238, 0.3);
}

.btn-deploy-glow:hover {
    background: #fff;
    color: var(--dio-cyan);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 211, 238, 0.3);
}

/* --- Animations --- */
@keyframes rotate-beam {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* Responsive Fix */
@media (max-width: 991px) {
    .headline-xl {
        font-size: 3.5rem;
    }
    .tactical-card {
        margin-top: 50px;
    }
}
/* ================= TRUST STRIP ================= */
/* ===== TRUST STRIP PREMIUM FIX ===== */

.trust-strip {
    position: relative;
    padding: 32px 0;
    background: rgba(8, 12, 30, 0.85);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ambient glow */
.trust-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 25% 50%,
            rgba(34, 211, 238, 0.18),
            transparent 60%
        ),
        radial-gradient(
            circle at 75% 50%,
            rgba(129, 140, 248, 0.18),
            transparent 60%
        );
    opacity: 0.55;
    pointer-events: none;
}

/* layout */
.trust-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* items */
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

/* glowing icon */
.trust-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.35);
    box-shadow: 0 0 14px rgba(34, 211, 238, 0.45);
    font-size: 15px;
    transition: 0.3s ease;
}

/* hover premium */
.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item:hover .trust-icon {
    box-shadow:
        0 0 20px rgba(34, 211, 238, 0.85),
        0 0 35px rgba(34, 211, 238, 0.35);
    border-color: rgba(34, 211, 238, 0.8);
}

/* responsive */
@media (max-width: 768px) {
    .trust-wrapper {
        justify-content: center;
        text-align: center;
    }
}

/* ================= FEATURES SECTION ================= */

.features-section {
    position: relative;
    padding: 110px 0;
    background: #020617;
    overflow: hidden;
}

/* ambient background glow */
.features-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(34, 211, 238, 0.12),
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(129, 140, 248, 0.12),
            transparent 60%
        );
    opacity: 0.45;
    pointer-events: none;
}

/* header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.section-header p {
    color: #94a3b8;
    line-height: 1.7;
}

/* grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* premium glass cards */
.feature-card {
    position: relative;
    padding: 36px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: 0.35s ease;
    overflow: hidden;
}

/* glow border accent */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(34, 211, 238, 0.25),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

/* hover lift */
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(34, 211, 238, 0.25);
}

/* icons */
.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 22px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.25);
}

/* text */
.feature-card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 15px;
}

/* ===== DESKTOP GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* ===== MOBILE CAROUSEL ===== */
@media (max-width: 768px) {
    .features-carousel {
        overflow: hidden;
    }

    .features-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        min-width: 85%;
        scroll-snap-align: start;
    }
}

/* ================= PROCESS SECTION ================= */

.process-section {
    position: relative;
    padding: 110px 0;
    background: #020617;
    overflow: hidden;
}

/* soft ambient glow */
.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 30% 40%,
            rgba(34, 211, 238, 0.12),
            transparent 60%
        ),
        radial-gradient(
            circle at 70% 60%,
            rgba(129, 140, 248, 0.12),
            transparent 60%
        );
    opacity: 0.45;
    pointer-events: none;
}

/* layout */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* cards */
.process-card {
    position: relative;
    padding: 40px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: 0.35s ease;
    text-align: center;
}

/* hover lift */
.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(34, 211, 238, 0.25);
}

/* step number */
.step-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.35);
    box-shadow: 0 0 14px rgba(34, 211, 238, 0.25);
}

/* text */
.process-card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.process-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 15px;
}
/* ================= SHOWCASE SECTION ================= */

.showcase-section {
    position: relative;
    padding: 120px 0;
    background: #020617;
    overflow: hidden;
}

/* ambient glow */
.showcase-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 30% 40%,
            rgba(34, 211, 238, 0.12),
            transparent 60%
        ),
        radial-gradient(
            circle at 70% 60%,
            rgba(129, 140, 248, 0.12),
            transparent 60%
        );
    opacity: 0.45;
    pointer-events: none;
}

/* layout */
.showcase-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* device frame */
.device {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(34, 211, 238, 0.15);
    transition: 0.4s ease;
}

.device img {
    display: block;
    width: 100%;
    height: auto;
}

/* laptop size */
.laptop {
    width: 520px;
}

/* mobile floating */
.mobile {
    width: 200px;
    position: absolute;
    right: 20%;
    bottom: -30px;
    transform: translateY(0);
    animation: floatMobile 4s ease-in-out infinite;
}

/* floating animation */
@keyframes floatMobile {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* hover lift */
.device:hover {
    transform: translateY(-10px);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.8),
        0 0 35px rgba(34, 211, 238, 0.25);
}

/* responsive */
@media (max-width: 900px) {
    .mobile {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }
}

.pricing-strip {
    background-color: var(--dio-bg-dark);
    padding: 60px 20px;
    font-family:
        "Inter",
        -apple-system,
        sans-serif;
}

.pricing-card-premium {
    position: relative;
    background: var(--dio-navy);
    border: 1px solid var(--dio-border);
    border-radius: 28px;
    padding: 35px 50px;
    overflow: hidden; /* Clips the internal glows */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Background Glow Decorations */
.glow-1,
.glow-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.glow-1 {
    top: -100px;
    left: -50px;
    background: var(--dio-cyan-soft);
}
.glow-2 {
    bottom: -100px;
    right: -50px;
    background: rgba(129, 140, 248, 0.1);
}

.pricing-content-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Info Section */
.pricing-badge {
    display: inline-block;
    background: var(--dio-cyan-soft);
    color: var(--dio-cyan);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.pricing-info h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.pricing-info p {
    color: var(--dio-muted);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-price {
    text-align: center;
}

.pricing-price .currency {
    color: var(--dio-cyan);
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.pricing-price .amount {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.pricing-price .period {
    display: block;
    color: var(--dio-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: -5px;
}

/* Features List */
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 40px;
    border-left: 1px solid var(--dio-border);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item svg {
    width: 16px;
    height: 16px;
    color: var(--dio-cyan);
}

.feature-item span {
    color: var(--dio-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Button & Action */
.pricing-btn-premium {
    background: var(--dio-gradient);
    color: #020617 !important;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(34, 211, 238, 0.4);
}

.pricing-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(34, 211, 238, 0.5);
    filter: brightness(1.1);
}

.no-fees {
    color: var(--dio-muted);
    font-size: 11px;
    margin-top: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .pricing-content-grid {
        flex-direction: column;
        text-align: center;
    }
    .pricing-features {
        border-left: none;
        padding: 20px 0;
        align-items: center;
    }
    .pricing-info p {
        max-width: 100%;
    }
}
/* ===============================
   DIOCTA PREMIUM FOOTER
================================ */

.diocta-footer {
    position: relative;
    background: linear-gradient(180deg, #020617 0%, #01030d 100%);
    color: #cbd5f5;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ambient glow */
.diocta-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(34, 211, 238, 0.18),
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(129, 140, 248, 0.18),
            transparent 60%
        );
    opacity: 0.35;
    pointer-events: none;
}

/* subtle glass reflection */
.diocta-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.04),
        transparent 70%
    );
    opacity: 0.25;
}

/* brand */
.footer-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-text {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

/* titles */
.footer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.25s ease;
    position: relative;
}

/* elegant underline reveal */
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, #22d3ee, #818cf8);
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e2e8f0;
}

.footer-links a:hover::after {
    width: 100%;
}

/* social icons */
.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 8px;
    color: #cbd5f5;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

/* glow hover */
.footer-social a:hover {
    color: #fff;
    border-color: #22d3ee;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.45);
    transform: translateY(-2px);
}

/* bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #64748b;
    font-size: 13px;
    padding-top: 18px;
}

/* responsive spacing */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}
/* Background Wrapper */
/* =============================
   PAGE BACKGROUND
============================= */

.whatsapp-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 100px;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(34, 211, 238, 0.15),
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(129, 140, 248, 0.15),
            transparent 50%
        ),
        #020617;
}

/* =============================
   GLASS CARD
============================= */

.whatsapp-card {
    width: 100%;
    max-width: 420px;
    padding: 40px 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(34, 211, 238, 0.15);
    text-align: center;
}

/* =============================
   HEADER
============================= */

.header h1 {
    color: #fff;
    font-size: 1.6rem;
    margin-top: 12px;
}

.header p {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 6px;
}

/* WhatsApp icon glow */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.35);
    font-size: 28px;
    color: #25d366;
}

/* =============================
   FORM
============================= */

.form-group {
    margin-top: 26px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: 0.25s;
}

.form-group input:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.25);
}

/* intl-tel-input override */
.iti input {
    background: transparent !important;
    color: #fff !important;
}

/* =============================
   BUTTON
============================= */

#sendOtpBtn {
    width: 100%;
    margin-top: 24px;
    padding: 15px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, #22d3ee, #818cf8);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.35);
    transition: 0.35s ease;
}

#sendOtpBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(34, 211, 238, 0.45);
}

#sendOtpBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* =============================
   MESSAGES
============================= */

.message-area {
    margin-top: 14px;
    font-size: 14px;
}

.text-green-600 {
    color: #22c55e !important;
}

.text-red-600 {
    color: #ef4444 !important;
}

/* error message */
.error-message {
    margin-top: 16px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

/* scrolling engagement ticker */
.onboarding-ticker {
    margin-top: 22px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
    display: flex;
    gap: 50px;
    padding: 10px 0;
    white-space: nowrap;
    animation: tickerMove 18s linear infinite;
    color: #cbd5f5;
    font-size: 13px;
}

.ticker-track span {
    opacity: 0.9;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.progress-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #94a3b8;
    letter-spacing: 0.3px;
}
.engagement-pulse {
    margin-top: 10px;
    font-size: 13px;
    color: #22d3ee;
    animation: pulseFade 2s infinite;
}

@keyframes pulseFade {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* background */
.otp-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(34, 211, 238, 0.15),
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(129, 140, 248, 0.15),
            transparent 50%
        ),
        #020617;
    padding-top: 100px;
}

/* glass card */
.otp-card {
    width: 100%;
    max-width: 420px;
    padding: 40px 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(34, 211, 238, 0.15);
    text-align: center;
}

/* icon */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.35);
    font-size: 28px;
    color: #25d366;
}

.subtitle {
    color: #94a3b8;
}

/* onboarding message */
.journey-message {
    margin-top: 14px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #c7f9cc;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.progress-hint {
    margin-top: 6px;
    font-size: 13px;
    color: #94a3b8;
}

/* otp input */
.otp-input {
    margin-top: 22px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-align: center;
    font-size: 20px;
    letter-spacing: 6px;
}

.otp-input:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.25);
}

/* verify button */
.verify-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, #22d3ee, #818cf8);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.35);
}

/* resend */
.resend-btn {
    margin-top: 16px;
    background: none;
    border: none;
    color: #22d3ee;
    font-weight: 500;
    cursor: pointer;
}

.resend-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ticker */
.onboarding-ticker {
    margin-top: 18px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
    display: flex;
    gap: 50px;
    padding: 10px 0;
    white-space: nowrap;
    animation: tickerMove 18s linear infinite;
    color: #cbd5f5;
    font-size: 13px;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* pulse */
.engagement-pulse {
    margin-top: 10px;
    font-size: 13px;
    color: #22d3ee;
    animation: pulseFade 2s infinite;
}

@keyframes pulseFade {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.message-area {
    margin-top: 15px;
    font-size: 13px;
}
.template-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f5f6fa;
}

.preview-container {
    flex: 1;
    padding: 10px;
}

.preview-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ================= BACKGROUND ================= */
/* ================= BACKGROUND ================= */

.details-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 30px 30px;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(99, 102, 241, 0.25),
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(34, 211, 238, 0.25),
            transparent 50%
        ),
        #020617;
    perspective: 1200px;
    padding-top: 100px;
}

/* ================= 3D FLOATING CARD ================= */

.details-card {
    width: 100%;
    max-width: 460px;
    padding: 50px 40px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.04);
    transform: rotateX(1deg) rotateY(-1deg);
    transition: 0.6s ease;
}

.details-card:hover {
    transform: rotateX(0) rotateY(0) translateY(-8px);
}

/* glowing edge */
.details-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 1px;
    background: linear-gradient(135deg, #22d3ee, #818cf8);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    z-index: -1;
}

/* ================= ICON BADGE ================= */

.icon-badge {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #22d3ee, #818cf8);
    box-shadow:
        0 10px 25px rgba(34, 211, 238, 0.4),
        inset 0 0 12px rgba(255, 255, 255, 0.3);
}

/* ================= TYPOGRAPHY ================= */
/* ================= TEXT ENHANCEMENT ================= */

.title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.4px;
}

.subtitle {
    color: #cbd5f5;
    font-size: 15px;
    line-height: 1.7;
}

.setup-status {
    color: #22d3ee;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* form hints */
.form-group small {
    color: #94a3b8;
    font-size: 12px;
}

/* launch hint */
.launch-hint {
    margin-top: 18px;
    font-size: 13px;
    color: #22d3ee;
    letter-spacing: 0.3px;
    opacity: 0.9;
}
/* ================= FORM ================= */

/* ================= INPUT FIELD PREMIUM HIGHLIGHT ================= */

.form-group label {
    font-size: 12px;
    color: #cbd5f5;
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.6px;
    font-weight: 600;
}

/* input base */
.form-group input {
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
    transition: all 0.25s ease;
}

/* placeholder */
.form-group input::placeholder {
    color: #7c8aa5;
}

/* hover effect */
.form-group input:hover {
    border-color: rgba(34, 211, 238, 0.4);
}

/* 🔥 focus glow highlight */
.form-group input {
    outline: none;
    border-color: #22d3ee;
    background: rgba(255, 255, 255, 0.06);

    box-shadow:
        0 0 0 2px rgba(34, 211, 238, 0.25),
        0 0 12px rgba(34, 211, 238, 0.35);
}

/* glow animation on focus */
.form-group input {
    animation: focusGlow 0.4s ease;
}

@keyframes focusGlow {
    from {
        box-shadow: 0 0 0 rgba(34, 211, 238, 0);
    }
    to {
        box-shadow:
            0 0 0 2px rgba(34, 211, 238, 0.25),
            0 0 12px rgba(34, 211, 238, 0.35);
    }
}
.form-group input:not(:placeholder-shown) {
    border-color: #22d3ee;
}
/* ================= TERMS ================= */

.terms-box {
    margin-top: 16px;
    font-size: 13px;
    color: #94a3b8;
}

.terms-box a {
    color: #22d3ee;
    text-decoration: none;
}

/* ================= BUTTON ================= */

button {
    width: 100%;
    margin-top: 26px;
    padding: 16px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: #000;
    background: linear-gradient(135deg, #22d3ee, #818cf8);
    box-shadow: 0 15px 35px rgba(34, 211, 238, 0.4);
    transition: 0.35s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 55px rgba(34, 211, 238, 0.5);
}

/* arrow animation */
button i {
    animation: arrowMove 2s infinite ease-in-out;
}

@keyframes arrowMove {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* ================= LAUNCH HINT ================= */

.launch-hint {
    margin-top: 18px;
    font-size: 13px;
    color: #22d3ee;
    opacity: 0.9;
}

/* ========= domain page css====== */

/* ================= PAGE BACKGROUND ================= */

.domain-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(34, 211, 238, 0.18),
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(129, 140, 248, 0.18),
            transparent 50%
        ),
        #020617;
    padding-top: 100px;
}

/* ================= CARD ================= */

.domain-card {
    width: 100%;
    max-width: 720px;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

/* ================= TEXT ================= */

.title {
    color: #fff;
    text-align: center;
    font-size: 28px;
    margin-bottom: 6px;
}

.subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 25px;
}

.option-box {
    margin-top: 26px;
}

.option-box h3 {
    color: #cbd5f5;
    margin-bottom: 12px;
    font-size: 15px;
}

/* ================= DOMAIN GRID ================= */

.domain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* hide radio */
.domain-option input {
    display: none;
}

/* domain card */
.domain-box {
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    text-align: center;
    transition: 0.25s ease;
}

/* 🔥 FIX: domain text visibility */
.domain-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.domain-name strong {
    color: #22d3ee;
}
/* hover */
.domain-box:hover {
    border-color: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.25);
}

.domain-option input:checked + .domain-box {
    border-color: #22d3ee;
    background: rgba(34, 211, 238, 0.12);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}
/* selected */
@media (max-width: 600px) {
    .domain-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 992px) {
    .domain-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}

.available {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.taken {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.35);
}
.premium {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.35);
}
.domain-option.taken {
    opacity: 0.55;
    cursor: not-allowed;
}
/* badge */
.badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
}

.available {
    background: #16a34a33;
    color: #22c55e;
}

/* ================= EXPERT OPTION ================= */

.expert-card {
    padding: 16px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fbbf24;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s;
}

.expert-card:hover {
    background: rgba(245, 158, 11, 0.18);
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.3);
}

/* ================= CUSTOM DOMAIN ================= */

.custom-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-box input {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
}

.custom-box input::placeholder {
    color: #64748b;
}

.custom-box input:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

/* loader */
.loader {
    width: 18px;
    height: 18px;
    border: 3px solid #22d3ee55;
    border-top-color: #22d3ee;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.status {
    margin-top: 8px;
    font-size: 13px;
}

/* ================= BUTTON ================= */

#continueBtn {
    width: 100%;
    margin-top: 30px;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #000;
    background: linear-gradient(135deg, #22d3ee, #818cf8);
    box-shadow: 0 15px 35px rgba(34, 211, 238, 0.4);
    transition: 0.35s;
}

#continueBtn:hover {
    transform: translateY(-2px);
}

#continueBtn i {
    animation: arrowMove 2s infinite ease-in-out;
}

@keyframes arrowMove {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

.custom-box {
    position: relative;
}

.custom-box input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

.loader {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 18px;
    height: 18px;
    border: 3px solid #ccc;
    border-top-color: #4338ca;
    border-radius: 50%;
    display: none;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#domainStatus {
    margin-top: 6px;
    font-size: 13px;
}

button {
    width: 100%;
    padding: 14px;
    background: #4338ca;
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #312e81;
}
/* ===== BACKGROUND ===== */

.payment-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, #1e293b, #020617 60%);
    padding: 20px;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* soft glow */
.payment-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.25),
        transparent 70%
    );
    filter: blur(80px);
    top: 10%;
    left: 10%;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from {
        transform: translateY(-20px);
    }
    to {
        transform: translateY(20px);
    }
}

/* ===== CARD ===== */

.payment-card {
    width: 100%;
    max-width: 440px;
    padding: 45px 38px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
}

/* ===== ICON ===== */

.icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35);
}

/* ===== TEXT ===== */

.payment-card h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #22d3ee;
}

.subtitle {
    color: #cbd5f5;
    font-size: 15px;
    margin-bottom: 25px;
}

/* ===== PRICE ===== */

.price {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(90deg, #22d3ee, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

/* ===== BENEFITS ===== */

.benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e2e8f0;
    font-size: 14px;
}

.benefits i {
    color: #22c55e;
}

/* ===== BUTTON ===== */

.pay-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35);
}

/* shimmer */
.pay-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
}

.pay-btn:hover::after {
    left: 100%;
}

/* success button */

.btn-success {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    background: #22c55e;
    color: #fff;
    border: none;
    font-weight: 700;
}

/* continue button */

.next-btn {
    display: block;
    margin-top: 12px;
}

/* loader */

.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* trust strip */

.trust-strip {
    margin-top: 18px;
    font-size: 13px;
    color: #94a3b8;
}

.trust-strip span {
    margin: 0 8px;
}

/* mobile */

@media (max-width: 480px) {
    .payment-card {
        padding: 35px 24px;
    }

    .price {
        font-size: 36px;
    }
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.secure-note {
    margin-top: 15px;
    font-size: 12px;
    color: #6b7280;
}
/* ===== SUCCESS POPUP ===== */
/* ================= SUCCESS OVERLAY ================= */

.success-overlay {
    position: fixed !important;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.success-box {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(24px);
    width: 90%;
    max-width: 360px;
    padding: 32px 26px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
    animation: popupScale 0.3s ease;
}
.success-box h2 {
    color: #22d3ee;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
@keyframes popupScale {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.45);
}

.success-text {
    font-weight: 600;
    margin-top: 6px;
    color: #e2e8f0;
}

.success-sub {
    color: #94a3b8;
    margin-top: 6px;
}

.time-note {
    margin: 14px 0;
    color: #cbd5f5;
    font-size: 13px;
}

.success-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.success-box button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.35);
}

/* ================= WIZARD BACKGROUND ================= */

.wizard-wrapper {
    padding-bottom: 40px;
    padding-top: 100px;
    background: radial-gradient(circle at 20% 20%, #020617, #020617 60%);
    padding-top: 100px;
}

.wizard-header {
    color: #e2e8f0;
    text-align: center;
    padding: 18px;
    font-size: 20px;
    font-weight: 600;
}

.wizard-container {
    max-width: 420px;
    margin: -20px auto;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(30px);
    border-radius: 22px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

/* ================= SECTIONS ================= */

.section {
    margin-bottom: 22px;
}

.label-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    position: absolute;
    background: #020617;
    top: -10px;
    padding: 0 6px;
    color: #94a3b8;
}

.form-step .section {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

/* ================= TOGGLE ================= */

.pill-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 3px;
}

.pill-toggle input {
    display: none;
}

.pill-toggle label {
    padding: 6px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    color: #94a3b8;
    transition: 0.2s;
}

.pill-toggle input:checked + label {
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    color: #fff;
}

/* ================= UPLOAD BOX ================= */

.upload-box {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
    color: #94a3b8;
}

.upload-box:hover {
    border-color: #22d3ee;
    background: rgba(34, 211, 238, 0.05);
}

/* ================= LOGO ROWS ================= */

.logo-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: 0.25s;
    border: 1px solid transparent;
}

.logo-row:hover {
    border-color: #22d3ee;
    transform: translateY(-1px);
}

.logo-row input {
    display: none;
}

.radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #64748b;
    margin-right: 10px;
}

.logo-row input:checked + .radio {
    background: #22d3ee;
    border-color: #22d3ee;
}

.logo-text {
    flex: 1;
    margin-left: 10px;
    color: #e2e8f0;
}

.logo-row img {
    height: 26px;
}

/* ================= COLOR PICKERS ================= */

.color-picker-row {
    display: flex;
    gap: 20px;
}

.color-field label {
    color: #94a3b8;
    font-size: 12px;
}

.color-field input {
    width: 60px;
    height: 36px;
    border: none;
    cursor: pointer;
    background: none;
}

/* ================= NAVIGATION ================= */

.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.next-btn {
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.next-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.35);
}

.back-btn {
    text-decoration: none;
    color: #94a3b8;
}

/* ================= STEP INDICATOR ================= */

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.step {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #64748b;
    transition: 0.25s;
}

.step.active {
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    color: #fff;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.35);
}

/* ================= STEPS ================= */

.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

/* ================= MOBILE ================= */

@media (max-width: 480px) {
    .wizard-container {
        padding: 18px;
    }
}
/* nav */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.next-btn {
    background: #5b0ea3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.back-btn {
    background: #eee;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
}
/* ===== Background ===== */
/* ================= THANK YOU PAGE ================= */

.thank-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at 20% 20%, #020617, #020617 70%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* ambient glow */
.thank-wrapper::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(34, 211, 238, 0.15),
        transparent 70%
    );
    top: -100px;
    left: -100px;
    filter: blur(80px);
    padding-top: 100px;
}

.thank-card {
    max-width: 520px;
    width: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(28px);
    border-radius: 24px;
    padding: 40px 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
    text-align: center;
    color: #e2e8f0;
    position: relative;
}

/* ================= SUCCESS ICON ================= */

.success-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.45);
    animation: pop 0.4s ease;
}

@keyframes pop {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================= TEXT ================= */

.thank-card h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.subtitle {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ================= INFO BOX ================= */

.info-box {
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 28px;
    font-weight: 500;
}

/* ================= NEXT STEPS ================= */

.next-steps {
    text-align: left;
    margin-bottom: 25px;
}

.next-steps h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.next-steps ul {
    padding-left: 18px;
    color: #cbd5f5;
    line-height: 1.7;
}

/* ================= BALANCE NOTE ================= */

.balance-note {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 14px;
}

/* ================= CONTACT ================= */

.contact-box {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 28px;
}

/* ================= ACTION BUTTONS ================= */

.actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.35);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 600;
    transition: 0.25s;
}

.btn-outline:hover {
    border-color: #22d3ee;
    color: #22d3ee;
}

/* ================= MOBILE ================= */

/* ===== PREMIUM NAVBAR TOGGLER ===== */
/* ================= PREMIUM NAV TOGGLER ================= */

.premium-toggler {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
}

/* subtle glow ring */
.premium-toggler::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(34, 211, 238, 0.25),
        rgba(99, 102, 241, 0.25)
    );
    opacity: 0;
    transition: 0.35s;
    z-index: -1;
}

/* hamburger lines */
.premium-toggler span {
    width: 22px;
    height: 1px;
    background: #e2e8f0;
    border-radius: 2px;
    transition: all 0.35s ease;
}

/* hover effect */
.premium-toggler:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.premium-toggler:hover::before {
    opacity: 1;
}

/* glow on hover */
.premium-toggler:hover span {
    background: #22d3ee;
}

/* ================= ACTIVE (X ICON) ================= */

.premium-toggler.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.premium-toggler.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.premium-toggler.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* active glow */
.premium-toggler.active {
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

/* dark navbar support */
.navbar-dark .premium-toggler span {
    background: #fff;
}

.navbar-light .premium-toggler span {
    background: var(--dio-cyan);
}
.navbar-light .premium-toggler span:nth-child(2) {
    width: 14px;
    margin-left: auto;
}
/* touch feedback */
.premium-toggler:active {
    transform: scale(0.92);
}
.balance-note {
    margin-top: 15px;
    font-size: 14px;
    color: #b45309;
    background: #fff7ed;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
}

.iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.1.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.1.1/build/img/flags@2x.png");
    }
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.btn-success {
    background: #16a34a;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    width: 100%;
    border: none;
    font-weight: 600;
}

.next-btn {
    display: block;
    margin-top: 12px;
    text-align: center;
}
/* =====================================================
   LARGE SCREENS (1400px+)
   ===================================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }

    .hero-content h1 {
        font-size: 4.2rem;
    }
}

/* =====================================================
   LAPTOPS & SMALL DESKTOPS
   ===================================================== */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* =====================================================
   TABLETS (LANDSCAPE)
   ===================================================== */
@media (max-width: 992px) {
    /* Navbar */
    .navbar-nav {
        background: rgba(2, 6, 23, 0.95);
        padding: 20px;
        border-radius: 14px;
        margin-top: 15px;
    }

    /* Hero layout stack */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    /* pricing */
    .pricing-content-grid {
        flex-direction: column;
        text-align: center;
    }

    .pricing-features {
        border-left: none;
        padding: 20px 0;
        align-items: center;
    }
}

/* =====================================================
   TABLETS (PORTRAIT)
   ===================================================== */
@media (max-width: 768px) {
    /* spacing */
    section {
        padding: 70px 0;
    }

    /* hero */
    .ultra-hero {
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* features carousel scroll */
    .features-grid {
        display: flex;
        overflow-x: auto;
        gap: 18px;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .feature-card {
        min-width: 85%;
        scroll-snap-align: start;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    /* trust strip center */
    .trust-wrapper {
        justify-content: center;
        text-align: center;
    }

    /* showcase mobile stacking */
    .mobile {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }
}

/* =====================================================
   MOBILE PHONES
   ===================================================== */
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }

    /* hero */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .status-pill {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* cards padding */
    .glass-card,
    .feature-card,
    .process-card,
    .pricing-card-premium,
    .payment-card,
    .thank-card {
        padding: 22px;
    }

    /* buttons full width */
    .diocta-btn,
    .btn-primary,
    .pricing-btn-premium,
    button {
        width: 100%;
    }

    /* domain grid single */
    .domain-grid {
        grid-template-columns: 1fr;
    }

    /* wizard container */
    .wizard-container {
        margin: 0 10px;
    }
    .card-inner {
        padding: 30px 20px;
    }
    .card-inner h3 {
        font-size: 1.5rem;
    }
}

/* =====================================================
   SMALL PHONES (360px)
   ===================================================== */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .premium-toggler {
        width: 42px;
        height: 42px;
    }
}
@media (max-width: 992px) {
    .trust-wrapper {
        justify-content: center;
        gap: 22px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .trust-strip {
        padding: 26px 0;
        margin-top: 0px;
    }

    .trust-wrapper {
        justify-content: center;
        text-align: center;
        gap: 18px;
    }

    .trust-item {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }

    .trust-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .features-section,
    .showcase-section,
    .process-section {
        padding: 40px 0;
    }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 480px) {
    .trust-strip {
        padding: 22px 0;
    }

    .trust-wrapper {
        gap: 14px;
    }

    .trust-item {
        font-size: 12px;
    }

    .trust-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}
/* ================= HERO ================= */

.about-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background:
        radial-gradient(
            circle at top,
            rgba(34, 211, 238, 0.12),
            transparent 60%
        ),
        #020617;
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
}

.about-hero p {
    color: #94a3b8;
    max-width: 600px;
    margin: auto;
}

/* ================= STORY ================= */

.about-story {
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    color: #fff;
    margin-bottom: 12px;
}

.about-text p {
    color: #94a3b8;
    line-height: 1.7;
}

/* glass card */
.about-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.about-card h3 {
    color: #22d3ee;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(34, 211, 238, 0.2),
        transparent 60%
    );
    opacity: 0.3;
}

/* ================= MISSION ================= */

.mission-section {
    padding: 60px 20px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mission-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mission-box h3 {
    color: #22d3ee;
}

.mission-box p {
    color: #94a3b8;
}

/* ================= WHY ================= */

.why-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

/* ================= STATS ================= */

.stats-section {
    padding: 70px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
}

.stat h3 {
    font-size: 2rem;
    color: #22d3ee;
}

.stat p {
    color: #94a3b8;
}

/* ================= TEAM ================= */

.team-section {
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-avatar {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
}

/* ================= CTA ================= */

.about-cta {
    padding: 80px 20px;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 100px 20px 60px;
    }

    .stats-grid {
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .whatsapp-card {
        padding: 40px 20px;
    }
    .header h1 {
        font-size: 1.4rem;
    }
    .status-pill {
        margin-bottom: 10px;
    }
    .hero-content p {
        margin: 10px 0 20px;
        font-size: 15px;
    }
    .hero-features span {
        margin-right: 10px;
    }
    .tactical-card {
        margin-top: 20px;
    }
}
/* ===== TERMS PAGE (DIOCTA DARK THEME) ===== */

.terms {
    background: var(--dio-bg-dark);
    padding: 50px 0;
}

/* Content Card */
.terms .container {
    max-width: 900px;
    background: var(--dio-navy);
    padding: 50px 45px;
    border-radius: 16px;
    border: 1px solid var(--dio-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Title */
.terms h1 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    background: var(--dio-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Headings */
.terms h2 {
    margin-top: 36px;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
    color: var(--dio-text);
    position: relative;
    padding-left: 14px;
}

/* Accent line */
.terms h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    height: 18px;
    width: 4px;
    background: var(--dio-gradient);
    border-radius: 3px;
}

/* Paragraphs */
.terms p {
    color: var(--dio-muted);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 16px;
}

/* Strong text */
.terms strong {
    color: var(--dio-text);
}

/* Lists */
.terms ul {
    margin-left: 22px;
    margin-bottom: 18px;
}

.terms ul li {
    margin-bottom: 8px;
    color: var(--dio-text-dim);
    font-size: 15.5px;
}

/* Links */
.terms a {
    color: var(--dio-cyan);
    text-decoration: none;
    font-weight: 500;
}

.terms a:hover {
    color: var(--dio-purple);
}

/* subtle separators between sections */
.terms h2:not(:first-of-type) {
    border-top: 1px solid var(--dio-border);
    padding-top: 25px;
}

/* Smooth reading width */
.terms p,
.terms ul {
    max-width: 760px;
}

/* Responsive */
@media (max-width: 768px) {
    .terms {
        padding: 30px 0;
    }

    .terms .container {
        padding: 30px 22px;
    }

    .terms h1 {
        font-size: 28px;
    }

    .terms h2 {
        font-size: 19px;
    }

    .terms p,
    .terms ul li {
        font-size: 14.5px;
    }
}
