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

:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --secondary-color: #333333;
    --accent-color: #000000;
    --text-dark: #000000;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-dark: #000000;
    --border-color: #e5e5e5;
    --gradient-1: linear-gradient(135deg, #000000 0%, #333333 100%);
    --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    /* Brand Colors */
    --brand-green: #065a45;
    --brand-blue: #0189b0;
    --brand-green-dark: #043d2f;
    --brand-blue-dark: #016a8a;
    --brand-green-light: #0a7a5d;
    --brand-blue-light: #02a8d1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Wrapper for main content so overflow-x doesn't break fixed navbar on mobile */
.page-content {
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--border-color);
    overflow: visible;
    /* Keep fixed on mobile (iOS Safari fix) */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
    letter-spacing: -0.02em;
    position: relative;
}

.logo-icon {
    font-size: 1.75rem;
    transition: var(--transition-fast);
}

.logo img,
.logo-img {
    height: calc(120% + 10px);
    width: auto;
    transition: var(--transition-fast);
    display: block;
    object-fit: contain;
    position: absolute;
    top: 0;
}

.logo:hover img {
    transform: translateY(-2px);
}

.logo:hover .logo-icon {
    transform: translateY(-2px);
}

.logo-text {
    color: var(--text-dark);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9375rem;
    position: relative;
    transition: var(--transition-fast);
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--bg-white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.water-animation {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
    animation: waterFlow 30s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes waterFlow {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-40%, -40%) rotate(180deg); }
}

.hero-content {
    text-align: center;
    color: var(--text-dark);
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.hero-title-line {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 0.15em;
    margin-bottom: 0.15em;
}

.hero-title-line:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hero-badge-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.hero-badge-link:hover {
    opacity: 0.9;
}

.gradient-text {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-group-inline {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
    box-shadow: none;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 90, 69, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
    font-weight: 500;
    letter-spacing: -0.01em;
}

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

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    display: block;
    text-decoration: none;
}

.mouse {
    width: 50px;
    height: 50px;
    position: relative;
    opacity: 0.9;
    cursor: pointer;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--text-dark);
}

.mouse:hover {
    opacity: 1;
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: var(--bg-white);
}

