/*
Theme Name: BusinessLaunch360
Theme URI: https://businesslaunch360.com
Author: Abdul Aziz
Author URI: https://printedtoday.co.uk
Description: Modern business launch website with GSAP animations for printing and branding business
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: businesslaunch360
Tags: business, modern, responsive, animations
*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    gap: 16px;
}

/* Group nav-links + CTA button together on the right */
.site-header nav .nav-links {
    margin-left: auto;
}

.site-header nav .btn-header-cta {
    flex-shrink: 0;
    margin-left: 24px;
}

.site-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero *:not(a.btn):not(.trust-item) {
    color: #ffffff;
}

.hero .btn-primary { color: #667eea !important; }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1,
.hero .hero-title {
    font-size: 64px;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff !important;
}

.hero p,
.hero .hero-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
    color: #ffffff !important;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid rgba(102,126,234,0.4);
}

.btn-secondary:hover {
    background: rgba(102,126,234,0.08);
    border-color: #667eea;
}

.hero .btn-secondary {
    color: #ffffff;
    border-color: rgba(255,255,255,0.4);
}

.hero .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

.trust-badges {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
}

.trust-item {
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Business Types Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.business-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.business-card:hover::before {
    opacity: 0.05;
}

.business-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.business-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.5s;
    position: relative;
    z-index: 2;
}

.business-card:hover .business-icon {
    transform: scale(1.2) rotate(5deg);
}

.business-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.business-card .arrow {
    color: #667eea;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
    display: inline-block;
}

.business-card:hover .arrow {
    transform: translateX(5px);
}

/* Two Column Section */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.column {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.column.green {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 4px solid #10b981;
}

.column.red {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-left: 4px solid #ef4444;
}

.column h3 {
    font-size: 26px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: #0f172a;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
}

.column li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.column.green li::before {
    content: '✓';
    color: #10b981;
}

.column.red li::before {
    content: '✗';
    color: #ef4444;
}

.clarification {
    margin-top: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    font-size: 15px;
    color: #475569;
    border: 2px solid #f1f5f9;
    line-height: 1.7;
}

.clarification strong {
    color: #0f172a;
    font-weight: 700;
}

/* Launch Phases */
.launch-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.phase-card {
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.phase-card:hover {
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    transform: translateY(-8px);
}

.phase-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.phase-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 15px;
    color: #0f172a;
    font-weight: 800;
}

.phase-tagline {
    color: #667eea;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
}

.phase-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.phase-card li {
    padding: 8px 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

.phase-price {
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2);
}

.package-card.featured {
    border-color: #667eea;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.package-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.package-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 800;
}

.package-price {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.package-description {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.package-ideal {
    font-size: 13px;
    color: #64748b;
    font-style: italic;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f1f5f9;
    line-height: 1.5;
}

/* Use tick marks and proper alignment for package lists */
.package-card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
    text-align: left;
}

.package-card li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 800;
    font-size: 14px;
}

/* Ensure headings inside package categories keep spacing */
.package-category h4 {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #0f172a;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 40px auto;
}

.timeline-item {
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 800;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

/* ── Portfolio Section ───────────────────────────────────────────────────── */
#portfolio {
    background: #fff;
    padding: 80px 0;
}

.pf-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 24px;
}

.pf-heading {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
}

