:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --accent: #10b981;
    --warning: #f59e0b;
    --purple: #8b5cf6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVIGATION - Using default header styles from styles.css */
/* Removed custom navbar styles to use the default header design */
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* HERO */
.hero {
    position: relative;
    min-height: 600px;
    background: 
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 120px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    line-height: 1;
}

.hero-title-line {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    display: block;
    line-height: 1.1;
}

.btn-book-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #60a5fa;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

.btn-book-call:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.6);
}

.btn-book-call i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-book-call:hover i {
    transform: translateX(4px);
}

/* Legacy button styles for other sections */
.btn-primary {
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* PROBLEM SECTION */
.problem-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.problem-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.problem-text .highlight-text {
    color: #0ea5e9;
    font-weight: 800;
}

.problem-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .problem-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-text h2 {
        font-size: 28px;
    }
}

/* SOLUTION SECTION */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 100%);
}

.solution-main-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 60px;
}

.solution-content-wrapper {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.solution-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.solution-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.solution-text .essential-text {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 24px;
}

.solution-list {
    list-style: none;
    margin-bottom: 32px;
    padding-left: 0;
}

.solution-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.solution-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 20px;
}

.btn-book-call-solution {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-book-call-solution:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-call-solution i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-call-solution:hover i {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .solution-main-title {
        font-size: 36px;
    }

    .solution-content-wrapper {
        padding: 40px 30px;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-text h3 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .solution-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .solution-content-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .solution-text h3 {
        font-size: 22px;
    }
}

/* FEATURES */
.features-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: -32px;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* PRICING - RECONCILIATION PROCESS */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.reconciliation-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-content {
    background: #0f3a5c;
    padding: 60px 50px;
    border-radius: 24px;
    color: white;
}

.process-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.process-steps {
    margin-bottom: 40px;
}

.process-step {
    margin-bottom: 32px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.step-num {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.step-divider {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 48px;
}

.btn-book-call-process {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-book-call-process:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-book-call-process i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-book-call-process:hover i {
    transform: translateX(4px);
}

.process-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 968px) {
    .reconciliation-process {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-content {
        padding: 40px 30px;
    }

    .process-title {
        font-size: 32px;
    }

    .step-description {
        padding-left: 36px;
    }
}

@media (max-width: 640px) {
    .process-content {
        padding: 30px 24px;
        border-radius: 16px;
    }

    .process-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .process-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .step-num {
        font-size: 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
        padding-left: 0;
        margin-top: 8px;
    }

    .process-step {
        margin-bottom: 24px;
    }
}

.btn-plan:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-plan.primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-plan.primary:hover {
    background: var(--primary-dark);
}

/* HOW IT WORKS - TEAM SHOWCASE */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-white);
}

.team-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-left {
    padding-right: 20px;
}

.team-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 40px;
}

.team-stats {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 28px;
    font-weight: 600;
    color: #0ea5e9;
    margin-bottom: 20px;
}

.team-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.team-right {
    display: flex;
    justify-content: center;
}

.team-member-card {
    text-align: center;
}

.member-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.member-name {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.member-title {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 968px) {
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .team-left {
        padding-right: 0;
    }

    .team-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 56px;
    }

    .stat-label {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .team-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 20px;
    }

    .member-name {
        font-size: 24px;
    }

    .member-title {
        font-size: 16px;
    }

    .member-image {
        max-width: 100%;
    }
}

/* Additional responsive improvements for very small screens */
@media (max-width: 480px) {
    .hero-title-line {
        font-size: 32px;
        letter-spacing: 0.5px;
    }

    .team-title {
        font-size: 22px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 18px;
    }

    .problem-text h2 {
        font-size: 20px;
    }

    .solution-main-title {
        font-size: 24px;
    }

    .benefits-main-title {
        font-size: 24px;
    }
}

/* BENEFITS - WHAT TO EXPECT */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.benefits-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--bg-white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card.featured {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border: none;
    color: white;
}

.benefit-card.featured h3,
.benefit-card.featured p {
    color: white;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: white;
}

.benefit-card.featured .benefit-icon {
    background: white;
    color: #0ea5e9;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3a8a;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-footer-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.btn-get-started:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-get-started i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover i {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .benefits-main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .benefits-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    .benefits-footer-text {
        font-size: 15px;
    }
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--accent);
}

.cta-section .btn-primary:hover {
    background: #059669;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.cta-note {
    font-size: 14px;
    opacity: 0.9;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .hero {
        min-height: 500px;
        padding: 80px 0;
        background-attachment: scroll;
    }

    .hero-title-line {
        font-size: 56px;
    }

    .btn-book-call {
        padding: 14px 32px;
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 400px;
        padding: 60px 0;
    }

    .hero-title-line {
        font-size: 42px;
        letter-spacing: 1px;
    }

    .hero-content {
        gap: 30px;
    }

    .btn-book-call {
        padding: 12px 28px;
        font-size: 15px;
        gap: 8px;
    }

    .btn-book-call i {
        font-size: 14px;
    }

    .features-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
