/* ==========================================================================
   WISEcloud - Premium Customer Landing Page Stylesheet
   Created with modern dark aesthetics, glassmorphism, & rich micro-animations
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ── Lenis Smooth Scroll Overrides ───────────────────────────────── */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

:root {
    --primary: #0066ff;
    --primary-light: #338aff;
    --primary-dark: #0047cc;
    --accent: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.25);
    --success: #00e676;
    --warning: #ffab40;
    --danger: #ff5252;
    --bg-dark: #050814;
    --bg-card: rgba(13, 20, 38, 0.45);
    --bg-card-hover: rgba(20, 30, 58, 0.65);
    --bg-card-solid: #0c1224;
    --border: rgba(0, 102, 255, 0.15);
    --border-hover: rgba(0, 212, 255, 0.35);
    --text: #f3f4f6;
    --text-muted: #8ea0be;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Universal Theme Smooth Transition ───────────────────────────── */
body,
.mockup-nav,
.service-card-tab,
.feature-card,
.guarantee-card,
.pricing-showcase-section,
.card-plan-item,
.comparison-table-wrapper,
.comparison-table,
.comparison-table th,
.comparison-table td,
.domain-checker-card,
.tld-card-item,
.faq-item,
.site-footer,
.login-modal-content,
.hero-domain-box,
.webdev-card,
.webdev-tech-stack,
.tech-title,
.tech-badge {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* ── Light Mode Color Theme Overrides ────────────────────────────── */
[data-theme="light"] {
    --bg-dark: #edf2fb;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.98);
    --bg-card-solid: #ffffff;
    --border: rgba(0, 102, 255, 0.18);
    --border-hover: rgba(0, 102, 255, 0.45);
    --text: #1e293b;
    --text-muted: #475569;
    --shadow: 0 20px 40px rgba(0, 102, 255, 0.08);
}

[data-theme="light"] body {
    background-color: #edf2fb;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 244, 255, 1) 0%, #edf2fb 100%);
    color: #1e293b;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6,
[data-theme="light"] .mockup-brand,
[data-theme="light"] .plan-title-head,
[data-theme="light"] .feature-title,
[data-theme="light"] .tld-extension-name,
[data-theme="light"] .promo-headline,
[data-theme="light"] .domain-checker-title,
[data-theme="light"] .card-header-title,
[data-theme="light"] .guarantee-card-title,
[data-theme="light"] .footer-col-title {
    color: #0f172a;
}

[data-theme="light"] .hero-title span {
    background: linear-gradient(135deg, #0f172a 30%, #0066ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero-desc,
[data-theme="light"] .promo-desc,
[data-theme="light"] .card-body-text,
[data-theme="light"] .feature-desc,
[data-theme="light"] .guarantee-card-desc,
[data-theme="light"] .domain-checker-sub,
[data-theme="light"] .footer-brand-desc,
[data-theme="light"] .target-user-desc {
    color: #475569;
}

[data-theme="light"] .mockup-nav {
    background: rgba(237, 242, 251, 0.18);
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

[data-theme="light"] .mockup-nav.scrolled {
    background: rgba(240, 244, 255, 0.65);
    border-bottom: 1px solid rgba(0, 102, 255, 0.18);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

[data-theme="light"] .mockup-menu a {
    color: #475569;
}

[data-theme="light"] .mockup-menu a:hover {
    color: #0066ff;
}

[data-theme="light"] .btn-hero-secondary {
    background: rgba(0, 102, 255, 0.06);
    border-color: rgba(0, 102, 255, 0.2);
    color: #0f172a;
}

[data-theme="light"] .btn-hero-secondary:hover {
    background: rgba(0, 102, 255, 0.12);
}

[data-theme="light"] .service-card-tab,
[data-theme="light"] .feature-card,
[data-theme="light"] .guarantee-card,
[data-theme="light"] .tld-card-item,
[data-theme="light"] .webdev-card,
[data-theme="light"] .webdev-tech-stack {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.06);
}

[data-theme="light"] .service-card-tab:hover,
[data-theme="light"] .feature-card:hover,
[data-theme="light"] .guarantee-card:hover,
[data-theme="light"] .webdev-card:hover {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.14);
}

[data-theme="light"] .webdev-card.featured-webdev {
    border-color: #0066ff;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.25), 0 10px 30px rgba(0, 102, 255, 0.1);
}

[data-theme="light"] .tech-title {
    color: #0f172a;
}

[data-theme="light"] .tech-badge {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
    color: #0055d4;
}

[data-theme="light"] .tech-badge:hover {
    background: #0066ff;
    border-color: #0066ff;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

[data-theme="light"] .webdev-price {
    border-top-color: rgba(0, 102, 255, 0.12);
}

[data-theme="light"] .price-value {
    background: linear-gradient(135deg, #0f172a 40%, #0066ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .btn-webdev-action {
    background: rgba(0, 102, 255, 0.06);
    border-color: rgba(0, 102, 255, 0.2);
    color: #0f172a;
}

[data-theme="light"] .btn-webdev-action:hover {
    background: rgba(0, 102, 255, 0.12);
    border-color: #0066ff;
    color: #0066ff;
}

[data-theme="light"] .btn-webdev-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    border-color: transparent;
}

[data-theme="light"] .btn-webdev-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

[data-theme="light"] .pricing-showcase-section {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.08);
}

[data-theme="light"] .billing-toggle-container {
    background: rgba(240, 244, 255, 0.95);
    border-color: rgba(0, 102, 255, 0.2);
}

[data-theme="light"] .billing-toggle-btn {
    color: #475569;
}

[data-theme="light"] .card-plan-item {
    background: #ffffff;
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
}

[data-theme="light"] .main-price-tag .price-num {
    background: linear-gradient(135deg, #0f172a 40%, #0066ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .main-price-tag .price-period {
    color: #64748b;
    -webkit-text-fill-color: #64748b;
}

[data-theme="light"] .spec-checklist {
    color: #1e293b;
}

[data-theme="light"] .domain-checker-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.08);
}

[data-theme="light"] .hero-domain-box {
    background: rgba(240, 244, 255, 0.95);
    border-color: rgba(0, 102, 255, 0.2);
}

[data-theme="light"] .hero-domain-input {
    color: #0f172a;
}

[data-theme="light"] .comparison-table-wrapper {
    background: #ffffff;
    border-color: rgba(0, 102, 255, 0.15);
}

[data-theme="light"] .comparison-table {
    background: #ffffff;
}

[data-theme="light"] .comparison-table th {
    background: rgba(241, 245, 249, 0.95);
    color: #0f172a;
}

[data-theme="light"] .comparison-table tr.category-row td {
    background: rgba(0, 102, 255, 0.08);
    color: #0055d4;
}

[data-theme="light"] .comparison-table td.feature-title-col {
    color: #0f172a;
}

[data-theme="light"] .comparison-table td {
    color: #475569;
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
}

[data-theme="light"] .faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 255, 0.15);
}

[data-theme="light"] .faq-question {
    color: #0f172a;
}

[data-theme="light"] .faq-item.active .faq-question {
    color: #ffffff;
}

[data-theme="light"] .faq-answer {
    color: #475569;
}

[data-theme="light"] .faq-item.active .faq-answer {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .site-footer {
    background: rgba(240, 244, 255, 0.9);
    border-top: 1px solid rgba(0, 102, 255, 0.15);
}

[data-theme="light"] .footer-links a {
    color: #475569;
}

[data-theme="light"] .footer-links a:hover {
    color: #0066ff;
}

[data-theme="light"] .footer-bottom {
    color: #64748b;
    border-top-color: rgba(0, 102, 255, 0.1);
}

[data-theme="light"] .login-modal-content {
    background: #ffffff;
    border-color: rgba(0, 102, 255, 0.2);
}

[data-theme="light"] .hero-badge-pill {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.3);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.06);
}

