:root {
    --primary-space-cadet: #2F2F59;
    --accent-jasmine: #FFCF7C;
    --bg-alice-blue: #F3FAFD;
    --white: #FFFFFF;
    --text-charcoal: #343434;
    --text-muted: #686868;
    --border-light: #DBDBDB;
    --pastel-mint: #D7F8EE;
    --pastel-uranian: #BAD8FD;
    --pastel-lavender: #EEDDFF;
    --success-mint: #48BB78;
    --warning-jasmine: #FFCF7C;
    --error-soft-red: #FEB2B2;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-charcoal);
    line-height: 1.6;
    background: var(--bg-alice-blue);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 207, 124, 0.05);
    transition: var(--transition-base);
}

.nav-phone:hover {
    background: rgba(255, 207, 124, 0.1);
    transform: translateY(-1px);
}

.phone-icon {
    font-size: 1.25rem;
}

.phone-number {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-jasmine);
    border-radius: 3px;
    transition: var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-phone-item {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-base);
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-image {
    height: 100px;
    width: auto;
    display: block;
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-charcoal);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-jasmine);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-jasmine);
    transition: var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-primary-small {
    background: var(--accent-jasmine);
    color: var(--primary-space-cadet) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-base);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.btn-primary-small:hover {
    background: var(--primary-space-cadet);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-small::after {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    background: linear-gradient(135deg, var(--primary-space-cadet) 0%, var(--accent-jasmine) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 207, 124, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 207, 124, 0.2);
    color: var(--accent-jasmine);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 207, 124, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-jasmine);
    color: var(--primary-space-cadet);
}

.btn-primary:hover {
    background: #F59E0B;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--bg-alice-blue);
    color: var(--accent-jasmine);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-jasmine);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-space-cadet);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.problem-section {
    padding: 6rem 0;
    background: var(--pastel-mint);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: var(--bg-alice-blue);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-jasmine);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--text-charcoal);
    line-height: 1.6;
}

.process-section {
    padding: 6rem 0;
    background: var(--bg-alice-blue);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, var(--accent-jasmine), transparent);
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-jasmine), var(--accent-jasmine));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-charcoal);
    line-height: 1.7;
}

.services-section {
    padding: 6rem 0;
    background: var(--pastel-mint);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-alice-blue);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-jasmine);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: var(--text-charcoal);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

.why-section {
    padding: 6rem 0;
    background: var(--bg-alice-blue);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--pastel-mint);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.why-card:hover {
    background: var(--bg-alice-blue);
    border-color: var(--accent-jasmine);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-charcoal);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-alice-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--bg-alice-blue);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: var(--text-charcoal);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: var(--pastel-mint);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--bg-alice-blue);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-base);
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-bottom: 0.75rem;
}

.video-info p {
    color: var(--text-charcoal);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-duration {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-alice-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--pastel-mint);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    background: var(--bg-alice-blue);
    border-color: var(--accent-jasmine);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: var(--accent-jasmine);
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--text-charcoal);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-jasmine), var(--accent-jasmine));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sample-report-section {
    padding: 6rem 0;
    background: var(--pastel-mint);
}

.report-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.report-mockup {
    background: var(--bg-alice-blue);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.report-header {
    border-bottom: 2px solid var(--accent-jasmine);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.report-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-jasmine);
    margin-bottom: 0.5rem;
}

.report-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
}

.report-section {
    margin-bottom: 1.5rem;
}

.report-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.report-content {
    font-size: 1rem;
    color: var(--primary-space-cadet);
    font-weight: 600;
}

.report-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-critical {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-red);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

.stat-moderate {
    background: rgba(255, 207, 124, 0.9);
    color: var(--warning-orange);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

.stat-minor {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

.report-findings {
    list-style: none;
    padding: 0;
}

.report-findings li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9375rem;
}

.report-findings li:last-child {
    border-bottom: none;
}

.report-features h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-charcoal);
}

