/* Websites & Hosting page styles — Light theme */

/* No hero image overlays in light theme */
.page-websites .hero::before,
.page-websites .hero::after {
    display: none;
}

/* Hero override - single column centered */
.websites-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.websites-hero .hero-stats {
    justify-content: center;
}
.websites-hero .hero-cta-inline {
    margin-top: 2rem;
}
.websites-hero .hero-cta-inline a {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
}

/* What You Get + Pricing combined */
.what-you-get {
    padding: 5rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}
.what-you-get h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.wyg-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.wyg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.wyg-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}
.wyg-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.wyg-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Pricing box */
.pricing-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem;
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
}
.pricing-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.pricing-item:last-child {
    border-bottom: none;
}
.pricing-item-label {
    color: var(--text-secondary);
    font-size: 1rem;
}
.pricing-item-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}
.pricing-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

/* Content Engine upsell strip */
.ce-upsell {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.ce-upsell-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.ce-upsell h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.ce-upsell p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.ce-upsell a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}
.ce-upsell a:hover {
    text-decoration: underline;
}

/* Form Section */
.website-form-section {
    background: var(--bg-tertiary);
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
}
.website-form-container {
    max-width: 700px;
    margin: 0 auto;
}
.website-form-container h2 {
    text-align: center;
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.website-form-container .form-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}
.website-form-section .submit-btn {
    width: 100%;
    margin-top: 1rem;
}
.website-form-section .trust-indicators {
    margin-top: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.radio-option {
    flex: 1;
    min-width: 120px;
}
.radio-option input[type="radio"] {
    display: none;
}
.radio-option label {
    display: block;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-secondary);
}
.radio-option input[type="radio"]:checked + label {
    border-color: var(--accent-primary);
    background: var(--accent-bg-light);
    color: var(--accent-primary);
}
.radio-option label:hover {
    border-color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .wyg-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.5rem; }
}

/* Pricing Tiers - Two Column */
.pricing-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.pricing-tier {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-tier--featured {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.12);
}

.pricing-tier-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-tier-badge--accent {
    background: var(--accent-bg-light, rgba(99, 102, 241, 0.1));
    color: var(--accent-primary);
}

.pricing-tier-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-tier--featured .pricing-tier-price {
    color: var(--accent-primary);
}

.pricing-tier-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.pricing-tier-features li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-tier-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.pricing-tier-features li strong {
    color: var(--text-primary);
}

.pricing-tier-extra {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: auto;
}

/* Pricing CTA buttons */
.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 1.5rem;
    background: var(--blue-600, #2563eb);
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}
.pricing-cta:hover {
    background: var(--blue-500, #3b82f6);
    transform: translateY(-1px);
}
.pricing-cta--accent {
    background: var(--accent-primary, #e67e22);
}
.pricing-cta--accent:hover {
    background: #d97706;
}

@media (max-width: 768px) {
    .pricing-tiers { grid-template-columns: 1fr; }
}

/* Websites hero — clean light background */
.page-websites .hero {
    background: var(--slate-50);
}

/* Why Static HTML — Comparison Grid */
.why-static {
    padding: 5rem 0;
    background: #ffffff;
}
.why-static h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.why-static .section-subtitle {
    text-align: center;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.comparison-card {
    border-radius: 0.75rem;
    padding: 2rem;
}
.comparison-card--good {
    background: var(--green-50);
    border: 1px solid var(--green-200);
}
.comparison-card--bad {
    background: var(--red-50);
    border: 1px solid var(--red-200);
}
.comparison-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}
.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comparison-card li {
    font-size: 0.9rem;
    color: var(--slate-700);
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.comparison-card--good li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green-600);
    font-weight: 600;
}
.comparison-card--bad li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: var(--red-500);
    font-weight: 600;
}
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Demo Model Section */
.demo-model {
    padding: 4rem 0;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}
.demo-model-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.demo-model h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}
.demo-model p {
    color: var(--slate-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ROI Callout */
.roi-callout {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem;
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    border-radius: 0.75rem;
}
.roi-callout p {
    color: var(--slate-800);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Industries Grid (shared with homepage) */
.industries-section {
    padding: 5rem 0;
    background: var(--bg-secondary, #f8fafc);
    border-top: 1px solid var(--border-color, #e2e8f0);
}
.industries-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    margin-bottom: 0.75rem;
}
.industries-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary, #475569);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.industry-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 0.375rem;
    color: var(--slate-700);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.industry-tag:hover {
    border-color: var(--blue-500);
    color: var(--blue-600);
    background: var(--blue-50);
}

/* CE Upsell Strip */
.ce-upsell {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid var(--slate-200);
}
.ce-upsell-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.ce-upsell h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.ce-upsell p {
    color: var(--slate-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Contact Section — light theme */
.contact-section {
    padding: 5rem 0;
    background: var(--slate-50);
    color: var(--slate-900);
    border-top: 1px solid var(--slate-200);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}
.contact-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--slate-900);
}
.contact-text > p {
    color: var(--slate-600);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}
.contact-reassurance {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--slate-200);
}
.contact-reassurance p {
    color: var(--slate-700);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.contact-reassurance ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-reassurance li {
    color: var(--slate-600);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}
.contact-reassurance li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green-600);
}
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.contact-form-wrapper .form-group {
    margin-bottom: 1rem;
}
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border: 1px solid var(--slate-300);
    border-radius: 0.5rem;
    color: var(--slate-900);
    font-size: 1rem;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.contact-form-wrapper .submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--blue-600);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.contact-form-wrapper .submit-btn:hover {
    background: var(--blue-500);
}