[data-theme="light"] .hero-stats-bar {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
}

[data-theme="light"] .hero-stat-number {
    background: linear-gradient(135deg, #0f172a 40%, #0066ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero-trust-badges {
    color: #475569;
}

[data-theme="light"] .domain-checker-wrapper .domain-checker-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.1), inset 0 1px 0 rgba(255,255,255,1);
}

[data-theme="light"] .tld-card-item:hover {
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.16);
}

[data-theme="light"] .footer-links-layer {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.06);
}

/* ── Reset & Base Layout ────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0%, var(--bg-dark) 100%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    font-weight: 700;
}

/* ── Scrollbar customization ────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 255, 0.3);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ── Milky Way & Night Cloud Scenery (Ultra-Low GPU Usage System) ── */
.nightsky-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: #030617;
}

/* Milky Way Galaxy Cosmic Nebula Arc - Static Pre-Graded Layer (No GPU Blur Filter) */
.milkyway-galaxy-arc {
    position: absolute;
    top: -15%;
    left: -5%;
    width: 110%;
    height: 125%;
    background:
        radial-gradient(ellipse 60% 50% at 45% 30%, rgba(147, 51, 234, 0.18) 0%, rgba(79, 70, 229, 0.12) 40%, transparent 75%),
        radial-gradient(ellipse 50% 40% at 70% 20%, rgba(56, 189, 248, 0.14) 0%, rgba(139, 92, 246, 0.08) 45%, transparent 70%),
        linear-gradient(125deg, transparent 25%, rgba(168, 85, 247, 0.08) 40%, rgba(0, 212, 255, 0.1) 50%, rgba(37, 99, 235, 0.06) 60%, transparent 75%);
    opacity: 0.95;
}

/* Moonlight Celestial Glow Aura - Clean Static Gradient */
.crescent-moonlight {
    position: absolute;
    top: 5%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 50% 50%, rgba(224, 242, 254, 0.14) 0%, rgba(56, 189, 248, 0.05) 45%, transparent 70%);
    border-radius: 50%;
}