.feature-icon {
    color: var(--success-green);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-section {
    padding: 6rem 0;
    background: var(--bg-alice-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--accent-jasmine);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-jasmine);
    color: var(--primary-space-cadet);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-jasmine);
    line-height: 1;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-charcoal);
}

.pricing-card .btn-secondary {
    border-color: var(--primary-space-cadet);
    color: var(--primary-space-cadet);
    width: 100%;
    text-align: center;
}

.pricing-card .btn-secondary:hover {
    background: var(--primary-space-cadet);
    color: var(--white);
}

.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
}

.founder-section {
    padding: 6rem 0;
    background: var(--pastel-mint);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-photo {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--accent-jasmine), var(--accent-jasmine));
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-jasmine);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.founder-story h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-space-cadet);
    margin-bottom: 2rem;
}

.founder-story p {
    color: var(--text-charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.signature-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
}

.signature-title {
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.signature-credentials {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-space-cadet) 0%, var(--accent-jasmine) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info>p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 600;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-jasmine);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-space-cadet);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer {
    background: var(--primary-space-cadet);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-base);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-jasmine);
    color: var(--primary-space-cadet);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-brand p:not(:last-child) {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-jasmine);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

/* Legal Pages Styling */
.legal-section {
    padding: 10rem 0 6rem;
    background: var(--bg-alice-blue);
    min-height: 80vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-space-cadet);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-space-cadet);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--text-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-charcoal);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-align: center;
    font-style: italic;
}


/* Interior & Woodwork Inspection Section */
.interior-section {
    padding: 6rem 0;
    background: var(--pastel-mint);
    color: var(--primary-space-cadet);
}

.interior-section .section-title {
    color: var(--primary-space-cadet);
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.interior-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(47, 47, 89, 0.1);
}

.interior-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-jasmine);
}

.interior-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.interior-item p {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

.why-matters-container {
    background: var(--primary-space-cadet);
    color: var(--white);
    padding: 4rem;
    border-radius: 20px;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-matters-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 207, 124, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-matters-content h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--accent-jasmine);
    text-align: center;
}

.why-matters-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.why-matters-list li {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
    padding-left: 3rem;
    position: relative;
}

.why-matters-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.25rem;
}

.why-matters-list li strong {
    color: var(--accent-jasmine);
}

.interior-process {
    padding: 4rem 0;
}

.interior-process h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-space-cadet);
}

.process-steps-interior {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.p-step-i {
    text-align: center;
    position: relative;
}

.p-num-i {
    width: 50px;
    height: 50px;
    background: var(--accent-jasmine);
    color: var(--primary-space-cadet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.p-step-i h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-space-cadet);
}

.p-step-i p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.interior-cta {
    text-align: center;
    margin-top: 4rem;
}

.interior-cta .btn-primary {
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-right {
        gap: 0.5rem;
        flex-direction: row;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-phone {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-alice-blue);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        gap: 0.5rem;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        border-radius: 8px;
        transition: var(--transition-base);
        text-align: center;
        font-size: 1rem;
    }

    .nav-links a:hover {
        background: var(--pastel-mint);
    }

    .btn-primary-small {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .mobile-phone-item {
        display: block;
        border-bottom: 2px solid var(--border-light);
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .mobile-phone-link {
        background: var(--pastel-mint) !important;
        color: var(--accent-jasmine) !important;
        font-weight: 600 !important;
    }

    .mobile-phone-link .phone-icon {
        margin-right: 0.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .problems-grid,
    .services-grid,
    .why-grid,
    .pricing-grid,
    .gallery-grid,
    .video-grid,
    .testimonials-grid,
    .interior-grid,
    .process-steps-interior {
        grid-template-columns: 1fr;
    }

    .why-matters-container {
        padding: 2rem 1.5rem;
        margin: 3rem 0;
    }

    .why-matters-content h3 {
        font-size: 1.5rem;
    }

    .why-matters-list li {
        font-size: 1rem;
        padding-left: 2.5rem;
    }

    .report-preview,
    .founder-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}