.pf-sub {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.pf-view-all {
    font-size: 13px;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding-bottom: 2px;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.18s;
}

.pf-view-all:hover {
    border-color: #667eea;
}

/* List layout */
.pf-list {
    border-top: 1px solid #e2e8f0;
    margin-top: 16px;
}

.pf-item {
    display: grid;
    grid-template-columns: 52px 1fr 180px 40px;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
    transition: background 0.18s, padding 0.18s;
    cursor: pointer;
}

.pf-item:hover {
    background: #f8fafc;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 -16px;
}

.pf-item-num {
    font-size: 13px;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

.pf-item-cat {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #667eea;
    margin-bottom: 7px;
}

.pf-item-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.pf-item-info p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.pf-item-thumb {
    width: 180px;
    height: 110px;
    border-radius: 8px;
    background: #0f172a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pf-item-thumb span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
}

.pf-item-arrow {
    font-size: 18px;
    color: #cbd5e1;
    text-align: right;
    transition: color 0.18s, transform 0.18s;
    display: block;
}

.pf-item:hover .pf-item-arrow {
    color: #667eea;
    transform: translateX(4px);
}

@media (max-width: 700px) {
    .pf-header       { flex-direction: column; align-items: flex-start; }
    .pf-item         { grid-template-columns: 40px 1fr 40px; }
    .pf-item-thumb   { display: none; }
    .pf-item:hover   { padding-left: 10px; padding-right: 10px; margin: 0 -10px; }
}

@media (max-width: 480px) {
    .pf-item         { grid-template-columns: 1fr 32px; gap: 16px; }
    .pf-item-num     { display: none; }
}

/* Final CTA */
.final-cta {
    background: #fff;
    text-align: center;
    padding: 80px 0;
}

/* Ensure secondary CTA is visible on light final-cta background */
.final-cta .cta-buttons .btn-secondary {
    color: #667eea;
    border: 2px solid rgba(102,126,234,0.18);
    background: transparent;
    box-shadow: none;
}

.final-cta .cta-buttons .btn-secondary:hover {
    background: rgba(102,126,234,0.08);
    color: #334155;
}

/* Concept / Visualisation */
.concept-section {
    background: transparent;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: start;
    margin-top: 30px;
}

.concept-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.concept-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #243042;
}

.concept-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 800;
}

.concept-disclaimer {
    margin-top: 18px;
    padding: 18px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(102,126,234,0.08);
    color: #475569;
    box-shadow: 0 10px 30px rgba(102,126,234,0.06);
}

.concept-visual {
    min-height: 360px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eef2ff 0%, #eef7ff 50%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #526075;
    font-weight: 800;
    box-shadow: 0 30px 80px rgba(102,126,234,0.12);
    border: 1px solid rgba(102,126,234,0.06);
    padding: 18px;
}

/* Ready Section */
.ready-section {
    background: transparent;
}

.ready-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.ready-category {
    position: relative;
    background: #fbfdff;
    padding: 28px 26px 24px 26px;
    border-radius: 14px;
    border: 1px solid rgba(14,30,60,0.03);
    box-shadow: 0 18px 50px rgba(14,30,60,0.06);
    transition: transform 0.35s, box-shadow 0.35s;
    overflow: visible;
}

.ready-category::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 12px;
    right: 12px;
    height: 8px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, #6b7bff 0%, #9b6bff 50%, #7dd3fc 100%);
    box-shadow: 0 6px 24px rgba(102,126,234,0.08);
}

.ready-category:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 80px rgba(14,30,60,0.08);
}

.ready-category h3 {
    margin-bottom: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #0f172a;
}

.ready-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ready-category li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
}

.ready-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 18px;
}

/* Final CTA Section (form card) */
.final-cta-section {
    background: linear-gradient(135deg, #5b6bff 0%, #8b5cf6 50%, #7c3aed 100%);
    padding: 100px 0 140px;
    text-align: center;
}

.final-cta-section h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 8px 30px rgba(26,24,38,0.25);
}

.final-cta-section p {
    color: rgba(255,255,255,0.92);
    max-width: 720px;
    margin: 0 auto 20px;
    font-size: 16px;
}

.final-cta-section .container {
    max-width: 980px;
}

.form-container {
    /* margin: 32px auto 0 auto; */
    background: #ffffff;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(17,24,39,0.10);
    border: none;
    max-width: 900px;
}