/* Static Starfield (Zero GPU Repaint) */
.starfield {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 10% 15%, #ffffff 100%, transparent 100%),
        radial-gradient(2px 2px at 20% 40%, #e0f2fe 100%, transparent 100%),
        radial-gradient(1.5px 1.5px at 32% 12%, #a855f7 100%, transparent 100%),
        radial-gradient(2px 2px at 45% 28%, #ffffff 100%, transparent 100%),
        radial-gradient(1px 1px at 58% 8%, #38bdf8 100%, transparent 100%),
        radial-gradient(2.5px 2.5px at 68% 38%, #ffffff 100%, transparent 100%),
        radial-gradient(1.5px 1.5px at 82% 18%, #f0abfc 100%, transparent 100%),
        radial-gradient(2px 2px at 92% 42%, #ffffff 100%, transparent 100%),
        radial-gradient(1.5px 1.5px at 15% 65%, #38bdf8 100%, transparent 100%),
        radial-gradient(2px 2px at 38% 75%, #ffffff 100%, transparent 100%),
        radial-gradient(1px 1px at 75% 70%, #ffffff 100%, transparent 100%),
        radial-gradient(2px 2px at 88% 82%, #c084fc 100%, transparent 100%);
    opacity: 0.85;
}

/* Layered Night Cloud Landscape */
.night-clouds-landscape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    pointer-events: none;
}

.night-cloud-layer {
    position: absolute;
    bottom: 0;
    width: 120%;
    left: -10%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.cloud-layer-back {
    color: rgba(30, 41, 59, 0.65);
    bottom: 5%;
    opacity: 0.75;
}

.cloud-layer-mid {
    color: rgba(15, 23, 42, 0.85);
    bottom: -2%;
    opacity: 0.9;
}

.cloud-layer-front {
    color: rgba(7, 11, 27, 0.95);
    bottom: -8%;
    opacity: 1;
}

/* Light Mode Sky Adaptability */
[data-theme="light"] .nightsky-bg-container {
    background: #edf2fb;
}

[data-theme="light"] .milkyway-galaxy-arc {
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(0, 212, 255, 0.12) 0%, transparent 55%);
    filter: blur(50px);
}

[data-theme="light"] .starfield {
    opacity: 0.15;
}

[data-theme="light"] .cloud-layer-back {
    color: rgba(224, 231, 255, 0.8);
}

[data-theme="light"] .cloud-layer-mid {
    color: rgba(238, 242, 255, 0.9);
}

[data-theme="light"] .cloud-layer-front {
    color: rgba(243, 247, 254, 0.98);
}

/* Reveal / Entrance Animations */
@keyframes reveal-up {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-scale {
    from { opacity: 0; transform: scale(0.92) translateY(24px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.reveal-up {
    opacity: 0;
    animation: reveal-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-up.delay-1 { animation-delay: 0.1s; }
.reveal-up.delay-2 { animation-delay: 0.2s; }
.reveal-up.delay-3 { animation-delay: 0.35s; }
.reveal-up.delay-4 { animation-delay: 0.5s; }

/* ── Glow Background Orbs (GPU Optimized Static Radials) ─────────── */
.bg-glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.02) 40%, transparent 65%);
    z-index: -1;
    pointer-events: none;
}

.orb-1 {
    top: -200px;
    left: -100px;
}

.orb-2 {
    top: 600px;
    right: -200px;
}

.orb-3 {
    bottom: -100px;
    left: 15%;
}

/* ── Ticker Banner ─────────────────────────────────────────────── */
.ticker-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 12px 24px;
    background: rgba(0, 102, 255, 0.08);
    border-bottom: 1px solid rgba(0, 102, 255, 0.15);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    overflow-x: auto;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-pill-green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.mockup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 16px 50px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(3, 6, 23, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
    transform: translateZ(0);
}

.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mockup-nav.scrolled {
    padding: 12px 50px;
    background: rgba(3, 6, 23, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.mockup-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(130deg, #ffffff 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    position: relative;
    text-shadow: 0 0 16px rgba(0, 212, 255, 0.3);
}

[data-theme="light"] .mockup-brand {
    background: linear-gradient(130deg, #0f172a 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
}

.mockup-brand .brand-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 11px;
    margin-right: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.45);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.18);
}

.mockup-brand .brand-logo-svg {
    color: #ffffff;
    flex-shrink: 0;
}

.mockup-brand sub {
    font-size: 11.5px;
    font-weight: 700;
    -webkit-text-fill-color: var(--accent);
    letter-spacing: 1.5px;
    margin-left: 2px;
    bottom: -2px;
    text-transform: uppercase;
    vertical-align: baseline;
    position: relative;
    top: 6px;
}

[data-theme="light"] .mockup-brand sub {
    -webkit-text-fill-color: var(--primary);
}

.mockup-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.mockup-menu a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    padding: 6px 0;
}

.mockup-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.2s ease;
    border-radius: 2px;
}

.mockup-menu a:hover {
    color: #ffffff;
}

.mockup-menu a:hover::after {
    width: 100%;
}

.mockup-menu li.active-link a {
    color: var(--accent);
}

.mockup-menu li.active-link a::after {
    width: 100%;
    background: var(--accent);
}

/* ── Hero Section ─────────────────────────────────────────────── */
.hero-section {
    padding: 72px 24px 48px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    border-radius: 50px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease;
    animation: reveal-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge-pill:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 102, 255, 0.18);
    transform: translateY(-1px);
}

.hero-badge-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 62px;
    line-height: 1.18;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    animation: reveal-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff 20%, var(--accent) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding-bottom: 0.1em;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.35);
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    border-radius: 2px;
    z-index: -1;
}

[data-theme="light"] .hero-title span {
    filter: none;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 44px;
    line-height: 1.75;
    animation: reveal-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    animation: reveal-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.6);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ── Service Cards Section ─────────────────────────────────────── */
.service-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1240px;
    margin: 48px auto 72px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.service-card-tab,
.service-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: reveal-scale 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-cards-container .service-card-tab:nth-child(1),
.service-cards-container .service-card-item:nth-child(1) { animation-delay: 0.1s; }
.service-cards-container .service-card-tab:nth-child(2),
.service-cards-container .service-card-item:nth-child(2) { animation-delay: 0.22s; }
.service-cards-container .service-card-tab:nth-child(3),
.service-cards-container .service-card-item:nth-child(3) { animation-delay: 0.34s; }

/* ── Web Development Section ───────────────────────────────────── */
.webdev-section {
    padding: 50px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-align: center;
}

.webdev-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.webdev-grid .webdev-card:nth-child(1) { animation-delay: 0.1s; }
.webdev-grid .webdev-card:nth-child(2) { animation-delay: 0.2s; }
.webdev-grid .webdev-card:nth-child(3) { animation-delay: 0.3s; }
.webdev-grid .webdev-card:nth-child(4) { animation-delay: 0.4s; }

.webdev-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: reveal-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.webdev-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.15);
}

.webdev-card.featured-webdev {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.25), 0 15px 40px rgba(0, 0, 0, 0.4);
}

.webdev-card.featured-webdev:hover {
    border-color: var(--accent);
    box-shadow: 0 0 45px rgba(0, 212, 255, 0.4), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.webdev-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.webdev-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
    transition: var(--transition);
}

.webdev-card:hover .webdev-icon-wrapper {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.25);
    transform: scale(1.05) rotate(5deg);
}

.webdev-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.webdev-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.webdev-features {
    list-style: none;
    font-size: 12px;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.webdev-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.webdev-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

.webdev-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    background: linear-gradient(135deg, var(--text) 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-webdev-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-webdev-action:hover {
    background: rgba(0, 102, 255, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.btn-webdev-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-webdev-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.45);
}

.webdev-tech-stack {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 30px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tech-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tech-badge {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.tech-badge:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.service-card-tab::before,
.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-tab:hover,
.service-card-item:hover {
    transform: translateY(-12px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 30px 70px rgba(0, 102, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card-tab:hover::before,
.service-card-item:hover::before {
    opacity: 1;
    height: 4px;
}

.card-icon-box {
    width: 54px;
    height: 54px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 22px;
    box-shadow: inset 0 2px 5px rgba(0, 212, 255, 0.1);
    transition: var(--transition);
}

.service-card-tab:hover .card-icon-box,
.service-card-item:hover .card-icon-box {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.25);
    transform: scale(1.05) rotate(5deg);
}

.card-header-title {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.card-body-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 60px;
    flex-grow: 1;
}

.btn-tab-action,
.btn-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.btn-tab-action:hover,
.btn-card-action:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.45);
    transform: translateY(-1px);
}

/* ── Pricing Showcase Section (Modernized Dark Theme) ───────── */
.pricing-showcase-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 56px 40px;
    border-radius: 32px;
    max-width: 1240px;
    margin: 0 auto 72px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pricing-showcase-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.pricing-promo-banner {
    padding-right: 12px;
}

.promo-headline {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1.2px;
}

.promo-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 26px;
}

/* Billing Toggle Switch */
.billing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(5, 8, 20, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.25);
    padding: 5px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.billing-toggle-btn {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.billing-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.billing-discount-badge {
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.3);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 4px;
}

.btn-cyan-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00d4ff, #0088cc);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.btn-cyan-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.5);
    filter: brightness(1.1);
}

/* 3 PRICING CARDS ROW - HIGH CONTRAST DARK INTERIOR */
.pricing-cards-triple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.card-plan-item {
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    text-align: left;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    will-change: transform;
    transform: translateZ(0);
}

.card-plan-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.25);
}

/* Top Header Banners */
.plan-header-banner {
    padding: 12px 18px;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-umkm {
    background: linear-gradient(90deg, #10b981, #059669);
}

.banner-unlimited {
    background: linear-gradient(90deg, #ec4899, #db2777);
}

.banner-enterprise {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

/* Popular card highlighting (GPU Optimized Clean Gradient Border) */
.card-plan-item.popular-plan {
    border: 2px solid var(--accent);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25), 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.card-plan-item.popular-plan:hover {
    border-color: #ffffff;
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.4), 0 20px 45px rgba(0, 0, 0, 0.5);
}

/* Card Content Inner Layout */
.plan-inner-content {
    padding: 26px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.plan-umkm-bg {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, transparent 100%);
}

.plan-unlimited-bg {
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.08) 0%, transparent 100%);
}

.plan-enterprise-bg {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, transparent 100%);
}

.plan-title-head {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

/* SVG Discount Badge - hidden to eliminate double-badge clutter */
.discount-svg-badge {
    display: none !important;
}

.strikethrough-price {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2.5px;
    opacity: 1;
    min-height: 18px;
    letter-spacing: 0.2px;
}

/* Discount row: harga coret + label hemat berjejer rapi */
.price-discount-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.discount-label-inline {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.22), rgba(220, 38, 38, 0.35));
    color: #ff6b6b;
    border: 1px solid rgba(239, 68, 68, 0.5);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.25);
    text-transform: uppercase;
}

.plan-unlimited-bg .discount-label-inline {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.22), rgba(219, 39, 119, 0.35));
    color: #f472b6;
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 3px 10px rgba(236, 72, 153, 0.25);
}

