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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    color: #4e4d5c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #805e73;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #805e73;
}

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

.nav-cta {
    background: transparent;
    color: var(--charcoal, #4e4d5c);
    padding: 0.55rem 1.25rem;
    border-radius: 2px;
    border: 1.5px solid var(--dusty-lavender, #805e73);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: none;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    transform: none;
    background: var(--dusty-lavender, #805e73);
    border-color: var(--dusty-lavender, #805e73);
    box-shadow: none;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4e4d5c;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #87bcde;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
}

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.65rem;
}

.hero-actions .cta-button,
.hero-actions .cta-button-secondary {
    width: auto;
}

.hero-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #805e73;
    margin: 0;
}

.hero-subtitle {
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.2;
    color: #4e4d5c;
    margin: 0;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4e4d5c;
    margin: 0;
}

.cta-button {
    display: inline-block;
    padding: 0.95rem 1.75rem;
    background-color: var(--dusty-lavender, #805e73);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 2px;
    border: 1.5px solid var(--dusty-lavender, #805e73);
    letter-spacing: 0.03em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    width: fit-content;
    box-shadow: none;
}

.cta-button:hover {
    background-color: var(--charcoal, #4e4d5c);
    border-color: var(--charcoal, #4e4d5c);
    color: white;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        margin-top: 0.5rem;
    }

    .hero-actions .cta-button,
    .hero-actions .cta-button-secondary {
        width: 100%;
        flex: none;
        min-width: 0;
        text-align: center;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
    }
}

.journey {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 2rem;
    background-color: #805e73;
}

.journey-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: center;
}

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

.journey-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
    object-fit: cover;
}

.journey-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.journey-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0 0 0.15rem;
}

.journey-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: white;
    opacity: 0.95;
    margin: 0 0 0.35rem;
}

.journey-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: white;
    opacity: 0.92;
    margin: 0;
}

.journey-text .cta-button,
.journey-text .cta-button-secondary,
.potential-text .cta-button,
.potential-text .cta-button-secondary,
.remove-processes-text .cta-button,
.remove-processes-text .cta-button-secondary,
.modern-tech-text .cta-button,
.modern-tech-text .cta-button-secondary {
    margin-top: 0.65rem;
}

.cta-button-secondary {
    display: inline-block;
    padding: 0.95rem 1.75rem;
    background-color: transparent;
    color: var(--dusty-lavender, #805e73);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 2px;
    border: 1.5px solid var(--dusty-lavender, #805e73);
    letter-spacing: 0.03em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    width: fit-content;
}

.cta-button-secondary:hover {
    background-color: var(--sky-reflection, #87bcde);
    border-color: var(--sky-reflection, #87bcde);
    color: var(--charcoal, #4e4d5c);
    transform: none;
}

@media (max-width: 1024px) {
    .journey-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .journey-image {
        order: -1;
    }
    
    .journey-title {
        font-size: 2rem;
    }
    
    .journey-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .journey {
        padding: 3rem 1.5rem;
    }
    
    .journey-title {
        font-size: 1.75rem;
    }
    
    .journey-subtitle {
        font-size: 1.1rem;
    }
    
    .journey-description {
        font-size: 1rem;
    }
    
    .cta-button-secondary {
        width: 100%;
    }
}

.difference {
    padding: 4rem 2rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
}

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

.difference-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #4e4d5c;
    margin-bottom: 2rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.difference-card {
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bg-1 {
    background-color: #fff5e6;
}

.bg-2 {
    background-color: #ffe6e6;
}

.bg-3 {
    background-color: #e6f3ff;
}

.bg-4 {
    background-color: #e6ffe6;
}

.bg-5 {
    background-color: #fff0e6;
}

.bg-6 {
    background-color: #e6e6ff;
}

.bg-7 {
    background-color: #f0e6ff;
}

.card-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(44, 62, 80, 0.1);
}

.card-label-left {
    color: #4e4d5c;
}

.card-label-right {
    color: #27ae60;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.card-left {
    color: #4e4d5c;
}

.card-right {
    color: #4e4d5c;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .difference-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .difference {
        padding: 3rem 1.5rem;
    }
    
    .difference-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .difference-card {
        padding: 1.5rem;
    }
    
    .card-header {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .card-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-label-left {
        border-bottom: 1px solid rgba(44, 62, 80, 0.1);
        padding-bottom: 0.5rem;
    }
}

.potential {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 2rem;
    background-color: #805e73;
}

.potential-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.potential-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.potential-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0 0 0.35rem;
}

.potential-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: white;
    opacity: 0.92;
    margin: 0;
}

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

.potential-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .potential-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .potential-image {
        order: -1;
    }
    
    .potential-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .potential {
        padding: 3rem 1.5rem;
    }
    
    .potential-title {
        font-size: 1.75rem;
    }
    
    .potential-description {
        font-size: 1rem;
    }
}

.benefits {
    padding: 4rem 2rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
}

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

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #4e4d5c;
    margin-bottom: 1.5rem;
}

.benefits-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4e4d5c;
    text-align: center;
    max-width: 900px;
    margin: 1.75rem auto 0;
}

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