.form-container h3 {
    font-size: 20px;
    margin-bottom: 18px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e6edf8;
    background: #ffffff;
    font-size: 15px;
    color: #0f172a;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.form-group input { box-shadow: inset 0 1px 0 rgba(16,24,40,0.02); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #9aa5b2; }

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 8px 30px rgba(91,107,255,0.12);
    border-color: rgba(91,107,255,0.22);
}

.form-group textarea { min-height: 110px; resize: vertical; }

.form-container .btn-primary {
    padding: 14px 20px;
    border-radius: 12px;
    display: block;
    width: 70% !important;
    max-width: 420px;
    margin: 18px auto 0 auto;
    background: linear-gradient(90deg, #6b7bff 0%, #8b5cf6 60%);
    color: #fff;
    box-shadow: 0 14px 40px rgba(107,123,255,0.25);
    font-weight: 800;
}

.form-container .btn-primary:hover { transform: translateY(-3px); }

@media (max-width: 900px) {
    .concept-grid { grid-template-columns: 1fr; }
    .ready-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .hero h1 { font-size: 42px; }
}

@media (max-width: 1000px) {
    .concept-visual { min-height: 260px; }
    .form-container { padding: 22px; max-width: 100%; }
}


/* ── Launch Form Section (homepage) ──────────────────────────────────────── */
.lf-section {
    background: #f8fafc;
    padding: 80px 0;
}

.lf-notice {
    max-width: 960px;
    margin: 0 auto 28px;
    padding: 16px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.lf-notice--success {
    background: #ecfdf5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.lf-notice--error {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.launch-form-card {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(15,23,42,0.12);
}

/* Left pitch panel */
.lf-pitch {
    background: #0f172a;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
}

.lf-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #818cf8;
    margin: 0 0 16px;
}

.lf-pitch-heading {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}

.lf-pitch-sub {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.75;
    margin: 0 0 32px;
}

.lf-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lf-checklist li {
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
}

.lf-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 7px;
    border-left: 2px solid #818cf8;
    border-bottom: 2px solid #818cf8;
    transform: rotate(-45deg);
}

.lf-stats {
    display: flex;
    gap: 0;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
}

.lf-stat {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 0 12px;
}

.lf-stat:first-child { padding-left: 0; }
.lf-stat:last-child  { border-right: none; padding-right: 0; }

.lf-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.lf-stat span {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: block;
}

/* Right form panel */
.lf-form-panel {
    background: #ffffff;
    padding: 48px 44px;
}

.lf-form-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 28px;
    letter-spacing: -0.3px;
}

.lf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.lf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lf-field-full {
    margin-bottom: 16px;
}

.lf-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}

.lf-req {
    color: #ef4444;
}

.lf-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-sizing: border-box;
    font-family: inherit;
}

.lf-input::placeholder {
    color: #b0bac8;
}

.lf-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.lf-textarea {
    min-height: 100px;
    resize: vertical;
}

.lf-date {
    cursor: pointer;
    color: #0f172a;
}

.lf-date::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.5;
}

.lf-date::-webkit-calendar-picker-indicator:hover {
    opacity: 0.9;
}

.lf-submit {
    width: 100%;
    padding: 14px 24px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
    font-family: inherit;
}

.lf-submit:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.lf-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
    flex-wrap: wrap;
}

.lf-trust span {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    padding: 0 12px;
    border-right: 1px solid #e2e8f0;
    line-height: 1;
}

.lf-trust span:last-child {
    border-right: none;
}

@media (max-width: 860px) {
    .launch-form-card   { grid-template-columns: 1fr; }
    .lf-pitch           { padding: 40px 32px; }
    .lf-pitch-heading   { font-size: 24px; }
    .lf-stats           { padding-top: 24px; }
    .lf-form-panel      { padding: 36px 32px; }
}