.plan-enterprise-bg .discount-label-inline {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(217, 119, 6, 0.35));
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.25);
}

.main-price-tag {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.main-price-tag .price-num {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-price-tag .price-period {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.dpoints-badge {
    font-size: 12px;
    color: #818cf8;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(129, 140, 248, 0.12);
    padding: 4px 12px;
    border-radius: 8px;
    width: fit-content;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.btn-buy-cyan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #00d4ff, #0088cc);
    color: #ffffff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 212, 255, 0.35);
    margin-bottom: 20px;
    transition: var(--transition);
}

.btn-buy-cyan:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.55);
    transform: translateY(-2px);
}

/* Target User Description Alignment across cards */
.target-user-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.spec-checklist {
    list-style: none;
    font-size: 13px;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    text-align: left;
    align-items: flex-start;
    width: 100%;
}

.spec-checklist li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
    line-height: 1.4;
    width: 100%;
}

.spec-checklist li .check-icon {
    color: var(--success);
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.highlight-free-domain {
    color: #ff5252;
    font-weight: 700;
}

/* ── Pricing Pulse Highlight on scroll ─────────────────────────── */
@keyframes pricing-pulse {
    0%   { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255,255,255,0.08), 0 0 0 0 rgba(0, 212, 255, 0); }
    30%  { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255,255,255,0.08), 0 0 0 14px rgba(0, 212, 255, 0.22); }
    70%  { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255,255,255,0.08), 0 0 0 28px rgba(0, 212, 255, 0.06); }
    100% { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255,255,255,0.08), 0 0 0 40px rgba(0, 212, 255, 0); }
}

.pricing-pulse-highlight {
    animation: pricing-pulse 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    border-color: rgba(0, 212, 255, 0.5) !important;
}

/* ── Checkout / Login Modal ─────────────────────────────────────── */
/* Default: hidden. JS adds display:flex via inline style when opened */
.login-options-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 5, 12, 0.94);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
    justify-content: center;
    align-items: flex-start;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.login-modal-content {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 48px;
    width: 90%;
    max-width: 520px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
    position: relative;
    margin: auto;
    transform: translateY(0);
    animation: none;
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.login-choice-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 22px 28px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.login-choice-btn:hover {
    background: rgba(0, 102, 255, 0.12);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
}

.login-choice-btn span {
    transition: var(--transition);
}

.login-choice-btn:hover span {
    transform: scale(1.15) rotate(-5deg);
}

/* ── Responsive breakpoints ─────────────────────────────────────── */
@media (max-width: 1100px) {
    .pricing-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-promo-banner {
        text-align: center;
        padding-right: 0;
    }

    .pricing-cards-triple {
        grid-template-columns: repeat(3, 1fr);
    }

    .mockup-nav {
        padding: 18px 30px;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 42px;
    }

    .service-cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 24px;
    }

    .service-card-tab {
        min-height: auto;
    }

    .pricing-cards-triple {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 28px;
    }

    .card-plan-item.popular-plan {
        transform: none;
    }

    .webdev-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .webdev-card.featured-webdev {
        transform: none;
    }
}

@media (max-width: 600px) {
    .mockup-nav {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .mockup-menu {
        gap: 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .pricing-showcase-section {
        padding: 40px 20px;
    }

    .login-modal-content {
        padding: 30px 20px;
    }

    .webdev-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .webdev-tech-stack {
        padding: 24px 20px;
    }

    .tech-badges {
        gap: 8px;
    }

    .tech-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ── Interactive Domain Search Widget ───────────────────────────── */
.hero-domain-box {
    display: flex;
    align-items: center;
    background: rgba(13, 20, 38, 0.65);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    max-width: 720px;
    margin: 30px auto 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
}

.hero-domain-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.hero-domain-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
}

.hero-domain-input::placeholder {
    color: var(--text-muted);
}

.hero-domain-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    white-space: nowrap;
}

.hero-domain-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.domain-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tld-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tld-chip:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-domain-result {
    display: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 14px;
    margin: 0 auto 30px;
    max-width: 720px;
    animation: fade-in 0.3s ease;
}

/* ── Domain TLD Grid & Cards ───────────────────────────────────── */
.tld-grid-section {
    max-width: 1240px;
    margin: 0 auto 72px;
    padding: 0 24px;
}

.tld-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.tld-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.tld-card-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.2);
}

.tld-badge-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.3);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tld-extension-name {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tld-strike-price {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
    min-height: 18px;
}

.tld-main-price {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.tld-renewal-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 18px;
}

.btn-tld-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: #ffffff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.btn-tld-register:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    transform: translateY(-2px);
}

/* ── Specifications & Feature Comparison Table ───────────────── */
.comparison-section {
    max-width: 1240px;
    margin: 0 auto 72px;
    padding: 0 24px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    min-width: 760px;
}

