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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7cc1;
    --accent-color: #00b894;
    --dark-color: #1e1e1e;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #00b894;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --hero-offset: clamp(7.25rem, 9vw, 9.5rem);
    --hero-overlay-lift: clamp(240px, 22vw, 320px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo img {
    height: 104px;
    width: auto;
    display: block;
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: var(--hero-offset) 0 clamp(3.5rem, 7vw, 6rem);
    overflow: visible;
    position: relative;
    background: linear-gradient(180deg, #fdfdfd 0%, #f7f9fb 45%, #ffffff 100%);
}

.hero-split-container {
    position: relative;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem) clamp(5rem, 9vw, 7.5rem);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Full-width background image at lowest z-index */
.hero-right {
    position: relative;
    width: 100%;
    z-index: 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
}

.hero-image-wrapper {
    width: 100%;
    height: clamp(420px, 60vw, 780px);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide old left overlay */
.hero-left {
    display: none;
}

.hero-content-left {
    max-width: 600px;
}

/* Centered overlay container in bottom half */
.hero-bottom-text {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    width: min(920px, calc(100% - 3rem));
    text-align: center;
    margin: calc(var(--hero-overlay-lift) * -1) auto 0;
    transform: translateY(0);
}

.hero-bottom-text h1 {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* CTA Buttons - Inside centered overlay */
.hero-cta-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Hide old stats */
.hero-stats-bottom-right {
    display: none;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #00a383;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 184, 148, 0.4);
}

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

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

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stats-bottom-right .stat {
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hide wave divider in new layout */
.hero-wave-divider {
    display: none;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: var(--bg-light);
    margin-top: clamp(2rem, 6vw, 5rem);
}

.problem-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-icon img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
}

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

.solution-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    background: var(--accent-color);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1rem;
}

.benefits-list strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.benefits-list p {
    color: var(--text-light);
    margin: 0;
}

.solution-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.service-card > p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 320px;
}

/* Savings Calculator */
.savings-calculator-container {
    margin-top: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.savings-calculator-container h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.calculator-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.calculator-form {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 2rem;
}

.calculator-field {
    text-align: left;
}

.calculator-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.calculator-select,
.calculator-input {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.calculator-button {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.calculator-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.savings-result {
    background: linear-gradient(135deg, var(--accent-color), #00a383);
    padding: 2rem;
    border-radius: 10px;
    color: var(--white);
    animation: fadeIn 0.5s ease;
}

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

.result-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.calculator-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Horizontal Timeline */
.timeline-container {
    position: relative;
    margin: 4rem auto 3rem;
    max-width: 1000px;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Single arrow at the end of timeline */
.timeline-line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -16px;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent var(--secondary-color);
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Arrows between nodes removed - only rightmost arrow remains */

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.timeline-node:hover .timeline-dot {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-label {
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
    max-width: 140px;
    line-height: 1.3;
}

/* 2x2 Grid Layout */
.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.process-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* Remove alternating offset */
.card-offset-high,
.card-offset-low {
    margin-top: 0;
}

.card-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.step-duration {
    display: block;
    background: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Results Section */
.results-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.results-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.result-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.result-header h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
}

.company-size {
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.result-savings {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.result-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.result-metrics {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.trust-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

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

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-primary-large {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #00a383;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-content-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: start;
}

.contact-info-card,
.contact-expect-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info-card h3,
.contact-expect-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--primary-color);
    word-break: break-word;
}

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

.contact-expect-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.contact-expect-card li {
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-expect-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.contact-info-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.contact-info-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info-section .contact-item {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info-section .contact-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-info-section .contact-item a {
    color: var(--primary-color);
    word-break: break-word;
}

.contact-info-section .contact-item a:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    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;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

#formStatus {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

#formStatus:empty {
    display: none;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (min-width: 1200px) {
    .hero-bottom-text {
        width: min(960px, 100%);
    }

    .problem-section {
        margin-top: 5rem;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 969px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-bottom-text {
        padding: 2.5rem 3rem;
        max-width: 800px;
    }

    .hero-bottom-text h1 {
        font-size: 2.5rem;
    }

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

@media (max-width: 968px) {
    :root {
        --hero-offset: clamp(7.25rem, 12vw, 8.5rem);
        --hero-overlay-lift: clamp(260px, 34vw, 360px);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-split-container {
        padding: 0 1.5rem;
    }

    .hero-right {
        border-radius: 24px;
    }

    .hero-image-wrapper {
        height: clamp(380px, 75vh, 540px);
    }

    .hero-bottom-text {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: calc(100% - 2rem);
        margin: calc(var(--hero-overlay-lift) * -1) auto 0;
        padding: 1.8rem 1.5rem 2rem;
        border-radius: 20px;
    }

    .hero-bottom-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-right {
        flex-direction: column;
    }

    .hero-cta-right a {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 2rem;
        justify-content: center;
    }

    .stat {
        align-items: center;
    }



    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-image {
        order: -1;
    }

    .contact-content-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Process Section Mobile */
    .timeline-container {
        padding: 0 1rem;
    }

    .timeline-line {
        left: 5%;
        right: 5%;
    }

    .timeline-label {
        font-size: 0.8rem;
        max-width: 100px;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Keep 2x2 grid on tablets */
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-card {
        padding: 1.5rem;
    }

    .process-card h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 968px) and (orientation: landscape) {
    :root {
        --hero-overlay-lift: clamp(140px, 28vh, 220px);
    }
}

@media (max-width: 768px) {
    /* Process Section - Tablet */
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .timeline-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .contact-content-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --hero-offset: clamp(7.25rem, 22vw, 7.75rem);
        --hero-overlay-lift: clamp(240px, 60vw, 360px);
    }

    .hero-split-container {
        padding: 0 1rem;
    }

    .hero-right {
        border-radius: 18px;
    }

    .hero-image-wrapper {
        height: clamp(340px, 80vh, 480px);
    }

    .hero-image-wrapper img {
        object-fit: contain;
        object-position: top center;
    }

    .hero-bottom-text {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: calc(100% - 1.5rem);
        margin: calc(var(--hero-overlay-lift) * -1) auto 0;
        padding: 1.5rem 1.25rem 1.75rem;
        border-radius: 16px;
    }

    .hero-bottom-text h1 {
        font-size: 1.85rem;
    }

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

    .hero-cta-right {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta-right a {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

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

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

    /* Results cards - single column full width on mobile */
    .results-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .result-card {
        width: 100%;
    }

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card > p {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content > p {
        font-size: 1.1rem;
    }

    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .result-metrics {
        flex-direction: row;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    /* Calculator mobile layout */
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calculator-button {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) and (orientation: landscape) {
    :root {
        --hero-overlay-lift: clamp(110px, 32vh, 180px);
    }
}



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

    .trust-card {
        padding: 2rem 1.5rem;
    }

    .trust-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-icon {
        width: 64px;
        height: 64px;
    }

    /* Process Section - Stack on Mobile */
    .timeline-container {
        margin: 3rem auto 2rem;
    }

    .timeline-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .timeline-node {
        flex: 1 1 45%;
        min-width: 120px;
    }

    .timeline-node::after {
        display: none;
    }

    .timeline-line {
        display: none;
    }

    .timeline-dot {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .timeline-label {
        font-size: 0.75rem;
        max-width: 90px;
    }

    .process-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-card {
        padding: 1.25rem 0.75rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .service-card > p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}