/* =============================================================================
   LEARN21 — site.css
   Consolidated stylesheet for all 11 pages + homepage v3 redesign additions.
   Last updated: merged with learn21-prototype-v3.jsx

   TABLE OF CONTENTS
   1.  Reset / Base
   2.  Typography
   3.  Layout / Grid utilities
   4.  Header & Navigation
   5.  Hero sections
   6.  Cards & Panels
   7.  Buttons
   8.  Footer
   9.  Marquee / Animations
   10. Forms
   11. Utility classes
   12. Media queries / Responsive
   --- NEW (v3 homepage additions) ---
   13. Announce bar
   14. Hero trust badges & product pills
   15. Compliance strip
   16. Product tabs & panel (homepage tabbed layout)
   17. Dashboard mock (hero right column)
   18. edWise section
   19. ETLA section
   20. Services section (homepage variant)
   21. Security & Accessibility section
   22. Lead magnet section
   23. Testimonial additions (context, product tag, edWise variant)
   24. Footer additions (trust tags, footer-logo)
   ============================================================================= */


/* =============================================================================
   BRAND COLORS
   ============================================================================= */

:root {
    --brand-color: #0050a0;

    /* edWise product brand — teal */
    --edwise-primary: #0e7490;
    --edwise-dk:      #0c6075;
    --edwise-lt:      #ecfeff;

    /* ETLA community brand — deep navy */
    --etla-primary:   #2c3e6b;
    --etla-accent:    #4da6ff;
}