.benefit-card {
    background-color: white;
    padding: 1.75rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #805e73;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

a {
    text-decoration: none;
}

/* About Page Styles */
.about-hero {
    padding: 8.5rem 2rem 4rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.about-hero-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #805e73;
    margin-bottom: 1rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #4e4d5c;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: #4e4d5c;
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #805e73;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4e4d5c;
    font-weight: 500;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-story {
    padding: 4.5rem 2rem;
    background-color: white;
}

.about-story .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-section-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #4e4d5c;
    margin: 0 0 0.35rem;
}

.about-section-title-centered {
    font-size: 2.35rem;
    font-weight: 700;
    color: #4e4d5c;
    text-align: center;
    margin-bottom: 2rem;
}

.about-text-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4e4d5c;
    margin: 0;
}

.about-values {
    padding: 4.5rem 2rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
}

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

.value-card {
    background-color: white;
    padding: 1.75rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-primary, #805e73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4e4d5c;
    margin: 0;
}

.value-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4e4d5c;
    margin: 0;
}

.about-approach {
    padding: 4.5rem 2rem;
    background-color: white;
}

.about-approach .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .about-story .about-container,
    .about-approach .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 1.5rem 3rem;
    }
    
    .about-hero-content {
        gap: 3rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-story {
        padding: 3rem 1.5rem;
    }
    
    .about-section-title,
    .about-section-title-centered {
        font-size: 2rem;
    }
    
    .about-text-content {
        font-size: 1rem;
    }
    
    .about-values {
        padding: 3rem 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .about-approach {
        padding: 3rem 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 8.5rem 2rem 2.5rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
    text-align: center;
}

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

.contact-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #4e4d5c;
    margin: 0 0 0.75rem;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: #4e4d5c;
    line-height: 1.65;
    margin: 0;
}

.contact-form-section {
    padding: 3.5rem 2rem 4.5rem;
    background-color: white;
}

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-panel {
    background: var(--brand-primary, #805e73);
    color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(45, 70, 84, 0.25);
}

.contact-info-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.contact-info-text {
    margin: 0 0 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-info-item .contact-info-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.contact-info-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info-item a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form-container {
    max-width: none;
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-consent {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #4e4d5c;
}

.form-consent a {
    color: var(--brand-primary, #805e73);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.form-consent a:hover {
    color: var(--brand-primary-dark, #4e4d5c);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form .form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4e4d5c;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 0.75rem;
    border: 2px solid #805e73;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #805e73;
}

.contact-form .form-group textarea {
    resize: vertical;
}

.contact-submit-btn {
    padding: 0.95rem 1.75rem;
    background-color: var(--dusty-lavender, #805e73);
    color: white;
    border: 1.5px solid var(--dusty-lavender, #805e73);
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-submit-btn:hover {
    background-color: var(--charcoal, #4e4d5c);
    border-color: var(--charcoal, #4e4d5c);
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 1.5rem 2rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 3rem 1.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-info-panel,
    .contact-form-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 10rem 2rem 5rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #4e4d5c;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #4e4d5c;
    margin-bottom: 3rem;
}

.legal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4e4d5c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section-title:first-of-type {
    margin-top: 0;
}

.legal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4e4d5c;
    margin-bottom: 1.5rem;
}

.legal-text strong {
    color: #4e4d5c;
    font-weight: 600;
}

.legal-list {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
    list-style: none;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4e4d5c;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #805e73;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 8rem 1.5rem 3rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-section-title {
        font-size: 1.25rem;
    }
    
    .legal-text {
        font-size: 0.95rem;
    }
    
    .legal-list {
        margin-left: 1rem;
    }
    
    .legal-list li {
        font-size: 0.95rem;
        padding-left: 1.25rem;
    }
}

.benefit-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4e4d5c;
    margin: 0;
}

.benefit-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4e4d5c;
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 3rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-title {
        font-size: 1.75rem;
    }
    
    .benefits-intro {
        font-size: 1rem;
        margin: 1.5rem auto 0;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-card-title {
        font-size: 1.25rem;
    }
}

.trusted {
    padding: 3.5rem 2rem;
    background-color: white;
}

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

.trusted-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #4e4d5c;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trusted-logo:hover {
    opacity: 1;
}

.trusted-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.trusted-logo:hover img {
    filter: grayscale(0%);
}

@media (max-width: 1024px) {
    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .trusted {
        padding: 3rem 1.5rem;
    }
    
    .trusted-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trusted-logo img {
        max-height: 50px;
    }
}

.solutions {
    padding: 4rem 2rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
}

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

.solutions-title {
    font-size: 2.35rem;
    font-weight: 700;
    text-align: center;
    color: #4e4d5c;
    margin-bottom: 1rem;
}

.solutions-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4e4d5c;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 0.75rem;
}

.solutions-subtitle {
    font-size: 1rem;
    text-align: center;
    color: #805e73;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

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

.industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.industries-grid .solution-card {
    background-color: white;
    padding: 1.75rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.solution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

.solution-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.solution-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4e4d5c;
    margin: 0;
    line-height: 1.3;
}

.solution-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4e4d5c;
    margin: 0;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .solutions {
        padding: 3rem 1.5rem;
    }
    
    .solutions-title {
        font-size: 1.75rem;
    }
    
    .solutions-intro {
        font-size: 1rem;
    }
    
    .solutions-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card-title {
        font-size: 1.1rem;
    }
    
    .solution-card-text {
        font-size: 0.9rem;
    }
}

.remove-processes {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 2rem;
    background-color: white;
}

.remove-processes-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.remove-processes-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.remove-processes-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #4e4d5c;
    margin: 0 0 0.35rem;
}

.remove-processes-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4e4d5c;
    margin: 0;
}

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

.remove-processes-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 12px;
    object-fit: cover;
}

.modern-tech {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 2rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
}

.modern-tech-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: center;
}

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

.modern-tech-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 12px;
    object-fit: cover;
}

.modern-tech-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modern-tech-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #4e4d5c;
    margin: 0 0 0.35rem;
}

