/* TextWait.io - Marketing / Landing Page Styles */

/* Navbar */
.mkt-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.mkt-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mkt-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a73e8;
}
.mkt-logo:hover {
    text-decoration: none;
}
.mkt-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.mkt-nav-links a {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}
.mkt-nav-links a:hover {
    color: #1a73e8;
    text-decoration: none;
}
.mkt-nav-links .btn {
    color: #fff;
}
.mkt-nav-links .btn:hover {
    color: #fff;
}

/* Hero */
.mkt-hero {
    background: linear-gradient(135deg, #e8f0fe 0%, #f8f9ff 50%, #fff 100%);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}
.mkt-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}
.mkt-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.mkt-hero .mkt-subhead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.mkt-hero .btn-cta {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: #1a73e8;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.15s;
}
.mkt-hero .btn-cta:hover {
    background: #1557b0;
    text-decoration: none;
}

/* How It Works */
.mkt-how {
    padding: 4rem 1.5rem;
    background: #fff;
}
.mkt-section-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.mkt-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}
.mkt-section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}
.mkt-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.mkt-step {
    text-align: center;
    padding: 1.5rem 1rem;
}
.mkt-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.mkt-step h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}
.mkt-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Features */
.mkt-features {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}
.mkt-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.mkt-feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.mkt-feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.mkt-feature-card h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.4rem;
}
.mkt-feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Pricing */
.mkt-pricing {
    padding: 4rem 1.5rem;
    background: #fff;
}
.mkt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}
.mkt-price-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.15s, box-shadow 0.15s;
}
.mkt-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mkt-price-card-popular {
    border-color: #1a73e8;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.15);
}
.mkt-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a73e8;
    color: #fff;
    padding: 0.2rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.mkt-price-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}
.mkt-price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.mkt-price-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}
.mkt-price-period {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.mkt-price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}
.mkt-price-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}
.mkt-price-features li:last-child {
    border-bottom: none;
}
.mkt-price-features li::before {
    content: "\2713";
    color: #0d9f6e;
    font-weight: 700;
    margin-right: 0.5rem;
}
.mkt-sms-soon {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1a73e8;
    background: #e8f0fe;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    vertical-align: middle;
}
.mkt-price-cta {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: background 0.15s;
}
.mkt-price-cta-primary {
    background: #1a73e8;
    color: #fff;
}
.mkt-price-cta-primary:hover {
    background: #1557b0;
    text-decoration: none;
    color: #fff;
}
.mkt-price-cta-outline {
    background: #fff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}
.mkt-price-cta-outline:hover {
    background: #e8f0fe;
    text-decoration: none;
}

.mkt-pricing-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Contact Form */
.mkt-contact {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}
.mkt-contact-form {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.mkt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.mkt-form-group {
    margin-bottom: 0;
}
.mkt-form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #555;
}
.mkt-form-group input,
.mkt-form-group select,
.mkt-form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.15s;
}
.mkt-form-group input:focus,
.mkt-form-group select:focus,
.mkt-form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}
.mkt-form-group + .mkt-form-group {
    margin-top: 1rem;
}
.mkt-submit-btn {
    margin-top: 1rem;
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.mkt-contact-success {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.mkt-success-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}
.mkt-contact-success h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}
.mkt-contact-success p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Banner */
.mkt-cta-banner {
    background: linear-gradient(135deg, #1a73e8 0%, #4a90e8 100%);
    padding: 3.5rem 1.5rem;
    text-align: center;
    color: #fff;
}
.mkt-cta-banner h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.mkt-cta-banner p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}
.mkt-cta-banner .btn-cta-light {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: #fff;
    color: #1a73e8;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.15s;
}
.mkt-cta-banner .btn-cta-light:hover {
    background: #e8f0fe;
    text-decoration: none;
}

/* Footer */
.mkt-footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 2rem 1.5rem;
}
.mkt-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.mkt-footer-links {
    display: flex;
    gap: 1.5rem;
}
.mkt-footer-links a {
    color: #aaa;
}
.mkt-footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .mkt-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}
@media (max-width: 768px) {
    .mkt-hero h1 {
        font-size: 2rem;
    }
    .mkt-hero .mkt-subhead {
        font-size: 1rem;
    }
    .mkt-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .mkt-feature-grid {
        grid-template-columns: 1fr;
    }
    .mkt-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .mkt-footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .mkt-nav-links {
        gap: 1rem;
    }
    .mkt-form-row {
        grid-template-columns: 1fr;
    }
}