body.brand-purple { --brand-color: #9b59b6; }
body.brand-cyan   { --brand-color: #0087c3; }
body.brand-green  { --brand-color: #27ae60; }
body.brand-edwise { --brand-color: var(--edwise-primary); }


/* =============================================================================
   1. RESET / BASE
   ============================================================================= */

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

html {
    scroll-behavior: smooth;
}

/* Anchor scroll offset so sticky header doesn't cover in-page targets.
   Applies to any section with an id (e.g., #products, #comparison, #pricing). */
section[id],
.section[id] {
    scroll-margin-top: 90px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

:focus-visible {
    outline: 3px solid #0050a0;
    outline-offset: 2px;
}


/* =============================================================================
   2. TYPOGRAPHY
   ============================================================================= */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0050a0;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.month-heading {
    font-size: 1.4rem;
    color: #0050a0;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.month-heading:first-child {
    margin-top: 0;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border-left: 4px solid #0050a0;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}


/* =============================================================================
   3. LAYOUT / GRID UTILITIES
   ============================================================================= */

.section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.topics-section,
.why-section,
.formats-section,
.team-section {
    background: #f8f9fa;
    padding: 4rem 5%;
}

.topics-inner,
.why-inner,
.formats-inner,
.team-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.integrations-section {
    text-align: center;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.category-section {
    margin-bottom: 2.5rem;
    text-align: left;
}

.category-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-card {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #0050a0;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #0050a0;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin: 1.5rem 0;
}

.price-detail {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.archive-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.regulations-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.regulations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stats-section {
    background: #1a1a1a;
    padding: 3rem 5%; /* MODIFIED: was 4rem 5% */
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item { color: white; }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6ab0ff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonials-section {
    background: #f8f9fa;
    padding: 5rem 5%;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.comparison-section {
    padding: 5rem 5%;
}

.comparison-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.policy-section {
    padding: 5rem 5%;
}

.policy-inner {
    max-width: 900px;
    margin: 0 auto;
}

.subscribe-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-form input {
    flex: 1;
    min-width: 240px;
    padding: 0.85rem 1.25rem;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

.subscribe-form button {
    padding: 0.85rem 1.5rem;
    background: white;
    color: #0050a0;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-form button:hover {
    background: #e0edff;
}


/* =============================================================================
   4. HEADER & NAVIGATION
   ============================================================================= */

.header {
    background: white;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 48px;
}

.nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.nav > a,
.nav > .dropdown {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.nav > a:hover {
    color: #0050a0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    padding: 0.75rem 0.6rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.dropdown > a:hover {
    color: #0050a0;
    background: #f8f9fa;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1001;
    top: 100%;
    left: 0;
    margin-top: 0;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover,
.dropdown:focus-within .dropdown-content {
    display: block;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.dropdown-content a {
    color: #333;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #0050a0;
}

.nav-signin .dropdown-content {
    left: auto;
    right: 0;
}

.nav-label {
    cursor: default;
}


/* =============================================================================
   5. HERO SECTIONS
   ============================================================================= */

.hero {
    background: linear-gradient(135deg, #0050a0 0%, #003d80 100%);
    color: white;
    padding: 5rem 5%;
    text-align: center;
}

.hero-split {
    background: linear-gradient(135deg, #0050a0 0%, #003d80 100%);
    color: white;
    padding: 5rem 5%;
    text-align: left;
}

.hero-split .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-light {
    background: transparent;
    color: #333;
    padding: 5rem 5%;
}

.hero-light .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-product {
    color: white;
    padding: 5rem 5%;
}

.hero-product .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-image-logo img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.hero-icon {
    font-size: 12rem;
    opacity: 0.3;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.hero-eyebrow-pill {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 0.35rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-tall {
    background: linear-gradient(135deg, #0050a0 0%, #003d80 100%);
    color: white;
    padding: 6rem 5%;
    text-align: center;
}

.hero-tall .hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-tall h1 {
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-tall p {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tall .hero-buttons {
    justify-content: center;
}

.hero-tall .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.hero-tall .btn-secondary:hover {
    background: white;
    color: #0050a0;
}

/* Non-profit badge (kept for non-index pages) */
.nonprofit-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.hero-flex .hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-flex .hero-text {
    flex: 1;
}

.hero-flex .hero-image {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-flex .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* MODIFIED: updated font-weight from 800 to 300 for elegant, lighter appearance matching prototype */
.hero-flex h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-flex p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-flex {
    background: linear-gradient(135deg, #0050a0 0%, #003d80 100%);
    color: white;
    padding: 5rem 5% 6rem;
    position: relative;
    overflow: hidden;
}


/* =============================================================================
   6. CARDS & PANELS
   ============================================================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid #0050a0;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0050a0, #0087c3, #0050a0);
    background-size: 200% 100%;
    transition: all 0.3s;
}

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

.product-card:hover::before {
    background-position: 100% 0;
}

.product-card.asset {
    border-top-color: #9b59b6;
}

.product-card.asset .product-logo {
    mix-blend-mode: multiply;
    box-shadow: none;
    border: none;
    background: transparent;
    object-fit: cover;
}

.product-card.asset::before {
    background: linear-gradient(90deg, #9b59b6, #e91e63, #9b59b6);
    background-size: 200% 100%;
}

.product-card.helpdesk {
    border-top-color: #0087c3;
}

.product-card.helpdesk::before {
    background: linear-gradient(90deg, #0087c3, #00c9ff, #0087c3);
    background-size: 200% 100%;
}

.product-card.identity {
    border-top-color: #27ae60;
}

.product-card.identity::before {
    background: linear-gradient(90deg, #27ae60, #2ecc71, #27ae60);
    background-size: 200% 100%;
}

.product-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0050a0;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-card a {
    color: #0050a0;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card a:hover {
    text-decoration: underline;
}

.bundle-banner {
    background: linear-gradient(135deg, #0050a0 0%, #0087c3 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.bundle-banner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bundle-banner p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-item.clickable {
    cursor: pointer;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--brand-color);
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0050a0;
}

.other-services {
    background: #f8f9fa;
}

.other-services .feature-card {
    border-top: none;
    border-left: 4px solid #0050a0;
    box-shadow: none;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #0050a0;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

.feature-item-row {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.feature-check {
    color: #0050a0;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-item-row h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-item-row p {
    color: #666;
    font-size: 0.95rem;
}

.integration-logo {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: transform 0.3s;
}

.integration-logo:hover {
    transform: scale(1.05);
}

.integration-logo h4 {
    color: #666;
    font-size: 1.1rem;
}

.integration-item {
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: transform 0.3s;
    text-align: center;
}

.integration-item:hover {
    transform: scale(1.05);
}

.integration-item img {
    max-width: 80px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.integration-item h4 {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

.integration-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f7ff;
    border-radius: 10px;
    text-align: center;
}

.integration-notice p {
    margin: 0;
    color: #0050a0;
    font-weight: 600;
}

.integration-notice a {
    color: #0050a0;
    text-decoration: underline;
}

.topic-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-top: 3px solid #0050a0;
    transition: transform 0.3s;
}

.topic-card:hover {
    transform: translateY(-3px);
}

.topic-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--brand-color);
}

.topic-card h4 {
    color: #0050a0;
    font-size: 1rem;
}

.archive-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #0050a0;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.archive-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.archive-date {
    font-size: 0.85rem;
    color: #0050a0;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.archive-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.archive-card p {
    font-size: 0.9rem;
    color: #666;
}

.why-item {
    text-align: center;
    padding: 1.5rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--brand-color);
}

.why-item h4 {
    font-size: 1.2rem;
    color: #0050a0;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: #666;
}

.regulation-badge {
    background: #f0f7ff;
    border: 2px solid #0050a0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.regulation-badge:hover {
    background: #0050a0;
    color: white;
}

.regulation-badge:hover h4 {
    color: white;
}

.regulation-badge h4 {
    color: #0050a0;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.regulation-badge p {
    font-size: 0.85rem;
    color: #666;
}

.regulation-badge:hover p {
    color: rgba(255,255,255,0.85);
}

.format-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.format-item:hover {
    transform: translateY(-3px);
}

.format-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--brand-color);
}

.format-item h4 {
    color: #0050a0;
    font-size: 1.1rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #0050a0;
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--brand-color);
}

.team-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0050a0;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Lucide icon sizing */
.feature-icon svg  { width: 40px; height: 40px; }
.topic-icon svg    { width: 36px; height: 36px; }
.team-icon svg     { width: 40px; height: 40px; }
.format-icon svg   { width: 40px; height: 40px; }
.why-icon svg      { width: 40px; height: 40px; }
.info-icon svg     { width: 28px; height: 28px; }
.hero-icon svg     { width: 10rem; height: 10rem; }

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #0050a0;
    position: relative;
}

.quote-mark {
    font-size: 5rem;
    color: #e0ecff;
    line-height: 0.5;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-card p {
    color: #444;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}

.testimonial-card .testimonial-author {
    font-weight: 700;
    color: #0050a0;
    font-style: normal;
    font-size: 0.95rem;
    opacity: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-table thead {
    background: #0050a0;
    color: white;
}

.comparison-table th {
    padding: 1.2rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    font-size: 0.9rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}

.comparison-table tbody tr:nth-child(even) { background: #f8f9fa; }

/* MODIFIED: target td explicitly so nth-child rows also highlight */
.comparison-table tbody tr:hover td { background: #f0f7ff; }

.check  { color: #27ae60; font-size: 1.3rem; }
.cross  { color: #c0392b; font-size: 1.3rem; }
.partial  { color: #c27d00; font-size: 1rem; font-weight: 600; }
.cpartial { color: #c27d00; font-size: 0.9rem; font-weight: 600; }

.col-tdt      { background: #e8f4fd; font-weight: 700; color: #0050a0; }
.col-tdt-head { background: #003d80 !important; }

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    color: #0050a0;
}

.info-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    margin-bottom: 0.25rem;
}

.info-card a,
.info-card p {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

.info-card a:hover {
    color: #0050a0;
}

.policy-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.policy-block:last-of-type {
    border-bottom: none;
}

.policy-block h2 {
    font-size: 1.35rem;
    color: #0050a0;
    margin-bottom: 0.75rem;
}

.policy-block p {
    color: #555;
    line-height: 1.9;
    font-size: 1.02rem;
}

.effective-date {
    display: inline-block;
    background: #f0f7ff;
    color: #0050a0;
    border: 1px solid #cce0ff;
    border-radius: 20px;
    padding: 0.35rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.contact-box {
    background: #f8f9fa;
    border-left: 4px solid #0050a0;
    border-radius: 0 10px 10px 0;
    padding: 2rem;
    margin-top: 3rem;
}

.contact-box h2 {
    font-size: 1.35rem;
    color: #0050a0;
    margin-bottom: 1rem;
}

.contact-box p {
    color: #555;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.contact-box a {
    color: #0050a0;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.contact-info h2 {
    font-size: 2rem;
    color: #0050a0;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-form-wrap {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form-wrap h2 {
    font-size: 1.8rem;
    color: #0050a0;
    margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
    color: #666;
    margin-bottom: 2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s;
}

.modal-dark {
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideDown 0.3s;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.modal-content-wide {
    max-width: 1000px;
}

.modal-header {
    background: linear-gradient(135deg, #0050a0 0%, #003d80 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
    color: white;
}

.modal-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close:hover {
    background: rgba(255,255,255,0.2);
}

.modal-body {
    padding: 2rem;
}

.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.modal-body p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal .integrations-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    margin-top: 1.5rem;
}

.modal .integration-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border: 2px solid transparent;
}

.modal .integration-item:hover {
    border-color: #0050a0;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,102,204,0.2);
}

.modal .integration-item img {
    max-width: 80px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.modal .integration-item h4 {
    font-size: 0.95rem;
    margin: 0;
    color: #333;
}

.modal .category-section {
    margin-bottom: 2rem;
}

.modal .category-section h3 {
    color: #0050a0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.partners-logo {
    max-width: 800px;
    margin: 2rem auto;
    display: block;
}

/* -----------------------------------------------------------------------------
   Plan Strip (StoryBrand Process Plan)
   Shared 3-step "how it works" component used on home + product pages.
   ----------------------------------------------------------------------------- */
.plan-strip-section { background: #f8f9fa; padding: 4rem 2rem; }
.plan-strip-section.on-white { background: #fff; }
.plan-strip-section.on-white .plan-strip-step { background: #f8f9fa; }
.plan-strip-inner { max-width: 1200px; margin: 0 auto; }
.plan-strip-header { text-align: center; margin-bottom: 2.5rem; }
.plan-strip-eyebrow {
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--brand-color); margin: 0 0 0.5rem;
}
.plan-strip-title {
    font-size: 2rem; font-weight: 700; color: #1a1a1a;
    margin: 0; line-height: 1.2;
}
.plan-strip-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.25rem;
    align-items: stretch;
}
.plan-strip-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    display: flex; flex-direction: column;
}
.plan-strip-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--brand-color); color: #fff;
    font-weight: 700; font-size: 1.15rem;
    margin-bottom: 1rem;
}
.plan-strip-step h3 {
    font-size: 1.15rem; font-weight: 700; color: #1a1a1a;
    margin: 0 0 0.5rem; line-height: 1.3;
}
.plan-strip-step p {
    font-size: 0.95rem; color: #555; line-height: 1.55; margin: 0;
}
.plan-strip-arrow {
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-color); opacity: 0.55;
}
.plan-strip-arrow i { width: 28px; height: 28px; }
@media (max-width: 768px) {
    .plan-strip-section { padding: 2.5rem 1.25rem; }
    .plan-strip-title { font-size: 1.5rem; }
    .plan-strip-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .plan-strip-arrow { transform: rotate(90deg); padding: 0.25rem 0; }
}


/* =============================================================================
   7. BUTTONS
   ============================================================================= */

.btn-primary {
    background: #0050a0;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: #003d80;
}

.nav > a.btn-primary {
    color: white !important;
}

.btn-secondary {
    background: white;
    color: #0050a0;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0050a0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #0050a0;
    color: white;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: #0050a0;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #003d80;
}

.cta-flex-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: #0050a0;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    left: 0;
}

/* Ghost / text button — new in v3 */
.btn-ghost {
    background: none;
    border: none;
    color: #0050a0;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
    text-decoration: none;
}

.btn-ghost:hover { gap: 0.7rem; }


/* =============================================================================
   8. FOOTER
   ============================================================================= */

.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

.footer a {
    color: #6ab0ff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-expanded {
    background: #1a1a1a;
    color: white;
    padding: 3rem 5% 1.5rem;
    text-align: left;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* MODIFIED: was 180px, supports 5-column trust layout */
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-content h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-content a,
.footer-content p {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-content a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: inline;
    margin-bottom: 0;
}

.footer-bottom a:hover {
    color: white;
}

.footer-index {
    background: #1a1a1a;
    color: white;
    padding: 3rem 5%;
}

.footer-index .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* MODIFIED: was 250px, fits 5 columns */
    border-bottom: none;
    padding-bottom: 0;
}

.footer-index h4 {
    margin-bottom: 1rem;
    color: #6ab0ff;
}

.footer-index a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-index a:hover {
    color: white;
}

.footer-index .footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Footer logo size */
.footer-logo {
    height: 45px;
    margin-bottom: 1rem;
}

/* Compliance trust tags in footer bottom bar */
.footer-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.footer-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    background: rgba(77,166,255,0.15);
    color: #4da6ff;
    letter-spacing: 0.03em;
}


/* =============================================================================
   9. MARQUEE / ANIMATIONS
   ============================================================================= */

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

/* New animations for v3 homepage components */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.8); }
}

.district-marquee-section {
    padding: 3rem 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    overflow: hidden;
}

.district-marquee-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1.5rem;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marqueeScroll 104s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.district-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    white-space: nowrap;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
    flex-shrink: 0;
}

.district-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.district-logo .district-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.district-logo .district-img {
    height: 34px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

.district-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}


/* =============================================================================
   10. FORMS
   ============================================================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0050a0;
    outline: 2px solid #0050a0;
    outline-offset: 0;
}

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

.form-fine {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 0.75rem;
}


/* =============================================================================
   11. UTILITY CLASSES
   ============================================================================= */

.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 5rem 5%;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Subdued note line below CTA buttons */
.cta-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1.5rem;
}

.pricing-note {
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.bg-gray  { background: #f8f9fa; }
.bg-white { background: white; }
.text-center { text-align: center; }

.flex-center-wrap {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.section-lg {
    padding: 5rem 5%;
}

.features-section {
    background: #f8f9fa;
}


/* =============================================================================
   12. MEDIA QUERIES / RESPONSIVE
   ============================================================================= */

@media (max-width: 768px) {

    .header-content {
        justify-content: center;
        gap: 1.25rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 6px 24px rgba(0,0,0,0.12);
        flex-direction: column;
        padding: 0.5rem 5% 1.5rem;
        gap: 0;
        z-index: 999;
    }

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

    .nav > a,
    .nav > .dropdown {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav > a:last-child,
    .nav > .dropdown:last-child {
        border-bottom: none;
    }

    .nav > a.btn-primary {
        margin-top: 0.75rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        border-bottom: none;
    }

    .dropdown > a {
        width: 100%;
        justify-content: space-between;
        padding: 0;
    }

    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: none;
    }

    .dropdown.is-open .dropdown-content {
        display: block;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f4f6f9;
        border-radius: 6px;
        margin-top: 0.4rem;
        padding: 0.25rem 0;
        min-width: unset;
    }

    .dropdown-content a {
        padding: 0.65rem 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        font-weight: 300;
        line-height: 1.25;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-flex h1,
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .cta-flex-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-flex-buttons .btn-primary,
    .cta-flex-buttons .btn-secondary,
    .cta-flex-buttons a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .hero-tall h1 {
        font-size: 2rem;
    }

    .hero-split .hero-content,
    .hero-light .hero-content,
    .hero-product .hero-content {
        grid-template-columns: 1fr;
    }

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

    .hero-flex .hero-image {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .hero-flex p {
        font-size: 1.1rem;
    }

    .hero-icon {
        display: none;
    }

    .hero-image-logo img {
        max-width: 200px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 2rem 1.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    /* v3 additions — responsive */

    .hero-product-pills {
        gap: 0.5rem;
    }

    .hero-product-pill {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
    }

    .product-panel {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .edwise-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .edwise-section h2 { font-size: 2rem; }

    .etla-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .etla-section h2 { font-size: 2rem; }

    .security-grid-2 {
        grid-template-columns: 1fr;
    }

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

    .lead-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .announce-bar span:first-child {
        display: none;
    }

    .section {
        padding: 3rem 5%;
    }

    .compliance-badges {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }
}


/* =============================================================================
   WCAG 2.1 ACCESSIBILITY — Reduced Motion & Dark Mode Support
   ============================================================================= */

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }

    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}


/* =============================================================================
   13. ANNOUNCE BAR (sticky demo CTA — appears on scroll)
   ============================================================================= */

.announce-bar {
    background: #0050a0;
    color: white;
    padding: 0.6rem 5%;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.announce-bar.visible {
    transform: translateY(0);
}

.announce-bar a {
    background: white;
    color: #0050a0;
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}

.announce-bar a:hover { background: #e8f0ff; }


/* =============================================================================
   14. HERO TRUST BADGES & PRODUCT PILLS
   ============================================================================= */

/* Trust badge strip above the h1 */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Product family navigation pills */
.hero-product-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-product-pill {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.hero-product-pill:hover,
.hero-product-pill.active {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
    color: white;
}

/* Security compliance note in hero */
.hero-compliance-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-compliance-note a {
    color: white;
    font-weight: 600;
}


/* =============================================================================
   15. COMPLIANCE STRIP (dark blue band below hero)
   ============================================================================= */

.compliance-strip {
    background: #003d80;
    padding: 0.9rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.compliance-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
}

.compliance-pill {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}


/* =============================================================================
   16. PRODUCT TABS & PANEL (homepage tabbed product layout)
   ============================================================================= */

.product-tabs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.product-tab {
    padding: 0.6rem 1.4rem;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    font-family: inherit;
    transition: all 0.2s;
}

.product-tab:hover {
    border-color: #0050a0;
    color: #0050a0;
}

.product-tab.active-asset { background: #9b59b6; color: white; border-color: #9b59b6; }
.product-tab.active-help  { background: #0087c3; color: white; border-color: #0087c3; }
.product-tab.active-id    { background: #27ae60; color: white; border-color: #27ae60; }

.product-panel {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card-demo {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    border-top: 5px solid #0050a0;
}

.product-card-demo.asset { border-top-color: #9b59b6; }
.product-card-demo.help  { border-top-color: #0087c3; }
.product-card-demo.id    { border-top-color: #27ae60; }

.product-logo-wrap {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-list-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-check-icon       { color: #0050a0; font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.feature-check-icon.asset { color: #9b59b6; }
.feature-check-icon.help  { color: #0087c3; }
.feature-check-icon.id    { color: #27ae60; }

.product-features-mock { padding: 1.25rem 2rem 2rem; }

.mock-feature-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.3rem;
    transition: background 0.2s;
}

.mock-feature-row:hover { background: #f8f9fa; }

.mock-feature-bar {
    height: 9px;
    background: #f0f0f0;
    border-radius: 4px;
    flex: 1;
}


/* =============================================================================
   17. DASHBOARD MOCK (hero right column UI preview)
   ============================================================================= */

.dashboard-mock {
    background: white;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    color: #333;
}

.mock-titlebar {
    background: #f8f9fa;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.mock-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.mock-url {
    flex: 1;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    height: 22px;
    margin-left: 0.5rem;
}

.mock-body { padding: 1.25rem; }

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mock-stat {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem;
    border-top: 3px solid #0050a0;
}

.mock-stat.asset { border-top-color: #9b59b6; }
.mock-stat.help  { border-top-color: #0087c3; }
.mock-stat.id    { border-top-color: #27ae60; }

.mock-stat-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0050a0;
    line-height: 1;
}

.mock-stat.asset .mock-stat-num { color: #9b59b6; }
.mock-stat.help  .mock-stat-num { color: #0087c3; }
.mock-stat.id    .mock-stat-num { color: #27ae60; }

.mock-stat-lbl {
    font-size: 0.72rem;
    color: #666;
    margin-top: 0.2rem;
}

.mock-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.3rem;
}

.mock-row.active { background: #f0f7ff; }

.mock-dot2 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-line {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    flex: 1;
}

.mock-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    white-space: nowrap;
}


/* =============================================================================
   18. EDWISE SECTION
   ============================================================================= */

.edwise-section {
    background: linear-gradient(135deg, #f0fdff 0%, #ecfeff 100%);
    padding: 5rem 5%;
    border-top: 1px solid #cffafe;
    border-bottom: 1px solid #cffafe;
}

.edwise-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.edwise-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0c6075;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.edwise-section p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.edwise-eyebrow {
    display: inline-block;
    background: #ecfeff;
    border: 1.5px solid #a5f3fc;
    color: #0c6075;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.edwise-rising-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ecfeff;
    border: 1.5px solid #a5f3fc;
    color: #0c6075;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.edwise-rising-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0e7490;
    animation: pulse 1.5s ease infinite;
}

.edwise-check-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.edwise-check-row span:first-child {
    color: #0e7490;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.edwise-check-row span:last-child {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.btn-edwise {
    background: #0e7490;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
}

.btn-edwise:hover { background: #0c6075; }

.btn-edwise-outline {
    background: white;
    color: #0e7490;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0e7490;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
}

.btn-edwise-outline:hover {
    background: #0e7490;
    color: white;
}

.edwise-mock {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(14,116,144,0.15);
    overflow: hidden;
    border-top: 5px solid #0e7490;
}

.edwise-mock-header {
    background: #ecfeff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #cffafe;
}

.edwise-mock-header span {
    font-weight: 700;
    color: #0c6075;
    font-size: 0.95rem;
}

.edwise-mock-badge {
    background: #0e7490;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 3px;
}

.edwise-mock-body { padding: 1.5rem; }

.edwise-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.edwise-kpi {
    background: #ecfeff;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border-top: 3px solid #0e7490;
}

.edwise-kpi-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0c6075;
    line-height: 1;
}

.edwise-kpi-lbl {
    font-size: 0.72rem;
    color: #666;
    margin-top: 0.3rem;
}

.edwise-bar-row { margin-bottom: 0.75rem; }

.edwise-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.edwise-bar-track {
    height: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    overflow: hidden;
}

.edwise-bar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(to right, #0e7490, #38bdf8);
}


/* =============================================================================
   19. ETLA SECTION
   ============================================================================= */

.etla-section {
    background: linear-gradient(135deg, #2c3e6b 0%, #1a2a50 100%);
    color: white;
    padding: 5rem 5%;
}

.etla-logo-lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.etla-initiative-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.etla-l21-logo {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
}

.etla-initiative-label span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    font-style: italic;
}

.etla-logo-img {
    max-height: 100px;
    width: auto;
    display: block;
}

.etla-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.etla-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.etla-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.etla-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.etla-mission-statement {
    background: rgba(255,255,255,0.08);
    border-left: 4px solid #4da6ff;
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
}

.etla-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-etla {
    background: #4da6ff;
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
}

.btn-etla:hover { background: #6bbfff; }

.btn-etla-outline {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
}

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

.etla-conference-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(77,166,255,0.2);
    border: 1px solid rgba(77,166,255,0.4);
    color: #4da6ff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    margin-top: 1.5rem;
}

.etla-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.etla-pillar {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background 0.2s;
}

.etla-pillar:hover { background: rgba(255,255,255,0.13); }

.etla-pillar-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.etla-pillar h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.etla-pillar p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin-bottom: 0;
}


/* =============================================================================
   20. SERVICES SECTION (homepage variant — left-border card style)
   ============================================================================= */

.services-section {
    background: white;
    padding: 4rem 5%;
}

.services-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.services-section .feature-card {
    background: #f8f9fa;
    border-left: 4px solid #0050a0;
    border-top: none;
    border-right: none;
    border-bottom: none;
    box-shadow: none;
}

.services-section .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #0050a0;
}

.services-section .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0050a0;
    margin-bottom: 0.5rem;
}

.services-section .feature-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}


/* =============================================================================
   21. SECURITY & ACCESSIBILITY SECTION
   ============================================================================= */

.security-section {
    background: #1a1a1a;
    color: white;
    padding: 5rem 5%;
}

.security-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.security-section .section-header h2 { color: white; }
.security-section .section-header p  { color: rgba(255,255,255,0.7); }

.security-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.security-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 15px;
    padding: 2.5rem;
}

.security-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.security-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.security-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.security-check-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.security-check-row span:first-child {
    color: #4da6ff;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.security-check-row span:last-child {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-card .btn-ghost  { color: #4da6ff; margin-top: 1.25rem; }

.accessibility-card .security-check-row span:first-child { color: #f0c040; }
.accessibility-card .btn-ghost { color: #f0c040; }

.compliance-badges {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.compliance-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: background 0.25s;
}

.compliance-badge:hover { background: rgba(255,255,255,0.12); }

.compliance-badge h4 {
    color: #4da6ff;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.compliance-badge p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}


/* =============================================================================
   22. LEAD MAGNET SECTION (mid-funnel email capture)
   ============================================================================= */

.lead-section {
    background: #f0f7ff;
    padding: 5rem 5%;
    border-top: 1px solid #e0e0e0;
}

.lead-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.lead-inner h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #0050a0;
    margin-bottom: 1rem;
}

.lead-inner p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lead-check-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.lead-check-row span:first-child {
    color: #0050a0;
    font-size: 1.1rem;
}

.lead-check-row span:last-child {
    font-size: 0.9rem;
    color: #666;
}

.lead-form-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 5px solid #0050a0;
}

.lead-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0050a0;
    margin-bottom: 0.5rem;
}

.lead-form-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}


/* =============================================================================
   23. TESTIMONIAL ADDITIONS (context line, product tag, edWise variant)
   ============================================================================= */

.testimonial-context {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.testimonial-product {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    background: #f0f7ff;
    color: #0050a0;
}

.testimonial-card.edwise { border-left-color: #0e7490; }
.testimonial-card.edwise .quote-mark { color: #cffafe; }
.testimonial-card.edwise .testimonial-author { color: #0c6075; }
.testimonial-product.edwise { background: #ecfeff; color: #0c6075; }


/* =============================================================================
   LATE MOBILE OVERRIDES
   These rules intentionally live at the end of the file so they win the cascade
   against later-declared base rules (e.g., `.etla-inner` defined after the main
   mobile media query). Keep mobile-only layout collapses here.
   ============================================================================= */

@media (max-width: 768px) {
    .etla-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .edwise-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .etla-pillars {
        display: flex;
        flex-direction: column;
    }

    .section {
        padding: 3rem 5%;
    }
}