@media (max-width: 540px) {
    .lf-pitch           { padding: 32px 24px; }
    .lf-form-panel      { padding: 28px 24px; }
    .lf-row             { grid-template-columns: 1fr; gap: 14px; }
    .lf-trust           { gap: 8px; }
    .lf-trust span      { border-right: none; padding: 0; }
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
    background: #0f172a;
    color: #fff;
    padding: 0 0 0;
    border-top: 3px solid #667eea;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 60px 0 52px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.footer-logo span {
    color: #818cf8;
}

.footer-brand p {
    font-size: 13px;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 14px;
    max-width: 240px;
}

.footer-contact-line a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: color 0.18s;
}

.footer-contact-line a:hover {
    color: #818cf8;
}

/* Nav columns */
.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #94a3b8;
    margin: 0 0 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: color 0.18s;
}

.footer-col a:hover {
    color: #fff;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.18s;
}

.footer-legal a:hover {
    color: #94a3b8;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
        padding: 48px 0 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand-text {
        flex: 1;
    }
    .footer-brand p {
        max-width: 340px;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        padding: 32px 0 28px;
    }
    .footer-brand {
        flex-direction: column;
        gap: 0;
        padding-bottom: 24px;
    }
    .footer-brand p {
        max-width: 100%;
        margin-bottom: 10px;
    }
    .footer-logo {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .footer-brand p,
    .footer-contact-line a {
        font-size: 13px;
    }
    /* Nav columns — 2-up */
    .footer-col h4 {
        font-size: 9px;
        letter-spacing: 0.14em;
        color: #94a3b8;
        margin-bottom: 14px;
    }
    .footer-col a {
        font-size: 13px;
        color: #475569;
    }
    .footer-col ul {
        gap: 11px;
    }
    /* Bottom bar */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 0;
    }
    .footer-bottom p,
    .footer-legal a {
        font-size: 12px;
        color: #475569;
    }
    .footer-legal {
        gap: 16px;
    }
}

/* ── Contact Page ────────────────────────────────────────────────────────── */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* WhatsApp hero card */
.contact-wa-card {
    background: #0f172a;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-wa-icon {
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* WhatsApp profile header — two separate divs */
.contact-wa-header {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-wa-logo-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.contact-wa-logo-box--wa {
    background: transparent;
}

.contact-wa-logo-box--bl {
    background: transparent;
}

.contact-wa-logo-box span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-align: center;
    white-space: nowrap;
}

.contact-wa-avatar {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-wa-project-logo {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border: 1.5px solid rgba(129,140,248,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

.contact-wa-project-logo span {
    color: #818cf8;
    font-size: 11px;
    font-weight: 800;
}

.contact-wa-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #25D366;
    margin: 0 0 8px;
}

.contact-wa-heading {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.contact-wa-sub {
    font-size: 13px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 16px;
}

.contact-wa-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.contact-wa-input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    font-size: 13px;
    color: #e2e8f0;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.18s;
}

.contact-wa-input::placeholder {
    color: rgba(255,255,255,0.25);
}

.contact-wa-input:focus {
    outline: none;
    border-color: rgba(37,211,102,0.4);
    background: rgba(255,255,255,0.08);
}

select.contact-wa-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

select.contact-wa-input option {
    background: #ffffff !important;
    color: #0f172a !important;
    font-weight: 500;
}

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 8px;
    transition: background 0.18s, transform 0.15s;
    letter-spacing: 0.01em;
}

.contact-wa-btn:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    color: #fff;
}

.contact-wa-number {
    display: none;
}

/* Info card */
.contact-info-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    padding: 28px;
}

.contact-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px;
    letter-spacing: -0.2px;
}

.contact-info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.contact-info-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
}

.contact-info-value {
    font-size: 14px;
    color: #0f172a;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.5;
}

a.contact-info-value:hover {
    color: #667eea;
}

/* Steps */
.contact-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-step-num {
    font-size: 11px;
    font-weight: 700;
    color: #667eea;
    letter-spacing: 0.08em;
    min-width: 28px;
    padding-top: 2px;
}

