/* ===================================
   Bean Guru Website Styles
   Single consolidated stylesheet
   =================================== */

/* ===================================
   Self-hosted Poppins Font
   =================================== */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===================================
   1. CSS Variables
   =================================== */
:root {
    --primary-color: #2b7bb9;
    --primary-dark: #1e5a8a;
    --primary-light: #5ba3d4;
    --primary-lighter: #8bc4e8;
    --primary-bg: #e8f4fc;

    --text-color: #3c3445;
    --text-light: #6b6574;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2d3748;

    --border-color: #e2e8f0;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --transition: all 0.3s ease;

    --container-max: 1200px;
    --header-height: 80px;
}

/* ===================================
   2. Reset & Base
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   3. Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* ===================================
   4. Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

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

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

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

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

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

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

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
}

/* ===================================
   5. Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.logo-highlight {
    color: var(--primary-color);
}

/* Navigation */
.nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.phone-link:hover {
    color: var(--primary-color);
}

.phone-icon {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-white);
    padding: 20px;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

.mobile-nav-link.btn {
    text-align: center;
    margin-top: 16px;
    border-bottom: none;
}

/* Landing Page Header */
.landing-page {
    padding-top: 0;
}

.landing-header {
    background-color: var(--bg-white);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.landing-header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.header-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.header-phone {
    font-weight: 600;
    color: var(--primary-color);
}

.header-phone:hover {
    color: var(--primary-dark);
}

.calendly-inline-widget{
  height: 1000px !important;
}
.calendly-inline-widget iframe{
  height: 100% !important;
}

@media (max-width: 768px){
  .calendly-inline-widget{
    height: 92vh !important;
    min-height: 780px !important;
  }
}


/* ===================================
   6. Footer
   =================================== */
.footer {
    padding: 60px 0 24px;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    color: var(--text-white);
}

.footer-tagline {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-nav-column h4 {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

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

/* Landing Footer */
.landing-footer {
    padding: 40px 0 24px;
    background-color: var(--bg-dark);
}

.landing-footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-footer .footer-brand .logo-text {
    color: var(--text-white);
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge svg {
    width: 80px;
    height: 40px;
}

.landing-footer .badge img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
}

.landing-footer .footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.landing-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* ===================================
   7. Shared Components
   =================================== */

/* Page Hero (used on About, For Accountants, Contact) */
.page-hero {
    padding: 110px 0 40px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-bg) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 16px;
}

.page-hero .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Testimonial Card */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.testimonial-featured {
    background-color: var(--primary-bg);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars svg {
    width: 30px;
    height: 30px;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    margin-top: 20px;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.author-company {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.author-industry {
    color: var(--text-light);
    font-weight: 400;
}

/* Check Icon */
.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Link Arrow */
.link-arrow {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-color);
    font-weight: 500;
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Phone Inline */
.phone-inline {
    color: var(--primary-color);
    font-weight: 600;
}

.phone-inline:hover {
    text-decoration: underline;
}

/* ===================================
   8. Form Styles
   =================================== */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.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(43, 123, 185, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233c3445' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.required {
    color: #dc3545;
}

.optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.85em;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 24px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    min-width: 150px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Discovery Form (Landing Page) */
.discovery-form {
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===================================
   9. Home Page Styles
   =================================== */

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-bg) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-link {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.hero-link a {
    color: var(--primary-color);
    font-weight: 500;
}

.hero-link a:hover {
    text-decoration: underline;
}

.hero-photo {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
}

.hero-photo img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: rgba(35, 115, 190, 0.10);
}

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

.hero-graphic,
.graphic-placeholder {
    max-width: 400px;
    width: 100%;
}

/* Services Strip */
.services-strip {
    padding: 40px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-strip-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.services-strip-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
    margin: 0;
}

.services-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: var(--border-color);
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.services-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.services-strip-item:hover {
    background-color: var(--primary-bg);
}

.services-strip-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.services-strip-item span {
    flex: 1;
}

.services-strip-arrow {
    width: 16px;
    height: 16px;
    stroke: var(--text-light);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .services-strip-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

@media (max-width: 600px) {
    .services-strip-grid {
        grid-template-columns: 1fr;
    }
}

/* Logo Slider */
.logo-slider-section {
    padding: 40px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.logo-slider-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 40px;
}

.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.logo-slider-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-slider-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pain Points Section */
.pain-points-section {
    padding: 20px 0 30px;
    background-color: var(--bg-light);
}

.pain-points-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-bg);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pain-points-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 50px;
}

.pain-points-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.pain-points-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pain-point-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    width: 100%;
}

.pain-point-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.pain-point-card.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
}

.pain-point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-point-card.active .pain-point-icon {
    background-color: var(--primary-bg);
}

.pain-point-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
}

.pain-point-card.active .pain-point-icon svg {
    stroke: var(--primary-color);
}

.pain-point-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.pain-point-card:not(.active) .pain-point-text h3 {
    color: var(--text-light);
}

.pain-point-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.pain-point-card:not(.active) .pain-point-text p {
    color: var(--text-light);
    opacity: 0.7;
}

.pain-points-image {
    flex: 1;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.pain-points-image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-point-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pain-point-img.active {
    opacity: 1;
}

@media (max-width: 900px) {
    .pain-points-content {
        flex-direction: column;
    }

    .pain-points-cards {
        max-width: 100%;
    }

    .pain-points-image {
        min-height: 300px;
        width: 100%;
    }
}

.pain-points-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-color);
    font-style: italic;
}