.mouse::before {
    content: '↑';
    font-size: 2.5rem;
    color: var(--text-dark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: arrowBounce 2s infinite;
    font-weight: 700;
    line-height: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-intro-block {
    margin-bottom: 1.5rem;
}

.services-intro-block h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.services-intro-block p,
.services-intro-notes p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-intro-notes {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.services-intro-notes p {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

/* Pricing table – service package matrix (visually engaging + responsive) */
.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 4rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(6, 90, 69, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.pricing-table-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 24px;
    background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.pricing-table-wrapper.scrollable::after {
    opacity: 1;
}

.pricing-table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9375rem;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    vertical-align: middle;
}

/* Sticky first column (service names) */
.pricing-table thead th:first-child,
.pricing-table tbody th {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
}

.pricing-table thead th:first-child {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(6, 90, 69, 0.06) 100%);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.8125rem;
    border-radius: 20px 0 0 0;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody th {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-white);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:hover th {
    background: rgba(6, 90, 69, 0.05);
}

.pricing-table-service-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}

.pricing-table-service-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.pricing-table tbody tr:last-child th {
    border-bottom: none;
    border-radius: 0 0 0 20px;
}

/* Package column headers – gradient, distinct */
.pricing-table thead th:not(:first-child) {
    background: linear-gradient(180deg, var(--brand-green) 0%, rgba(6, 90, 69, 0.92) 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 140px;
}

.pricing-table thead th:nth-child(2) { border-radius: 0 0 0 0; }
.pricing-table thead th:last-child {
    border-right: none;
    border-radius: 0 20px 0 0;
}

/* Alternating column tint for package columns */
.pricing-table tbody td:nth-child(2) { background: rgba(6, 90, 69, 0.02); }
.pricing-table tbody td:nth-child(3) { background: var(--bg-white); }
.pricing-table tbody td:nth-child(4) { background: rgba(6, 90, 69, 0.03); }
.pricing-table tbody td:nth-child(5) { background: rgba(6, 90, 69, 0.06); }

/* Package description row */
.pricing-table-descriptions th {
    background: var(--bg-light);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-table-descriptions td {
    background: rgba(6, 90, 69, 0.05);
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.45;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-table-descriptions td:last-child {
    border-right: none;
}

/* Cell value badges (Included, Custom, etc.) */
.pricing-table tbody td.cell-included {
    color: var(--brand-green);
    font-weight: 600;
}

.pricing-table tbody td.cell-included::before {
    content: '✓ ';
    font-weight: 700;
}

.pricing-table tbody td.cell-custom {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-table tbody td.cell-guided {
    color: var(--text-dark);
}

.pricing-table tbody td.cell-additional,
.pricing-table tbody td.cell-limited {
    color: var(--text-light);
}

/* Pricing row */
.pricing-table-pricing-row th {
    font-weight: 700;
    background: var(--bg-light);
}

.pricing-table-pricing-row td {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.pricing-table-pricing-row td.cell-price {
    color: var(--brand-green);
}

.pricing-table-pricing-row td.cell-custom {
    color: var(--primary-color);
}

/* Data cells */
.pricing-table tbody td {
    color: var(--text-dark);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody td:last-child {
    border-right: none;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:last-child td:nth-child(2) { border-radius: 0 0 0 0; }
.pricing-table tbody tr:last-child td:last-child { border-radius: 0 0 20px 0; }

/* Row hover */
.pricing-table tbody tr:hover td {
    filter: brightness(0.98);
}

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

/* Responsive: tighter padding, hide or shrink descriptions on small screens */
@media (max-width: 992px) {
    .pricing-table th,
    .pricing-table td {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    .pricing-table thead th:not(:first-child) {
        font-size: 0.9375rem;
        min-width: 120px;
    }
    .pricing-table {
        min-width: 640px;
    }
}

@media (max-width: 768px) {
    .pricing-table-wrapper {
        border-radius: 12px;
        margin-bottom: 3rem;
    }
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.75rem;
        font-size: 0.8125rem;
    }
    .pricing-table thead th:first-child,
    .pricing-table thead th:last-child {
        border-radius: 12px 0 0 0;
    }
    .pricing-table thead th:first-child {
        border-radius: 12px 0 0 0;
    }
    .pricing-table thead th:not(:first-child) {
        font-size: 0.8125rem;
        min-width: 100px;
    }
    .pricing-table-descriptions td {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    .pricing-table tbody tr:last-child th {
        border-radius: 0 0 0 12px;
    }
    .pricing-table tbody tr:last-child td:last-child {
        border-radius: 0 0 12px 0;
    }
    .pricing-table {
        min-width: 560px;
    }
}

@media (max-width: 480px) {
    .pricing-table thead th:not(:first-child) {
        min-width: 88px;
    }
    .pricing-table {
        min-width: 480px;
    }
}

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

.services-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.services-category .category-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
    border-radius: 2px;
}

.services-list-intro {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    text-align: center;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: none;
    transition: var(--transition-fast);
    text-align: left;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition-fast);
}

.service-icon-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.service-card:hover .service-icon,
.service-card:hover .service-icon-img {
    transform: scale(1.05);
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 1s;
}

.service-card:nth-child(4) .service-icon {
    animation-delay: 1.5s;
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-card .service-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-blue);
    letter-spacing: -0.02em;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.benefit-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(1, 137, 176, 0.1);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-blue);
    border: 1px solid rgba(1, 137, 176, 0.2);
}

.service-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9375rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.service-link {
    color: var(--brand-blue);
}

.service-link:hover {
    gap: 0.75rem;
    border-bottom-color: var(--brand-blue);
    color: var(--brand-blue-dark);
}

/* Features Section */
.features {
    background: var(--bg-white);
    padding: 8rem 0;
}

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

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.03em;
    opacity: 0.9;
}

.feature-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.features-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--brand-blue);
    padding: 3.5rem 3rem;
    border-radius: 0;
    box-shadow: none;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--brand-blue);
}

.stat {
    margin-bottom: 2rem;
    text-align: center;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 0.5rem;
}

.stat-value .stat-number {
    margin-bottom: 0;
}

.stat-suffix {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

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

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

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

/* Contact Section */
.contact {
    background: var(--bg-white);
    padding: 8rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-icon-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--brand-green);
    border-radius: 8px;
    padding: 12px;
}

.contact-icon-svg {
    width: 100%;
    height: 100%;
    color: white;
    transition: var(--transition-fast);
}

.contact-item:hover .contact-icon-svg {
    transform: scale(1.1);
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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


.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: transparent;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--text-dark);
    border-bottom-width: 2px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

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

/* Footer */
.footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-section ul li a:hover {
    color: var(--text-dark);
}

#footer-services {
    column-count: 2;
    column-gap: 1.5rem;
}

#footer-services li {
    break-inside: avoid;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-lighter);
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transform: translateX(-100%) translateZ(0);
        -webkit-transform: translateX(-100%) translateZ(0);
        transition: var(--transition);
        gap: 1rem;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0) translateZ(0);
        -webkit-transform: translateX(0) translateZ(0);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-stats {
        justify-content: center;
    }

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

    #footer-services {
        column-count: 1;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 1rem;
    }

    .service-card,
    .visual-card {
        padding: 2rem;
    }

    .stat-number,
    .stat-suffix {
        font-size: 2.5rem;
    }
}

/* Landing Page Styles */
.landing-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
    background: var(--bg-white);
}

