:root {
    --framer-blue: #0099ff;
    --framer-void: #000000;
    --framer-silver: #a6a6a6;
    --framer-frosted: rgba(255, 255, 255, 0.05);
    --framer-blue-glow: rgba(0, 153, 255, 0.15);
}

body {
    background-color: var(--framer-void);
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
.display-hero {
    font-size: clamp(3rem, 8vw, 110px);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.section-heading {
    font-size: clamp(2rem, 5vw, 62px);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -0.04em;
}

.text-muted {
    color: var(--framer-silver);
}

/* Buttons & Pills */
.pill-button-white {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-button-white:hover {
    transform: scale(0.96);
}

.pill-button-frosted {
    background-color: var(--framer-frosted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    transition: background-color 0.2s ease;
}

.pill-button-frosted:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.pill-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.2s;
}

.pill-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Cards */
.framer-card {
    background-color: #090909;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.framer-card:hover {
    border-color: var(--framer-blue);
    box-shadow: var(--framer-blue-glow) 0px 0px 40px;
}

.pricing-card-highlight {
    border: 1px solid var(--framer-blue);
    box-shadow: var(--framer-blue-glow) 0px 0px 20px inset;
}

.blue-accent {
    color: var(--framer-blue);
}

.glass-nav {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Initial state for GSAP scroll reveals */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Custom checkmark list */
.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--framer-silver);
    font-size: 14px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--framer-blue);
    font-weight: bold;
}

/* Service card icon wrapper — enables GSAP transform origin */
.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
}

/* Process step dot — base state (GSAP handles active state) */
.step-dot {
    will-change: border-color, box-shadow;
}

/* ─── Contact form ──────────────────────────────────────────────────────────── */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.01em;
}

.form-input {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.18);
}

.form-input:focus {
    border-color: rgba(0, 153, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.07);
}

/* Offer selector cards */
.offer-card {
    cursor: pointer;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
    user-select: none;
}

.offer-card:hover {
    border-color: rgba(0, 153, 255, 0.3);
    background-color: rgba(0, 153, 255, 0.04);
}

.offer-card.selected {
    border-color: rgba(0, 153, 255, 0.65);
    background-color: rgba(0, 153, 255, 0.07);
    box-shadow: 0 0 24px rgba(0, 153, 255, 0.08);
}

.offer-card-inner {
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

button.pill-button-white {
    border: none;
    cursor: pointer;
    font-size: 14px;
}
