:root {
    --navy-blue: #0A2342;
    --gold: #D4AF37;
    --light-blue: #E1EBEE;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --error-red: #D32F2F;
    --light-gray: #F5F5F7;
    --darker-blue: #061A34;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

h1 {
    font-size: 42px;
    line-height: 48px;
}

h2 {
    font-size: 32px;
    line-height: 38px;
}

h3 {
    font-size: 24px;
    line-height: 30px;
}

p {
    margin-bottom: 20px;
    line-height: 24px;
}

a {
    color: var(--navy-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy-blue);
}

.btn-primary:hover {
    background-color: #C09C30;
    color: var(--navy-blue);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-outline:hover {
    background-color: rgba(10, 35, 66, 0.1);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    z-index: 2000;
    width: 100%;
    height: 2px;
    background: transparent;
}

.progress-bar {
    height: 2px;
    background: var(--gold);
    width: 0%;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: height 0.3s ease;
}

header.scrolled {
    height: 60px;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--gold);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    align-items: center;
}

.login-btn {
    margin-right: 15px;
    color: var(--navy-blue);
    font-weight: 600;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--navy-blue);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1D3461 100%);
    color: var(--white);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/grid-pattern.svg');
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 0 0 60%;
}

.hero h1 {
    color: var(--white);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.hero p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 90%;
    animation: fadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-image {
    flex: 0 0 40%;
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.success-ticker {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 15px;
    position: relative;
    height: 60px;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.8s forwards;
    opacity: 0;
}

.ticker-items {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ticker-item.active {
    opacity: 1;
    transform: translateY(0);
}

.ticker-item::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    margin-right: 10px;
}

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

.challenges {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.challenge-card {
    flex: 0 0 calc(33.333% - 30px);
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.svg-icon {
    width: 100%;
    height: 100%;
    color: var(--gold);
}

.challenge-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.challenge-description {
    color: #666;
}

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

/* How It Works Section */
.how-it-works {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 70px;
    right: 70px;
    height: 2px;
    background-color: var(--gold);
    z-index: 1;
}

.step {
    flex: 0 0 calc(33.333% - 30px);
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 20px;
}

.step-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
}

.workflow-animation {
    max-width: 800px;
    margin: 60px auto 0;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.workflow-animation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 0 0 50%;
    padding: 0 30px;
}

.feature-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-description {
    color: #666;
    margin-bottom: 20px;
}

.feature-icon {
    flex: 0 0 50%;
    text-align: center;
}

.feature-icon img {
    max-width: 80%;
    height: auto;
}

/* Compliance Examples Section */
.compliance-examples {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    overflow-x: auto;
}

.tab {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    position: relative;
    white-space: nowrap;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.tab.active {
    color: var(--navy-blue);
}

.tab.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    padding: 30px 0;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.document-preview {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.document-section {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-right: none;
}

.document-image {
    width: auto;
    max-width: 90%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.issues-section {
    flex: 0 0 40%;
    padding-left: 30px;
}

.issue {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.issue-title {
    font-weight: 600;
    color: var(--error-red);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.issue-title::before {
    content: '⚠️';
    margin-right: 10px;
}

.issue-reference {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.issue-fix {
    font-size: 14px;
    padding: 10px;
    background-color: #f0f8ff;
    border-left: 3px solid var(--navy-blue);
    border-radius: 0 4px 4px 0;
}

.issue-fix strong {
    color: var(--navy-blue);
    display: block;
    margin-bottom: 5px;
}

/* ROI Calculator Section */
.roi-calculator {
    background-color: var(--white);
    padding: 80px 0;
}

.calculator-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Tabs */
.calculator-tabs {
    flex: 0 0 35%;
    border-right: 1px solid #eee;
    padding: 0;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-button {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button.active {
    color: var(--navy-blue);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
}

.tab-content {
    display: none;
    padding: 25px;
    max-height: 700px;
    overflow-y: auto;
}

.tab-content.active {
    display: block;
}

/* Input sections */
.input-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.input-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.input-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.input-group {
    margin-bottom: 20px;
}

.input-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.input-value {
    color: var(--navy-blue);
    font-weight: 600;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #ddd;
    outline: none;
    margin-bottom: 5px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.form-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
    font-size: 14px;
    color: var(--navy-blue);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 5px;
}

/* Presets */
.preset-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.preset-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.3s ease;
}

.preset-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.preset-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.preset-card ul {
    font-size: 13px;
    color: #666;
    padding-left: 15px;
    margin-bottom: 15px;
}

.preset-card li {
    margin-bottom: 5px;
}

.preset-card .btn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
}

/* Results section */
.results-section {
    flex: 0 0 65%;
    padding: 25px;
    background-color: #FCFCFC;
}

.results-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.results-header h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--navy-blue);
}

/* Results tabs */
.results-tab-nav {
    display: flex;
    margin-bottom: 20px;
}

.results-tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.results-tab-button.active {
    color: var(--navy-blue);
    border-bottom: 2px solid var(--gold);
}

.results-tab-content {
    display: none;
}

.results-tab-content.active {
    display: block;
}

/* ROI Highlights */
.roi-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.roi-value-card {
    background-color: white;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 3px solid #ccc;
}

.roi-value-card.primary {
    border-top-color: var(--gold);
}

.roi-value-card:nth-child(2) {
    border-top-color: #2E7D32;
}

.roi-value-card:nth-child(3) {
    border-top-color: #1976D2;
}

.roi-value-card:nth-child(4) {
    border-top-color: #D32F2F;
}

.roi-value-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.roi-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.roi-secondary {
    font-size: 12px;
    color: #666;
}

.results-chart-container {
    width: 100%;
    height: 300px;
    margin-top: 20px;
}

/* Annual comparison */
.annual-comparison {
    display: flex;
    gap: 30px;
}

.comparison-column {
    flex: 1;
    background-color: white;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.comparison-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #f0f0f0;
}

.comparison-label {
    font-size: 14px;
    color: #666;
}

.comparison-value {
    font-size: 14px;
    font-weight: 600;
}

.comparison-item.total {
    margin-top: 20px;
    padding-top: 8px;
    border-top: 2px solid #eee;
    border-bottom: none;
    font-weight: 700;
}

/* Breakdown table */
.breakdown-table {
    overflow-x: auto;
}

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

.roi-table th {
    background-color: var(--navy-blue);
    color: white;
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    white-space: nowrap;
}

.roi-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.roi-table tr:last-child td {
    border-bottom: none;
}

.roi-table .savings {
    color: #2E7D32;
    font-weight: 600;
}

.roi-table .improvement {
    color: #1976D2;
    font-weight: 600;
}

.roi-table .investment {
    color: #D32F2F;
    font-weight: 600;
}

.roi-table .total-savings {
    color: var(--gold);
    font-weight: 700;
}

.roi-table .total-row {
    background-color: #f9f9f9;
    font-weight: 700;
}

/* Methodology note */
.methodology-note {
    margin-top: 30px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.methodology-toggle {
    width: 100%;
    padding: 15px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    color: var(--navy-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 18px;
}

.methodology-content {
    display: none;
    padding: 0 15px 15px;
}

.methodology-content p {
    margin-bottom: 10px;
}

.methodology-content ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.methodology-content li {
    margin-bottom: 5px;
}

.methodology-note.active .methodology-content {
    display: block;
}

.methodology-note.active .toggle-icon {
    transform: rotate(45deg);
}

.ml-3 {
    margin-left: 15px;
}

@media (max-width: 1100px) {
    .calculator-container {
        flex-direction: column;
    }
    
    .calculator-tabs, .results-section {
        flex: 0 0 100%;
    }
    
    .calculator-tabs {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .roi-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .preset-options {
        grid-template-columns: 1fr;
    }
    
    .annual-comparison {
        flex-direction: column;
    }
    
    .roi-highlights {
        grid-template-columns: 1fr;
    }
    
    .results-tab-nav {
        flex-wrap: wrap;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    line-height: 1;
    color: var(--light-blue);
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    line-height: 1.4;
}

.author-name {
    font-weight: 600;
    color: var(--navy-blue);
}

.author-position {
    font-size: 14px;
    color: #666;
}

.client-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.client-logo {
    flex: 0 0 calc(16.666% - 20px);
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

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

.client-logo img {
    max-width: 100%;
    height: auto;
}

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

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    flex: 0 0 calc(33.333% - 40px);
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.recommended {
    position: relative;
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.recommended::before {
    content: 'Recommended';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
    padding: 5px 20px;
    border-radius: 20px;
}

.pricing-card.recommended:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.pricing-period {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.pricing-description {
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #666;
}

.pricing-feature::before {
    content: '✓';
    color: var(--gold);
    margin-right: 10px;
    font-weight: 700;
}

.pricing-action {
    width: 100%;
}

.pricing-note {
    margin-top: 40px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    margin-bottom: 15px;
    border-radius: 4px;
    background-color: var(--white);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header::after {
    content: '+';
    font-size: 20px;
    color: var(--navy-blue);
    transition: transform 0.3s ease;
}

.accordion.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 20px;
}

/* Call to Action Section */
.cta {
    background-color: var(--navy-blue);
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    color: var(--white);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

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

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    color: var(--white);
}

.trust-badge::before {
    content: '✓';
    color: var(--gold);
    margin-right: 10px;
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: var(--darker-blue);
    padding: 80px 0 40px;
    color: var(--white);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 0 0 calc(25% - 30px);
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--gold);
}

.footer-description {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #aaa;
}

.contact-icon {
    margin-right: 10px;
    color: var(--gold);
    width: 16px;
    height: 16px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 14px;
}

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

.footer-bottom-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--navy-blue);
    z-index: 2000;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.mobile-links {
    list-style: none;
}

.mobile-links li {
    margin-bottom: 15px;
}

.mobile-links a {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-buttons {
    margin-top: 30px;
}

.mobile-buttons .btn {
    width: 100%;
    margin-bottom: 15px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.overlay.active {
    display: block;
}

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

/* Responsive Design */
@media (max-width: 1023px) {
    h1 {
        font-size: 32px;
        line-height: 38px;
    }
    
    h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    h3 {
        font-size: 20px;
        line-height: 26px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    
    .hero-image {
        flex: 0 0 100%;
    }
    
    .challenge-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .steps {
        flex-direction: column;
        max-width: 500px;
    }
    
    .steps::before {
        display: none;
    }
    
    .step {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    
    .feature {
        flex-direction: column !important;
        text-align: center;
    }
    
    .feature-text, .feature-icon {
        flex: 0 0 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .document-section {
        margin-bottom: 0;
        padding: 0;
        border-bottom: none;
    }
    
    .document-image {
        max-width: 100%;
    }
    
    .calculator-inputs, .calculator-results {
        flex: 0 0 100%;
        padding: 0;
        border-left: none;
    }
    
    .calculator-inputs {
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .pricing-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-card {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.recommended {
        transform: scale(1);
    }
    
    .pricing-card.recommended:hover {
        transform: translateY(-5px);
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .nav-links, .nav-buttons .btn {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .challenge-card {
        flex: 0 0 100%;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .client-logo {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Industry Challenges Section (replacing testimonials) */
.industry-challenges {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.challenges-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #555;
}

/* Statistics Cards */
.challenge-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 0 0 calc(33.333% - 30px);
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 15px;
    line-height: 1;
}

.percent {
    font-size: 28px;
}

.stat-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.stat-source {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Pain Point Stories */
.solution-stories {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.story-card {
    flex: 0 0 calc(33.333% - 30px);
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.story-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.story-content {
    font-size: 15px;
    line-height: 1.6;
}

.pain-point {
    color: #666;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.pain-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 30px;
    color: #ccc;
    font-family: 'Merriweather', serif;
}

.solution {
    color: var(--navy-blue);
    display: block;
    font-weight: 500;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.development-panel {
    margin: 0 auto;
    flex: 0 0 60%;
    max-width: 600px;
}

.expertise-panel, .development-panel {
    flex: 0 0 calc(50% - 20px);
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.expertise-panel h3, .development-panel h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--navy-blue);
    text-align: center;
}

.expertise-panel p, .development-panel p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
}

.founders {
    display: flex;
    justify-content: space-around;
}

.founder {
    display: flex;
    align-items: center;
}

.founder-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.founder-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-blue);
}

.founder-background {
    font-size: 12px;
    color: #666;
}

.development-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.centered-panel {
    margin: 0 auto !important;
    max-width: 600px;
    float: none;
    flex: 0 0 100% !important;
}

.dev-stat {
    text-align: center;
}

.dev-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.dev-label {
    font-size: 12px;
    color: #666;
}

/* Early Access Panel */
.early-access {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.early-access h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.early-access p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Updated Expertise Panel with Dr. Sani */
.expertise-panel {
    flex: 0 0 100%;
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.expertise-panel h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--navy-blue);
    text-align: center;
    position: relative;
}

.expertise-panel h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

.founder-profile {
    max-width: 800px;
    margin: 0 auto;
}

.founder-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.founder-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-title {
    display: flex;
    flex-direction: column;
}

.founder-title h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.founder-role {
    font-size: 16px;
    color: var(--gold);
    font-weight: 500;
}

.founder-bio {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.founder-expertise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.expertise-area {
    display: flex;
    align-items: flex-start;
}

.expertise-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    margin-top: 2px;
}

.expertise-details {
    display: flex;
    flex-direction: column;
}

.expertise-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.expertise-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.founder-connect {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.linkedin-link {
    display: flex;
    align-items: center;
    background-color: #0A66C2;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background-color: #004182;
    color: white;
}

.linkedin-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

/* Additional icons */
.ai-icon svg, .market-icon svg, .research-icon svg {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .stat-card, .story-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .expertise-panel, .development-panel {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .stat-card, .story-card {
        flex: 0 0 100%;
    }
    
    .founders {
        flex-direction: column;
        gap: 20px;
    }
    
    .development-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .early-access {
        padding: 30px 20px;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding-top: 120px;
    padding-bottom: 80px;
}

.legal-document {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #1a2b47;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e9f2;
}

.legal-section h3 {
    color: #1a2b47;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p, 
.legal-section li {
    color: #525f7f;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul, 
.legal-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

.cookies-table h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.striped-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 14px;
}

.striped-table th {
    background-color: #f5f7fa;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid #e5e9f2;
    color: #1a2b47;
    font-weight: 600;
}

.striped-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e9f2;
    color: #525f7f;
}

.striped-table tr:nth-child(even) {
    background-color: #f9fafc;
}

.contact-list {
    list-style: none;
    padding-left: 0;
}

.footer-bottom-links a.active {
    color: #4a6cf7;
    font-weight: 600;
}

address {
    margin-top: 15px;
    line-height: 1.6;
    color: #525f7f;
    font-style: normal;
}

/* Contact Form Styles */
.contact-form-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 30px 0;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-group {
    padding: 0 10px;
    margin-bottom: 20px;
    flex: 1 0 calc(50% - 20px);
}

.form-group.full-width {
    flex: 1 0 100%;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4a6cf7;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 108, 247, 0.2);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.consent-box {
    margin-top: 10px;
}

.consent-box a {
    color: #4a6cf7;
    text-decoration: underline;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.form-submit button {
    min-width: 200px;
    padding: 14px 24px;
    font-size: 16px;
}

.form-note {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .form-group {
        flex: 1 0 100%;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 8px;
    }
}