/* CSS Reset & Base Styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0ea5e9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --silver-start: #f1f5f9;
    --silver-end: #cbd5e1;
    --silver-text: #475569;
    --gold-start: #fef08a;
    --gold-end: #eab308;
    --gold-text: #854d0e;
    --bronze-start: #ffedd5;
    --bronze-end: #fb923c;
    --bronze-text: #9a3412;
    --success: #10b981;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #f8fafc; /* Fallback */
}

body {
    font-family: 'Outfit', sans-serif;
    background: transparent;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Page Background System */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #f8fafc;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.15);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: rgba(14, 165, 233, 0.1);
    bottom: -200px;
    left: -100px;
    animation-duration: 30s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(129, 140, 248, 0.1);
    top: 40%;
    left: 30%;
    animation-duration: 25s;
}

@keyframes orbFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.1); }
}

#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-50px) translateX(20px); }
    66% { transform: translateY(20px) translateX(-30px); }
    100% { transform: translateY(0) translateX(0); }
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: auto;
    max-height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 500;
}

.nav-links a:not(.btn-outline) {
    color: var(--text-main);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:not(.btn-outline):hover {
    color: var(--primary);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.05) 0%, transparent 40%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-main);
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    color: var(--success);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(37, 99, 235, 0.4);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signal-graphic {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s infinite ease-in-out alternate;
}

.signal-core {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.4);
    z-index: 10;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.signal-core i {
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.signal-wave {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    opacity: 0;
    animation: ripple 4s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 1.3s; }
.wave-3 { animation-delay: 2.6s; }

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    }
    100% {
        transform: scale(3.2);
        opacity: 0;
        border-color: var(--primary);
        box-shadow: 0 0 50px rgba(37, 99, 235, 0);
    }
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.02); }
}

.floating-status {
    position: absolute;
    bottom: -20px;
    z-index: 12;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg) !important;
    animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.speed-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.speed-indicator i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.speed-text {
    display: flex;
    flex-direction: column;
}

.speed-text .value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.speed-text .label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* Packages Section */
.packages {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-title h2 .highlight {
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    z-index: 2;
}

.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-bottom-left-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.card-header {
    padding: 40px 32px 32px;
    text-align: center;
}

.silver-theme {
    background: linear-gradient(135deg, var(--silver-start), var(--silver-end));
}

.bronze-theme {
    background: linear-gradient(135deg, var(--bronze-start), var(--bronze-end));
}

.gold-theme {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.silver-theme h3 { color: var(--silver-text); }
.bronze-theme h3 { color: var(--bronze-text); }
.gold-theme h3 { color: var(--gold-text); }

.speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    color: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 4px;
    margin-right: 4px;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    align-self: flex-end;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 6px;
    margin-left: 4px;
}

.card-body {
    padding: 32px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
    font-weight: 500;
}

.feature-list li i {
    color: var(--success);
    font-size: 1.125rem;
}

.btn-full {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.btn-silver {
    background: var(--text-main);
    color: white;
}

.btn-silver:hover {
    background: #334155;
}

.btn-bronze {
    background: #ea580c;
    color: white;
}

.btn-bronze:hover {
    background: #9a3412;
}

.btn-gold {
    background: var(--primary);
    color: white;
}

.btn-gold:hover {
    background: var(--primary-dark);
}

.info-alert {
    background: rgba(14, 165, 233, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.info-alert i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 2px;
}

.alert-content p {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 0.95rem;
}

.mt-80 { margin-top: 80px; }

/* Voucher Section */
.voucher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.voucher-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.voucher-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.highlight-voucher {
    border: 2px solid var(--primary);
    position: relative;
}

.highlight-voucher::before {
    content: 'Best Value';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.v-duration {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.v-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.v-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--silver-start);
    color: var(--text-main);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s;
    margin-top: auto;
}

.v-btn:hover {
    background: #e2e8f0;
}

.v-btn.btn-primary {
    background: var(--primary);
    color: white;
}

.v-btn.btn-primary:hover {
    background: var(--primary-dark);
}

.voucher-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Custom Package Slider */
.custom-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--text-main);
    color: white;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.slider-container {
    margin: 32px 0 24px;
}

.custom-price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    animation: pricePop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pricePop {
    from { transform: scale(0.85); opacity: 0.4; }
    to   { transform: scale(1);    opacity: 1; }
}

.custom-price-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

#custom-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #4ade80;
    line-height: 1.1;
    text-shadow: 0 0 16px rgba(74, 222, 128, 0.35);
}

.mbps-display {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.mbps-display .unit {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
}

.styled-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

.styled-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.8);
    transition: transform 0.2s;
}

.styled-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.styled-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.8);
    transition: transform 0.2s;
}

.styled-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.glass-panel-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.custom-action p {
    color: #cbd5e1;
    margin-bottom: 24px;
}

/* IT Consultation Grid */
.it-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.it-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.it-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.it-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.it-card:hover .it-icon {
    background: var(--primary);
    color: white;
}

.it-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.it-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.it-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s;
}

.it-link:hover {
    gap: 12px;
}

.mt-16 { margin-top: 16px; }

/* Footer */
.footer {
    background: var(--text-main);
    color: white;
    padding: 80px 0 32px;
}

.footer-cta {
    text-align: center;
    margin-bottom: 64px;
}

.footer-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-cta p {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.wa-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366; /* WhatsApp Green */
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.wa-btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    background: #22c55e;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 60px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-features {
        justify-content: center;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .popular {
        transform: none;
    }
    .popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile hide for now, can add hamburger if needed */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .footer-cta h2 {
        font-size: 2rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .custom-card {
        padding: 32px 20px;
    }
    .mbps-display {
        font-size: 3rem;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional delays for staggered appearance */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
