/* Root Variables */
:root {
    --primary-color: #5577B4;
    --primary-dark: #334455;
    --primary-light: #E8F2FF;
    --text-dark: #2C3E50;
    --text-gray: #6B7280;
    --secondary-color: #F4B5A7;
    --dark-color: #2C3E50;
    --light-gray: #F7F7F7;
    --white: #FFFFFF;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #E74C3C;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius: 8px;
    --radius-lg: 16px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    background: var(--white);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

.navbar.scroll-up {
    transform: translateY(0);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #4A6F4C;
    border-color: #4A6F4C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

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

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(85, 119, 180, 0.05) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.page-hero p {
    font-size: 1.25rem;
    color: #5A6C7D;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(85, 119, 180, 0.05) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5A6C7D;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-note {
    display: flex;
    gap: 1rem;
    color: #7A8B9C;
    font-size: 0.875rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-note i {
    color: var(--success);
}

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

/* Dashboard Preview Styles */
.dashboard-preview {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    background: #f8f9fa;
}

.dashboard-preview img,
.dashboard-preview video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Hero placeholder removed - not needed */

/* Team Section Styles */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.founder-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-color);
    position: relative;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.founder-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-info {
    padding: 2.5rem;
    text-align: center;
}

.founder-info h3 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.credentials {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(85, 119, 180, 0.1);
    border-radius: var(--radius);
    display: inline-block;
}

.bio-details {
    text-align: left;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.bio-details p {
    font-size: 1rem;
    color: #4A5568;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bio-details p:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

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

.value-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.story-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.story-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.story-content li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Core Values Section */
.core-values {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

.team-intro {
    font-size: 1.1rem;
    color: #5A6C7D;
    margin-bottom: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.25rem;
    color: #5A6C7D;
}

/* Problem Solution Section */
.problem-solution {
    padding: 80px 0;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    text-align: center;
    padding: 2rem;
}

.problem, .solution {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.problem {
    background: #FFF5F5;
}

.solution {
    background: #F0F8F0;
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--danger);
    margin-bottom: 1rem;
    display: block;
}

.solution-icon {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 1rem;
    display: block;
}

.problem h3, .solution h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.problem p, .solution p {
    color: #5A6C7D;
    line-height: 1.6;
}

.arrow-down {
    color: var(--primary-color);
    margin: 1rem 0;
    font-size: 1.25rem;
}

/* Features Overview */
.features-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.feature-card p {
    color: #5A6C7D;
    line-height: 1.6;
}

/* Features Detailed */
.features-detailed {
    padding: 80px 0;
    background: var(--white);
}

.feature-detail {
    padding: 4rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.feature-detail:last-child {
    border-bottom: none;
}

.feature-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.feature-content.reverse .feature-text {
    order: 2;
}

.feature-content.reverse .feature-visual {
    order: 1;
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-description {
    font-size: 1.25rem;
    color: #5A6C7D;
    margin-bottom: 2rem;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.feature-benefits i {
    color: var(--success);
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--dark-color);
}

/* How It Works Simple */
.how-it-works-simple {
    padding: 80px 0;
    background: var(--light-gray);
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.step-card p {
    color: #5A6C7D;
    line-height: 1.6;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Overview Steps */
.overview-steps {
    padding: 80px 0;
    background: var(--light-gray);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.overview-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.overview-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.overview-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.overview-step p {
    color: #5A6C7D;
    line-height: 1.6;
}

/* Detailed Workflow */
.detailed-workflow {
    padding: 80px 0;
    background: var(--white);
}

.workflow-step {
    padding: 3rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.workflow-step:last-child {
    border-bottom: none;
}

.workflow-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.workflow-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.workflow-content.reverse .workflow-info {
    order: 2;
}

.workflow-content.reverse .workflow-visual {
    order: 1;
}

.step-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.workflow-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.workflow-info p {
    font-size: 1.125rem;
    color: #5A6C7D;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.workflow-features {
    list-style: none;
}

.workflow-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.workflow-features i {
    color: var(--success);
}

.workflow-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

/* Use Cases */
.use-cases {
    padding: 80px 0;
    background: var(--light-gray);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.use-case-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.use-case-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.use-case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.use-case-card p {
    color: #5A6C7D;
    line-height: 1.6;
}

/* Getting Started */
.getting-started {
    padding: 80px 0;
    background: var(--white);
}

.getting-started-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.quick-step {
    text-align: center;
    max-width: 200px;
}

.quick-step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.quick-step p {
    color: var(--dark-color);
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--white);
}

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.mission-content p {
    font-size: 1.125rem;
    color: #5A6C7D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.story-text p {
    font-size: 1.125rem;
    color: #5A6C7D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.image-placeholder {
    background: rgba(85, 119, 180, 0.1);
    border: 2px dashed var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--primary-color);
    width: 100%;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6A8F6C 100%);
    padding: 100px 0;
}

.hero-content-single {
    text-align: center;
    color: var(--white);
}

.hero-content-single h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Team Photo Section */
.team-photo-section {
    padding: 60px 0 40px;
    background: var(--white);
}

.team-photo-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

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

/* Single Column Story Section */
.our-story-single {
    padding: 80px 0;
    background: var(--white);
}

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

.story-content-single h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.story-text {
    margin-bottom: 3rem;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.story-block {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.story-block h3 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.story-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.story-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4A5568;
    font-size: 1.125rem;
}

.story-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
}

.mission-highlight {
    background: linear-gradient(135deg, rgba(85, 119, 180, 0.1) 0%, rgba(244, 181, 167, 0.1) 100%);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.mission-highlight p {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Fix team images */
.founder-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Focuses on upper portion of image */
}

.image-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
}

.team-intro {
    font-size: 1.125rem;
    color: #5A6C7D;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Single Column Founders */
.founders-single-column {
    max-width: 700px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.founder-card-single {
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
}

.founder-card-single:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.founder-image-single {
    width: 200px;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.founder-image-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.founder-card-single:hover .founder-image-single img {
    transform: scale(1.05);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.founder-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-color);
    position: relative;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.founder-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-info {
    padding: 2.5rem;
    text-align: center;
}

.founder-info h3 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.credentials {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(85, 119, 180, 0.1);
    border-radius: var(--radius);
    display: inline-block;
}

.bio-details {
    text-align: left;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.bio-details p {
    font-size: 1rem;
    color: #4A5568;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bio-details p:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.how-it-works .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.value-card p {
    color: #5A6C7D;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--dark-color);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: var(--success);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #E5E5E5;
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: #5A6C7D;
    margin-left: 0.25rem;
}

.plan-description {
    color: #5A6C7D;
    text-align: center;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.plan-features i {
    color: var(--success);
}

/* Value Comparison */
.value-comparison {
    padding: 80px 0;
    background: var(--light-gray);
}

.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #E5E5E5;
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table .highlight {
    background: rgba(85, 119, 180, 0.1);
    font-weight: 600;
    color: var(--primary-color);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info > p {
    font-size: 1.125rem;
    color: #5A6C7D;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.method-info strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.method-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.method-info a:hover {
    text-decoration: underline;
}

.method-info span {
    color: #5A6C7D;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    color: #5A6C7D;
    font-size: 0.875rem;
}

.response-time i {
    color: var(--primary-color);
}

/* Forms */
.form {
    background: var(--white);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E5E5;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input {
    margin: 0;
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E5E5;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Support Options */
.support-options {
    padding: 80px 0;
    background: var(--light-gray);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.support-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.support-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.support-card p {
    color: #5A6C7D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-link:hover {
    text-decoration: underline;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: var(--white);
}

.emergency-card {
    background: #FFF5F5;
    border: 2px solid #FFE6E6;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: var(--warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.emergency-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--danger);
}

.emergency-content p {
    color: #5A6C7D;
    line-height: 1.6;
}

/* Resource Categories */
.resource-categories {
    padding: 80px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.category-card p {
    color: #5A6C7D;
    line-height: 1.6;
}

/* Featured Resources */
.featured-resources {
    padding: 80px 0;
    background: var(--light-gray);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.resource-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.resource-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.resource-card p {
    color: #5A6C7D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #7A8B9C;
}

.resource-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.faq-item p {
    color: #5A6C7D;
    line-height: 1.6;
    padding: 0 2rem 2rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion .faq-item {
    background: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--dark-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #5A6C7D;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.newsletter-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.security-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.security-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.security-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.security-card p {
    color: #5A6C7D;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
}

.testimonial-author span {
    color: #7A8B9C;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #4A6F4C);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: #B8C5D6;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column .logo {
    margin-bottom: 1rem;
}

.footer-column p {
    color: #B8C5D6;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #B8C5D6;
    margin: 0;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 5% auto;
    padding: 20px;
}

.video-modal video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: var(--radius-lg);
}

.close-modal {
    position: absolute;
    top: -10px;
    right: 10px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

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

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 10px;
    }
    
    .close-modal {
        top: -5px;
        right: 5px;
        font-size: 28px;
    }
}

/* Legal Pages */
.legal-content {
    padding: 100px 0 80px;
    min-height: 100vh;
}

.legal-header {
    margin-bottom: 60px;
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.legal-date {
    color: #666;
    font-size: 1rem;
    margin: 5px 0;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.legal-body h2 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.legal-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-body h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

.legal-body p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-body li {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Consent Mode v2 Banner — replaces the old .cookie-consent styles */
.consent-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 720px;
    margin: 0 auto;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    transform: translateY(0);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.consent-banner--dismissed {
    transform: translateY(calc(100% + 2rem));
    opacity: 0;
}

.consent-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.consent-banner__text {
    margin: 0;
    flex: 1 1 320px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.consent-banner__link {
    color: var(--secondary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-banner__link:hover,
.consent-banner__link:focus-visible {
    color: var(--white);
}

.consent-banner__buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-banner__btn {
    min-height: 48px;
    min-width: 120px;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.consent-banner__btn--primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.consent-banner__btn--primary:hover,
.consent-banner__btn--primary:focus-visible {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    outline: none;
}

.consent-banner__btn--secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.consent-banner__btn--secondary:hover,
.consent-banner__btn--secondary:focus-visible {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.consent-banner__btn:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

@media (max-width: 520px) {
    .consent-banner { padding: 1rem; }
    .consent-banner__buttons { width: 100%; }
    .consent-banner__btn { flex: 1; min-width: 0; }
}

/* Screenshot placeholder — used while we wait for real product screenshots */
.screenshot-placeholder {
    margin: 0;
    width: 100%;
    max-width: 960px;
}

.screenshot-placeholder__frame {
    aspect-ratio: 1479 / 756;
    width: 100%;
    border: 2px dashed rgba(85, 119, 180, 0.35);
    background: linear-gradient(135deg, rgba(85, 119, 180, 0.04), rgba(244, 181, 167, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-gray);
    text-align: center;
    padding: 1.5rem;
}

.screenshot-placeholder__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.screenshot-placeholder__caption {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Product screenshot — real images placed after TODO-EMERSON-SCREENSHOT swap.
   Image sizes naturally via width:100%/height:auto (actual asset is 1479x756). */
.product-screenshot {
    margin: 0 auto;
    width: 100%;
    max-width: 1040px;
    text-align: center;
}

.product-screenshot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 48px rgba(44, 62, 80, 0.12), 0 2px 6px rgba(44, 62, 80, 0.06);
    border: 1px solid rgba(85, 119, 180, 0.12);
    background: #fff;
}

.product-screenshot figcaption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Inline variant — used inside feature-detail rows; adds breathing room above */
.product-screenshot--inline {
    margin-top: 3rem;
}

/* Homepage AI Documents screenshot — sits below the SVG/text grid */
.ai-docs__screenshot {
    margin-top: 3.5rem;
}

@media (max-width: 768px) {
    .product-screenshot {
        max-width: 100%;
    }
    .product-screenshot--inline {
        margin-top: 2rem;
    }
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

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

.w-full { width: 100%; }
.h-full { height: 100%; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }

/* About Page Specific Styles */
/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(85, 119, 180, 0.05) 100%);
    background-image: 
        linear-gradient(135deg, rgba(85, 119, 180, 0.05) 0%, rgba(244, 181, 167, 0.05) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235A7F5C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.hero-text {
    text-align: center;
    max-width: 900px;
}
.page-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.page-hero p {
    font-size: 1.35rem;
    color: #5A6C7D;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.hero-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: var(--white);
}
.story-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
.story-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}
.story-intro {
    margin-bottom: 3rem;
    text-align: left;
}
.story-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow-sm);
}
.story-section h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}
.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1.5rem;
    text-align: left;
}
.highlight-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.25rem;
    padding: 1rem 0;
}
.mission-statement {
    background: linear-gradient(135deg, rgba(85, 119, 180, 0.1) 0%, rgba(244, 181, 167, 0.1) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.25rem;
    text-align: center;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}
.story-list {
    list-style: none;
    padding: 1rem;
    margin: 2rem 0;
    background: var(--white);
    border-radius: var(--radius);
}
.story-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}
.story-list li:last-child {
    border-bottom: none;
}
.story-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5577B4;
    font-weight: bold;
    font-size: 1.2rem;
}
/* Core Values Section */
.core-values {
    padding: 80px 0;
    background: var(--light-gray);
}
.core-values .values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.core-values .value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    grid-column: span 2;
    width: 100%;
}
.core-values .value-card:nth-child(4) {
    grid-column: 2 / span 2;
}
.core-values .value-card:nth-child(5) {
    grid-column: 4 / span 2;
}
.core-values .value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.core-values .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    flex-shrink: 0;
}
.core-values .value-icon i {
    font-size: 1.75rem;
    color: var(--white);
}
.core-values .value-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin: 0 0 1rem 0;
    width: 100%;
    text-align: center;
}
.core-values .value-card p {
    color: #5A6C7D;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    width: 100%;
}
/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}
.team-intro {
    font-size: 1.125rem;
    color: #5A6C7D;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.founder-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
}
.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.founder-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
}
.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.founder-info {
    padding: 2rem;
}
.founder-info h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}
.credentials {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.bio-details p {
    font-size: 0.95rem;
    color: #5A6C7D;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}
.bio-details p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}
/* Responsive adjustments for team section */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .page-hero p {
        font-size: 1.1rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .hero-image {
        max-width: 100%;
    }
}

/* ================================================================
   Overnight Redesign — Homepage sections
   Founders, Talking Forms, AI Document Intelligence,
   Differentiators, Trust Strip
   ================================================================ */

/* Shared typographic helpers */
.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.lede {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.h1-no-orphan { white-space: nowrap; }
.inline-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}
.inline-link:hover,
.inline-link:focus-visible {
    border-bottom-color: var(--primary-color);
}

/* Founder credibility */
.founder-credibility {
    padding: 80px 0;
    background: var(--light-gray);
}
.founders-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.founder-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.founder-card__photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    background: var(--light-gray);
}
.founder-card__name {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}
.founder-card__creds {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}
.founder-card__role {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.founder-card__bio {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}
.founder-caption {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}
.founder-caption a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.founder-caption a:hover,
.founder-caption a:focus-visible {
    text-decoration: underline;
}

/* Talking Forms */
.talking-forms {
    padding: 100px 0;
    background: var(--white);
}
.talking-forms__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.talking-forms__text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.talking-forms__text p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.65;
}
.talking-forms__bullets {
    margin: 1rem 0 1.5rem 1.25rem;
    color: var(--text-gray);
}
.talking-forms__bullets li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.talking-forms__illustration {
    margin: 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(85, 119, 180, 0.05), rgba(244, 181, 167, 0.05));
    border-radius: var(--radius-lg);
}
.talking-forms__svg {
    width: 100%;
    height: auto;
    display: block;
}

/* AI Docs */
.ai-docs {
    padding: 100px 0;
    background: var(--light-gray);
}
.ai-docs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ai-docs__text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.ai-docs__text p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.65;
}
.ai-docs__illustration {
    margin: 0;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.ai-docs__svg {
    width: 100%;
    height: auto;
    display: block;
}
.trust-line {
    background: rgba(85, 119, 180, 0.06);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    color: var(--text-dark) !important;
    font-size: 0.95rem;
}
.trust-line .fa-lock {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Differentiators */
.differentiators {
    padding: 80px 0;
    background: var(--white);
}
.differentiators__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.differentiator-card {
    padding: 2rem 1.75rem;
    border: 1px solid rgba(85, 119, 180, 0.15);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.differentiator-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}
.differentiator-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #7A9FD4);
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.differentiator-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.differentiator-card p {
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.differentiator-card__link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.differentiator-card__link a:hover,
.differentiator-card__link a:focus-visible {
    text-decoration: underline;
}

/* Trust strip */
.trust-strip {
    padding: 1.75rem 0;
    background: linear-gradient(135deg, var(--primary-dark), #1F2937);
    color: var(--white);
}
.trust-strip__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
}
.trust-strip__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}
.trust-strip__badge {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}
.trust-strip__badge--shield {
    background: rgba(85, 119, 180, 0.25);
    border-color: rgba(85, 119, 180, 0.45);
}
.trust-strip__badge .fa-shield-alt {
    margin-right: 0.35rem;
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .founders-grid-home,
    .differentiators__grid {
        grid-template-columns: 1fr;
    }
    .talking-forms__grid,
    .ai-docs__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .talking-forms__text h2,
    .ai-docs__text h2 {
        font-size: 2rem;
    }
    .lede {
        font-size: 1.1rem;
    }
}
/* ================================================================
   Overnight Redesign — New audience pages (for-care-managers,
   for-solo-agers, alca, asa2026, book-demo)
   ================================================================ */

/* Care-manager workflow cards */
.cm-workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.cm-workflow-card {
    background: var(--white);
    border: 1px solid rgba(85, 119, 180, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cm-workflow-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.cm-workflow-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.cm-workflow-card h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}
.cm-workflow-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.98rem;
}
@media (max-width: 780px) {
    .cm-workflow-grid { grid-template-columns: 1fr; }
}

/* Authorship anchor (care-managers page) — photo + credentials block */
.authorship-anchor__card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 2rem 2.25rem;
    background: var(--white);
    border: 1px solid rgba(85, 119, 180, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 40px rgba(44, 62, 80, 0.08);
}
.authorship-anchor__photo {
    margin: 0;
}
.authorship-anchor__photo img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.15);
}
.authorship-anchor__name {
    margin: 0 0 0.25rem 0;
    font-size: 1.35rem;
    color: var(--dark-color);
    line-height: 1.3;
}
.authorship-anchor__role {
    margin: 0 0 0.85rem 0;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}
.authorship-anchor__bio {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.65;
    font-size: 1rem;
}
@media (max-width: 640px) {
    .authorship-anchor__card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.75rem 1.5rem;
    }
    .authorship-anchor__photo {
        justify-self: center;
    }
}

/* "Not a CRM" body copy block */
.cm-not-section__body {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.7;
}
.cm-not-section__body p + p {
    margin-top: 1.25rem;
}
.cm-not-section__roadmap-note {
    padding: 1rem 1.25rem;
    background: rgba(85, 119, 180, 0.07);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.98rem;
}

/* Solo-aging section body copy */
.cm-solo-section__body {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.7;
}
.cm-solo-section__body p + p {
    margin-top: 1rem;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}
.link-arrow:hover {
    gap: 0.75rem;
    text-decoration: underline;
}

/* FAQ accordion (details/summary) */
.cm-faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.cm-faq__item {
    background: var(--white);
    border: 1px solid rgba(85, 119, 180, 0.14);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.cm-faq__item[open] {
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.07);
}
.cm-faq__item > summary {
    padding: 1.1rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-color);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}
.cm-faq__item > summary::-webkit-details-marker { display: none; }
.cm-faq__item > summary::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}
.cm-faq__item[open] > summary::after {
    content: "−";
}
.cm-faq__answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.65;
}
.cm-faq__answer p { margin: 0; }

/* Demo form */
.demo-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(85, 119, 180, 0.12);
}
.form-row {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-row label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.form-row input,
.form-row select,
.form-row textarea {
    padding: 0.75rem 0.9rem;
    border: 1.5px solid rgba(85, 119, 180, 0.25);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 48px;
}
.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(85, 119, 180, 0.2);
}
.form-row .muted {
    color: var(--text-gray);
    font-weight: 400;
    font-size: 0.85rem;
}
.form-row .required {
    color: var(--danger);
    font-weight: 700;
}
.form-status {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    min-height: 1.25rem;
}
.form-status[data-kind="success"] {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
}
.form-status[data-kind="error"] {
    background: rgba(231, 76, 60, 0.1);
    color: #C0392B;
}
.form-status[data-kind="info"] {
    background: rgba(85, 119, 180, 0.08);
    color: var(--primary-dark);
}

/* btn-outline-white for CTAs on dark backgrounds */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.85rem 1.8rem;
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

/* Pricing scenarios + FAQ */
.pricing-scenarios__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.scenario-card {
    background: var(--white);
    border: 1px solid rgba(85, 119, 180, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
}
.scenario-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.scenario-card__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.scenario-card__price span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}
.scenario-card p {
    color: var(--text-gray);
    line-height: 1.55;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.faq-item {
    background: var(--white);
    border: 1px solid rgba(85, 119, 180, 0.12);
    border-radius: var(--radius);
    padding: 1.1rem 1.5rem;
    transition: border-color 0.2s ease;
}
.faq-item[open] {
    border-color: var(--primary-color);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item p {
    margin-top: 0.75rem;
    color: var(--text-gray);
    line-height: 1.65;
}
@media (max-width: 780px) {
    .pricing-scenarios__grid { grid-template-columns: 1fr; }
}

/* Blog */
.blog-post { padding-top: 100px; }
.blog-post__header {
    padding: 2rem 0 1.5rem;
    background: var(--light-gray);
}
.blog-post__header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.25;
    margin-top: 0.75rem;
}
.blog-post__meta {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.blog-post__meta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.blog-post__excerpt {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.55;
    margin-top: 1rem;
}
.blog-post__body {
    padding: 2rem 20px 4rem;
    font-size: 1.08rem;
    color: var(--text-dark);
    line-height: 1.75;
}
.blog-post__body h2 {
    font-size: 1.65rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.blog-post__body p { margin-bottom: 1.25rem; }
.blog-post__body ul { margin: 0 0 1.25rem 1.5rem; }
.blog-post__body ul li { margin-bottom: 0.5rem; }
.blog-post__body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin: 1.5rem 0;
    color: var(--text-gray);
    font-style: italic;
}

.blog-list { display: flex; flex-direction: column; gap: 2.25rem; }
.blog-list__item {
    border-bottom: 1px solid rgba(85, 119, 180, 0.15);
    padding-bottom: 2rem;
}
.blog-list__meta {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.blog-list__item h2 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
}
.blog-list__item h2 a {
    color: var(--text-dark);
    text-decoration: none;
}
.blog-list__item h2 a:hover,
.blog-list__item h2 a:focus-visible {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Honeypot input — hidden from users + screen readers, but visible to
   dumb form-scraping bots that fill every input. Server drops anything
   submitted with a non-empty hp_field. */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Cloudflare Turnstile widget placement. The widget itself is styled by
   Cloudflare; we just give it breathing room above the submit button so
   it doesn't butt against it. */
.form-row--turnstile,
.form-group--turnstile {
    margin: 1.25rem 0 0.5rem 0;
}
.cf-turnstile {
    min-height: 65px;
}