.contact-step strong {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
}

.contact-step p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ── Contact Page Grid (desktop) ────────────────────────────────────────── */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Global Mobile Fixes ─────────────────────────────────────────────────── */
@media (max-width: 860px) {
    /* Container padding */
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 80px 0 70px;
    }
    .hero h1,
    .hero .hero-title {
        font-size: 36px;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }
    .hero p,
    .hero .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    /* Section headings */
    .section-header h2,
    h2 {
        font-size: 28px;
    }
    .section-header p {
        font-size: 15px;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Grids → single column */
    .two-column,
    .packages-grid,
    .business-grid,
    .concept-grid,
    .ready-grid,
    .why-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Nav */
    .nav-links {
        display: none;
    }

    /* Sections padding */
    section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    /* Contact page grid */
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .contact-sidebar {
        order: -1;
    }
    .contact-wa-card {
        padding: 22px 18px;
    }
    .contact-wa-heading {
        font-size: 19px;
    }
    .contact-wa-btn {
        width: 100%;
        justify-content: center;
    }
    .contact-info-card {
        padding: 20px 18px;
    }

    /* Form container */
    .form-container {
        padding: 22px 18px;
    }
    .form-container h3 {
        font-size: 20px;
    }

    /* Packages card */
    .packages-grid .package-card {
        padding: 32px 22px;
    }
    .packages-grid .package-card .package-price {
        font-size: 38px;
    }

    /* Launch form */
    .sc-form-panel {
        padding: 24px 18px;
    }
    .sc-heading {
        font-size: 26px;
    }
    .sc-form .sc-row {
        grid-template-columns: 1fr;
    }

    /* Why section */
    .why-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 14px;
    }

    /* Hero */
    .hero {
        padding: 60px 0 52px;
    }
    .hero h1,
    .hero .hero-title {
        font-size: 28px;
        margin-bottom: 14px;
    }
    .hero p,
    .hero .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Trust badges */
    .trust-badges {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    /* Section headings */
    .section-header h2,
    h2 {
        font-size: 23px;
    }
    .section-header p {
        font-size: 14px;
    }

    /* Sections padding */
    section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    /* Contact page */
    .contact-page-grid {
        gap: 20px;
    }
    .contact-wa-card {
        padding: 18px 14px;
        border-radius: 12px;
    }
    .contact-wa-header {
        gap: 8px;
        margin-bottom: 16px;
    }
    .contact-wa-heading {
        font-size: 16px;
    }
    .contact-wa-sub {
        font-size: 12px;
    }
    .contact-wa-input {
        font-size: 15px;
        padding: 13px 12px;
    }
    .contact-wa-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
        font-size: 15px;
    }
    .contact-info-card {
        padding: 16px 14px;
        border-radius: 12px;
    }
    .contact-info-value {
        font-size: 13px;
    }
    .form-container {
        padding: 18px 14px;
        border-radius: 12px;
    }
    .form-container h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .form-group label {
        font-size: 13px;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea,
    .form-group select {
        font-size: 15px;
        padding: 13px 12px;
    }

    /* Floating WhatsApp button */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }

    /* Packages */
    .packages-grid .package-card {
        padding: 26px 16px;
    }
    .packages-grid .package-card .package-price {
        font-size: 32px;
    }
}

/* Overrides to ensure sector templates match homepage visuals */
.package-cta .btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    background: #fff;
    color: #667eea;
    text-decoration: none;
}

/* removed duplicate desktop override that was cancelling mobile rules */



.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6e9ef;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
}

.form-group textarea { min-height: 110px; }

.form-container .btn {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
}

/* Why section layout and bullets */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.why-intro p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.why-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-bullet {
    background: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.04);
    border-left: 4px solid rgba(102,126,234,0.12);
    color: #0f172a;
    font-weight: 600;
}

.why-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.why-visual-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.06);
    object-fit: cover;
}