.comparison-table th {
    background: rgba(10, 15, 30, 0.95);
    padding: 22px 24px;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.comparison-table th.plan-col-header {
    text-align: center;
}

.comparison-table th.popular-col-header {
    text-align: center;
    background: rgba(0, 212, 255, 0.12);
    border-bottom: 2px solid var(--accent);
}

.comparison-table tr.category-row td {
    background: rgba(0, 102, 255, 0.12);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: left;
    padding: 12px 24px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table td.popular-col {
    background: rgba(0, 212, 255, 0.03);
    font-weight: 600;
}

.comparison-table tr:hover td {
    background: rgba(0, 102, 255, 0.06);
}

.comparison-table tr:hover td.popular-col {
    background: rgba(0, 212, 255, 0.08);
}

.comparison-table td.feature-title-col {
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-yes {
    color: var(--success);
    font-weight: 800;
    font-size: 15px;
}

.check-no {
    color: var(--text-muted);
    opacity: 0.45;
}

/* ── SVG Table Badge / Sticker Styles ──────────────────────────── */
.badge-table-svg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    transition: var(--transition);
}

.badge-table-svg.badge-yes {
    background: rgba(0, 230, 118, 0.12);
    color: #00e676;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.badge-table-svg.badge-yes:hover {
    background: rgba(0, 230, 118, 0.22);
    transform: translateY(-1px);
}

.badge-table-svg.badge-no {
    background: rgba(142, 160, 190, 0.08);
    color: var(--text-muted);
    border: 1px solid rgba(142, 160, 190, 0.18);
    opacity: 0.6;
}

.badge-table-svg.badge-accent {
    background: rgba(0, 212, 255, 0.12);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.35);
}

.theme-btn-seamless {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    outline: none;
    padding: 0;
    flex-shrink: 0;
}

.theme-btn-text {
    display: none !important;
}

.theme-btn-seamless:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent);
    color: #ffffff;
    transform: scale(1.08) rotate(15deg);
    box-shadow: 0 4px 18px rgba(0, 212, 255, 0.35);
}

.theme-btn-icon-box {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

.theme-btn-seamless:hover .theme-btn-icon-box {
    transform: rotate(25deg);
}

.theme-icon-sun,
.theme-icon-moon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.35s ease;
}

/* Default Fallback & Dark Theme: show Sun icon & "Mode Terang" text */
.theme-icon-sun,
[data-theme="dark"] .theme-icon-sun {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    color: #fbbf24;
}

.theme-icon-moon,
[data-theme="dark"] .theme-icon-moon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4) rotate(-90deg);
}

.text-dark-mode,
[data-theme="dark"] .text-dark-mode {
    display: inline;
}

.text-light-mode,
[data-theme="dark"] .text-light-mode {
    display: none;
}

/* In Light Theme: show Moon icon & "Mode Gelap" text */
[data-theme="light"] .theme-btn-seamless {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
    color: #0f172a;
}

[data-theme="light"] .theme-btn-seamless:hover {
    background: rgba(0, 102, 255, 0.15);
    border-color: #0066ff;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.15);
}

[data-theme="light"] .theme-icon-sun {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4) rotate(90deg);
}

[data-theme="light"] .theme-icon-moon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    color: #0066ff;
}

[data-theme="light"] .text-dark-mode {
    display: none;
}

[data-theme="light"] .text-light-mode {
    display: inline;
}

/* ── Guarantee & Trust Badges Section ───────────────────────────── */
.guarantee-grid-section {
    max-width: 1240px;
    margin: 0 auto 72px;
    padding: 0 24px;
}

.guarantee-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guarantee-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.guarantee-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.guarantee-icon-box {
    width: 58px;
    height: 58px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    color: var(--accent);
}