.modern-tech-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4e4d5c;
    margin: 0;
}

@media (max-width: 1024px) {
    .remove-processes-content,
    .modern-tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .remove-processes-image,
    .modern-tech-image {
        order: -1;
    }
    
    .remove-processes-title,
    .modern-tech-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .remove-processes,
    .modern-tech {
        padding: 3rem 1.5rem;
    }
    
    .remove-processes-title,
    .modern-tech-title {
        font-size: 1.75rem;
    }
    
    .remove-processes-description,
    .modern-tech-description {
        font-size: 1rem;
    }
}

.cta-section {
    padding: 3rem 2rem;
    background-color: #805e73;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-button-white {
    display: inline-block;
    padding: 0.95rem 1.75rem;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 2px;
    border: 1.5px solid white;
    letter-spacing: 0.03em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-button-white:hover {
    background-color: var(--sky-reflection, #87bcde);
    border-color: var(--sky-reflection, #87bcde);
    color: var(--charcoal, #4e4d5c);
    transform: none;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button-white {
        width: 100%;
    }
}

.tabs-section {
    padding: 3rem 2rem;
    background-color: white;
}

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

.tabs-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #4e4d5c;
    margin-bottom: 1rem;
}

.tabs-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4e4d5c;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.tabs-wrapper {
    width: 100%;
}

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

.tab-button {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #4e4d5c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: #805e73;
}

.tab-button.active {
    color: #805e73;
    border-bottom-color: #805e73;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.tab-panel.active {
    display: grid;
}

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

.tab-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.tab-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tab-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4e4d5c;
    margin: 0;
}

.tab-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4e4d5c;
    margin: 0;
}

@media (max-width: 1024px) {
    .tab-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-image {
        order: -1;
    }
    
    .tabs-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .tabs-section {
        padding: 3rem 1.5rem;
    }
    
    .tabs-title {
        font-size: 1.75rem;
    }
    
    .tabs-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .tabs-header {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .tab-content-title {
        font-size: 1.5rem;
    }
    
    .tab-content-text {
        font-size: 1rem;
    }
}

.technology {
    padding: 4rem 2rem;
    background-color: color-mix(in srgb, #805e73 12%, white);
}

.technology-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.technology-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4e4d5c;
    margin-bottom: 1.5rem;
}

.technology-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4e4d5c;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.technology-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.technology-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.technology-logo:hover {
    opacity: 1;
}

.technology-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

.technology-cta {
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .technology-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .technology {
        padding: 3rem 1.5rem;
    }
    
    .technology-title {
        font-size: 1.75rem;
    }
    
    .technology-description {
        font-size: 1rem;
    }
    
    .technology-logos {
        gap: 1.5rem;
    }
    
    .technology-logo img {
        max-height: 50px;
    }
}

.testimonials {
    padding: 4rem 2rem;
    background-color: white;
}

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

.testimonials-title {
    font-size: 2.35rem;
    font-weight: 700;
    text-align: center;
    color: #4e4d5c;
    margin-bottom: 2rem;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    background-color: #805e73;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: #4e4d5c;
    transform: scale(1.1);
}

.testimonials-wrapper {
    flex: 1;
    display: flex;
    overflow: hidden;
    gap: 2rem;
}

.testimonial-card {
    min-width: 100%;
    background-color: color-mix(in srgb, #805e73 12%, white);
    padding: 2rem;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card.active {
    display: flex;
}

.stars {
    color: #805e73;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4e4d5c;
    margin: 0;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #4e4d5c;
    margin: 0;
}

.testimonial-link {
    color: #805e73;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.testimonial-link:hover {
    color: #4e4d5c;
}

@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1.5rem;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

.form-section {
    padding: 4.5rem 2rem;
    background: var(--brand-soft, color-mix(in srgb, #805e73 12%, white));
}

.form-container {
    max-width: 820px;
    margin: 0 auto;
}

.form-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 2.75rem;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

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

.form-eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(45, 70, 84, 0.1);
    color: var(--brand-primary, #805e73);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-title {
    font-size: 2.1rem;
    font-weight: 800;
    text-align: center;
    color: var(--brand-heading, #243b4a);
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.form-subtitle {
    font-size: 1.05rem;
    text-align: center;
    color: #4e4d5c;
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.7;
}

.info-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 650;
    color: #4e4d5c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1.5px solid #87bcde;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #4e4d5c;
    background: color-mix(in srgb, #805e73 8%, white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #805e73;
}

.form-group select {
    appearance: none;
    background-color: color-mix(in srgb, #805e73 8%, white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-size: 12px 8px;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #87bcde;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary, #805e73);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(45, 70, 84, 0.15);
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-submit-btn {
    grid-column: 1 / -1;
    margin-top: 0.35rem;
    padding: 1rem 1.75rem;
    background: var(--dusty-lavender, #805e73);
    color: white;
    border: 1.5px solid var(--dusty-lavender, #805e73);
    border-radius: 2px;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    box-shadow: none;
}

.form-submit-btn:hover {
    background: var(--sky-reflection, #87bcde);
    border-color: var(--sky-reflection, #87bcde);
    color: var(--charcoal, #4e4d5c);
    transform: none;
    box-shadow: none;
}

.form-submit-btn:active {
    transform: none;
}

@media (max-width: 768px) {
    .form-section {
        padding: 3rem 1.25rem;
    }

    .form-card {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }
    
    .form-title {
        font-size: 1.65rem;
    }
    
    .form-subtitle {
        font-size: 0.98rem;
    }
    
    .info-form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: 1;
    }
}

.footer {
    padding: 2.5rem 2rem;
    background-color: #805e73;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4e4d5c;
}

.footer-info-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-contact {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact:hover {
    color: color-mix(in srgb, #805e73 12%, white);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.25rem;
    width: 100%;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
    
    .footer-info {
        font-size: 0.85rem;
    }
}

/* Brand palette — only these colors */
:root {
    --sky-reflection: #87bcde;
    --dusty-lavender: #805e73;
    --charcoal: #4e4d5c;
    --charcoal-blue: #2d4654;
    --charcoal-blue-2: #243b4a;

    /* Main brand colors */
    --brand-primary: var(--dusty-lavender);
    --brand-primary-dark: var(--charcoal);
    --brand-heading: var(--charcoal);
    --brand-text: var(--charcoal);
    --brand-accent: var(--dusty-lavender);
    --brand-secondary: var(--charcoal);
    --brand-soft: color-mix(in srgb, var(--dusty-lavender) 12%, white);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--brand-text);
}

.hero,
.benefits,
.difference,
.solutions,
.technology,
.form-section,
.about-hero,
.about-values,
.legal-page,
.contact-hero,
.trusted,
.modern-tech,
.tabs-section,
.testimonials {
    background-color: var(--brand-soft);
}

.nav-link,
.hero-subtitle,
.difference-title,
.solutions-title,
.tabs-title,
.technology-title,
.testimonials-title,
.form-title,
.about-section-title,
.about-section-title-centered,
.about-hero-title,
.contact-hero-title,
.legal-title,
.benefit-card-title,
.solution-card-title,
.tab-content-title,
.value-title,
.stat-number,
.form-group label,
.contact-form .form-group label {
    color: var(--brand-heading);
}

.hero-description,
.benefits-intro,
.solutions-intro,
.tabs-intro,
.technology-description,
.form-subtitle,
.about-text-content,
.about-hero-subtitle,
.contact-hero-subtitle,
.benefit-card-text,
.solution-card-text,
.tab-content-text,
.value-text,
.stat-label,
.testimonial-text,
.legal-text,
.legal-updated,
.form-consent,
.card-left {
    color: var(--brand-text);
}

.journey-title,
.journey-subtitle,
.potential-title {
    color: #ffffff;
}

.journey-description,
.potential-description {
    color: color-mix(in srgb, white 88%, var(--dusty-lavender));
}

.journey-subtitle {
    color: color-mix(in srgb, white 75%, var(--charcoal));
}

.nav-link::after,
.legal-list li::before {
    background-color: var(--brand-accent);
    color: var(--brand-accent);
}

.nav-link:hover,
.tab-button:hover,
.tab-button.active,
.footer-link:hover,
.form-consent a,
.testimonial-link,
.hero-title,
.about-hero-label,
.solutions-subtitle,
.form-eyebrow,
.contact-info-label {
    color: var(--brand-accent);
}

.form-consent a:hover,
.tab-button.active {
    color: var(--brand-secondary);
}

.nav-cta,
.cta-button,
.form-submit-btn,
.contact-submit-btn {
    border-radius: 2px;
    box-shadow: none;
}

.nav-cta {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--dusty-lavender);
}

.nav-cta:hover {
    background: var(--dusty-lavender);
    border-color: var(--dusty-lavender);
    color: white;
}

.cta-button,
.form-submit-btn,
.contact-submit-btn {
    background: var(--dusty-lavender);
    border: 1.5px solid var(--dusty-lavender);
    color: white;
}

.cta-button:hover,
.contact-submit-btn:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: white;
}

.form-submit-btn:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: white;
}

.cta-button-secondary,
.cta-button-white {
    background: transparent;
    border-radius: 2px;
    box-shadow: none;
}

.cta-button-secondary {
    border: 1.5px solid var(--dusty-lavender);
    color: var(--dusty-lavender);
}

.cta-button-white {
    border: 1.5px solid white;
    color: white;
}

.cta-button-secondary:hover,
.cta-button-white:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: white;
}

.carousel-btn,
.benefit-icon,
.value-icon,
.journey,
.potential,
.cta-section,
.footer,
.contact-info-panel {
    background: var(--brand-primary);
    box-shadow: none;
}

.carousel-btn:hover {
    background: var(--brand-primary-dark);
}

.form-eyebrow {
    background: color-mix(in srgb, var(--dusty-lavender) 18%, white);
    color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--dusty-lavender);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--dusty-lavender) 28%, transparent);
}

.stars {
    color: var(--dusty-lavender);
}

.card-right,
.testimonial-author {
    color: var(--charcoal);
}

