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

/* Fade-in animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for Most Popular label to appear after card */
.pricing-card-wrapper.visible .pricing-popular-label {
    transition-delay: 0.3s;
}

:root {
    --primary-color: #1289dc;
    --primary-dark: #0F74BD;
    --secondary-color: #00bf63;
    --text-dark: #292929;
    --text-light: #707070;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #D6D6D6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --container-padding: 20px;
    --content-padding-left: 10px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
    scroll-padding-top: 80px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 0;
    box-sizing: border-box;
}

/* Ensure nav container matches hero container exactly */
.nav.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1rem !important;
    max-width: 1300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* Header */
.header {
    background: transparent;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.nav a,
.footer-section a {
    text-decoration: none;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
    position: relative;
    color: white;
    padding-bottom: 6rem;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

/* Background image covering the whole hero section */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('src/bg.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

/* Ensure hero content aligns with nav logo - must match nav.container exactly */
.hero .container {
    position: relative;
    z-index: 1;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    text-align: left !important;
    max-width: 1300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    width: 100%;
}


.hero-trust-line {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto;
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}

/* Typography - H1 */
h1, .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.services-title, .smarter-title, .pricing-section .section-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title {
    margin-top: 10rem;
    margin-bottom: 1rem;
    text-align: left !important;
    width: 100%;
    margin-left: 0 !important;
    margin-right: auto;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: 0 !important;
    margin-right: auto;
    text-align: left !important;
    line-height: 1.7;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: left !important;
    display: inline-block;
    margin-left: 0 !important;
    margin-right: auto;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Cost Section */
.cost-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.cost-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cost-box {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
}

.cost-text {
    text-align: center;
}

.cost-text p {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.cost-amount {
    color: var(--secondary-color);
    font-weight: 900;
}

.cost-mobile-break {
    display: none;
}

.trust-mobile-break {
    display: none;
}

.cost-hiring-section {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cost-hiring-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.cost-hiring-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.cost-hiring-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: transform 0.2s;
    min-width: 100px;
}

.cost-hiring-list li:hover {
    transform: translateY(-5px);
}

.cost-icon {
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    color: var(--primary-color);
}

.cost-item-text {
    font-size: 14px;
    font-weight: bold !important;
    color: var(--text-dark);
    line-height: 1.5;
    text-align: center;
}

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

.rating, .phone {
    font-size: 1.125rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Smarter Alternative Section */
.smarter-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

/* Typography - H2 */
h2, .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.smarter-title {
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.smarter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.smarter-column p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.smarter-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.smarter-benefits li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    padding-left: 2rem;
    position: relative;
}

.smarter-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.smarter-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.smarter-feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}


.smarter-feature-icon {
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    color: var(--primary-color);
}

.smarter-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.smarter-feature-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Two Column Section */
.two-column-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.two-column-section .container {
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.two-column-item {
    display: flex;
    flex-direction: column;
}

.two-column-item:last-child {
    background: var(--secondary-color);
    padding: 0;
    justify-content: center;
    align-items: center;
}

.large-text {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    margin: 0;
    padding: 2rem 9rem;
}

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

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

.stat-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}


.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

/* Typography - H3 */
h3, .trust-feature h3, .feature-card h3, .process-step h3, .pricing-header h3, .team-member h3, .blog-content h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--secondary-color);
}

/* Typography - H4 */
h4, .footer-section h4 {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--secondary-color);
}

/* Body text */
p, .pricing-header p, .section-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

/* Secondary/helper text */
.stat-label, .about-stat-label, .trust-stat-label, .cost-item-text, .blog-date, .blog-category, .footer-section p, .footer-section ul li {
    font-size: 14px;
    font-weight: 400;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.about-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

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

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.feature-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: transparent;
    text-align: center;
}

.trust-section .section-title {
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-feature .smarter-feature-icon {
    margin: 0 auto;
}

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

.trust-feature h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.trust-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

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

.services-title {
    font-size: 56px !important;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
    text-align: left;
    margin-top: -2rem;
    margin-bottom: 1.5rem;
}

.services-section p {
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card .smarter-feature-text {
    font-size: 16px;
    margin: 0;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

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

.process-step {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

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

.testimonial-author {
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-light);
    font-size: 0.875rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    text-align: left;
}

.cta-section .section-title {
    color: white;
    margin-bottom: 2rem;
    text-align: left;
}

.cta-large-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 4rem;
    align-items: start;
}

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

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.contact-form .btn-primary {
    display: inline-block;
    margin-top: 1rem;
    background: var(--bg-white);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary-color);
}

.contact-form .btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.team-member {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bf63 0%, #0097b2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.team-member p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.pricing-section .section-title {
    text-align: left;
    color: var(--secondary-color);
    margin-top: -2rem;
    margin-bottom: 1.5rem;
}

.pricing-section p {
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card-wrapper {
    position: relative;
}

.pricing-card {
    background: var(--bg-light);
    padding: 2.5rem;
    padding-top: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 2rem;
}


.pricing-card.featured {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-card.featured .btn-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
}

.pricing-card.featured .btn-primary:hover {
    background: #008a47;
    color: var(--bg-white);
    border-color: #008a47;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured .pricing-header h3 {
    color: var(--secondary-color);
}

.pricing-card.featured .pricing-features li::before {
    color: var(--secondary-color);
}

.pricing-popular-label {
    position: absolute;
    top: -0.85rem;
    left: 0;
    right: 0;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    background: var(--secondary-color);
    padding: 0.5rem 1.5rem 1rem 1.5rem;
    border-radius: 1rem 1rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    z-index: 1;
    transform: scale(1.03);
    transform-origin: top center;
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #0097b2;
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 1rem 1rem 0 0;
    z-index: 2;
}

.pricing-price-ribbon {
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 900;
    text-align: left;
    margin-bottom: 1rem;
    order: 3;
}

.pricing-header {
    margin-top: 0;
    margin-bottom: 0.75rem;
    order: 1;
}

.pricing-transaction-limit {
    order: 2;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
}

.pricing-header h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.pricing-header p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 0;
}

.pricing-transaction-limit {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.pricing-includes-note {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
    order: 4;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    order: 5;
}

.pricing-card .btn-primary {
    order: 6;
}

.pricing-features li {
    font-size: 16px;
    font-weight: 400;
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

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

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

.blog-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}


.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #00bf63 0%, #0097b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.blog-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section:last-child {
    text-align: left;
}

.footer-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
}

.footer-section p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section:nth-child(2) {
    margin-right: 3rem;
}

.footer-section:nth-child(2) ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-section ul li {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section:nth-child(2) ul li {
    margin-bottom: 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 10px;
}

/* Responsive Design */

/* Mobile (up to 639px) */
@media (max-width: 639px) {
    /* Container padding for mobile */
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .nav.container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    /* Navigation */
    /* Mobile menu backdrop overlay - using body */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(4px);
        pointer-events: none;
        z-index: 999;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg-white);
        width: 80%;
        max-width: 320px;
        height: 100vh;
        text-align: left;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 5rem 0 2rem 0;
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu li {
        padding: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0s;
        position: relative;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu a {
        font-size: 18px;
        font-weight: 600;
        padding: 1rem 2rem;
        display: block;
        color: var(--text-dark);
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        position: relative;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: var(--bg-light);
        color: var(--secondary-color);
        border-left-color: var(--secondary-color);
        padding-left: 2.5rem;
    }

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

    .nav-toggle {
        display: flex;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        position: relative;
        z-index: 1001;
        transition: transform 0.3s ease;
    }

    .nav-toggle.active {
        transform: rotate(90deg);
    }

    .nav-toggle span {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .logo {
        height: 32px;
    }

    /* Hero Section - Content below image */
    .hero {
        padding-bottom: 3rem;
        padding-top: calc(62px + 0);
        min-height: auto;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    /* Make background image take up top portion only */
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50vh;
        width: 100%;
        background-image: url('src/bg.webp');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        pointer-events: none;
        z-index: 0;
    }

    /* Position content below the image */
    .hero .container {
        position: relative;
        z-index: 1;
        margin-top: 50vh;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        padding-top: 2rem !important;
        padding-bottom: 0 !important;
    }

    .hero-title {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    /* Buttons - Better touch targets */
    .btn {
        padding: 1rem 2rem;
        font-size: 16px;
        min-height: 44px;
        min-width: 120px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Sections - Better spacing */
    .cost-section,
    .smarter-section,
    .two-column-section,
    .services-section,
    .pricing-section,
    .trust-section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    /* Responsive Typography - Mobile */
    h1, .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .services-title, .smarter-title, .pricing-section .section-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h2, .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .cta-large-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .cta-large-title br {
        display: none;
    }

    h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    p, .service-card p, .pricing-header p {
        font-size: 16px;
        line-height: 1.6;
    }

    .smarter-column p, .smarter-benefits li {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Cost Section */
    .cost-box {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }

    .cost-text p {
        font-size: 24px;
    }

    .cost-mobile-break {
        display: block;
    }

    .trust-mobile-break {
        display: block;
    }

    .cost-hiring-list {
        gap: 1.5rem;
    }

    /* Smarter Section */
    .smarter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .smarter-benefits {
        margin-bottom: 2rem;
    }

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

    .smarter-feature {
        padding: 1.5rem;
    }

    /* Two Column Section */
    .two-column-section .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .two-column-item {
        width: 100%;
    }

    .two-column-image {
        width: 100%;
        margin-left: 0 !important;
    }

    .large-text {
        font-size: 24px;
        line-height: 1.4;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Services Section */
    .services-title {
        margin-top: 2rem;
        font-size: 36px !important;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .pricing-card-wrapper {
        margin-top: 2.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }

    .pricing-card.featured {
        margin-top: 1.5rem;
        transform: scale(1);
    }

    .pricing-popular-label {
        transform: scale(1);
    }

    .pricing-header {
        margin-top: 0;
    }

    .pricing-header h3 {
        font-size: 28px;
        margin-top: 0;
    }

    .pricing-header h3 br {
        display: none;
    }

    /* Trust Section */
    .trust-features {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-feature {
        min-width: 120px;
    }

    .trust-feature h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .trust-feature .smarter-feature-icon {
        font-size: 3.5rem;
        width: 4rem;
        height: 4rem;
    }

    /* CTA Section */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .form-fields-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.25rem;
    }

    .form-group input,
    .form-group select {
        padding: 1rem;
        font-size: 16px;
        min-height: 44px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section p {
        font-size: 12px;
    }

    .footer-section:last-child {
        text-align: center;
    }

    .footer-section:nth-child(2) {
        margin-right: 0;
    }

    .footer-section ul {
        margin-top: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-section:nth-child(2) ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .footer-section:nth-child(2) ul li {
        margin-bottom: 0;
    }

    /* Stats and other grids */
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stats-grid,
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Remove hover effects on mobile */
    .btn-primary:hover {
        transform: none;
    }

    .hero .btn-primary:hover {
        transform: none;
    }
}

/* Small Tablets (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    /* Container padding for mobile */
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .nav.container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    /* Navigation */
    /* Mobile menu backdrop overlay - using body */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(4px);
        pointer-events: none;
        z-index: 999;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg-white);
        width: 80%;
        max-width: 320px;
        height: 100vh;
        text-align: left;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 5rem 0 2rem 0;
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu li {
        padding: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0s;
        position: relative;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu a {
        font-size: 18px;
        font-weight: 600;
        padding: 1rem 2rem;
        display: block;
        color: var(--text-dark);
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        position: relative;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: var(--bg-light);
        color: var(--secondary-color);
        border-left-color: var(--secondary-color);
        padding-left: 2.5rem;
    }

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

    .nav-toggle {
        display: flex;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        position: relative;
        z-index: 1001;
        transition: transform 0.3s ease;
    }

    .nav-toggle.active {
        transform: rotate(90deg);
    }

    .nav-toggle span {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .logo {
        height: 32px;
    }

    /* Hero Section - Content below image */
    .hero {
        padding-bottom: 3rem;
        padding-top: calc(62px + 0);
        min-height: auto;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    /* Make background image take up top portion only */
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50vh;
        width: 100%;
        background-image: url('src/bg.webp');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        pointer-events: none;
        z-index: 0;
    }

    /* Position content below the image */
    .hero .container {
        position: relative;
        z-index: 1;
        margin-top: 50vh;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        padding-top: 2rem !important;
        padding-bottom: 0 !important;
    }

    .hero-title {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 38px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    /* Buttons - Better touch targets */
    .btn {
        padding: 1rem 2rem;
        font-size: 16px;
        min-height: 44px;
        min-width: 120px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Sections - Better spacing */
    .cost-section,
    .smarter-section,
    .two-column-section,
    .services-section,
    .pricing-section,
    .trust-section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    /* Responsive Typography - Mobile */
    h1, .hero-title {
        font-size: 38px;
        line-height: 1.3;
    }

    .services-title, .smarter-title, .pricing-section .section-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h2, .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .cta-large-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .cta-large-title br {
        display: none;
    }

    h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
    }

    p, .service-card p, .pricing-header p {
        font-size: 16px;
        line-height: 1.6;
    }

    .smarter-column p, .smarter-benefits li {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Cost Section */
    .cost-box {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }

    .cost-text p {
        font-size: 24px;
    }

    .cost-mobile-break {
        display: block;
    }

    .trust-mobile-break {
        display: block;
    }

    .cost-hiring-list {
        gap: 1.5rem;
    }

    /* Smarter Section */
    .smarter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .smarter-benefits {
        margin-bottom: 2rem;
    }

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

    .smarter-feature {
        padding: 1.5rem;
    }

    /* Two Column Section */
    .two-column-section .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .two-column-item {
        width: 100%;
    }

    .two-column-image {
        width: 100%;
        margin-left: 0 !important;
    }

    .large-text {
        font-size: 24px;
        line-height: 1.4;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Services Section */
    .services-title {
        margin-top: 2rem;
        font-size: 36px !important;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .pricing-card-wrapper {
        margin-top: 2.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }

    .pricing-card.featured {
        margin-top: 1.5rem;
        transform: scale(1);
    }

    .pricing-popular-label {
        transform: scale(1);
    }

    .pricing-header {
        margin-top: 0;
    }

    .pricing-header h3 {
        font-size: 28px;
        margin-top: 0;
    }

    .pricing-header p br,
    .pricing-header h3 br {
        display: none;
    }

    /* Trust Section */
    .trust-features {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-feature {
        min-width: 120px;
    }

    .trust-feature h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .trust-feature .smarter-feature-icon {
        font-size: 3.5rem;
        width: 4rem;
        height: 4rem;
    }

    /* CTA Section */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .form-fields-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.25rem;
    }

    .form-group input,
    .form-group select {
        padding: 1rem;
        font-size: 16px;
        min-height: 44px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section p {
        font-size: 12px;
    }

    .footer-section:last-child {
        text-align: center;
    }

    .footer-section:nth-child(2) {
        margin-right: 0;
    }

    .footer-section ul {
        margin-top: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-section:nth-child(2) ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .footer-section:nth-child(2) ul li {
        margin-bottom: 0;
    }

    /* Stats and other grids */
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stats-grid,
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Remove hover effects on mobile */
    .btn-primary:hover {
        transform: none;
    }

    .hero .btn-primary:hover {
        transform: none;
    }
}

/* Tablets & Desktop (768px - 1399px) share the same configuration */
@media (min-width: 768px) and (max-width: 1399px) {
    /* Container padding for tablets */
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .nav.container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    /* Navigation - Show full menu on tablets */
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        width: auto;
        height: auto;
        box-shadow: none;
        padding: 0;
        gap: 1.5rem;
    }

    .nav-menu li {
        opacity: 1;
        transform: none;
    }

    .nav-menu a {
        font-size: 15px;
        padding: 0.5rem 0;
        border-left: none;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: transparent;
        padding-left: 0;
    }

    /* Hero Section */
    .hero {
        padding-bottom: 4rem;
        padding-top: 0;
        min-height: 80vh;
    }

    .hero::after {
        height: 100%;
    }

    .hero .container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        margin-top: 0;
        padding-top: 8rem !important;
    }

    .hero-title {
        margin-top: 0;
        font-size: 40px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 17px;
        max-width: 600px;
    }

    /* Responsive Typography - Tablet */
    h1, .hero-title {
        font-size: 40px;
        line-height: 1.2;
    }

    .services-title, .smarter-title, .pricing-section .section-title {
        font-size: 48px;
        line-height: 1.2;
    }

    h2, .section-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .cta-large-title {
        font-size: 48px;
        line-height: 1.2;
    }

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

    h4 {
        font-size: 20px;
        line-height: 1.4;
    }

    p, .service-card p, .pricing-header p {
        font-size: 18px;
        line-height: 1.7;
    }

    /* Sections - Optimized spacing */
    .cost-section,
    .smarter-section,
    .two-column-section,
    .services-section,
    .pricing-section,
    .trust-section {
        padding: 4rem 0;
    }

    .cta-section {
        padding: 4rem 0;
    }

    /* Cost Section */
    .cost-box {
        padding: 3rem 2rem;
    }

    .cost-text p {
        font-size: 28px;
    }

    /* Smarter Section */
    .smarter-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    /* Two Column Section */
    .two-column-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .two-column-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .large-text {
        font-size: 22px;
        line-height: 1.3;
        padding: 3rem 4rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    .pricing-header h3 {
        margin-top: 0.75rem;
    }

    .pricing-header p br {
        display: none;
    }

    /* Trust Section */
    .trust-features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        justify-content: center;
    }

    .trust-feature {
        min-width: 140px;
    }

    .trust-feature:nth-child(5) {
        grid-column: 2 / 3;
    }

    .trust-feature:nth-child(6) {
        grid-column: 3 / 4;
    }

    /* CTA Section */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
    }

    .cta-large-title br {
        display: none;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-fields-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section:first-child {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .footer-section:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-section:last-child {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
    }

    .footer-section ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section:nth-child(2) ul {
        flex-direction: row;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    /* Stats and grids */
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }

    .trust-stats {
        flex-direction: row;
        gap: 3rem;
    }
}

/* Desktop-only tweaks (1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
    /* Make the two-column callout text larger on desktop */
    .large-text {
        font-size: 38px;
    }
}

/* Large desktop (1400px and above) */
@media (min-width: 1400px) {
    /* Large desktop-specific styles can be added here */
}