.why-visual-placeholder {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-weight: 700;
}

/* FAQ accordion styling */
.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.04);
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    margin-top: 10px;
    color: #475569;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

@media (max-width: 900px) {
    .why-content { grid-template-columns: 1fr; }
}

/* ── Mobile hamburger menu ─────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        z-index: 1050;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 24px;
        font-size: 16px;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links a:hover {
        background: #f8f9ff;
        padding-left: 30px;
    }

    .site-header nav {
        position: relative;
        flex-wrap: wrap;
    }
}

/* ==============================================
   Header CTA Button
   ============================================== */
.btn-header-cta {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
    margin-left: 16px;
}

.btn-header-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .btn-header-cta {
        display: none;
    }
}

/* ==============================================
   Override WordPress Block Editor / Gutenberg
   constraints that break full-width layouts
   ============================================== */
.entry-content,
.wp-block,
.wp-block-group,
.wp-block-columns,
.wp-block-cover,
.wp-block-image,
.wp-block-paragraph,
.wp-block-heading,
.wp-block-list,
.wp-block-html,
.alignwide,
.alignfull {
    max-width: none !important;
    width: 100% !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Also disable WordPress's automatic block styles on pages using custom templates */
.page .wp-block {
    max-width: none !important;
}

/* ==============================================
   Homepage Services Section
   ============================================== */
.services-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.service-section-card {
    display: block;
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 36px 28px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.service-section-card:hover {
    border-color: #667eea;
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.15);
}

.service-section-icon {
    font-size: 52px;
    margin-bottom: 18px;
}

.service-section-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-section-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-section-arrow {
    font-size: 14px;
    font-weight: 700;
    color: #667eea;
}

/* ==============================================
   Service Pages CSS Additions
   ============================================== */

/* Package Category Styling */
.package-category {
    margin-bottom: 25px;
}

.package-category h4 {
    font-size: 14px;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.package-category ul {
    list-style: none;
    padding: 0;
}

.package-category li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
}

.package-category li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Service Image Styling */
.service-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ==============================================
   Sector Contact Section — professional 2-col
   ============================================== */

.sector-contact-section {
    background: #0f172a;
    padding: 100px 0;
}

.sc-alert {
    max-width: 900px;
    margin: 0 auto 32px;
    padding: 16px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}

.sc-alert--success { background: #ecfdf5; border-left: 4px solid #10b981; color: #065f46; }
.sc-alert--error   { background: #fef2f2; border-left: 4px solid #ef4444; color: #991b1b; }

/* Layout */
.sc-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Left pitch panel ── */
.sc-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #818cf8;
    margin-bottom: 16px;
}

.sc-heading {
    font-size: 40px;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.sc-sub {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 36px;
}

.sc-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 44px;
}

.sc-checklist li {
    font-size: 15px;
    color: #cbd5e1;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sc-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-checklist li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #fff;
    font-weight: 800;
}

.sc-stats {
    display: flex;
    gap: 32px;
}

.sc-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.sc-stat span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Right form panel ── */
.sc-form-panel {
    background: #ffffff;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

.sc-form-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.sc-form-sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Form fields */
.sc-form .sc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.sc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-field--full {
    margin-bottom: 16px;
}

.sc-field label {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sc-req {
    color: #ef4444;
}

.sc-field input,
.sc-field select,
.sc-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #0f172a;
    background: #f8fafc;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}

.sc-field input::placeholder,
.sc-field textarea::placeholder { color: #b0bac8; }

.sc-field input:focus,
.sc-field select:focus,
.sc-field textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.12);
}

.sc-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-color: #f8fafc;
    cursor: pointer;
    padding-right: 36px;
}

.sc-field textarea {
    resize: vertical;
    min-height: 110px;
}

.sc-submit {
    width: 100%;
    padding: 15px 24px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.sc-submit:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,23,42,0.25);
}

.sc-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 14px;
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 900px) {
    .sc-wrap { grid-template-columns: 1fr; gap: 48px; }
    .sc-heading { font-size: 32px; }
    .sc-form-panel { padding: 32px 24px; }
    .sc-form .sc-row { grid-template-columns: 1fr; }
    .sc-stats { gap: 20px; }
}

