:root {
    --brand-blue: #253550;
    --brand-orange: #EC7730;
    --brand-aqua: #2FE8ED;
    --brand-teal: #519698;
    --bs-body-font-family: 'Inter', sans-serif;
    --bs-primary: var(--brand-orange);
    --bs-primary-rgb: 236, 119, 48;
    --bs-secondary: #6c757d;
    --bs-body-bg: #f8f9fa;
    --bs-body-color: #334155;
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

body {
    background-color: #f3f6f9;
    background-image: radial-gradient(at 0% 0%, hsla(216, 37%, 23%, 0.1) 0px, transparent 50%), radial-gradient(at 100% 0%, hsla(24, 83%, 56%, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.navbar-brand {
    font-weight: 700;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-orange);
}

/* Buttons */
.btn-primary {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    font-weight: 600;
    border-radius: 50rem;
    padding: 0.6rem 1.4rem;
    box-shadow: 0 4px 12px rgba(236, 119, 48, 0.25);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #d1611d;
    border-color: #d1611d;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(236, 119, 48, 0.35);
}

.btn-outline-dark {
    border-radius: 50rem;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
}

/* Cards */
.card {
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Typography */
.text-brand-blue {
    color: var(--brand-blue) !important;
}

.text-brand-orange {
    color: var(--brand-orange) !important;
}

.hero-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--brand-blue);
    line-height: 1.1;
}

.lead-text {
    color: #64748b;
    line-height: 1.6;
}

.section-title {
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.kicker {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 0.5rem;
}

/* Logos & Icons */
.logo-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
    position: relative;
    flex-shrink: 0;
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(236, 119, 48, 0.1);
    color: var(--brand-orange);
}

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

/* Phone Mockup */
.phone-mockup {
    border: 8px solid #2d2d2d;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    width: 260px;
    aspect-ratio: 9 / 19.5;
    margin: 0 auto;
    height: 490px;
}

.phone-screen {
    background: #e9ebee;
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 10px;
    background: #2d2d2d;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

/* Custom Utilities */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50rem;
    background: rgba(37, 53, 80, 0.05);
    color: var(--brand-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card.popular {
    border: 2px solid var(--brand-orange);
    position: relative;
}

.ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

footer {
    background: var(--brand-blue);
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

footer a:hover {
    color: white;
}