/* ========================================
   PROJECT WILL - CONSUMER LPA WEBSITE
   Mobile-First Responsive Design
   ======================================== */

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
}

/* Color overrides - Green theme */
:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a3a52;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.large-text {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ========================================
   LAYOUT COMPONENTS
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.938rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: white;
    color: #10b981;
    border: 2px solid #10b981;
}

.btn-secondary:hover {
    background: #f0f9ff;
}

.btn-outline {
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
}

.btn-outline:hover {
    background: #10b981;
    color: white;
}

.btn-large {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 0.938rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
}

.nav a:not(.btn-nav-cta):hover {
    color: #10b981;
    background: #f0fdf4;
}

.btn-nav-cta {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    margin-left: 8px;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    color: white !important;
    background: linear-gradient(135deg, #059669, #047857);
}

.header-contact {
    display: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 80px 0;
    position: relative;
}

.hero-with-image {
    padding: 120px 0 100px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-with-logo {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    padding: 100px 0 80px;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
}

.hero-logo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-with-logo .container {
    position: relative;
    z-index: 2;
}

.hero-with-logo .hero-title,
.hero-with-logo .hero-subtitle {
    color: #1a3a52;
}

.hero-with-logo .hero-stats .stat-number {
    color: #10b981;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-with-image .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-with-image .hero-title,
.hero-with-image .hero-subtitle,
.hero-with-image .hero-badge span {
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-with-image .hero-title {
    font-weight: 900;
}

.hero-with-image .hero-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-with-image .hero-badge span {
    color: #10b981;
    text-shadow: none;
}

.hero-with-image .hero-badge i {
    color: #10b981;
}

.hero-with-image .gradient-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-with-image .btn-primary {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5), 0 8px 40px rgba(0, 0, 0, 0.3);
}

.hero-with-image .btn-primary:hover {
    background: #059669;
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6), 0 10px 50px rgba(0, 0, 0, 0.4);
}

.hero-with-image .btn-secondary {
    background: white;
    color: #10b981;
    border-color: white;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4), 0 8px 40px rgba(0, 0, 0, 0.3);
}

.hero-with-image .btn-secondary:hover {
    background: #f0f9ff;
}

.hero-with-image .hero-stats .stat-number {
    color: white;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-with-image .hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 30px;
    font-weight: 600;
    color: #10b981;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    font-size: 0.938rem;
}

.gradient-text {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.hero-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: 2.5rem;
    color: #1a3a52;
    font-weight: 900;
    line-height: 1.1;
}

.title-sub {
    display: block;
    font-size: 2rem;
    color: #2563eb;
    font-weight: 800;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #10b981;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 12px;
}

.pricing-compare {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
}

.price-promo {
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 16px 0;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a52;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 4px;
}

.pricing-contract {
    text-align: center;
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.938rem;
    line-height: 1.5;
}

.pricing-features .feature svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   MISSION SECTION
   ======================================== */
.mission-section {
    background: white;
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.mission-text .section-title {
    text-align: left;
}

.mission-text .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content .large-text {
    margin-bottom: 50px;
    color: #1a3a52;
}

.mission-text .large-text {
    margin-bottom: 30px;
    text-align: left;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.mission-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.mission-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mission-image-badge .badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-image-badge i {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.mission-image-badge span {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a3a52;
}

@media (max-width: 1023px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-text .section-header {
        text-align: center;
    }

    .mission-text .section-title,
    .mission-text .section-subtitle,
    .mission-text .large-text {
        text-align: center;
    }

    .mission-text .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.value-card {
    background: #f9fafb;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #f0f9ff;
    transform: translateY(-5px);
}

.value-card i {
    width: 60px;
    height: 60px;
    color: #2563eb;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a3a52;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

/* ========================================
   FOR PROFESSIONALS SECTION
   ======================================== */
.for-professionals {
    background: linear-gradient(135deg, #1a3a52 0%, #2563eb 100%);
    color: white;
    padding: 80px 0;
}

.professional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.professional-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.professional-text .large-text {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.professional-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.professional-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    color: white;
}

.professional-list i {
    color: #10b981;
    flex-shrink: 0;
}

.professional-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-highlight .stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-highlight .stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

@media (max-width: 1023px) {
    .professional-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .professional-list li {
        justify-content: center;
    }

    .for-professionals .btn {
        width: 100%;
    }
}

/* ========================================
   HERO STATS
   ======================================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 0.938rem;
    color: #64748b;
    font-weight: 600;
}

/* ========================================
   FREE WILL BANNER
   ======================================== */
.free-will-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.free-will-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.free-will-content {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.free-will-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.free-will-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.free-will-text {
    flex: 1;
    min-width: 300px;
}

.free-will-text h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.free-will-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin: 0;
}

.btn-light {
    background: white;
    color: #10b981;
    border-color: white;
}

.btn-light:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

/* ========================================
   MISSION SECTION V2
   ======================================== */
.mission-section-v2 {
    background: white;
    padding: 80px 0;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered .section-title {
    text-align: center;
}

.section-header-centered .section-subtitle {
    text-align: center;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: #f9fafb;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #d1fae5;
}

.stat-card.highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.stat-card.highlight h3,
.stat-card.highlight p {
    color: white;
}

.stat-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card.highlight .stat-card-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stat-card-icon i {
    width: 40px;
    height: 40px;
    color: #10b981;
}

.stat-card.highlight .stat-card-icon i {
    color: white;
}

.stat-card h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.stat-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
    background: white;
    padding: 80px 0;
}

.video-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    font-weight: 500;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
}

.video-cta p {
    font-size: 1.125rem;
    color: #1a3a52;
    margin: 0;
}

/* ========================================
   AWARDS SECTION
   ======================================== */
.awards {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

/* ========================================
   LPA DOCUMENT SECTION
   ======================================== */
.lpa-document-section {
    background: #f9fafb;
    padding: 80px 0;
}

.lpa-document-content {
    max-width: 1200px;
    margin: 0 auto;
}

.document-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 50px 0;
}

.document-info h3 {
    font-size: 1.5rem;
    color: #1a3a52;
    margin-bottom: 20px;
}

.document-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.document-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.document-features svg {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.document-note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #dbeafe;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.document-note svg {
    width: 24px;
    height: 24px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 2px;
}

.document-note p {
    margin: 0;
    color: #1e40af;
    line-height: 1.6;
}

.pdf-viewer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pdf-wrapper {
    width: 100%;
    height: 500px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #e5e7eb;
    position: relative;
}

.pdf-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    z-index: 1;
}

.pdf-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* Mobile image - hidden by default, shown on mobile */
.pdf-mobile-image {
    display: none;
}

.pdf-mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.document-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.document-cta p {
    margin-bottom: 15px;
}

.document-cta .large-text {
    margin-bottom: 10px;
}

.awards-title {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    text-align: center;
}

.award-badge {
    font-size: 2rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 8px;
}

.award-item p {
    color: #64748b;
    font-size: 0.938rem;
}

.awards-promise {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.awards-promise p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.awards-promise strong {
    color: #2563eb;
    font-weight: 700;
}

/* As Seen On Section in Hero */
.as-seen-on-hero {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    text-align: center;
}

.as-seen-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #64748b;
    margin-bottom: 25px;
    font-weight: 600;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.media-logo {
    height: 35px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.media-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ========================================
   MODERN SERVICES SECTION
   ======================================== */
.services-v2 {
    background: linear-gradient(135deg, #f8fafc 0%, #d1fae5 100%);
    padding: 100px 0;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-modern {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.service-card-modern.featured-service {
    border-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.service-icon-large i {
    width: 50px;
    height: 50px;
    color: white;
}

.service-card-modern h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #1a3a52;
    font-weight: 800;
}

.service-price {
    margin: 25px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.service-price .price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    margin-bottom: 8px;
}

.service-price .price-label {
    display: block;
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

.service-features-minimal {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.service-features-minimal li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #334155;
}

.service-features-minimal i {
    color: #10b981;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* ========================================
   TEAM PHOTO SECTION
   ======================================== */
.team-photo-section {
    background: white;
    padding: 100px 0;
}

.team-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-photo-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.team-photo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-photo-content h2 {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 900;
}

.team-photo-content .large-text {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.team-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.team-feature i {
    width: 32px;
    height: 32px;
    color: #10b981;
    flex-shrink: 0;
}

.team-feature span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a3a52;
}

@media (max-width: 1023px) {
    .team-photo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: #1a3a52;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   TRUTH ABOUT LPAs SECTION
   ======================================== */
.truth-section {
    background: #f9fafb;
}

.truth-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.truth-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.truth-box.highlight {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.truth-box.highlight h3,
.truth-box.highlight p,
.truth-box.highlight strong {
    color: white;
}

.truth-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a3a52;
}

.truth-box.highlight h3 {
    color: white;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.benefit-list svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Alert icons for pricing game section */
.truth-box.highlight .benefit-list svg {
    color: #fbbf24;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    background: white;
}

.process-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #f0f9ff;
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step-number {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a3a52;
}

.process-step p {
    color: #64748b;
    line-height: 1.7;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.pricing-cards {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border: 3px solid #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #1a3a52;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 20px 0;
}

.currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a3a52;
}

.amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
}

.price-note {
    color: #64748b;
    font-size: 0.938rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.card-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.card-features .feature svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-compare {
    text-align: center;
    padding: 12px;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 0.938rem;
    color: #92400e;
    margin-bottom: 24px;
}

.card-compare.save {
    background: #d1fae5;
    color: #065f46;
    font-weight: 700;
}

/* ========================================
   FREE WILL SECTION
   ======================================== */
.free-will {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.free-will-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.will-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.will-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.free-will .section-title {
    color: white;
}

.free-will .large-text {
    color: white;
    margin: 20px 0;
}

.will-value {
    margin: 30px 0;
}

.value-badge {
    display: inline-block;
    background: white;
    color: #10b981;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.125rem;
}

.free-will p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ========================================
   WHAT'S INCLUDED SECTION
   ======================================== */
.whats-included {
    background: white;
}

.included-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.included-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.included-card:hover {
    background: #f0f9ff;
    transform: translateY(-5px);
}

.included-card svg {
    width: 50px;
    height: 50px;
    color: #2563eb;
    margin-bottom: 16px;
}

.included-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a3a52;
}

.included-card p {
    color: #64748b;
    line-height: 1.7;
}

/* ========================================
   FEATURED REVIEW SECTION
   ======================================== */
.featured-review-section {
    background: white;
    padding: 100px 0;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.review-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
}

.review-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.star-rating {
    display: flex;
    gap: 8px;
}

.star-rating i {
    width: 28px;
    height: 28px;
    color: #fbbf24;
    fill: #fbbf24;
}

.review-content {
    position: relative;
}

.review-quote-icon {
    position: absolute;
    top: -30px;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.review-quote-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.review-title {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 30px;
    margin-top: 60px;
    font-weight: 900;
}

.review-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #334155;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid #10b981;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 2px solid #f3f4f6;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 30px;
}

.author-details strong {
    display: block;
    font-size: 1.25rem;
    color: #1a3a52;
    margin-bottom: 5px;
}

.author-details span {
    color: #64748b;
    font-size: 1rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #d1fae5;
    border-radius: 30px;
}

.verified-badge i {
    width: 20px;
    height: 20px;
    color: #10b981;
}

.verified-badge span {
    color: #059669;
    font-weight: 600;
    font-size: 0.938rem;
}

.review-stats {
    display: flex;
    gap: 40px;
}

.review-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-stat .stat-icon i {
    width: 30px;
    height: 30px;
    color: #10b981;
}

.review-stat .stat-info strong {
    display: block;
    font-size: 1.75rem;
    color: #1a3a52;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.review-stat .stat-info span {
    color: #64748b;
    font-size: 0.938rem;
}

@media (max-width: 1023px) {
    .review-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .review-title {
        font-size: 2rem;
        margin-top: 80px;
    }

    .review-quote {
        font-size: 1.25rem;
    }

    .review-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .review-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: #f9fafb;
}

.testimonial-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 4rem;
    color: #dbeafe;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    color: #1a3a52;
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    color: #64748b;
    font-size: 0.875rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #1a3a52;
    margin-bottom: 12px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

/* ========================================
   CALL NOW SECTION
   ======================================== */
.call-now-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.call-now-content {
    max-width: 900px;
    margin: 0 auto;
}

.call-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.call-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.call-now-section .section-title {
    color: white;
    margin-bottom: 20px;
}

.call-now-section .large-text {
    color: rgba(255, 255, 255, 0.95);
}

.call-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.call-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 500;
}

.call-benefit svg {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #2563eb;
    padding: 20px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 20px 0;
}

.btn-call-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.btn-call-now svg {
    width: 35px;
    height: 35px;
    color: #10b981;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.call-now-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.call-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.call-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
}

.call-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 1rem;
}

.call-hours svg {
    width: 20px;
    height: 20px;
}

.call-promise {
    max-width: 700px;
    margin: 30px auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1a3a52;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ========================================
   MOBILE OPTIMIZATIONS (below 1024px - all mobile & tablet devices)
   ======================================== */
@media (max-width: 1023px) {
    /* Reduce padding on mobile for more space */
    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero section mobile */
    .hero {
        padding: 50px 0;
    }

    .hero-with-image {
        padding: 80px 0 60px;
        min-height: 500px;
    }

    .hero-with-image .hero-title {
        font-size: 2rem;
    }

    .hero-with-image .gradient-text {
        font-size: 1.75rem;
    }

    .hero-image-bg img {
        object-position: center top;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }

    .hero-title .title-main {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-title .title-sub {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Hero with logo - mobile optimizations */
    .hero-with-logo {
        padding: 80px 0 60px;
        min-height: 600px;
    }

    .hero-with-logo .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-with-logo .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-with-logo .hero-badge {
        font-size: 0.875rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-stats {
        gap: 30px;
        margin-top: 40px;
    }

    .hero-stats .stat-number {
        font-size: 2rem;
    }

    .hero-stats .stat-label {
        font-size: 0.875rem;
    }

    /* Pricing card in hero - make it pop on mobile */
    .hero-pricing-card {
        padding: 24px;
        margin-top: 30px;
    }

    .price-amount {
        font-size: 3rem;
    }

    /* Buttons - bigger touch targets on mobile */
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1.063rem;
        width: 100%;
        justify-content: center;
    }

    /* As seen on section mobile */
    .as-seen-on-hero {
        margin-top: 30px;
        padding-top: 25px;
    }

    .as-seen-title {
        font-size: 0.625rem;
        margin-bottom: 15px;
    }

    .media-logos {
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: space-around;
    }

    .media-logo {
        height: 20px;
        max-width: 80px;
        object-fit: contain;
    }

    /* Awards section mobile - compact single line */
    .awards-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .award-badge {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }

    .award-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .awards-promise {
        margin-top: 20px;
        padding-top: 20px;
    }

    .awards-promise p {
        font-size: 0.875rem;
    }

    /* Video section mobile */
    .video-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .video-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* LPA Document section mobile */
    .lpa-document-section {
        padding: 50px 0;
    }

    .document-info h3 {
        font-size: 1.25rem;
    }

    .document-features li {
        font-size: 0.938rem;
    }

    /* PDF viewer mobile - show image, hide iframe */
    .pdf-mobile-image {
        display: block;
        margin-bottom: 15px;
    }

    .pdf-wrapper {
        display: none;
    }

    .document-note {
        padding: 16px;
        font-size: 0.875rem;
    }

    /* Make buttons full width on mobile */
    .pdf-viewer-container .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1.063rem;
        font-weight: 700;
    }

    .pdf-viewer-container .btn-secondary {
        background: #2563eb;
        color: white;
        border: none;
    }

    .pdf-viewer-container .btn-secondary:hover {
        background: #1d4ed8;
    }

    /* Call section mobile */
    .call-now-section {
        padding: 50px 0;
    }

    .call-benefits {
        flex-direction: column;
        gap: 16px;
    }

    .call-benefit {
        font-size: 1rem;
    }

    .btn-call-now {
        width: 100%;
        padding: 20px 25px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .call-now-text {
        align-items: center;
        text-align: center;
    }

    .call-number {
        font-size: 1.75rem;
    }

    .call-hours {
        font-size: 0.875rem;
        padding: 10px 20px;
        text-align: center;
    }

    /* Testimonials mobile */
    .testimonial-text {
        font-size: 1rem;
    }

    /* FAQ mobile */
    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1.125rem;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    /* Ensure ALL grids are single column on mobile/tablet */
    .process-grid,
    .pricing-cards,
    .truth-grid,
    .included-grid,
    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   TABLET RESPONSIVE (768px and up)
   ======================================== */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .title-main {
        font-size: 3rem;
    }

    .title-sub {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-wrap: nowrap;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .truth-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .call-benefits {
        flex-direction: row;
    }

    .document-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
    }

    .pdf-wrapper {
        height: 700px;
    }

    .btn-call-now {
        padding: 18px 30px;
    }

    .call-number {
        font-size: 1.5rem;
    }
}

/* ========================================
   DESKTOP RESPONSIVE (1024px and up)
   ======================================== */
@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .title-main {
        font-size: 3.5rem;
    }

    .title-sub {
        font-size: 3rem;
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

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

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

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-btn {
    display: none;
    background: #f0fdf4;
    border: 2px solid #10b981;
    cursor: pointer;
    padding: 12px;
    color: #10b981;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:active {
    background: #10b981;
    color: white;
    transform: scale(0.95);
}

.mobile-menu-btn:hover {
    background: #dcfce7;
}

.mobile-menu-btn.active {
    background: #10b981;
    color: white;
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.mobile-menu {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 8px;
}

.mobile-nav a {
    padding: 1rem 1.5rem;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.063rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav a:not(.mobile-phone):hover {
    background: #f0fdf4;
    color: #10b981;
    transform: translateX(8px);
}

.mobile-nav a.mobile-phone {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    padding: 1.25rem 1.5rem;
}

.mobile-nav a.mobile-phone:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
/* Desktop: Hide mobile menu button, show nav */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .nav {
        display: flex !important;
    }
}

/* Mobile: Show mobile menu button, hide nav */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-contact {
        display: none;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}