.guarantee-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.guarantee-card-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .guarantee-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ── Site Footer (Centered & Compact Layer Container) ───────────────── */
.site-footer {
    background: rgba(5, 8, 20, 0.95);
    border-top: 1px solid var(--border);
    padding: 60px 24px 36px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand-centered {
    max-width: 580px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand-centered .mockup-brand {
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-brand-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Layer Kecil di bawah untuk wadah Layanan, Portal Akses, Bantuan */
.footer-links-layer {
    background: rgba(13, 20, 38, 0.65);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 40px;
    width: 100%;
    max-width: 920px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    margin-bottom: 36px;
    transition: var(--transition);
}

.footer-links-layer:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.12);
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-links li a {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.footer-links li a::before {
    content: '→';
    margin-right: 0;
    opacity: 0;
    transition: var(--transition);
    position: absolute;
    left: -18px;
    font-size: 12px;
}

.footer-links li a:hover {
    color: var(--accent);
    transform: translateX(4px);
    padding-left: 4px;
}

.footer-links li a:hover::before {
    opacity: 0.7;
    left: -14px;
}

.footer-bottom {
    width: 100%;
    max-width: 920px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.payment-badge-img {
    width: 32px;
    height: 20px;
    object-fit: contain;
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .footer-links-layer {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* ── Section Header Components ───────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 30px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.12);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.25);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.25;
}

/* ── Features & Technology Grid Section ───────────────────────────── */
.features-grid-section {
    max-width: 1240px;
    margin: 0 auto 72px;
    padding: 0 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.15);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 22px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent);
    transform: scale(1.08) rotate(4deg);
}

.feature-title {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── FAQ Accordion Section ───────────────────────────────────────── */
.faq-section {
    max-width: 900px;
    margin: 0 auto 72px;
    padding: 0 24px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active {
    border-color: var(--accent);
    background: rgba(13, 20, 38, 0.85);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    border-color: transparent;
}

.faq-answer {
    display: none;
    padding: 0 28px 24px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4px;
    padding-top: 18px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fade-in 0.3s ease;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ── Hero Trust Badges & Stats Metric Bar (Commercial Hosting Feature) ─ */
.hero-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 13.5px;
    color: var(--text-muted);
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.hero-trust-badge span {
    color: var(--success);
    font-weight: 800;
    font-size: 15px;
}

.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1040px;
    margin: 48px auto 0;
    padding: 24px 32px;
    background: rgba(13, 20, 38, 0.65);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 16px;
    }
}

/* ── Domain Checker Wrapper ─────────────────────────────────────── */
.domain-checker-wrapper {
    max-width: 920px;
    margin: -20px auto 60px;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

.domain-checker-card {
    background: rgba(13, 20, 38, 0.75);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.domain-free-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.3);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.domain-checker-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.domain-checker-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ── SVG inside icon wrapper / guarantee icon box ───────────────── */
.feature-icon-wrapper svg,
.guarantee-icon-box svg,
.card-icon-box svg {
    display: block;
    color: var(--accent);
    stroke: var(--accent);
}

.feature-card:hover .feature-icon-wrapper svg {
    color: #ffffff;
    stroke: #ffffff;
}

.guarantee-icon-box svg {
    color: var(--primary-light);
    stroke: var(--primary-light);
}

/* ── SVG icons inside check-icon span ──────────────────────────── */
.check-icon svg {
    display: inline-block;
    vertical-align: middle;
    color: var(--success);
    stroke: var(--success);
}

/* ── Hero trust badge SVG ───────────────────────────────────────── */
.hero-trust-badge svg {
    color: var(--success);
    stroke: var(--success);
    flex-shrink: 0;
}

/* ── FAQ toggle SVG ─────────────────────────────────────────────── */
.faq-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-toggle-icon svg {
    color: var(--text-muted);
    stroke: var(--text-muted);
    transition: var(--transition);
}
.faq-item.active .faq-toggle-icon svg {
    color: var(--accent);
    stroke: var(--accent);
}

/* ── Login modal close button ───────────────────────────────────── */
.close-modal {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}
.close-modal:hover {
    background: rgba(255, 82, 82, 0.15);
    border-color: rgba(255, 82, 82, 0.35);
    color: #ff5252;
}
.close-modal svg {
    pointer-events: none;
}

/* ── Login choice button SVG icon box ──────────────────────────── */
.login-choice-btn {
    display: flex;
    align-items: center;
    gap: 16px;
}
.login-choice-btn span svg {
    color: var(--accent);
    stroke: var(--accent);
}

@media (max-width: 640px) {
    .domain-checker-card {
        padding: 24px 20px;
    }
    .domain-checker-title {
        font-size: 18px;
    }
}

/* ── Isolated Utility Classes (Separated from HTML Inline Styles) ── */
.hidden-element {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

.icon-inline-left {
    vertical-align: middle;
    margin-right: 4px;
}

.icon-inline-right {
    vertical-align: middle;
    margin-left: 4px;
}

.icon-inline-space {
    vertical-align: middle;
    margin-right: 6px;
}

.icon-inline-gift {
    vertical-align: middle;
    margin-right: 5px;
}

.tld-renewal-unit {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.tld-badge-indonesia {
    background: rgba(255, 171, 64, 0.15);
    color: var(--warning);
    border-color: rgba(255, 171, 64, 0.3);
}

.tld-badge-discount {
    background: rgba(239, 68, 68, 0.2);
    color: #ff5252;
    border-color: rgba(239, 68, 68, 0.4);
}

.pricing-showcase-spacing {
    margin-bottom: 90px;
}

/* Comparison Table Widths & Colors */
.comparison-table th.col-spec {
    width: 34%;
}
.comparison-table th.col-plan {
    width: 22%;
}
.comparison-table th.col-popular-highlight {
    width: 22%;
    color: var(--accent);
}

.text-white-bold {
    color: #ffffff;
    font-weight: 700;
}

.text-accent-bold {
    color: var(--accent);
    font-weight: 700;
}

/* Checkout Modal Layout Classes */
.checkout-modal-box {
    max-width: 480px;
}

.checkout-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-modal-title svg {
    color: var(--accent);
    stroke: var(--accent);
}

.checkout-modal-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.checkout-summary-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.checkout-summary-row:last-child {
    margin-bottom: 0;
}

.checkout-summary-label {
    color: var(--text-muted);
}

.checkout-summary-val-white {
    color: #ffffff;
    font-weight: 700;
}

.checkout-summary-val-accent {
    color: var(--accent);
    font-weight: 700;
}

.form-group-mb14 {
    margin-bottom: 14px;
}

.form-group-mb20 {
    margin-bottom: 20px;
}

.checkout-input-label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.checkout-input-field {
    width: 100%;
    padding: 12px 16px;
    background: rgba(5, 8, 20, 0.8);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #ffffff;
    font-size: 13.5px;
    outline: none;
    transition: var(--transition);
}

.checkout-input-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.btn-checkout-action {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
}

.checkout-success-wrapper {
    display: none;
    text-align: center;
    padding: 20px 10px;
}

.checkout-success-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 118, 0.15);
    border: 2px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--success);
}

.checkout-success-heading {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.checkout-success-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.checkout-tx-box {
    background: rgba(5, 8, 20, 0.6);
    padding: 12px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 24px;
    border: 1px dashed var(--border);
}

.btn-checkout-close {
    width: 100%;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    font-size: 13.5px;
}

/* ==========================================================================
   📱 COMPREHENSIVE RESPONSIVE DESIGN & MOBILE VERTICAL ORIENTATION (PORTRAIT)
   ========================================================================== */

/* ── Tablet & Portrait Orientation Adjustments (max-width: 992px) ────────── */
@media (max-width: 992px) {
    .pricing-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-promo-banner {
        text-align: center;
        max-width: 100%;
    }
    
    .pricing-promo-banner .billing-toggle-container {
        justify-content: center;
    }

    .pricing-cards-triple {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-cards-row {
        grid-template-columns: 1fr;
    }

    .service-cards-container {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile Phone & Vertical Screen Breakpoint (max-width: 768px) ────────── */
@media (max-width: 768px), (orientation: portrait) and (max-width: 768px) {
    /* Strict Horizontal Overflow & Shifting Prevention */
    html, body {
        width: 100vw !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .nightsky-bg-container,
    .night-clouds-landscape {
        width: 100% !important;
        left: 0 !important;
        overflow: hidden !important;
    }

    .night-cloud-layer {
        width: 100% !important;
        left: 0 !important;
    }

    .bg-glow-orb {
        display: none !important;
    }

    /* Transparent Floating Header on Mobile */
    .mockup-nav {
        padding: 10px 14px;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: space-between;
        background: rgba(5, 8, 20, 0.08) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mockup-nav.scrolled {
        padding: 8px 14px;
        background: rgba(5, 8, 20, 0.7) !important;
        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-brand-group {
        width: auto;
        gap: 10px;
    }

    .mockup-brand {
        font-size: 20px;
    }

    .brand-logo-icon {
        width: 28px;
        height: 28px;
    }

    .theme-btn-seamless {
        width: 32px;
        height: 32px;
    }

    .mockup-menu {
        gap: 8px;
        width: 100%;
        justify-content: center;
        padding-top: 6px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mockup-menu li a {
        font-size: 12px;
        padding: 4px 8px;
    }

    /* Live Ticker Banner - Compact */
    .ticker-banner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 10px;
        padding: 6px 10px;
        font-size: 11px;
        text-align: center;
        background: rgba(0, 102, 255, 0.05);
    }

    .ticker-item {
        margin: 1px 0;
    }

    .status-pill-green {
        padding: 2px 8px;
        font-size: 10.5px;
    }

    /* Hero Section - Compact Vertical Layer */
    .hero-section {
        padding: 24px 12px 16px;
        text-align: center;
    }

    .hero-badge-pill {
        font-size: 10.5px;
        padding: 4px 10px;
        max-width: 100%;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.25;
        letter-spacing: -0.3px;
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 12.5px;
        line-height: 1.5;
        margin-bottom: 16px;
        padding: 0;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    /* Hero Trust Badges */
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-top: 14px;
    }

    .hero-trust-badge {
        font-size: 11px;
    }

    /* Domain Checker Card - Compact */
    .domain-checker-wrapper {
        padding: 0 10px;
        margin-bottom: 24px;
    }

    .domain-checker-card {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .domain-free-badge {
        font-size: 10.5px;
        padding: 3px 8px;
    }

    .domain-checker-title {
        font-size: 17px;
        line-height: 1.3;
        margin-top: 6px;
    }

    .domain-checker-sub {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hero-domain-box {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 8px;
    }

    .hero-domain-input {
        width: 100%;
        background: rgba(5, 8, 20, 0.85);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 10px 12px;
        font-size: 12.5px;
        text-align: center;
    }

    .hero-domain-btn {
        width: 100%;
        border-radius: 10px;
        padding: 10px;
        font-size: 12.5px;
        justify-content: center;
    }

    /* Service Cards Grid - Compact */
    .service-cards-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
        margin-bottom: 24px;
    }

    .service-card-item {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .card-icon-box {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .card-icon-box svg {
        width: 20px;
        height: 20px;
    }

    .card-header-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .card-body-text {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 12px;
    }

    .btn-card-action {
        width: 100%;
        justify-content: center;
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    /* Pricing Section & Cards - Compact */
    .pricing-showcase-section {
        padding: 20px 8px;
        margin-bottom: 24px;
    }

    .pricing-promo-banner {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .promo-headline {
        font-size: 18px;
        line-height: 1.3;
    }

    .promo-desc {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .billing-toggle-container {
        width: 100%;
        flex-direction: column;
        gap: 6px;
        padding: 4px;
    }

    .billing-toggle-btn {
        width: 100%;
        text-align: center;
        padding: 8px 10px;
        font-size: 11.5px;
        border-radius: 8px;
    }

    .pricing-cards-triple {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-plan-item {
        border-radius: 16px;
    }

    .plan-inner-content {
        padding: 16px 14px;
    }

    .plan-title-head {
        font-size: 18px;
    }

    .main-price-tag .price-num {
        font-size: 24px;
    }

    .main-price-tag .price-period {
        font-size: 11px;
    }

    .btn-buy-cyan {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
        font-size: 12.5px;
        border-radius: 10px;
        margin: 10px 0;
    }

    .target-user-desc {
        font-size: 11.5px;
        margin-bottom: 10px;
    }

    .spec-checklist li {
        font-size: 11.5px;
        padding: 4px 0;
    }

    .check-icon {
        width: 16px;
        height: 16px;
    }

    /* Features Grid - Compact */
    .features-grid-section {
        padding: 24px 12px;
    }

    .section-tag {
        font-size: 10.5px;
        padding: 3px 8px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 12px 12px;
        border-radius: 14px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }

    .feature-icon-wrapper {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 10px;
    }

    .feature-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .feature-title {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .feature-desc {
        font-size: 11.5px;
        line-height: 1.4;
    }

    /* Comparison Table Responsiveness - Compact */
    .comparison-section {
        padding: 24px 10px;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        margin: 0;
    }

    .comparison-table {
        min-width: 520px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
        font-size: 11px;
    }

    .comparison-table tr.category-row td {
        font-size: 11.5px;
        padding: 8px;
    }

    /* Guarantee Cards Section - Compact */
    .guarantee-grid-section {
        padding: 20px 12px;
    }

    .guarantee-cards-row {
        gap: 10px;
    }

    .guarantee-card {
        padding: 14px 12px;
        text-align: center;
        border-radius: 14px;
    }

    .guarantee-icon-box {
        width: 34px;
        height: 34px;
        margin: 0 auto 10px;
    }

    .guarantee-icon-box svg {
        width: 20px;
        height: 20px;
    }

    .guarantee-card-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .guarantee-card-desc {
        font-size: 11.5px;
        line-height: 1.4;
    }

    /* FAQ Section - Compact */
    .faq-section {
        padding: 24px 12px;
    }

    .faq-accordion {
        gap: 8px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 12px 14px;
        font-size: 12.5px;
        gap: 8px;
    }

    .faq-answer {
        padding: 0 14px 12px;
        font-size: 11.5px;
        line-height: 1.5;
    }

    /* Footer Layout - Compact */
    .site-footer {
        padding: 24px 12px 16px;
    }

    .footer-brand-desc {
        font-size: 11.5px;
        line-height: 1.5;
        margin-top: 6px;
    }

    .footer-links-layer {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .footer-col-title {
        font-size: 13.5px;
        margin-bottom: 8px;
    }

    .footer-links {
        gap: 6px;
    }

    .footer-links li a {
        font-size: 11.5px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 16px;
        font-size: 11px;
    }

    .payment-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
    }

    .payment-badge {
        font-size: 10px;
        padding: 2px 6px;
    }

    /* Modal Responsive - Compact */
    .login-modal-content,
    .checkout-modal-box {
        width: 95%;
        max-width: 100%;
        padding: 18px 14px;
        margin: 10px auto;
        border-radius: 16px;
    }

    .checkout-modal-title {
        font-size: 18px;
    }

    .checkout-input-field {
        padding: 9px 12px;
        font-size: 12.5px;
        border-radius: 8px;
    }

    .btn-checkout-action {
        padding: 11px;
        font-size: 13px;
        border-radius: 10px;
    }
}

/* ── Extra Small Phones (max-width: 480px) ────────────────────────── */
@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }

    .main-price-tag .price-num {
        font-size: 22px;
    }

    .domain-checker-title {
        font-size: 15.5px;
    }

    .checkout-summary-row {
        font-size: 12px;
    }
}

/* ── Footer WhatsApp Link & Theme Adaptability ───────────────────── */
.footer-wa-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    color: #25d366 !important;
    font-weight: 700 !important;
}

.footer-wa-link:hover {
    color: #00e676 !important;
    transform: translateX(4px);
}

.footer-wa-icon {
    vertical-align: middle;
    flex-shrink: 0;
}

[data-theme="light"] .footer-wa-link {
    color: #128c7e !important;
}

[data-theme="light"] .footer-wa-link:hover {
    color: #25d366 !important;
}

[data-theme="light"] .footer-links-layer {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
}

[data-theme="light"] .footer-col-title {
    color: #0f172a;
}

[data-theme="light"] .footer-brand-desc {
    color: #475569;
}

/* ═════════════════════════════════════════════════════════════════
   Web Development Layer & Card Design System
   ═════════════════════════════════════════════════════════════════ */
.webdev-section {
    max-width: 1240px;
    margin: 0 auto 64px;
    padding: 0 24px;
}

.webdev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.webdev-card {
    position: relative;
    background: var(--bg-card, rgba(13, 20, 38, 0.6));
    border: 1px solid var(--border, rgba(0, 102, 255, 0.2));
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.webdev-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.25), 0 0 20px rgba(0, 212, 255, 0.15);
}

.webdev-card.featured-webdev {
    border-color: rgba(236, 72, 153, 0.5);
    background: linear-gradient(160deg, rgba(236, 72, 153, 0.08), rgba(13, 20, 38, 0.7));
}

.webdev-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.webdev-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.25);
    color: var(--accent, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.webdev-card:hover .webdev-icon-wrapper {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    transform: scale(1.08) rotate(3deg);
}

.webdev-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    transition: color 0.3s ease;
}

.webdev-desc {
    font-size: 14px;
    color: var(--text-muted, #94a3b8);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.webdev-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webdev-features li {
    font-size: 13.5px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.webdev-features li svg {
    color: var(--accent, #00d4ff);
    flex-shrink: 0;
}

.webdev-price {
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted, #94a3b8);
}

.price-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent, #00d4ff);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.btn-webdev-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-webdev-action:hover {
    background: linear-gradient(135deg, var(--primary, #0066ff), var(--accent, #00d4ff));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
    transform: translateY(-2px);
}

.btn-webdev-primary {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-webdev-primary:hover {
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
}

/* Tech Stack Container */
.webdev-tech-stack {
    background: var(--bg-card, rgba(13, 20, 38, 0.5));
    border: 1px solid var(--border, rgba(0, 102, 255, 0.2));
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tech-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s ease;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-badge {
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.25);
    color: var(--accent, #00d4ff);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--primary, #0066ff);
    color: #ffffff;
    border-color: var(--primary, #0066ff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Web Dev CTA Card */
.webdev-cta-card {
    background: var(--bg-card, rgba(13, 20, 38, 0.6));
    border: 1px solid var(--border, rgba(0, 102, 255, 0.2));
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.webdev-cta-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

/* ═════════════════════════════════════════════════════════════════
   Light Mode Theme Overrides ([data-theme="light"])
   ═════════════════════════════════════════════════════════════════ */
[data-theme="light"] .webdev-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.08);
}

[data-theme="light"] .webdev-card:hover {
    background: #ffffff;
    border-color: #0066ff;
    box-shadow: 0 18px 45px rgba(0, 102, 255, 0.18);
}

[data-theme="light"] .webdev-card.featured-webdev {
    background: linear-gradient(160deg, rgba(236, 72, 153, 0.06), rgba(255, 255, 255, 0.95));
    border-color: rgba(236, 72, 153, 0.4);
}

[data-theme="light"] .webdev-title {
    color: #0f172a;
}

[data-theme="light"] .webdev-desc {
    color: #475569;
}

[data-theme="light"] .webdev-features li {
    color: #334155;
}

[data-theme="light"] .webdev-features li svg {
    color: #0055d4;
}

[data-theme="light"] .webdev-price {
    border-top-color: rgba(0, 102, 255, 0.12);
}

[data-theme="light"] .price-label {
    color: #64748b;
}

[data-theme="light"] .price-value {
    color: #0055d4;
}

[data-theme="light"] .btn-webdev-action {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
    color: #0055d4;
}

[data-theme="light"] .btn-webdev-action:hover {
    background: linear-gradient(135deg, #0055d4, #0088ff);
    color: #ffffff;
}

[data-theme="light"] .webdev-tech-stack {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
}

[data-theme="light"] .tech-title {
    color: #0f172a;
}

[data-theme="light"] .tech-badge {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
    color: #0055d4;
}

[data-theme="light"] .tech-badge:hover {
    background: #0066ff;
    color: #ffffff;
    border-color: #0066ff;
}

[data-theme="light"] .webdev-cta-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 10px 35px rgba(0, 102, 255, 0.08);
}

[data-theme="light"] .webdev-cta-text {
    color: #0f172a;
}

/* Header Portal Login Button */
.nav-portal-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    padding: 8px 18px !important;
    background: linear-gradient(135deg, #0066ff, #00d4ff) !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-left: 6px;
}

.nav-portal-btn:hover {
    background: linear-gradient(135deg, #0055d4, #00b4ff) !important;
    box-shadow: 0 8px 22px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

[data-theme="light"] .nav-portal-btn {
    background: linear-gradient(135deg, #0055d4, #0088ff) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 85, 212, 0.25);
}

[data-theme="light"] .nav-portal-btn:hover {
    background: linear-gradient(135deg, #0044b3, #0066ff) !important;
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.4);
}

/* ═════════════════════════════════════════════════════════════════
   Floating WhatsApp Button & Interactive Tooltip
   ═════════════════════════════════════════════════════════════════ */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.floating-wa-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}

.floating-wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: waPulse 2s infinite ease-in-out;
    z-index: -1;
}

@keyframes waPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.floating-wa-tooltip {
    position: absolute;
    right: 72px;
    background: rgba(5, 8, 20, 0.9);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.floating-wa-btn:hover .floating-wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

[data-theme="light"] .floating-wa-tooltip {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ═════════════════════════════════════════════════════════════════
   Pricing Layer Typography & Card Polish
   ═════════════════════════════════════════════════════════════════ */
.pricing-cards-triple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card-plan-item {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-plan-item:hover {
    transform: translateY(-6px);
}

.plan-title-head {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.price-discount-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.strikethrough-price {
    font-size: 13px;
    text-decoration: line-through;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.discount-label-inline {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
}

.main-price-tag {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.main-price-tag .price-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent, #00d4ff);
    letter-spacing: -0.8px;
    transition: color 0.3s ease;
}

.main-price-tag .price-period {
    font-size: 13px;
    color: var(--text-muted, #94a3b8);
    transition: color 0.3s ease;
}

.target-user-desc {
    font-size: 13px;
    color: var(--text-muted, #94a3b8);
    line-height: 1.5;
    margin-top: 14px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.spec-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-checklist li {
    font-size: 13px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.spec-checklist li .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Light Mode Pricing Polish */
[data-theme="light"] .plan-title-head {
    color: #0f172a;
}

[data-theme="light"] .strikethrough-price {
    color: #64748b;
}

[data-theme="light"] .main-price-tag .price-num {
    color: #0055d4;
}

[data-theme="light"] .main-price-tag .price-period {
    color: #475569;
}

[data-theme="light"] .target-user-desc {
    color: #475569;
}

[data-theme="light"] .spec-checklist li {
    color: #334155;
}

[data-theme="light"] .promo-headline {
    color: #0f172a;
}

[data-theme="light"] .promo-desc {
    color: #475569;
}

/* Billing Cycle Sub-Note Pill */
.billing-cycle-subnote {
    font-size: 11.5px;
    font-weight: 700;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

[data-theme="light"] .billing-cycle-subnote {
    color: #0055d4;
    background: rgba(0, 85, 212, 0.08);
    border-color: rgba(0, 85, 212, 0.2);
}