/* Clarity Call Section */
.clarity-call-section {
    padding: 30px 0;
    background-color: var(--bg-white);
}

.clarity-call-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.clarity-call-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.clarity-call-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.clarity-call-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.clarity-step-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.clarity-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50%;
    margin-bottom: 16px;
}

.clarity-step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.clarity-step-image {
    margin-bottom: 20px;
}

.clarity-step-image img {
    max-width: 150px;
    height: auto;
}

.clarity-step-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.clarity-call-footer {
    text-align: center;
}

.clarity-call-tagline {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 24px;
}

.clarity-call-phone {
    margin-top: 16px;
    color: var(--text-light);
}

.clarity-call-phone a {
    color: var(--primary-color);
    font-weight: 500;
}

.clarity-call-phone a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .clarity-call-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.challenge-content {
    display: grid;
    gap: 24px;
}

.challenge-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.challenge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.challenge-card p {
    margin: 0;
    color: var(--text-color);
}

/* Solutions Section */
.solutions-section {
    padding: 30px 0;
    background-color: var(--bg-white);
}

.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.solutions-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.solutions-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.solutions-checklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.solutions-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

.solutions-checklist svg {
    width: 20px;
    height: 20px;
    stroke: #d4a053;
    flex-shrink: 0;
}

.solutions-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.solution-card-image {
    height: 180px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.solution-card-image-1 {
    background: linear-gradient(135deg, #e8e4f4 0%, #d4e8f0 100%);
}

.solution-card-image-2 {
    background: linear-gradient(135deg, #f0e8d4 0%, #e4d8c8 100%);
}

.solution-card-image-3 {
    background: linear-gradient(135deg, #e4f0e8 0%, #d8e8dc 100%);
}

.solution-card-image img {
    max-width: 80%;
    max-height: 140px;
    object-fit: contain;
}

.solution-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.solutions-cta {
    text-align: center;
    margin-top: 30px;
}

.solutions-cta-tagline {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 1rem;
}

/* Services Overview Section */
.services-overview-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #d4e8f4 100%);
}

.services-overview-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.services-overview-tag {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.services-overview-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-overview-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.services-overview-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.services-overview-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.services-overview-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
}

.services-overview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.services-overview-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.services-overview-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.services-overview-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.services-overview-link:hover {
    text-decoration: underline;
}

.services-overview-cta {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.services-overview-cta h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.services-overview-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.services-overview-cta-or {
    color: var(--text-light);
}

.services-overview-cta-or a {
    color: var(--primary-color);
    font-weight: 500;
}

.services-overview-cta-or a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust-section {
    background-color: #f8f9fa;
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 50px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.trust-subheading {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.trust-list svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.trust-badges {
    flex: 1;
    display: flex;
    justify-content: center;
}

.trust-badges-row {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trust-badge img {
    height: 95px;
    object-fit: contain;
}

.trust-badge-caption {
    margin: 10px 0 0;
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .trust-content {
        flex-direction: column;
        padding: 40px 30px;
    }

    .trust-badges-row {
        justify-content: center;
    }
}

/* Service Page Styles */
.service-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-bg) 100%);
}

.service-hero-content {
    max-width: 700px;
}

.service-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.service-hero-link {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-hero-link a {
    color: var(--primary-color);
    font-weight: 500;
}

.service-hero-link a:hover {
    text-decoration: underline;
}

.service-problem {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.service-problem-content {
    max-width: 700px;
}

.service-problem h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-problem-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 12px;
}

.service-problem p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-included {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.service-included h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-color);
}

.service-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
}

.service-included-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.service-included-item span {
    font-size: 1rem;
    color: var(--text-color);
}

.service-audience {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.service-audience h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-color);
}

.service-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-audience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.service-audience-item svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.service-audience-item span {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.service-trust {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.service-trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-trust-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

.service-trust-item span {
    font-size: 0.95rem;
    color: var(--text-color);
}

.service-final-cta {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.service-final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.service-final-cta h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-color);
}

.service-final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.service-final-cta-link {
    color: var(--text-light);
}

.service-final-cta-link a {
    color: var(--primary-color);
    font-weight: 500;
}

.service-final-cta-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .service-included-grid {
        grid-template-columns: 1fr;
    }

    .service-audience-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .service-trust-items {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .service-hero h1 {
        font-size: 1.75rem;
    }
}

/* Legacy Service Page Content */
.service-content {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.service-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .solutions-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .solutions-header h2 {
        font-size: 1.75rem;
    }

    .solutions-checklist li {
        text-align: left;
    }
}

/* About Section (Home) */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h2 {
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-light);
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

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

.about-graphic {
    max-width: 300px;
    width: 100%;
}

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

.services-grid {
    display: grid;
    gap: 24px;
}

.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 32px 24px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 30px 0 40px;
    background-color: var(--bg-white);
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.final-cta-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.final-cta-link {
    color: var(--text-light);
    font-size: 1rem;
}

.final-cta-link a {
    color: var(--primary-color);
    font-weight: 500;
}

.final-cta-link a:hover {
    text-decoration: underline;
}

/* Contact Section (Home) */
.contact-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-content h2 {
    margin-bottom: 12px;
}

.contact-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
}

.contact-item svg {
    width: 24px;
    height: 24px;
}

.contact-item:hover {
    color: var(--primary-dark);
}

/* ===================================
   10. Landing Page Styles
   =================================== */

/* Landing Hero */
.landing-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-bg) 100%);
}

