/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #8EA52B;
    --primary-light: #A8C73B;
    --primary-dark: #3B3D26;
    --text-dark: #3B3D26;
    --text-light: #5A5D44;
    --white: #ffffff;
    --light-bg: #F5F7EE;
    --border-color: #D4DDB8;
    --shadow: 0 4px 6px rgba(59, 61, 38, 0.1);
    --shadow-lg: 0 10px 30px rgba(59, 61, 38, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* Prevent horizontal scroll on mobile */
    overflow-x: hidden;
}

body {
    font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Improve text rendering on mobile */
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title .highlight {
    color: #8EA52B;
}

.services .section-title {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(142, 165, 43, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A8C73B 0%, #8EA52B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 165, 43, 0.5);
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.logo-image {
    height: 100px;
    width: auto;
}

.logo i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-dark);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 8px 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background-color: rgba(168, 199, 59, 0.1);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-icons a {
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
}

.hero-content {
    max-width: 100%;
    text-align: left;
}

.hero-eyebrow {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    color: var(--white);
    font-weight: 600;
    padding: 20px 40px;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(142, 165, 43, 0.4);
    text-transform: uppercase;
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #A8C73B 0%, #B9D84E 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(142, 165, 43, 0.6);
}

.hero-badge {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.google-badge {
    max-width: 150px;
    height: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.google-badge:hover {
    opacity: 1;
}

/* ===================================
   Trusted By Section
   =================================== */
.trusted-by {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.trusted-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.9;
    background-color: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(59, 61, 38, 0.08);
}

.logo-item:hover {
    transform: translateY(-5px);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(59, 61, 38, 0.15);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* ===================================
   Problem Section
   =================================== */
.problem-section {
    padding: 80px 0;
    background-color: var(--white);
}

.problem-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.problem-content h2 .highlight {
    color: #8EA52B;
}

.problem-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.problem-highlight {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem !important;
    margin-top: 1.5rem;
}

.problem-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ===================================
   PLV Comparison Section
   =================================== */
.plv-comparison {
    padding: 50px 0;
    background-color: var(--white);
}

.comparison-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 1.75rem;
    line-height: 1.55;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-top: 1.75rem;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background-color: var(--white);
    padding: 1.7rem 1.2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 61, 38, 0.2);
}

.comparison-card.traditional {
    border: 3px solid #e74c3c;
    background: linear-gradient(135deg, #fff 0%, #ffebee 100%);
}

.comparison-card.wellness {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, #f5f7ee 100%);
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.traditional .card-badge {
    background-color: #e74c3c;
    color: var(--white);
}

.wellness .card-badge {
    background-color: var(--primary-color);
    color: var(--white);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.traditional .card-title {
    color: #c0392b;
}

.wellness .card-title {
    color: var(--primary-dark);
}

.stats-group {
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
    padding: 0.8rem 0.6rem;
    margin-bottom: 0.6rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.stat-number {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.traditional .stat-number {
    color: #e74c3c;
}

.wellness .stat-number {
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-detail {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.2rem;
    font-style: italic;
}

.revenue-box {
    background-color: var(--primary-dark);
    padding: 0.85rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 0.85rem;
}

.revenue-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.revenue-amount {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--white);
}

.wellness .revenue-amount {
    color: var(--primary-light);
}

.problem-box {
    padding: 0.85rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.45;
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 3px solid #e74c3c;
    color: var(--text-dark);
}

.problem-box.success {
    background-color: rgba(142, 165, 43, 0.1);
    border-left: 3px solid var(--primary-color);
}

.comparison-footer {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.2rem;
    border-top: 2px solid var(--border-color);
}

.footer-stat {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.9rem;
}

.footer-stat strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.services-eyebrow {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta .btn-primary {
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    color: var(--white);
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow: 0 6px 20px rgba(142, 165, 43, 0.4);
}

.services-cta .btn-primary:hover {
    background: linear-gradient(135deg, #A8C73B 0%, #B9D84E 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(142, 165, 43, 0.6);
}

/* ===================================
   Who We Help Section
   =================================== */
.who-we-help {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.practice-card {
    background-color: var(--primary-color);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    color: var(--white);
    display: block;
    text-decoration: none;
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.practice-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.practice-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.practice-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===================================
   WPM App CTA Section
   =================================== */
.wpm-app-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(142, 165, 43, 0.05) 0%, rgba(168, 199, 59, 0.08) 100%);
}

.wpm-app-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wpm-app-text-content {
    padding-right: 20px;
}

.wpm-app-eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.wpm-app-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.wpm-app-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.wpm-app-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.wpm-app-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.wpm-app-benefits i {
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.wpm-app-cta-buttons {
    margin-top: 2rem;
}

.wpm-app-trial-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.wpm-app-image-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpm-app-showcase-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wpm-app-cta-section {
        padding: 60px 0;
    }

    .wpm-app-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wpm-app-text-content {
        padding-right: 0;
    }

    .wpm-app-headline {
        font-size: 1.8rem;
    }

    .wpm-app-description {
        font-size: 1rem;
    }

    .wpm-app-image-content {
        order: -1;
    }

    .wpm-app-showcase-image {
        width: 80%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .wpm-app-headline {
        font-size: 1.6rem;
    }

    .wpm-app-benefits li {
        font-size: 0.95rem;
    }

    .wpm-app-showcase-image {
        width: 90%;
    }
}

/* ===================================
   Local SEO Section
   =================================== */
.local-seo-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.local-seo-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.local-seo-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.local-seo-content p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.local-seo-benefits {
    list-style: none;
    margin-top: 2rem;
}

.local-seo-benefits li {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.local-seo-benefits i {
    color: var(--primary-light);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.local-seo-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ===================================
   Meet the Founder Section
   =================================== */
.founder-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.founder-section .section-title {
    color: var(--white);
}

.founder-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.founder-image-placeholder {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--border-color) 100%);
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-light);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.founder-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.founder-image-placeholder p {
    font-size: 1rem;
    color: var(--text-light);
}

.founder-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.founder-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-align: right;
    margin-top: 0;
    font-style: italic;
}

.founder-story p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.founder-story p:last-child {
    margin-bottom: 0;
}

.founder-story strong {
    color: var(--primary-color);
}

.founder-signature {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.25rem;
    text-align: right;
}

/* ===================================
   Getting Started Section
   =================================== */
.getting-started-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
    color: var(--white);
}

.getting-started-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.getting-started-left {
    padding-right: 2rem;
}

.getting-started-eyebrow {
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.getting-started-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.getting-started-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.getting-started-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.getting-started-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.getting-started-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-light);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.getting-started-cta {
    text-align: center;
}

.getting-started-cta .btn-primary {
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    color: var(--white);
    font-size: 1.1rem;
    padding: 18px 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(142, 165, 43, 0.4);
}

.getting-started-cta .btn-primary:hover {
    background: linear-gradient(135deg, #A8C73B 0%, #B9D84E 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(142, 165, 43, 0.6);
}

/* ===================================
   Client Success Stories Section
   =================================== */
.success-stories-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonial-eyebrow {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.success-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    align-items: stretch;
    min-height: 450px;
}

.story-content {
    background-color: var(--primary-dark);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.client-logo-placeholder {
    width: 150px;
    height: 80px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.client-logo-placeholder i {
    font-size: 2.5rem;
    color: var(--text-dark);
    opacity: 0.3;
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.client-quote {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

.client-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.client-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.story-video {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.story-video wistia-player {
    width: 100%;
    height: 100%;
    min-height: 100%;
    flex: 1;
    object-fit: cover;
    display: block;
}

.story-video wistia-player video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ===================================
   Free Resources Section
   =================================== */
.resources-section {
    padding: 60px 0;
    background-color: var(--white);
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.resource-card {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 0;
    align-items: center;
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.resource-image {
    height: 100%;
    min-height: 220px;
}

.resource-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 1.5rem;
}

.resource-image-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.resource-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-content {
    padding: 1.75rem 2rem 1.75rem 2rem;
}

.resource-eyebrow {
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.resource-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.resource-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.resource-content .btn {
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    color: var(--white);
    padding: 12px 28px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(142, 165, 43, 0.3);
}

.resource-content .btn:hover {
    background: linear-gradient(135deg, #A8C73B 0%, #B9D84E 100%);
    box-shadow: 0 6px 20px rgba(142, 165, 43, 0.5);
}

/* ===================================
   AI Visibility & GEO Section
   =================================== */
.ai-visibility-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3B3D26 0%, #2d2f1e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ai-visibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(142, 165, 43, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.ai-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 20px rgba(142, 165, 43, 0.3);
}

.ai-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.ai-hero-image {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ai-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ai-visibility-map {
    position: relative;
    min-height: 550px;
    margin: 6rem auto 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
}

.ai-center-hub {
    position: relative;
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(142, 165, 43, 0.6), 0 0 80px rgba(168, 199, 59, 0.4);
}

.ai-center-hub i {
    font-size: 3.5rem;
    color: #1a1d2e;
    margin-bottom: 0.5rem;
}

.ai-center-hub p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1d2e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #8EA52B;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
    border-color: #A8C73B;
}

.ai-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ai-node {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(59, 61, 38, 0.9);
    border: 2px solid #8EA52B;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(142, 165, 43, 0.3);
    top: 50%;
    left: 50%;
}

/* Hover effect removed per user request */

.ai-node i {
    font-size: 1.3rem;
    color: #8EA52B;
}

.ai-node span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

/* Circular positioning - 5 nodes at 72° intervals, radius 280px */
.ai-node-1 {
    /* 0° - Top (Google Search) */
    transform: translate(-50%, calc(-50% - 280px));
}

.ai-node-2 {
    /* 72° - Upper Right (ChatGPT) */
    transform: translate(calc(-50% + 266px), calc(-50% - 86px));
}

.ai-node-3 {
    /* 144° - Lower Right (Perplexity) */
    transform: translate(calc(-50% + 164px), calc(-50% + 227px));
}

.ai-node-4 {
    /* 216° - Lower Left (Apple Intelligence) */
    transform: translate(calc(-50% - 164px), calc(-50% + 227px));
}

.ai-node-5 {
    /* 288° - Upper Left (Google Gemini) */
    transform: translate(calc(-50% - 266px), calc(-50% - 86px));
}

.ai-map-message {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 1.2rem;
    color: #A8C73B;
    font-style: italic;
    font-weight: 500;
    width: 100%;
    max-width: 800px;
    padding-top: 2rem;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 12rem 0 4rem;
}

.ai-feature-card {
    background: rgba(59, 61, 38, 0.6);
    border: 1px solid rgba(142, 165, 43, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    border-color: #8EA52B;
    box-shadow: 0 0 30px rgba(142, 165, 43, 0.2);
    transform: translateY(-5px);
}

.ai-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ai-feature-icon i {
    font-size: 2rem;
    color: #1a1d2e;
}

.ai-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.ai-feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.ai-audit-cta {
    background: linear-gradient(135deg, rgba(142, 165, 43, 0.1) 0%, rgba(168, 199, 59, 0.1) 100%);
    border: 2px solid #8EA52B;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    margin-top: 6rem;
    box-shadow: 0 0 40px rgba(142, 165, 43, 0.2);
}

.ai-audit-cta h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #A8C73B;
    margin-bottom: 0.75rem;
}

.ai-audit-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-ai-primary {
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    color: #1a1d2e;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 0 30px rgba(142, 165, 43, 0.4);
}

.btn-ai-primary:hover {
    box-shadow: 0 0 50px rgba(142, 165, 43, 0.6), 0 0 80px rgba(168, 199, 59, 0.4);
    transform: translateY(-3px);
}

/* ===================================
   Blog Section
   =================================== */
.blog-section {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-eyebrow {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.blog-image-placeholder i {
    font-size: 4rem;
    opacity: 0.9;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s ease;
}

.blog-title-link:hover h3 {
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.blog-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

/* ===================================
   Free Audit Section
   =================================== */
.audit-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.audit-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.audit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.audit-details {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.audit-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}

.audit-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.audit-list li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audit-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.audit-credibility {
    background-color: var(--primary-light);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.audit-details .btn {
    width: 100%;
    font-size: 1.1rem;
}

.audit-image {
    width: 80%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 40px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.tagline {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Show Quick Links by default */
.footer-links-title {
    display: block;
}

.footer-quick-links {
    display: flex;
}

/* Working Hours styling (now in footer-contact) */
.footer-hours-title {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.footer-hours-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    /* Testimonial responsive at tablet size */
    .success-story-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .story-content {
        order: 2;
    }

    .story-video {
        order: 1;
        min-height: 280px;
        max-height: 280px;
    }

    .story-video wistia-player {
        min-height: 280px;
        max-height: 280px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 95%;
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .problem-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .local-seo-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Why Work With Us responsive */
    .why-story-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-story-points {
        padding-left: 2rem;
    }

    .story-point {
        padding-left: 2rem;
    }

    .point-number {
        left: -2rem;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .point-content h3 {
        font-size: 1.2rem;
    }

    .point-content p {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .service-card {
        padding: 1.85rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto 1.15rem;
    }

    .practices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .audit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .comparison-subtitle {
        font-size: 0.95rem;
    }

    .getting-started-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .getting-started-left {
        padding-right: 0;
    }

    .getting-started-right {
        gap: 2rem;
    }

    .founder-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }

    .founder-image {
        order: -1; /* Move image before content */
        max-width: 300px;
        margin: 0 auto;
    }

    .founder-img {
        border-radius: 50%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .founder-content {
        order: 1;
        max-width: 90%;
        margin: 0 auto;
    }

    .founder-image-placeholder {
        max-width: 400px;
        margin: 0 auto;
    }

    .ai-audit-cta {
        margin-top: 5rem;
    }

    .resource-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .resource-image {
        min-height: 180px;
        max-width: 70%;
        margin: 0 auto;
    }

    .resource-content {
        padding: 1.5rem;
    }

    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-card {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-image,
    .blog-image-placeholder {
        height: 160px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .ai-visibility-map {
        min-height: 400px;
    }

    .ai-node {
        width: 75px;
        height: 75px;
    }

    .ai-node i {
        font-size: 1.1rem;
    }

    /* AI Section - tablet */
    .ai-visibility-map {
        min-height: 500px;
    }

    .ai-center-hub {
        width: 160px;
        height: 160px;
        aspect-ratio: 1 / 1;
    }

    .ai-center-hub i {
        font-size: 3rem;
    }

    .ai-node {
        width: 75px;
        height: 75px;
    }

    .ai-node i {
        font-size: 1.1rem;
    }

    /* Recalculate node positions for tablet with 220px radius */
    .ai-node-1 {
        transform: translate(-50%, calc(-50% - 220px));
    }

    .ai-node-2 {
        transform: translate(calc(-50% + 209px), calc(-50% - 68px));
    }

    .ai-node-3 {
        transform: translate(calc(-50% + 129px), calc(-50% + 178px));
    }

    .ai-node-4 {
        transform: translate(calc(-50% - 129px), calc(-50% + 178px));
    }

    .ai-node-5 {
        transform: translate(calc(-50% - 209px), calc(-50% - 68px));
    }
}

@media (max-width: 768px) {
    /* Global Mobile Improvements */
    .container {
        padding: 0 15px;
    }

    /* Service Grid Mobile Fix */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto 1rem;
        flex-shrink: 0;
    }

    .service-icon i {
        font-size: 1.85rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.85rem;
        width: 100%;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
        width: 100%;
    }

    body {
        font-size: 16px;
    }

    /* Improve all buttons for touch */
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    /* Section spacing */
    section {
        padding: 50px 0 !important;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .logo-image {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0 8rem 0;
        gap: 1rem;
        z-index: 999;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1.1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile dropdown styles */
    .dropdown-content {
        position: static;
        display: none;
        background-color: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        padding: 0.5rem 0;
    }

    .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 12px 30px;
        font-size: 1rem;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-toggle {
        cursor: pointer;
        justify-content: center;
    }

    .social-icons {
        position: fixed;
        bottom: 0;
        left: -100%;
        width: 100%;
        background-color: var(--primary-dark);
        padding: 1.5rem;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

    .social-icons.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-img {
        max-width: 100%;
    }

    .hero-description {
        font-size: 1rem;
    }

    .problem-content h2 {
        font-size: 1.6rem;
    }

    .local-seo-content h2 {
        font-size: 1.8rem;
    }

    .local-seo-benefits li {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .trusted-logos {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trusted-title {
        font-size: 1.5rem;
    }

    .logo-item img {
        max-height: 60px;
    }

    .audit-details {
        padding: 2rem 1.5rem;
    }

    .audit-intro {
        font-size: 1rem;
    }

    .audit-list li {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .comparison-card {
        padding: 1.2rem 0.85rem;
    }

    .card-title {
        font-size: 1.05rem;
    }

    .success-story-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
    }

    .story-content {
        padding: 3rem 2rem;
        order: 2;
    }

    .story-video {
        order: 1;
        min-height: 240px;
        max-height: 240px;
        height: 240px;
    }

    .story-video wistia-player {
        min-height: 240px;
        max-height: 240px;
    }

    .client-quote {
        font-size: 1.3rem;
    }

    .client-info h3 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-detail {
        font-size: 0.7rem;
    }

    .revenue-amount {
        font-size: 1.4rem;
    }

    .problem-box {
        font-size: 0.8rem;
        padding: 0.7rem;
    }

    .footer-stat {
        font-size: 0.95rem;
    }

    .footer-stat strong {
        font-size: 1.15rem;
    }

    .getting-started-eyebrow {
        font-size: 1.4rem;
    }

    .getting-started-title {
        font-size: 2rem;
    }

    .getting-started-description {
        font-size: 1rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .step-icon i {
        font-size: 1.6rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .story-info {
        padding: 2rem 1.5rem;
    }

    .story-info h3 {
        font-size: 1.5rem;
    }

    .story-info p {
        font-size: 1rem;
    }

    .founder-content h3 {
        font-size: 1.6rem;
    }

    .founder-title {
        font-size: 1.1rem;
    }

    .founder-story p {
        font-size: 1rem;
    }

    .founder-image-placeholder {
        padding: 2rem 1.5rem;
    }

    .founder-image-placeholder i {
        font-size: 4rem;
    }

    .founder-image {
        max-width: 250px;
    }

    .resource-eyebrow {
        font-size: 0.85rem;
    }

    .resource-content h3 {
        font-size: 1.2rem;
    }

    .resource-content p {
        font-size: 0.85rem;
    }

    .resource-image {
        min-height: 140px;
        max-width: 60%;
    }

    .resource-image-placeholder i {
        font-size: 3rem;
    }

    .resource-content .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .ai-section-title {
        font-size: 1.8rem;
    }

    .ai-section-subtitle {
        font-size: 1rem;
    }

    .ai-hero-image {
        max-width: 90%;
        margin: 0 auto 3rem;
    }

    .ai-center-hub {
        width: 140px;
        height: 140px;
        aspect-ratio: 1 / 1;
    }

    .ai-center-hub i {
        font-size: 2.5rem;
    }

    .ai-node {
        width: 60px;
        height: 60px;
    }

    .ai-node i {
        font-size: 1.1rem;
    }

    .ai-node span {
        font-size: 0.65rem;
    }

    .ai-visibility-map {
        min-height: 450px;
    }

    /* Recalculate node positions for mobile with 180px radius */
    .ai-node-1 {
        /* 0° - Top (Google Search) */
        transform: translate(-50%, calc(-50% - 180px));
    }

    .ai-node-2 {
        /* 72° - Upper Right (ChatGPT) */
        transform: translate(calc(-50% + 171px), calc(-50% - 56px));
    }

    .ai-node-3 {
        /* 144° - Lower Right (Perplexity) */
        transform: translate(calc(-50% + 106px), calc(-50% + 146px));
    }

    .ai-node-4 {
        /* 216° - Lower Left (Apple Intelligence) */
        transform: translate(calc(-50% - 106px), calc(-50% + 146px));
    }

    .ai-node-5 {
        /* 288° - Upper Left (Google Gemini) */
        transform: translate(calc(-50% - 171px), calc(-50% - 56px));
    }

    .ai-map-message {
        font-size: 1rem;
        bottom: -50px;
        padding: 0 1rem;
    }

    .ai-audit-cta {
        padding: 1.5rem 1.25rem;
        margin-top: 4rem;
    }

    .ai-audit-cta h3 {
        font-size: 1.3rem;
    }

    .ai-audit-cta p {
        font-size: 0.95rem;
    }

    /* Three Pillars Mobile Optimization */
    .pillars-main-title {
        font-size: 1.6rem;
        line-height: 1.4;
        padding: 0 10px;
    }

    .pillars-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .pillar-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pillar-card {
        padding: 2rem 1.5rem;
    }

    .pillar-title {
        font-size: 1.4rem;
    }

    .pillar-description {
        font-size: 0.95rem;
    }

    /* Practices Grid Mobile */
    .practices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .practice-card {
        padding: 1.5rem 1rem;
    }

    .practice-card h3 {
        font-size: 1rem;
    }

    .practice-icon {
        width: 60px;
        height: 60px;
    }

    .practice-icon i {
        font-size: 1.5rem;
    }

    /* Hope and Solution Sections */
    .hope-marketing-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hope-image-column,
    .solution-image-column {
        max-width: 80%;
        margin: 0 auto 1.5rem;
    }

    .hope-image,
    .solution-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .section-title-left {
        font-size: 1.6rem;
        text-align: center;
    }

    .hope-intro-left,
    .solution-intro-left {
        text-align: center;
        font-size: 1rem;
    }

    /* Node Flow - Why Choose Us */
    .node-flow {
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
    }

    /* Vertical connecting line on small mobile */
    .node-flow::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 45px;
        bottom: calc(1.5rem + 45px); /* End at last node circle center (gap + half circle) */
        width: 2px;
        background-color: rgba(168, 199, 59, 0.3);
        transform: translateX(-50%);
        z-index: 0;
    }

    .flow-node {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .connector-line {
        display: none;
    }

    /* Getting Started Section */
    .getting-started-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .getting-started-left {
        text-align: center;
    }

    .getting-started-title {
        font-size: 1.8rem;
    }

    .getting-started-image-wrapper {
        margin-top: 1.5rem;
    }

    /* Resources Section */
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resource-card {
        flex-direction: column;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Hide footer links completely on mobile */
    .footer-links {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-links {
        flex-direction: row;
        gap: 0.4rem;
        flex-wrap: wrap;
    }

    .legal-links a {
        font-size: 0.7rem;
        min-height: auto;
        padding: 0.5rem 0.3rem;
    }

    /* Improve touch targets for all links */
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Blog cards mobile */
    .blog-grid {
        max-width: 85%;
    }

    .blog-card {
        margin-bottom: 1.5rem;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-image,
    .blog-image-placeholder {
        height: 140px;
    }

    .blog-image-placeholder i {
        font-size: 2.5rem;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    .blog-title-link h3 {
        font-size: 1.1rem;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 1.7rem;
        padding: 0 10px;
    }

    .cta-section p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .container {
        padding: 0 12px;
    }

    .logo-image {
        height: 60px;
    }

    /* Navigation adjustments for small screens */
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
        padding: 1.5rem 0 7rem 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 16px;
    }

    .dropdown-content a {
        font-size: 0.95rem;
        padding: 10px 24px;
    }

    .social-icons {
        padding: 1.2rem;
        gap: 1.5rem;
    }

    .social-icons a {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-image {
        max-width: 85%;
        margin: 0 auto;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
    }

    .service-card,
    .practice-card {
        padding: 1.75rem 1.25rem;
    }

    .service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 0.85rem;
        flex-shrink: 0;
    }

    .service-icon i {
        font-size: 1.65rem;
    }

    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        width: 100%;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.55;
        width: 100%;
    }

    .services-grid {
        gap: 1.25rem;
    }

    .practice-card h3 {
        font-size: 0.9rem;
    }

    .practice-icon {
        width: 50px;
        height: 50px;
    }

    .practice-icon i {
        font-size: 1.3rem;
    }

    /* Hero Section */
    .hero-eyebrow {
        font-size: 0.7rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Three Pillars */
    .pillars-main-title {
        font-size: 1.4rem;
    }

    .pillar-card {
        padding: 1.5rem;
    }

    /* AI Section */
    .ai-section-title {
        font-size: 1.5rem;
    }

    .ai-hero-image {
        max-width: 95%;
        margin: 0 auto 2rem;
    }

    .ai-center-hub {
        width: 120px;
        height: 120px;
        aspect-ratio: 1 / 1;
    }

    .ai-center-hub i {
        font-size: 2rem;
    }

    .ai-center-hub p {
        font-size: 0.7rem;
    }

    .ai-node {
        width: 55px;
        height: 55px;
    }

    .ai-node i {
        font-size: 0.8rem;
    }

    .ai-node span {
        font-size: 0.6rem;
    }

    .ai-visibility-map {
        min-height: 400px;
    }

    /* Recalculate node positions for small mobile with 150px radius */
    .ai-node-1 {
        /* 0° - Top (Google Search) */
        transform: translate(-50%, calc(-50% - 150px));
    }

    .ai-node-2 {
        /* 72° - Upper Right (ChatGPT) */
        transform: translate(calc(-50% + 143px), calc(-50% - 46px));
    }

    .ai-node-3 {
        /* 144° - Lower Right (Perplexity) */
        transform: translate(calc(-50% + 88px), calc(-50% + 122px));
    }

    .ai-node-4 {
        /* 216° - Lower Left (Apple Intelligence) */
        transform: translate(calc(-50% - 88px), calc(-50% + 122px));
    }

    .ai-node-5 {
        /* 288° - Upper Left (Google Gemini) */
        transform: translate(calc(-50% - 143px), calc(-50% - 46px));
    }

    /* Why Work With Us mobile */
    .why-story-points {
        padding-left: 1.5rem;
    }

    .story-point {
        padding-left: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .point-number {
        left: -1.5rem;
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .point-content h3 {
        font-size: 1.1rem;
    }

    /* Getting Started */
    .getting-started-title {
        font-size: 1.6rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    /* Founder Section */
    .founder-content {
        max-width: 85%;
    }

    .founder-story p {
        font-size: 0.95rem;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Form inputs for better mobile UX */
    input,
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

    /* Contact form mobile */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 14px;
        font-size: 16px;
    }

    /* Hope and Solution images smaller on small phones */
    .hope-image-column,
    .solution-image-column {
        max-width: 70%;
        margin: 0 auto 1.5rem;
    }

    .hope-content-column,
    .solution-content-column {
        max-width: 85%;
    }

    /* Testimonial section on small phones */
    .story-content {
        padding: 2rem 1.5rem;
    }

    .story-video {
        min-height: 200px;
        max-height: 200px;
        height: 200px;
    }

    .story-video wistia-player {
        min-height: 200px;
        max-height: 200px;
    }

    .client-quote {
        font-size: 1.1rem;
    }

    .client-logo {
        max-width: 120px;
    }
}

/* ===================================
   Page Header (for internal pages)
   =================================== */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2b1a 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

/* ===================================
   Contact Page Styling
   =================================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Column */
.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-method-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-method-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-method-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-method-content a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Social Connect */
.social-connect {
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.social-connect h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(142, 165, 43, 0.4);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.contact-form-container {
    padding: 40px;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(142, 165, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 16px 32px;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-privacy i {
    color: var(--primary-color);
}

.form-message {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.form-success {
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.form-error {
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

.form-error i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-info h2,
    .contact-form-container h2 {
        font-size: 1.8rem;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-method {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .faq-item p {
        padding-left: 0;
    }

    .contact-faq-section {
        padding: 60px 0;
    }
}

/* ===================================
   Program/Offer Page Styling
   =================================== */

/* Program Hero Section */
.program-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2b1a 100%);
}

.program-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.program-hero-content {
    color: var(--white);
}

.program-pre-headline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.program-headline {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.program-sub-headline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.program-hero-cta {
    margin-top: 2rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.program-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.problem-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-point-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pain-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pain-icon i {
    font-size: 2rem;
    color: var(--white);
}

.pain-point-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pain-point-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Unique Mechanism Section */
.unique-mechanism-section {
    padding: 80px 0;
    background-color: var(--white);
}

.mechanism-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.mechanism-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mechanism-pillar {
    text-align: center;
    padding: 2rem;
}

.mechanism-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(142, 165, 43, 0.3);
}

.mechanism-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mechanism-pillar h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mechanism-pillar p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Deliverables Section */
.deliverables-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.deliverable-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.deliverable-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.deliverable-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.deliverable-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.deliverable-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2b1a 100%);
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.guarantee-seal {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(142, 165, 43, 0.4);
}

.guarantee-seal i {
    font-size: 3rem;
    color: var(--white);
}

.guarantee-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.guarantee-copy {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.guarantee-copy strong {
    color: var(--primary-color);
    font-weight: 700;
}

.guarantee-cta {
    margin-top: 2rem;
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
    background-color: var(--white);
}

.partner-intro {
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.partner-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.partner-content {
    padding-right: 2rem;
}

.partner-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.partner-signature {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.5rem !important;
}

.partner-title {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.partner-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    text-align: center;
    color: var(--white);
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.final-cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-guarantee-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .program-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .program-hero-content {
        text-align: center;
    }

    .pain-points-grid,
    .mechanism-pillars,
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .program-headline {
        font-size: 2rem;
    }

    .program-sub-headline {
        font-size: 1.1rem;
    }

    .program-hero {
        padding: 60px 0 50px;
    }

    .guarantee-box {
        padding: 3rem 2rem;
    }

    .guarantee-headline {
        font-size: 1.8rem;
    }

    .guarantee-copy {
        font-size: 1.05rem;
    }

    .final-cta-section h2 {
        font-size: 1.8rem;
    }

    .final-cta-section p {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .program-headline {
        font-size: 1.6rem;
    }

    .program-sub-headline {
        font-size: 1rem;
    }

    .guarantee-box {
        padding: 2rem 1.5rem;
    }

    .mechanism-icon,
    .guarantee-seal {
        width: 80px;
        height: 80px;
    }

    .mechanism-icon i {
        font-size: 2rem;
    }

    .guarantee-seal i {
        font-size: 2.5rem;
    }
}

/* ===================================
   Legal Pages Styling
   =================================== */
.legal-content {
    padding: 60px 0 80px;
    background-color: var(--white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-wrapper p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-wrapper ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-wrapper li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-wrapper a:hover {
    color: var(--primary-light);
}

.legal-wrapper .contact-info {
    background: var(--light-bg);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.legal-wrapper .contact-info p {
    margin-bottom: 0.5rem;
}

.legal-wrapper .contact-info p:last-child {
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 40px 0 60px;
    }

    .legal-wrapper h2 {
        font-size: 1.5rem;
    }

    .legal-wrapper h3 {
        font-size: 1.2rem;
    }

    .legal-wrapper p,
    .legal-wrapper li {
        font-size: 0.95rem;
    }

    .legal-wrapper ul {
        margin-left: 1.5rem;
    }

    .footer-links {
        display: none;
    }

    .legal-links {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .legal-links a {
        font-size: 0.75rem;
        min-height: auto;
        padding: 0.5rem 0.4rem;
    }
}

/* ===================================
   Hope Marketing Cycle Section
   =================================== */
.hope-marketing-section {
    padding: 80px 0 40px 0;
    background-color: var(--light-bg);
}

.hope-marketing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hope-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hope-image {
    width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
    margin: 0 auto;
}

.hope-content-column {
    padding-left: 20px;
}

.section-title-left {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: left;
}

.hope-intro-left {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: left;
}

.hope-problems-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hope-problems-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(142, 165, 43, 0.15);
}

.hope-problems-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hope-problems-list i {
    font-size: 1.3rem;
    color: #e74c3c;
    margin-top: 3px;
    flex-shrink: 0;
}

.problem-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.problem-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hope-marketing-grid {
        gap: 40px;
    }

    .section-title-left {
        font-size: 1.9rem;
    }

    .hope-intro-left {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hope-marketing-section {
        padding: 60px 0 30px 0;
    }

    .hope-marketing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hope-image-column {
        max-width: 80%;
        margin: 0 auto;
    }

    .hope-content-column {
        padding-left: 0;
        max-width: 90%;
        margin: 0 auto;
    }

    .section-title-left {
        font-size: 1.8rem;
    }

    .hope-intro-left {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hope-problems-list li {
        gap: 12px;
        margin-bottom: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .problem-text {
        font-size: 0.95rem;
    }
}

/* ===================================
   Solution Section
   =================================== */
.solution-section {
    padding: 40px 0 80px 0;
    background: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image {
    width: 80%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.solution-image-column .image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(142, 165, 43, 0.1) 0%, rgba(168, 199, 59, 0.15) 100%);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.solution-image-column .image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.solution-image-column .image-placeholder p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.solution-content-column {
    padding-right: 20px;
}

.solution-intro-left {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: left;
}

.solutions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solutions-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(142, 165, 43, 0.15);
}

.solutions-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.solutions-list i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.solution-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.solution-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
    .solution-grid {
        gap: 40px;
    }

    .solution-intro-left {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 30px 0 60px 0;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-image-column {
        max-width: 80%;
        margin: 0 auto;
    }

    .solution-content-column {
        padding-right: 0;
        max-width: 90%;
        margin: 0 auto;
    }

    .solution-intro-left {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .solutions-list li {
        gap: 12px;
        margin-bottom: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .solution-text {
        font-size: 0.95rem;
    }
}

/* ===================================
   Three Pillars Section
   =================================== */
.three-pillars-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.pillars-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.3;
}

.pillars-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.pillar-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.pillar-row:last-child {
    margin-bottom: 0;
}

.pillar-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(142, 165, 43, 0.1) 0%, rgba(168, 199, 59, 0.15) 100%);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pillar-image .image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.pillar-image .image-placeholder p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.pillar-card {
    background: linear-gradient(135deg, #3B3D26 0%, #2a2b1a 100%);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pillar-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pillar-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.pillar-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.pillars-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .three-pillars-section {
        padding: 80px 0;
    }

    .pillars-main-title {
        font-size: 1.9rem;
    }

    .pillars-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .pillar-row {
        gap: 35px;
        margin-bottom: 40px;
    }

    .pillar-card {
        padding: 2.5rem 2rem;
    }

    .pillar-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .three-pillars-section {
        padding: 60px 0;
    }

    .pillars-main-title {
        font-size: 1.6rem;
    }

    .pillars-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .pillar-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .pillar-card {
        padding: 2rem 1.75rem;
    }

    .pillar-title {
        font-size: 1.5rem;
    }

    .pillar-description {
        font-size: 0.95rem;
    }
}

/* ===================================
   Why Clinics Choose Us Section
   =================================== */
.why-choose-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #3B3D26 0%, #2a2b1a 100%);
    padding: 100px 0;
    overflow: hidden;
}

.radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 199, 59, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-section .section-title {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-subtitle-white {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.node-flow-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.connector-line {
    position: absolute;
    top: 70px;
    left: 8%;
    width: 84%;
    height: 10px;
    z-index: 1;
}

.base-line {
    transition: opacity 0.3s ease;
}

.active-line {
    transition: x2 0.6s ease-out;
    filter: drop-shadow(0 0 8px rgba(168, 199, 59, 0.6));
}

.node-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    gap: 20px;
}

.flow-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flow-node:hover {
    transform: translateY(-8px);
}

.node-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(142, 165, 43, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.flow-node:hover .node-circle {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(168, 199, 59, 0.5);
}

.node-circle i {
    font-size: 2rem;
    color: var(--white);
}

.node-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-tooltip {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-dark);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    width: 240px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.node-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

.flow-node:hover .node-tooltip,
.flow-node:focus .node-tooltip,
.flow-node.active .node-tooltip {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 15px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-section .section-title {
        font-size: 2.2rem;
    }

    .node-circle {
        width: 70px;
        height: 70px;
    }

    .node-circle i {
        font-size: 1.7rem;
    }

    .node-label {
        font-size: 0.85rem;
    }

    .node-tooltip {
        width: 200px;
        font-size: 0.85rem;
        padding: 14px 16px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle-white {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .connector-line {
        display: none;
    }

    .node-flow {
        flex-direction: column;
        gap: 40px;
        position: relative;
    }

    /* Vertical connecting line on mobile */
    .node-flow::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 45px; /* Start from first node circle center */
        bottom: calc(40px + 45px); /* End at last node circle center (gap + half circle) */
        width: 2px;
        background-color: rgba(168, 199, 59, 0.3);
        transform: translateX(-50%);
        z-index: 0;
    }

    .flow-node {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .node-circle {
        width: 90px;
        height: 90px;
    }

    .node-circle i {
        font-size: 2.2rem;
    }

    .node-label {
        font-size: 1.1rem;
        min-height: auto;
    }

    .node-tooltip {
        width: 280px;
        font-size: 0.95rem;
    }

    .flow-node .node-tooltip {
        position: relative;
        top: 0;
        transform: none;
        left: 0;
        margin-top: 15px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease, max-height 0.4s ease;
    }

    .flow-node:hover .node-tooltip,
    .flow-node.active .node-tooltip {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }

    .node-tooltip::before {
        display: none;
    }
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */

/* Service Hero Section */
.service-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #3B3D26 0%, #2a2b1a 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(168, 199, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    line-height: 1.6;
}

/* Service Details Layout */
.service-details {
    padding: 80px 0;
    background-color: var(--white);
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.service-main-content {
    max-width: 100%;
}

.service-main-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-main-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.25rem;
    line-height: 1.3;
}

.service-main-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.service-main-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-main-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.service-main-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-main-content ul li strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Features List */
.features-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item div {
    flex: 1;
}

.feature-item strong {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.35rem;
}

.feature-item div:not(strong) {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    margin: 2.5rem 0;
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(142, 165, 43, 0.3);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 0.25rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 100px;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: 16px;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.price span {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.pricing-features ul li:last-child {
    margin-bottom: 0;
}

.pricing-features ul li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.btn-block {
    width: 100%;
    display: block;
    margin-top: 1.5rem;
}

/* CTA Card */
.cta-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    margin-bottom: 2rem;
    text-align: center;
}

.cta-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Related Services */
.related-services {
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    border: 2px solid var(--border-color);
}

.related-services h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.related-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services ul li {
    margin-bottom: 0.75rem;
}

.related-services ul li:last-child {
    margin-bottom: 0;
}

.related-services ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-services ul li a:hover {
    color: var(--primary-light);
}

.related-services ul li a::before {
    content: '→';
    font-size: 1.1rem;
    font-weight: 700;
}

/* Info Boxes */
.example-box,
.scenario-box,
.info-box {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.example-box h4,
.scenario-box h4,
.info-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.example-box h4 i,
.scenario-box h4 i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.example-box p,
.scenario-box p,
.info-box p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.example-box p:last-child,
.scenario-box p:last-child,
.info-box p:last-child {
    margin-bottom: 0;
}

.example-box em,
.scenario-box em {
    color: var(--text-light);
    font-style: italic;
}

/* Ranking Factors Grid */
.ranking-factors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.factor-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.factor-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.factor-card h4 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.factor-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.faq-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Page Header (for services list page) */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #3B3D26 0%, #2a2b1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(168, 199, 59, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Make service cards clickable on services list page */
.services-grid a.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-grid a.service-card:hover {
    text-decoration: none;
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .service-content-wrapper {
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-subtitle {
        font-size: 1.15rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .ranking-factors {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 40px;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-subtitle {
        font-size: 1.05rem;
    }

    .service-details {
        padding: 60px 0;
    }

    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-sidebar {
        position: relative;
        top: 0;
    }

    .service-main-content h2 {
        font-size: 1.8rem;
    }

    .service-main-content h3 {
        font-size: 1.5rem;
    }

    .service-main-content p,
    .service-main-content ul li {
        font-size: 1rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-timeline {
        padding-left: 30px;
    }

    .process-timeline::before {
        left: 14px;
    }

    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .timeline-content h4 {
        font-size: 1.15rem;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .price span {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 1.75rem;
    }

    .service-hero-subtitle {
        font-size: 1rem;
    }

    .service-main-content h2 {
        font-size: 1.6rem;
    }

    .service-main-content h3 {
        font-size: 1.35rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .pricing-header,
    .pricing-features {
        padding: 1.5rem;
    }

    .page-title {
        font-size: 1.9rem;
    }
}

/* ===================================
   ENHANCED MOBILE OPTIMIZATIONS FOR SERVICE PAGES
   =================================== */

/* Base mobile improvements - apply to all mobile sizes */
@media (max-width: 768px) {
    /* Improve touch targets - minimum 44px */
    .btn {
        min-height: 44px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .btn-block {
        min-height: 50px;
        font-size: 1.05rem;
    }

    /* Better readability */
    body {
        font-size: 16px; /* Prevent zoom on input focus */
    }

    /* Optimize container padding for mobile */
    .container {
        padding: 0 16px;
    }

    /* Service Hero - Mobile Optimized */
    .service-hero {
        padding: 80px 0 40px;
    }

    .breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .service-hero-title {
        font-size: 1.95rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .service-hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    /* Service Content - Mobile Stack */
    .service-details {
        padding: 50px 0;
    }

    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Sidebar becomes inline on mobile */
    .service-sidebar {
        position: relative;
        top: 0;
        order: 1; /* Sidebar appears first on mobile */
    }

    .service-main-content {
        order: 2;
    }

    /* Typography - Mobile Optimized */
    .service-main-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }

    .service-main-content h3 {
        font-size: 1.45rem;
        line-height: 1.3;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .service-main-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .service-main-content ul {
        margin: 1.25rem 0;
    }

    .service-main-content ul li {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 0.65rem;
        padding-left: 1.5rem;
    }

    .service-main-content ul li::before {
        font-size: 1.1rem;
    }

    /* Features List - Mobile Friendly */
    .features-list {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .feature-item {
        padding: 1.25rem;
        gap: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-item i {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .feature-item strong {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    /* Benefits Grid - Single Column on Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .benefit-card {
        padding: 1.75rem 1.5rem;
    }

    .benefit-card i {
        font-size: 2.25rem;
        margin-bottom: 0.85rem;
    }

    .benefit-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.65rem;
    }

    .benefit-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Timeline - Mobile Optimized */
    .process-timeline {
        padding-left: 35px;
        margin: 2rem 0;
    }

    .process-timeline::before {
        left: 15px;
        width: 2px;
    }

    .timeline-item {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .timeline-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .timeline-content h4 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Pricing Card - Mobile Optimized */
    .pricing-card {
        margin-bottom: 2.5rem;
        border-width: 2px;
    }

    .pricing-header {
        padding: 1.75rem 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.1rem;
        margin-bottom: 0.65rem;
    }

    .price {
        font-size: 2.75rem;
        margin-bottom: 0.35rem;
    }

    .price span {
        font-size: 1.4rem;
    }

    .price-note {
        font-size: 0.9rem;
    }

    .pricing-features {
        padding: 1.75rem 1.5rem;
    }

    .pricing-features h4 {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }

    .pricing-features ul li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.7rem;
        gap: 0.65rem;
    }

    .pricing-features ul li i {
        font-size: 0.95rem;
    }

    /* CTA Card - Mobile */
    .cta-card {
        padding: 1.75rem 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-card h4 {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
    }

    .cta-card p {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }

    /* Related Services - Mobile */
    .related-services {
        padding: 1.5rem;
    }

    .related-services h4 {
        font-size: 1.05rem;
        margin-bottom: 0.85rem;
    }

    .related-services ul li {
        margin-bottom: 0.7rem;
    }

    .related-services ul li a {
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    /* Info Boxes - Mobile */
    .example-box,
    .scenario-box,
    .info-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-left-width: 3px;
    }

    .example-box h4,
    .scenario-box h4,
    .info-box h4 {
        font-size: 1.2rem;
        margin-bottom: 0.85rem;
        gap: 0.5rem;
    }

    .example-box h4 i,
    .scenario-box h4 i {
        font-size: 1.25rem;
    }

    .example-box p,
    .scenario-box p,
    .info-box p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 0.85rem;
    }

    /* Ranking Factors - Single Column */
    .ranking-factors {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 1.5rem 0;
    }

    .factor-card {
        padding: 1.5rem;
    }

    .factor-card h4 {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .factor-card h4 i {
        font-size: 1.5rem;
    }

    .factor-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* FAQ Section - Mobile */
    .faq-section {
        padding: 50px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h4 {
        font-size: 1.05rem;
        line-height: 1.4;
        margin-bottom: 0.65rem;
    }

    .faq-item p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    /* Page Header - Mobile */
    .page-header {
        padding: 80px 0 40px;
    }

    .page-title {
        font-size: 2.1rem;
        line-height: 1.25;
    }

    .page-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        padding: 0 10px;
    }
}

/* Small Mobile Phones (iPhone SE, small Android) */
@media (max-width: 480px) {
    /* Extra padding reduction for small screens */
    .container {
        padding: 0 14px;
    }

    /* Hero Section - Extra Small */
    .service-hero {
        padding: 70px 0 35px;
    }

    .service-hero-title {
        font-size: 1.65rem;
        line-height: 1.3;
    }

    .service-hero-subtitle {
        font-size: 0.95rem;
    }

    /* Content Spacing */
    .service-details {
        padding: 40px 0;
    }

    .service-content-wrapper {
        gap: 30px;
    }

    /* Typography */
    .service-main-content h2 {
        font-size: 1.55rem;
        margin-bottom: 1rem;
    }

    .service-main-content h3 {
        font-size: 1.3rem;
        margin-top: 1.75rem;
    }

    .service-main-content p {
        font-size: 0.95rem;
    }

    .service-main-content ul li {
        font-size: 0.95rem;
    }

    /* Features */
    .features-list {
        gap: 0.85rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .feature-item strong {
        font-size: 0.95rem;
    }

    /* Benefits */
    .benefits-grid {
        gap: 1.25rem;
        margin: 1.5rem 0;
    }

    .benefit-card {
        padding: 1.5rem 1.25rem;
    }

    .benefit-card i {
        font-size: 2rem;
    }

    .benefit-card h4 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    /* Timeline */
    .process-timeline {
        padding-left: 30px;
    }

    .process-timeline::before {
        left: 13px;
    }

    .timeline-item {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .timeline-content h4 {
        font-size: 1.05rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* Pricing Card */
    .pricing-header {
        padding: 1.5rem 1.25rem;
    }

    .price {
        font-size: 2.4rem;
    }

    .price span {
        font-size: 1.2rem;
    }

    .pricing-features {
        padding: 1.5rem 1.25rem;
    }

    .pricing-features ul li {
        font-size: 0.85rem;
    }

    /* CTAs */
    .cta-card {
        padding: 1.5rem 1.25rem;
    }

    .cta-card h4 {
        font-size: 1.05rem;
    }

    .cta-card p {
        font-size: 0.85rem;
    }

    /* Related Services */
    .related-services {
        padding: 1.25rem;
    }

    .related-services h4 {
        font-size: 1rem;
    }

    .related-services ul li a {
        font-size: 0.85rem;
    }

    /* Info Boxes */
    .example-box,
    .scenario-box,
    .info-box {
        padding: 1.25rem;
    }

    .example-box h4,
    .scenario-box h4,
    .info-box h4 {
        font-size: 1.1rem;
    }

    .example-box p,
    .scenario-box p,
    .info-box p {
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 0;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    /* Page Header */
    .page-header {
        padding: 70px 0 35px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    /* Buttons - Ensure touch-friendly on small screens */
    .btn-block {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* Extra Small Devices (< 375px) */
@media (max-width: 374px) {
    .service-hero-title {
        font-size: 1.5rem;
    }

    .service-main-content h2 {
        font-size: 1.4rem;
    }

    .service-main-content h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 2.2rem;
    }

    .benefit-card {
        padding: 1.25rem 1rem;
    }

    .feature-item {
        padding: 0.85rem;
    }
}

/* Landscape Mobile Phones */
@media (max-width: 768px) and (orientation: landscape) {
    .service-hero {
        padding: 60px 0 30px;
    }

    .service-details {
        padding: 40px 0;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }
}

/* Touch-specific improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets for touch devices */
    .btn {
        min-height: 48px;
        padding: 16px 32px;
    }

    .related-services ul li a {
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .pricing-features ul li {
        padding: 4px 0;
    }

    /* Remove hover effects on touch devices */
    .feature-item:hover,
    .benefit-card:hover,
    .factor-card:hover,
    .faq-item:hover {
        transform: none;
    }

    /* Make clickable areas larger */
    .breadcrumb a {
        padding: 8px 0;
        display: inline-block;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    * {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }

    /* Simplify shadows on mobile */
    .pricing-card,
    .benefit-card,
    .faq-item,
    .feature-item {
        box-shadow: 0 2px 8px rgba(59, 61, 38, 0.1);
    }
}

/* Improve readability - prevent text zoom on form inputs */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* ===================================
   WPM APP PAGE STYLES
   =================================== */

/* WPM App Hero Section */
.wpm-app-hero .hero-eyebrow {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.wpm-app-hero .hero-text {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* App Features Section */
.app-features-intro {
    text-align: center;
    font-size: 1.2rem;
    margin: 2rem auto 3rem;
    max-width: 800px;
    color: var(--text-dark);
    font-weight: 500;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.app-feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.app-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.app-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.app-feature-card .feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.app-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.app-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Dashboard Showcase */
.app-dashboard-showcase {
    margin: 3rem 0;
    text-align: center;
}

.dashboard-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.dashboard-caption {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Methodology Section */
.methodology-section {
    background: var(--light-bg);
    padding: 5rem 0;
    margin-top: 4rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.methodology-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.methodology-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.methodology-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.methodology-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.methodology-footer {
    text-align: center;
    margin-top: 3rem;
}

.methodology-tagline {
    font-size: 1.3rem;
    color: var(--text-dark);
}

/* Getting Started Easy Section */
.getting-started-easy-section {
    padding: 3rem 0 5rem 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
}

.getting-started-showcase {
    text-align: center;
    margin: 2rem auto 3rem;
}

.getting-started-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--white);
}

.step-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.step-number {
    color: #8EA52B;
    font-weight: 700;
}

.step-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
}

.benefits-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.benefits-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.benefit-item .benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-item .benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-platform-image {
    margin-top: 4rem;
    text-align: center;
}

.platform-showcase-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.platform-caption {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
}

/* Social Proof Section */
.social-proof-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.testimonial-quote .quote-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.highlight-quote {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem !important;
}

.cta-tagline {
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Features Table Section */
.features-table-wrapper {
    max-width: 1000px;
    margin: 2rem auto 0;
    overflow-x: auto;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.features-table thead {
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
}

.features-table thead th {
    padding: 1.5rem;
    text-align: left;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.features-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.features-table tbody tr:last-child {
    border-bottom: none;
}

.features-table tbody tr:hover {
    background: var(--light-bg);
    transform: scale(1.01);
}

.features-table tbody td {
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
}

.features-table tbody td:first-child {
    font-weight: 600;
    white-space: nowrap;
}

.features-table tbody td i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.features-table tbody td i.check-icon {
    color: #4CAF50;
    margin-right: 12px;
    font-size: 1.2rem;
}

.value-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8EA52B 0%, #A8C73B 100%);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 8px;
    letter-spacing: 0.5px;
}

/* Features Pricing CTA */
.features-pricing-cta {
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.pricing-box {
    margin-bottom: 2rem;
}

.pricing-label {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-amount .currency {
    font-size: 2.5rem;
    vertical-align: super;
}

.pricing-amount .period {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 48px;
    letter-spacing: 1px;
}

/* Responsive Design for WPM App Page */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding: 80px 0 60px;
    }

    .hero-container {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .wpm-app-hero .hero-eyebrow {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-text {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 0.95rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 100%;
    }

    /* Solution Section Mobile */
    .solution-section {
        padding: 1.5rem 0 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Dashboard Showcase Mobile */
    .app-dashboard-showcase {
        margin: 2rem 0;
    }

    .dashboard-image {
        border-radius: 8px;
    }

    .dashboard-caption {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Features Table Mobile Styles */
    .features-table-wrapper {
        box-shadow: none;
        border-radius: 0;
        margin: 1.5rem -1rem 0 -1rem;
    }

    .features-table {
        font-size: 0.85rem;
        display: block;
    }

    .features-table thead {
        display: none;
    }

    .features-table tbody {
        display: block;
    }

    .features-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 1rem;
        background: var(--white);
    }

    .features-table tbody td {
        display: block;
        padding: 0.5rem 0;
        border: none;
        font-size: 0.9rem;
    }

    .features-table tbody td:first-child {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        white-space: normal;
        min-width: auto;
    }

    .features-table tbody td:last-child {
        color: var(--text-light);
        line-height: 1.6;
    }

    .check-icon {
        font-size: 1.1rem !important;
    }

    .value-badge {
        font-size: 0.7rem;
        padding: 2px 8px;
        display: inline-block;
        margin-bottom: 0.25rem;
    }

    /* Pricing CTA Mobile */
    .features-pricing-cta {
        padding: 2rem 1rem;
        margin: 1.5rem 0 0 0;
        border-radius: 8px;
    }

    .pricing-label {
        font-size: 1.1rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-amount .currency {
        font-size: 1.75rem;
    }

    .pricing-amount .period {
        font-size: 1rem;
    }

    .pricing-subtext {
        font-size: 0.95rem;
    }

    .btn-large {
        font-size: 0.95rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 100%;
    }

    /* Getting Started Section Mobile */
    .getting-started-easy-section {
        padding: 2rem 0 3rem 0;
    }

    .getting-started-showcase {
        margin: 1.5rem 0 2rem;
    }

    .getting-started-image {
        border-radius: 8px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.75rem 1.25rem;
    }

    .step-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .step-icon-wrapper i {
        font-size: 1.75rem;
    }

    .step-title {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .step-number {
        display: block;
        margin-bottom: 0.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 2rem 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .cta-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* General Mobile Improvements */
    .container {
        padding: 0 1rem;
    }

    .app-features-grid,
    .methodology-grid,
    .benefits-visual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .app-feature-card,
    .methodology-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .methodology-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-quote .quote-text {
        font-size: 0.95rem;
    }

    .app-features-intro,
    .benefits-intro {
        font-size: 0.95rem;
    }

    .benefits-platform-image {
        margin-top: 2rem;
    }

    .platform-caption {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .platform-showcase-img {
        border-radius: 8px;
    }
}

/* Extra Small Mobile Optimization (phones < 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .pricing-amount .currency {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .features-table tbody tr {
        padding: 0.75rem;
    }

    .btn-primary,
    .btn-large {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
}

/* ===================================
   FUNCTIONAL PRACTICE ACCELERATOR PAGE
   =================================== */

/* Program Header */
.program-header {
    padding: 5rem 0;
    background: var(--light-bg);
}

.program-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.program-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.program-pitch {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.program-pitch p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.video-placeholder {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #f0f0f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Component Sections */
.component-section {
    padding: 2.5rem 0;
}

.component-alternate {
    background: var(--light-bg);
}

.component-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.feature-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.feature-heading {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.feature-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.why-matters {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
    padding: 1.25rem;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

.funnel-category {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

/* Terms Section */
.terms-section {
    padding: 4rem 0;
    background: var(--white);
}

.terms-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

.terms-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Responsive - Accelerator Page */
@media (max-width: 768px) {
    .program-header h2 {
        font-size: 2rem;
    }

    .program-price {
        font-size: 2rem;
    }

    .program-pitch {
        padding: 1.5rem;
    }

    .program-pitch p {
        font-size: 1rem;
    }

    .component-title {
        font-size: 1.8rem;
    }

    .feature-block {
        padding: 1.5rem;
    }

    .feature-heading {
        font-size: 1.3rem;
    }

    .funnel-category {
        font-size: 1.15rem;
    }
}

/* ================================
   Focus Area Pages Styles
   ================================ */

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.content-column h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-column p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.image-column {
    position: relative;
}

.sticky-image-wrapper {
    position: sticky;
    top: 100px;
}

.section-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Why Matters Section */
.why-matters-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.matters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.matter-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.matter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.matter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.matter-icon i {
    font-size: 2rem;
    color: var(--white);
}

.matter-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.matter-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Takeaways Section */
.takeaways-section {
    padding: 5rem 0;
    background: var(--white);
}

.takeaways-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.takeaways-list {
    list-style: none;
    padding: 0;
}

.takeaways-list li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
}

.takeaways-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.takeaways-list strong {
    color: var(--primary-color);
}

/* Differs/Comparison Section */
.differs-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-header {
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.comparison-header.functional {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.comparison-header.conventional {
    background: linear-gradient(135deg, #666 0%, #888 100%);
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
}

.comparison-list {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.comparison-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
}

.comparison-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.3rem;
}

.comparison-list li .fa-check-circle {
    color: var(--primary-color);
}

.comparison-list li .fa-times-circle {
    color: #999;
}

.differs-callout {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: var(--white);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.differs-callout p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Next Steps Section */
.next-steps-section {
    padding: 5rem 0;
    background: var(--white);
}

.next-steps-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 2rem auto 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.step-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.step-list li {
    font-size: 1rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.step-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Pillars Section */
.pillars-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.pillar-detail {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    align-items: start;
}

.pillar-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    flex-shrink: 0;
}

.pillar-detail-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pillar-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pillar-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.pillar-feature {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.pillar-feature h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pillar-feature h4 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.pillar-feature p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.pillar-cta {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.pillar-cta h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.pillar-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-outline {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 165, 43, 0.3);
}

/* Responsive Design for Focus Area Pages */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sticky-image-wrapper {
        position: relative;
        top: 0;
    }

    .matters-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pillar-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .pillar-badge {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 0 auto;
    }

    .pillar-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pillar-cta-buttons {
        flex-direction: column;
    }

    .btn-outline {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .content-column h2 {
        font-size: 1.8rem;
    }

    .content-column p {
        font-size: 1.05rem;
    }

    .matter-card {
        padding: 2rem;
    }

    .matter-icon {
        width: 60px;
        height: 60px;
    }

    .matter-icon i {
        font-size: 1.5rem;
    }

    .matter-card h3 {
        font-size: 1.3rem;
    }

    .takeaways-list li {
        font-size: 1.05rem;
        padding-left: 1.5rem;
    }

    .comparison-header h3 {
        font-size: 1.3rem;
    }

    .comparison-list {
        padding: 1.5rem;
    }

    .comparison-list li {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .differs-callout {
        padding: 2rem;
    }

    .differs-callout p {
        font-size: 1.05rem;
    }

    .step-card {
        padding: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-card h3 {
        font-size: 1.3rem;
    }

    .pillar-detail-content h3 {
        font-size: 1.6rem;
    }

    .pillar-intro {
        font-size: 1.05rem;
    }

    .pillar-feature h4 {
        font-size: 1.15rem;
    }

    .pillar-feature p {
        font-size: 1rem;
    }
}

/* ================================
   Focus Areas Page Styles
   ================================ */

/* Intro Section */
.focus-areas-intro {
    padding: 4rem 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Featured Focus Areas */
.featured-focus-areas {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.featured-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.featured-area-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.featured-area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.featured-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.featured-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.featured-area-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.featured-area-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-area-card:hover .card-cta {
    gap: 1rem;
}

.card-cta i {
    transition: transform 0.3s ease;
}

.featured-area-card:hover .card-cta i {
    transform: translateX(5px);
}

/* Additional Specialties */
.additional-specialties {
    padding: 5rem 0;
    background: var(--white);
}

.additional-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.additional-area-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.additional-area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #B9D84E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.area-icon i {
    font-size: 2rem;
    color: var(--white);
}

.additional-area-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.additional-area-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Why Specialty Matters */
.why-specialty-matters {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.specialty-matters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.specialty-matter-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    transition: all 0.3s ease;
}

.specialty-matter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.matter-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    flex-shrink: 0;
}

.matter-content {
    display: flex;
    flex-direction: column;
}

.matter-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.matter-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* How We Help Focus */
.how-we-help-focus {
    padding: 5rem 0;
    background: var(--white);
}

.help-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.help-method {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.help-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon i {
    font-size: 2rem;
    color: var(--white);
}

.help-method h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.help-method p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Responsive Design for Focus Areas Page */
@media (max-width: 1024px) {
    .featured-areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .additional-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .specialty-matters-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .help-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .intro-content p {
        font-size: 1.1rem;
    }

    .featured-area-card {
        padding: 2rem;
    }

    .featured-icon {
        width: 70px;
        height: 70px;
    }

    .featured-icon i {
        font-size: 2rem;
    }

    .featured-area-card h3 {
        font-size: 1.5rem;
    }

    .featured-area-card p {
        font-size: 1.05rem;
    }

    .additional-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .additional-area-card {
        padding: 2rem;
    }

    .area-icon {
        width: 60px;
        height: 60px;
    }

    .area-icon i {
        font-size: 1.5rem;
    }

    .additional-area-card h3 {
        font-size: 1.3rem;
    }

    .specialty-matter-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .matter-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 0 auto;
    }

    .matter-content h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .matter-content p {
        font-size: 1rem;
        text-align: center;
    }

    .help-methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .help-method {
        padding: 2rem;
    }

    .method-icon {
        width: 70px;
        height: 70px;
    }

    .method-icon i {
        font-size: 1.8rem;
    }

    .help-method h3 {
        font-size: 1.3rem;
    }

    .help-method p {
        font-size: 1rem;
    }
}

/* Additional styling for linked additional area cards */
.additional-area-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

a.additional-area-card .card-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-light);
}

a.additional-area-card:hover .card-cta i {
    transform: translateX(5px);
}


/* Pillar Images */
.pillar-image-container {
    width: 100%;
    margin: 1.5rem 0 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pillar-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .pillar-image-container {
        margin: 1rem 0 1.5rem 0;
    }
}

