:root {
    --navy-color: #001B33;
    --navy-light: #0A2E50;
    --presence-green: #2ECC71;
    --presence-green-hover: #27ae60;
    --bg-light: #F8FAFC;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #E2E8F0;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--navy-color);
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-color);
}

.beta-badge {
    background-color: rgba(46, 204, 113, 0.2);
    color: var(--presence-green);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: white;
    color: var(--navy-color);
    border: 1px solid var(--border-color);
}

.btn-primary:hover {
    background-color: var(--bg-light);
}

.btn-solid {
    background-color: var(--navy-color);
    color: white;
}

.btn-solid:hover {
    background-color: var(--navy-light);
}

.btn-solid-green {
    background-color: var(--presence-green);
    color: white;
}

.btn-solid-green:hover {
    background-color: var(--presence-green-hover);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline-white:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-large {
    padding: 18px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column-reverse; /* Mobile first */
    padding: 40px 5%;
    background: linear-gradient(to bottom, white, var(--bg-light));
    gap: 40px;
}

.hero-content {
    flex: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Value Props */
.value-prop {
    background-color: var(--navy-color);
    padding: 60px 5%;
    display: flex;
    justify-content: center;
}

.value-prop-card {
    background-color: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(46, 204, 113, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    text-align: center;
    color: white;
}

.quote-icon {
    color: var(--presence-green);
    font-size: 48px;
    font-family: serif;
    line-height: 1;
    height: 30px;
}

.value-prop-card h2 {
    color: white;
    margin-bottom: 24px;
    font-size: 24px;
}

.value-prop-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    font-size: 16px;
}

/* Features */
.features {
    padding: 60px 5%;
    text-align: center;
}

.features h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

/* Pricing */
.pricing {
    padding: 60px 5%;
    text-align: center;
    background-color: white;
}

.pricing-cards {
    display: flex;
    flex-direction: column; /* Mobile */
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.pricing-card {
    background-color: var(--navy-color);
    color: white;
    padding: 40px;
    border-radius: 16px;
    flex: 1;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-card.highlighted {
    background-color: var(--navy-light);
    border: 2px solid var(--presence-green);
    transform: scale(1.05);
}

.plan-name {
    font-weight: bold;
    color: var(--presence-green);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
}

.price span {
    font-size: 16px;
    font-weight: normal;
}

.commitment {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--presence-green);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--presence-green);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
}

/* Contact */
.contact {
    padding: 60px 5%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-methods {
    margin: 30px 0;
}

.contact-link {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    border-radius: 8px;
    color: var(--navy-color);
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-form {
    background-color: var(--navy-color);
    padding: 40px;
    border-radius: 16px;
    color: white;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    color: var(--navy-color);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background-color: white;
    color: var(--navy-color);
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.form-status.success { color: var(--presence-green); }
.form-status.error { color: #e74c3c; }

/* Footer */
footer {
    background-color: white;
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: var(--navy-color);
    font-weight: bold;
}

footer p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 5px;
}

/* Desktop Breakpoints */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 60px 80px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 60px;
    }

    .value-prop h2 { font-size: 28px; }
    .value-prop p { font-size: 18px; }

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

    .pricing-cards {
        flex-direction: row;
        align-items: center;
    }

    .pricing-card.highlighted {
        transform: scale(1.1);
    }
}