/* ==============================================
   Sector Template — Package Summary
   ============================================== */
.package-summary {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ==============================================
   Sector Template — Form select element
   ============================================== */
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e6e9ef;
    background: #ffffff;
    font-size: 15px;
    color: #0f172a;
    transition: box-shadow 0.2s, border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    font-family: inherit;
}

.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.15);
    border-color: #667eea;
}

/* ==============================================
   FAQ toggle indicator
   ============================================== */
.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: #667eea;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* ==============================================
   Section background alternating (sector pages)
   ============================================== */
.why-section     { background: #f8fafc; }
.timeline-section { background: #ffffff; }
.faq-section     { background: #f8fafc; }

/* ==============================================
   Sector CTA — package-cta button alignment
   ============================================== */
.package-cta {
    margin-top: 24px;
    text-align: center;
}

.package-cta .btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(102,126,234,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.package-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102,126,234,0.4);
}

/* ==============================================
   Responsive fixes
   ============================================== */
@media (max-width: 768px) {
    .why-content   { grid-template-columns: 1fr; }
    .concept-grid  { grid-template-columns: 1fr; }
    .ready-grid    { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .final-cta-section { padding: 60px 0 80px; }
    .final-cta-section h2 { font-size: 32px; }
    .form-container { padding: 24px 18px; }
}

/* ============================================================
   MASTER RESPONSIVE — covers all templates
   Desktop styles untouched — only adds mobile overrides
   ============================================================ */

/* ── Checkout page grid ── */
.checkout-page-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
    max-width: 1060px;
    margin: 0 auto;
}

/* ── 900px — tablets ── */
@media (max-width: 900px) {

    /* Packages — kill the scale so featured card doesn't overflow */
    .packages-grid { grid-template-columns: 1fr; gap: 24px; }
    .package-card.featured { transform: none; box-shadow: 0 10px 40px rgba(102,126,234,0.2); }
    .package-card.featured:hover { transform: translateY(-6px); }
    .package-card { padding: 36px 28px; }
    .package-card h3 { font-size: 22px; }
    .package-price { font-size: 40px; }
    .package-card .btn { display: block; width: 100%; text-align: center; }

    /* Checkout */
    .checkout-page-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* About */
    .about-hero-stats {
        flex-wrap: wrap;
        gap: 16px 24px;
        justify-content: center;
    }
    .about-stat-divider { display: none; }
    .about-two-col { grid-template-columns: 1fr; gap: 32px; }
    .about-values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .about-cta-inner { flex-wrap: wrap; gap: 24px; text-align: center; justify-content: center; }

    /* Services */
    .launch-phases { grid-template-columns: 1fr 1fr; gap: 20px; }
    .phase-card { padding: 28px 22px; }

    /* Service category */
    .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .sc-quote-wrapper { grid-template-columns: 1fr; gap: 40px; }

    /* Header nav padding */
    .site-header nav { padding: 18px 0; }

    /* Process steps */
    .process-steps { flex-wrap: wrap; gap: 20px; }
    .process-step { flex: 1 1 calc(50% - 10px); }
}

/* ── 768px — large phones / small tablets ── */
@media (max-width: 768px) {

    /* About hero */
    .about-hero { padding: 70px 0 60px; }
    .about-hero h1 { font-size: 32px; line-height: 1.2; }
    .about-hero p { font-size: 15px; }
    .about-hero-stats { gap: 14px; }
    .about-stat strong { font-size: 28px; }
    .about-stat span { font-size: 12px; }

    /* About sections */
    .about-values-grid { grid-template-columns: 1fr; }
    .about-value-card { padding: 24px 20px; }
    .about-team-grid { grid-template-columns: 1fr; }
    .about-comparison { grid-template-columns: 1fr; }
    .about-comparison-col { padding: 24px 18px; }

    /* Services page */
    .launch-phases { grid-template-columns: 1fr; }
    .phase-card { padding: 24px 18px; }

    /* Service category — comparison table */
    .comparison-table th,
    .comparison-table td { padding: 12px 10px; font-size: 13px; }

    /* Packages grid */
    .packages-grid .package-card { padding: 28px 18px; }
    .packages-grid .package-card .package-price { font-size: 34px; }

    /* Service detail */
    .pricing-tiers { grid-template-columns: 1fr; }
    .process-step { flex: 1 1 100%; }
    .related-services-grid { grid-template-columns: 1fr; }
    .service-meta { flex-direction: column; gap: 12px; }

    /* Sector page */
    .timeline { flex-direction: column; gap: 0; }
    .timeline-item { flex-direction: row; gap: 16px; }
    .timeline-connector { display: none; }

    /* sc-wrap (sector contact form) */
    .sc-wrap { grid-template-columns: 1fr; gap: 32px; }
    .sc-form-panel { padding: 24px 18px; }
    .sc-heading { font-size: 26px; }
    .sc-form .sc-row { grid-template-columns: 1fr; }

    /* Checkout */
    .checkout-page-grid { gap: 24px; }
    .form-container h3 { font-size: 18px; }

    /* Business types grid */
    .business-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

    /* General section header */
    .section-header { margin-bottom: 36px; }

    /* CTA buttons */
    .cta-buttons .btn { width: 100%; text-align: center; }

    /* Services section cards */
    .services-section-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .service-section-card { padding: 22px 18px; }
}

/* ── 480px — phones ── */
@media (max-width: 480px) {

    /* About */
    .about-hero h1 { font-size: 26px; }
    .about-values-grid { grid-template-columns: 1fr; }

    /* Business types — single column */
    .business-grid { grid-template-columns: 1fr; }

    /* Services section */
    .services-section-grid { grid-template-columns: 1fr; }

    /* Packages */
    .packages-grid .package-card { padding: 22px 14px; }
    .packages-grid .package-card .package-price { font-size: 28px; }
    .package-cta .btn { width: 100%; text-align: center; display: block; }

    /* Service detail pricing tiers */
    .pricing-tiers { grid-template-columns: 1fr; gap: 16px; }

    /* Checkout & contact forms */
    .checkout-page-grid { gap: 20px; }
    .form-container { border-radius: 12px; }
    .form-group input,
    .form-group textarea,
    .form-group select { font-size: 16px; } /* prevent iOS zoom */

    /* sc form */
    .sc-form-panel { border-radius: 12px; padding: 20px 14px; }
    .sc-field input,
    .sc-field select,
    .sc-field textarea { font-size: 16px; } /* prevent iOS zoom */

    /* Header */
    .site-header nav { padding: 14px 0; }
    .site-logo { font-size: 20px; }

    /* Section headers */
    .section-header h2 { font-size: 22px; letter-spacing: -0.3px; }
    .section-header p { font-size: 14px; }
    .section-header { margin-bottom: 28px; }

    /* Buttons */
    .btn { padding: 13px 22px; font-size: 14px; }

    /* About hero stats — 2×2 */
    .about-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; justify-items: center; }

    /* Sector / service timeline */
    .timeline-item { flex-direction: column; gap: 8px; }

    /* Phase cards */
    .phase-card { padding: 20px 14px; }
    .phase-card h3 { font-size: 16px; }
    .phase-card p { font-size: 13px; }

    /* Comparison table — allow horizontal scroll */
    .comparison-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .comparison-table { min-width: 480px; }
    .comparison-table th,
    .comparison-table td { padding: 10px 8px; font-size: 12px; }
}