@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;900&display=swap');

:root {
    --primary: #00ffa3;
    --primary-dark: #00cc82;
    --bg: #0a0a0b;
    --surface: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-dim: #a1a1aa;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% -20%, #1a3a2e 0%, #0a0a0b 70%);
    z-index: -1;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header / Brand */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo-container {
    width: 140px;
    margin-bottom: 1rem;
}

.logo-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 163, 0.3));
}

.brand-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.8;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, #fff 60%, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* Price Card (Glassmorphism) */
.card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.price-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
}

.price-currency {
    font-size: 2rem;
    margin-top: 0.8rem;
    margin-right: 0.2rem;
    color: var(--primary);
}

/* Labor Illusion States */
.price-info {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    min-height: 1.2rem;
}

.price-info.loading {
    color: var(--primary);
    font-weight: 500;
    animation: pulse 1.5s infinite;
}

/* Shimmer Loading Effect */
.card.quoting .price-amount {
    width: 140px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.card.quoting .price-amount::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 1.5s infinite;
}

/* CTA Button */
.cta-button {
    display: block;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 255, 163, 0.2);
}

.cta-button:hover {
    background: #fff;
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 255, 163, 0.3);
}

/* Features Grid */
.grid {
    display: grid;
    gap: 1.5rem;
}

.prop {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.prop:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.prop h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.prop p {
    font-size: 0.95rem;
    color: var(--text-dim);
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Live Indicator */
.live-tag {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.live-tag.active {
    opacity: 1;
}

.live-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}