.landing-hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

.landing-hero-text h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.hero-credentials {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-services {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.landing-hero-image {
    max-width: 400px;
    width: 100%;
}

/* Value Props Section */
.value-props {
    padding: 40px 0;
    background-color: var(--bg-white);
}

.value-props-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.value-props-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Landing Testimonials */
.landing-testimonials {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    gap: 24px;
}

.testimonial-item {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-item .testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-item .testimonial-stars svg {
    width: 20px;
    height: 20px;
}

.testimonial-item blockquote {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-item .testimonial-author {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Landing Services */
.landing-services {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.services-grid-landing {
    display: grid;
    gap: 24px;
}

.service-item {
    text-align: center;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon-landing {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.service-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Market Position */
.market-position {
    padding: 60px 0;
    background-color: var(--primary-bg);
    text-align: center;
}

.market-position h2 {
    margin-bottom: 16px;
}

.market-position p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-choose-text h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    line-height: 1.4;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.why-choose-image {
    display: flex;
    justify-content: center;
}

.why-choose-image svg {
    max-width: 300px;
    width: 100%;
}

/* Contact Form Section (Landing) */
/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    flex-shrink: 0;
}

details[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 24px 20px 0;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.contact-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form-text {
    text-align: center;
}

.contact-form-text h2 {
    color: var(--text-white);
}

.form-subheadline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.form-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    width: 100%;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
}

/* Landing Page Full Hero (uses homepage hero styles) */
.landing-hero-full {
    padding-top: calc(var(--header-height) + 40px);
}

.landing-page .hero {
    padding-top: 40px;
}

/* Landing Services Section (no links) */
.landing-services-section {
    background-color: var(--bg-light);
}

.landing-services-section .services-overview-card {
    cursor: default;
}

.landing-services-section .services-overview-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.landing-services-section .services-overview-link {
    display: none;
}

/* Landing Trust Bar */
.landing-trust-bar {
    padding: 24px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.landing-trust-bar-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
}

.landing-trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    color: var(--text-color);
    font-weight: 500;
}

.landing-trust-bar-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .landing-trust-bar-items {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .landing-trust-bar-item {
        font-size: 0.9rem;
    }
}

/* ===================================
   Thank You Page Styles
   =================================== */
.thankyou-section {
    padding: 100px 0;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.thankyou-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.thankyou-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.thankyou-cta {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   11. About Page Styles
   =================================== */

/* Hook Section */
.hook-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.hook-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hook-content h2 {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 500;
}

.hook-emphasis {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background-color: var(--primary-bg);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

.guarantee-text h2 {
    margin-bottom: 16px;
}

.guarantee-text p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 12px;
}

.guarantee-badge {
    width: 150px;
    height: 150px;
}

/* Standards Section */
.standards-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.standards-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.standard-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.standard-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.standard-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.standards-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-image {
    display: flex;
    justify-content: center;
}

.story-image-placeholder {
    width: 250px;
    height: 250px;
}

.story-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.story-text h2 {
    margin-bottom: 16px;
}

.story-text p {
    color: var(--text-light);
}

.story-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    padding: 16px 24px;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-white);
    margin: 24px 0;
}

.story-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.story-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.story-benefits li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Values Section */
.values-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    gap: 24px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.value-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

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

.team-grid {
    display: grid;
    gap: 40px;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.member-info {
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.member-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 16px;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* About Testimonial */
.about-testimonial {
    padding: 60px 0;
    background-color: var(--bg-white);
}

/* ===================================
   12. For Accountants Page Styles
   =================================== */

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro-lead {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.intro-content p {
    color: var(--text-light);
}

/* Challenges Section */
.challenges-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.challenges-grid {
    display: grid;
    gap: 24px;
}

.challenge-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.challenge-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.challenge-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.challenge-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.challenge-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Promise Section */
.promise-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    gap: 24px;
}

.benefit-item {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.benefit-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Differentiator Section */
.differentiator-section {
    padding: 60px 0;
    background-color: var(--primary-bg);
}

.differentiator-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

.differentiator-text h2 {
    margin-bottom: 16px;
}

.differentiator-text p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 12px;
}

.differentiator-image {
    max-width: 300px;
    width: 100%;
}

/* Getting Started Section */
.getting-started-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.steps-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.step-item {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.step-item p {
    margin: 0;
    color: var(--text-light);
}

.steps-cta {
    text-align: center;
}

/* ===================================
   13. Contact Page Styles
   =================================== */

/* Contact Introduction */
.contact-intro {
    padding: 40px 0;
    background-color: var(--bg-white);
}

.contact-intro .intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.alt-contact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Getting Started (Contact) */
.getting-started {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 32px;
    color: var(--text-light);
}

/* ===================================
   14. Responsive Styles
   =================================== */

/* Small screens (640px+) */
@media (min-width: 640px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .landing-header-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

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

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

    .hook-content h2 {
        font-size: 1.75rem;
    }

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

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

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

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

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .contact-form-wrapper {
        padding: 40px;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .hero {
        padding: 110px 0 40px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .page-hero h1 {
        font-size: 2.75rem;
    }

    .hero {
        padding: 110px 0 40px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

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

    .hero-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .hero-text {
        flex: 1;
        text-align: left;
        min-width: 0;
    }

    .hero-image {
        flex: 1;
        min-width: 0;
    }

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

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-text,
    .about-image {
        flex: 1;
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .landing-hero {
        padding: 80px 0 100px;
    }

    .landing-hero-content {
        flex-direction: row;
        text-align: left;
    }

    .landing-hero-text {
        flex: 1;
        text-align: left;
    }

    .landing-hero-image {
        flex: 1;
    }

    .landing-hero-text h1 {
        font-size: 2.75rem;
    }

    .why-choose-content {
        flex-direction: row;
        align-items: center;
    }

    .why-choose-text {
        flex: 1;
    }

    .why-choose-image {
        flex: 1;
    }

    .why-choose-text h2 {
        font-size: 1.75rem;
    }

    .contact-form-content {
        flex-direction: row;
        align-items: center;
    }

    .contact-form-text {
        flex: 1;
        text-align: left;
    }

    .contact-form-text .form-description {
        margin: 0;
    }

    .contact-form-wrapper {
        flex: 1;
        margin: 0;
    }

    .landing-footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .guarantee-content {
        flex-direction: row;
        text-align: left;
    }

    .guarantee-text {
        flex: 1;
        text-align: left;
    }

    .guarantee-text p {
        margin: 0 0 12px 0;
    }

    .guarantee-badge {
        flex-shrink: 0;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-image {
        flex-shrink: 0;
    }

    .story-text {
        flex: 1;
    }

    .team-member {
        flex-direction: row;
        text-align: left;
    }

    .member-image {
        margin: 0;
        flex-shrink: 0;
    }

    .member-info {
        text-align: left;
    }

    .differentiator-content {
        flex-direction: row;
        text-align: left;
    }

    .differentiator-text {
        flex: 1;
        text-align: left;
    }

    .differentiator-text p {
        margin: 0 0 12px 0;
    }

    .differentiator-image {
        flex-shrink: 0;
    }

    .checkbox-group {
        gap: 24px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .nav {
        display: block;
    }

    .phone-link {
        display: flex;
    }

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

    .mobile-nav {
        display: none;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 3.25rem;
    }

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

    .landing-hero-text h1 {
        font-size: 3rem;
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-choose-text h2 {
        font-size: 2rem;
    }

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

    .standards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(5, 1fr);
    }

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

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .member-image {
        margin: 0 auto;
    }

    .member-info {
        text-align: center;
    }

    .challenges-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* ===================================
   Rescue Landing Page Styles
   =================================== */

/* Rescue Hero */
.rescue-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-bg) 100%);
    text-align: center;
}

.rescue-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.rescue-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.rescue-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.rescue-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.rescue-hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rescue-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.rescue-trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
}

/* Rescue Problem Section */
.rescue-problem {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.rescue-problem-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.rescue-problem h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.rescue-problem p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.rescue-problem-reassurance {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--primary-color) !important;
    margin-top: 1.5rem;
}

/* Rescue Solution Section */
.rescue-solution {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.rescue-solution h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.rescue-solution-grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rescue-solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.rescue-solution-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.rescue-solution-item span {
    font-size: 1.05rem;
}

/* Rescue Process Section */
.rescue-process {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.rescue-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.rescue-process-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rescue-process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.rescue-step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.rescue-step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.rescue-step-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Rescue Audience Section */
.rescue-audience {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.rescue-audience h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.rescue-audience-grid {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.rescue-audience-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.rescue-audience-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Rescue Trust Section */
.rescue-trust-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.rescue-trust-text h2 {
    margin-bottom: 2rem;
}

.rescue-trust-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rescue-trust-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rescue-trust-list-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.rescue-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.rescue-trust-logos .trust-logo {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.rescue-trust-logos .trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Rescue Testimonial Section */
.rescue-testimonial {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.rescue-testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.rescue-testimonial .quote-icon {
    width: 48px;
    height: 48px;
    fill: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.rescue-testimonial blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.rescue-testimonial cite {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Rescue Final CTA */
.rescue-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.rescue-final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.rescue-final-cta h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.rescue-final-cta > p,
.rescue-final-cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.rescue-final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.rescue-final-reassurance {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Rescue Page Responsive */
@media (max-width: 768px) {
    .rescue-hero {
        padding: 120px 0 60px;
    }

    .rescue-hero h1 {
        font-size: 2rem;
    }

    .rescue-hero-subtitle {
        font-size: 1.1rem;
    }

    .rescue-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .rescue-hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .rescue-audience-grid {
        grid-template-columns: 1fr;
    }

    .rescue-trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .rescue-trust-list-item {
        justify-content: center;
    }

    .rescue-testimonial blockquote {
        font-size: 1.25rem;
    }

    .rescue-final-cta h2 {
        font-size: 1.75rem;
    }

    .rescue-final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   Pre-header
   =================================== */
.pre-header {
    background-color: var(--primary-color);
    text-align: center;
    padding: 8px 0;
}

.pre-header p {
    margin: 0;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===================================
   Contact Form Photo
   =================================== */
.contact-form-photo {
    margin-bottom: 20px;
}

.contact-form-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.pricing-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.pricing-content h2 {
    margin-bottom: 16px;
}

.pricing-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.pricing-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
}

.pricing-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.pricing-points svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.pricing-footer {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Switching Section
   =================================== */
.switching-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.switching-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.switching-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.switching-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.switching-step p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-color);
}

.switching-footer {
    text-align: center;
    margin-top: 36px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
}

.switching-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.switching-cta-or {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Blog Styles
   =================================== */

/* Blog Index — Hero */
.blog-hero {
    padding: 120px 0 64px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #ffffff 100%);
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 16px;
}

.blog-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Index — Grid */
.blog-section {
    padding: 64px 0 80px;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Blog Card */
.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.blog-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    background: var(--primary-bg);
    padding: 4px 10px;
    border-radius: 999px;
}

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

.blog-card h2 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-color);
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

.blog-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Blog Post — Layout */
.post-hero {
    padding: 120px 0 48px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #ffffff 100%);
}

.post-hero-inner {
    max-width: 780px;
    margin: 0 auto;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.post-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    background: var(--primary-bg);
    padding: 4px 10px;
    border-radius: 999px;
}

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

.post-read-time {
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    color: var(--text-color);
    margin-bottom: 20px;
}

.post-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.post-author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

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

/* Blog Post — Body */
.post-body-section {
    padding: 56px 0 80px;
}

.post-body-inner {
    max-width: 780px;
    margin: 0 auto;
}

.post-body h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 40px 0 16px;
}

.post-body h3 {
    font-size: 1.15rem;
    color: var(--text-color);
    margin: 28px 0 12px;
}

.post-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.post-body ul, .post-body ol {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.post-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 8px;
}

.post-body strong {
    font-weight: 600;
    color: var(--text-color);
}

/* In-content links must be visibly distinct from body text */
.post-body a:not(.btn),
.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-body a:not(.btn):hover,
.faq-answer a:hover {
    color: var(--primary-dark);
}

.post-callout {
    background: var(--primary-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 32px 0;
}

.post-callout p {
    margin-bottom: 0;
    color: var(--text-color);
    font-weight: 500;
}

/* Post CTA Box */
.post-cta-box {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-top: 56px;
}

.post-cta-box h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.post-cta-box p {
    color: #a0aec0;
    margin-bottom: 24px;
}

.post-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Back to blog */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.back-to-blog:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Blog footer location */
.footer-location {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .blog-hero h1 { font-size: 3rem; }
    .post-hero h1 { font-size: 2.8rem; }
}

/* ===================================
   CTA Bridge (after testimonials)
   =================================== */

.cta-bridge {
    padding: 40px 0;
    background-color: var(--primary-bg);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-bridge-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
}

.cta-bridge-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-bridge-or {
    color: var(--text-light);
}

/* ===================================
   Switching Section CTA Box
   =================================== */

.switching-cta-box {
    margin-top: 36px;
    background-color: var(--primary-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.switching-cta-prompt {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* ===================================
   Sticky Mobile CTA Bar
   =================================== */

.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    padding: 12px 16px;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border-color);
}

.sticky-cta-call {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    white-space: nowrap;
}

.sticky-cta-book {
    font-size: 0.9rem;
    padding: 10px 20px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
    }
}

/* ===================================
   Service Card — reduced padding
   =================================== */

.services-overview-card {
    padding: 20px;
}

.service-card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.service-card-link:hover {
    text-decoration: underline;
}

/* ===================================
   Rescue Packages — Hero with Photo
   =================================== */

.rescue-hero-with-image {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f3fc 100%);
    padding: 120px 0 0;
    overflow: hidden;
}

.rescue-hero-layout {
    display: flex;
    align-items: flex-end;
    gap: 48px;
}

.rescue-hero-text {
    flex: 1;
    padding-bottom: 60px;
}

.rescue-hero-text h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 28px;
}

.service-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.service-hero-link {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.service-hero-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.rescue-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.rescue-hero-photo {
    flex: 0 0 380px;
    align-self: flex-end;
}

.rescue-hero-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    object-fit: cover;
    object-position: top center;
}

@media (max-width: 900px) {
    .rescue-hero-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .rescue-hero-text {
        padding-bottom: 0;
    }
    .rescue-hero-photo {
        flex: none;
        max-width: 280px;
        align-self: center;
    }
    .rescue-hero-with-image {
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .rescue-hero-photo {
        max-width: 220px;
    }
}

/* ===================================
   Rescue Packages — New Client Offer
   =================================== */

.rescue-offer {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f3fc 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.rescue-offer-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.rescue-offer-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.rescue-offer-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.rescue-offer-intro {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.rescue-offer-tiers {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.rescue-offer-tier {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    padding: 32px 28px;
    flex: 1;
    min-width: 260px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rescue-offer-tier--discount {
    border-color: var(--primary-color);
    position: relative;
}

.rescue-offer-tier-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--primary-color);
}

.rescue-offer-tier-headline {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.25;
}

.rescue-offer-tier-detail {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.rescue-offer-tier-cta {
    margin-top: 8px;
}

.rescue-offer-tier-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.rescue-offer-conditions {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .rescue-offer-tiers {
        flex-direction: column;
        align-items: stretch;
    }
    .rescue-offer-tier {
        max-width: 100%;
    }
    .rescue-offer-header h2 {
        font-size: 1.4rem;
    }
}

/* ===================================
   Port Macquarie Landing Page — Local Sections
   =================================== */

/* 4-column testimonials grid (2x2 on desktop) */
.testimonials-grid-4 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .testimonials-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Community Section */
.community-section {
    background-color: var(--primary-bg);
    padding: 80px 0;
}

.community-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-color);
}

.community-content {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.community-content p {
    margin-bottom: 1rem;
}

.community-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.community-tile {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.community-tile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.community-tile-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    background-color: var(--primary-bg);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: var(--primary-color);
}

.community-tile-label {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.community-tile-label strong {
    display: block;
    margin-top: 4px;
    font-weight: 600;
    color: var(--text-color);
}

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

@media (max-width: 500px) {
    .community-tiles {
        grid-template-columns: 1fr;
    }
    .community-heading {
        font-size: 1.6rem;
    }
}

/* Service Area Section */
.service-area-section {
    background-color: var(--bg-white);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.service-area-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.service-area-content h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-area-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}