.landing-hero-content {
    text-align: center;
    color: var(--text-dark);
    z-index: 1;
    max-width: 1000px;
    padding: 2rem;
}

.service-hero-image {
    display: block;
    max-width: 100%;
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
}

.landing-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.landing-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Founder landing: hero with photo placeholder */
.founder-hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.founder-hero-container .landing-hero-content {
    flex: 1;
    min-width: 280px;
}

.founder-hero-photo {
    flex-shrink: 0;
    width: 280px;
    max-width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.founder-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-photo-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #e8e8e8;
    color: #888;
    font-size: 0.9375rem;
    text-align: center;
}

.founder-photo-placeholder.visible {
    display: flex;
}

@media (max-width: 768px) {
    .founder-hero-container {
        flex-direction: column;
    }

    .founder-hero-photo {
        width: 240px;
    }
}

.landing-content {
    padding: 6rem 0;
    background: var(--bg-white);
}

.content-section {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.content-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.benefit-item {
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: var(--transition-fast);
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: normal;
    margin-bottom: 1.5rem;
}

.benefit-icon-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    display: block;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.benefit-item:hover .benefit-icon-img {
    transform: scale(1.03);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-section {
    background: var(--brand-green);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-section .btn-primary {
    background: white;
    color: var(--brand-green);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    color: var(--brand-green-dark);
}

/* Conversion-Focused Styles */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-icon-img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    border-radius: 4px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    color: white;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: 220px;
    line-height: 1.35;
}

.hero-trust {
    margin-top: 2rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-icon {
    font-size: 1.25rem;
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
    font-weight: 500;
}

.btn-icon {
    margin-right: 0.5rem;
}

.btn-icon-img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    border-radius: 2px;
}

.trust-icon-img {
    width: 16px;
    height: 16px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.list-icon-img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    border-radius: 2px;
}

.nav-cta {
    background: var(--brand-green);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    transition: var(--transition-fast);
    border: 1px solid var(--brand-green);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--brand-green-dark);
    transform: translateY(-1px);
}

.nav-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 90, 69, 0.35);
    animation: navCtaFocus 2s ease-in-out infinite;
}

@keyframes navCtaFocus {
    0%, 100% { box-shadow: 0 0 0 3px rgba(6, 90, 69, 0.35); }
    50% { box-shadow: 0 0 0 6px rgba(6, 90, 69, 0.2); }
}

/* Lead Magnet CTA */
/* On-page section links (SEO + accessibility) */
.page-contents-nav {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.page-contents-nav .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.5rem;
}

.page-contents-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.page-contents-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-contents-links a {
    font-size: 0.9375rem;
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 500;
}

.page-contents-links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .page-contents-nav .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.lead-magnet-cta {
    padding: 0;
    background: var(--bg-light);
    position: relative;
}

.lead-magnet-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.lead-magnet-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lead-magnet-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 0;
    padding: 4rem 3rem;
    box-shadow: none;
    border: 1px solid var(--border-color);
    position: relative;
    margin-top: -100px;
    z-index: 1;
}

.lead-magnet-content {
    text-align: center;
}

.lead-magnet-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.lead-magnet-icon-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    display: block;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    margin-left: auto;
    margin-right: auto;
}

.lead-magnet-box h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.lead-magnet-intro {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.5;
}

.lead-magnet-benefits {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.lead-magnet-benefits li {
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 10px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
    list-style: none;
}

.lead-magnet-benefits li::before {
    content: '●';
    position: absolute;
    left: 0.75rem;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.5;
}

.lead-magnet-note {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 5rem 0;
}

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

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: var(--transition-fast);
}

.process-step:hover {
    transform: translateX(8px);
    border-color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand-green);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

.process-cta .cta-group {
    margin-top: 1rem;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.services-cta p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-cta .cta-group {
    margin-top: 0.5rem;
}

.features-cta-inline {
    margin-top: 2rem;
}

/* Social Proof / Testimonials */
.social-proof {
    background: var(--bg-light);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: var(--brand-blue);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.03em;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.final-cta-content .cta-group {
    margin-bottom: 0.5rem;
}

.final-cta .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.9);
}

.final-cta .btn-secondary:hover {
    background: white;
    color: var(--brand-blue);
    border-color: white;
}

.final-cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Enhanced Contact Form */
.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group select {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: transparent;
    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='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 2rem;
    color: var(--text-dark);
}

.form-group select:focus {
    outline: none;
    border-bottom-color: var(--text-dark);
    border-bottom-width: 2px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-group-checkboxes .form-label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group-checkboxes .form-hint {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.875rem;
}

/* Mission & Vision Boxes */
.mission-box,
.vision-box {
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 0;
    border-left: 3px solid var(--bg-dark);
    border: 1px solid var(--border-color);
    border-left-width: 3px;
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.about-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Footer Enhancements */
.footer-cta {
    margin-top: 1rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.footer-mission {
    margin-top: 0.5rem;
    font-style: normal;
    opacity: 0.6;
}

.footer-legal {
    margin-top: 0.75rem;
    opacity: 0.85;
}

.footer-legal a {
    color: inherit;
    text-decoration: underline;
}

.footer-legal a:hover {
    color: var(--brand-green);
}

/* Guide Page Styles */
.guide-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
    background: var(--bg-white);
}

.guide-hero-content {
    text-align: center;
    color: var(--text-dark);
    z-index: 1;
    max-width: 1000px;
    padding: 2rem;
}

.guide-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.guide-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.guide-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

.guide-preview {
    padding: 5rem 0;
    background: white;
}

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

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

.preview-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.preview-list li:last-child {
    border-bottom: none;
}

.list-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.preview-list strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.preview-list p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
}

.guide-cover {
    background: var(--bg-dark);
    padding: 4rem 3rem;
    border-radius: 0;
    text-align: center;
    color: white;
    box-shadow: none;
    border: 1px solid var(--bg-dark);
    position: sticky;
    top: 120px;
}

.cover-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.guide-cover h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.guide-form-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--border-color);
}

.form-header-box {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header-box h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-header-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-benefit {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

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

.form-privacy {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.guide-testimonials {
    padding: 5rem 0;
    background: white;
}

.guide-faq {
    background: var(--bg-light);
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--text-dark);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
}

.guide-final-cta {
    background: var(--bg-dark);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.guide-final-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.guide-final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Form Success Message */
.form-success,
.contact-form-success {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.contact-form-success .contact-form-success-title {
    font-size: 1.5rem;
    color: #155724;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-form-success p {
    color: #155724;
    margin-bottom: 0.5rem;
}

.success-content {
    text-align: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.success-content h3 {
    font-size: 1.5rem;
    color: #155724;
    margin-bottom: 0.75rem;
}

.success-content p {
    color: #155724;
    margin-bottom: 0.5rem;
}

.success-note {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.success-note a {
    color: #155724;
    font-weight: 600;
    text-decoration: underline;
}

/* Why We Are Better Section */
.why-better {
    padding: 5rem 0;
    background: white;
}

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

.why-better-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.why-better-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-better-text p strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.comparison-item {
    padding: 2.5rem 2rem;
    border-radius: 0;
    border: 1px solid;
}

.comparison-bad {
    background: var(--bg-white);
    border-color: var(--border-color);
}

.comparison-good {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    color: white;
}

.comparison-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.comparison-bad h3 {
    color: var(--text-dark);
}

.comparison-good h3 {
    color: white;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.comparison-bad ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-weight: normal;
}

.comparison-good ul li {
    color: rgba(255, 255, 255, 0.9);
}

.comparison-good ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: normal;
}

/* Value Proposition Section */
.value-proposition {
    padding: 5rem 0;
}

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

.value-card {
    background: var(--brand-green);
    padding: 4rem 3rem;
    border-radius: 0;
    text-align: center;
    color: white;
    box-shadow: none;
    border: 1px solid var(--brand-green);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.value-card p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.value-feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Admin Menu */
.admin-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    border-left: 3px solid var(--primary-color);
}

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

.admin-menu-header {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.admin-menu-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.admin-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.admin-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.admin-menu-content {
    padding: 2rem;
}

.admin-section {
    margin-bottom: 2rem;
}

.admin-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.admin-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-section ul li {
    margin-bottom: 0.5rem;
}

.admin-section ul li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-section ul li a:hover {
    background: var(--bg-light);
    border-left-color: var(--brand-green);
    padding-left: 1.25rem;
}

.admin-menu-footer {
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid #e0e0e0;
    text-align: center;
    position: sticky;
    bottom: 0;
}

.admin-menu-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.admin-menu-footer kbd {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-family: monospace;
    font-size: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0 2px;
}

/* Admin Menu Overlay */
.admin-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.admin-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .why-better-content,
    .value-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .admin-menu {
        width: 100%;
        right: -100%;
    }
    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .lead-magnet-image-wrapper {
        height: 300px;
    }

    .lead-magnet-box {
        padding: 2rem;
        margin-top: -50px;
    }

    .lead-magnet-benefits {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step:hover {
        transform: translateY(-5px);
    }

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

    .guide-cover {
        position: static;
    }

    .form-container {
        padding: 2rem;
    }

    .form-benefits {
        flex-direction: column;
        align-items: center;
    }

    .logo img,
    .logo-img {
        height: 100%;
    }

    .footer-logo {
        height: 32px;
    }

    .service-icon-img,
    .benefit-icon-img {
        height: 150px;
    }

    .lead-magnet-icon-img {
        height: 200px;
    }
}
