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

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-weight: 600;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    color: #1f2937;
}

.text-green {
    color: #7d8c47;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    white-space: nowrap;
    min-width: 140px;
}

@media (max-width: 768px) {
    .btn {
        min-width: 100%;
    }
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: #7d8c47;
    color: white;
}

.btn-primary:hover {
    background-color: #6b7c32;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(125, 140, 71, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #7d8c47;
    border: 2px solid #7d8c47;
}

.btn-outline:hover {
    background-color: #f6f7f1;
}

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-line {
    background-color: white;
    color: #7d8c47;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-line:hover {
    background-color: #f9fafb;
    transform: scale(1.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}
.header .container {
    max-width: 1400px;
}
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 240px;
}

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

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #7d8c47;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

.hamburger-btn {
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #7d8c47;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-content {
    background-color: white;
    width: 100%;
    max-width: 400px;
    height: 100%;
    margin-left: auto;
    padding: 0;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.mobile-logo {
    height: 50px;
    width: auto;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-links {
    padding: 20px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #f9fafb;
    color: #7d8c47;
}

.mobile-nav-link i {
    color: #7d8c47;
    width: 20px;
}

.mobile-cta {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f6f7f1 0%, #e8eadd 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #7d8c47 0%, #6b7c32 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 24px;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d8c47;
    font-weight: bold;
}

.badge-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-left: 8px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    img.main-image {
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 0;
        z-index: 1;
        opacity: 0.4;
        top: 0;
        padding: 90px 0 0px;
    }
    .hero-image {
        padding-bottom: 0;
    }
}

.price-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
    text-align: center;
}

.price-large {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-small {
    font-size: 16px;
    font-weight: 600;
    background-color: #fbbf24;
    color: #ea580c;
    padding: 4px 16px;
    border-radius: 50px;
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

/* Service Area Notice */
.service-area-notice {
    padding: 32px 0;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe4a3 100%);
    border-top: 3px solid #fbbf24;
    border-bottom: 3px solid #fbbf24;
}

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

.area-notice-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
}

.area-notice-content p {
    font-size: 18px;
    font-weight: 600;
    color: #78350f;
    margin: 0;
}

@media (max-width: 768px) {
    .service-area-notice {
        padding: 24px 0;
    }
    
    .area-notice-content h3 {
        font-size: 20px;
    }
    
    .area-notice-content p {
        font-size: 16px;
    }
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-image {
    max-width: 680px;
    margin: auto;
    margin-bottom: -80px;
}

.problem-card {
    background-color: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 240px;
    height: 120px;
    background-color: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.4;
    background: #fff;
    padding-top: 20px;
}

.problem-card p {
    color: #333;
    font-weight: 600;
}

.figure-image {
    background: #fff;
    padding: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: 20px;
    display: block;
}

.figure-image.sp {
    display: none;
}

.sp {
    display: none!important;
}

@media (max-width: 768px) {
    .sp {
        display: block!important;
    }
    .pc {
        display: none!important;
    }
    .figure-image.pc {
        display: none;
    }
    
    .figure-image.sp {
        display: block;
        max-width: 100%;
        padding: 0;
        background: transparent;
    }
}

/* Solution Section */
.solution-section {
    padding: 0 0 80px 0;
    background-color: white;
    background-color: #f9fafb;
}

.solution-badge {
    display: inline-block;
    background-color: #e8eadd;
    color: #5a6b2d;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 36px;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-image img {
    width: 100%;
    /* border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 768px) {
    .solution-content img {
        padding: 0 80px;
    }
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.solution-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.point-icon {
    width: 48px;
    height: 48px;
    background-color: #e8eadd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.point-icon i {
    color: #7d8c47;
}

.point-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.point-content p {
    color: #333;
    font-weight: 600;
}

/* Service Section */
.service-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 24px 16px;
}

.service-icon {
    font-size: 32px;
}

.service-icon i {
    color: #7d8c47;
}

.service-header h3 {
    font-size: 18px;
}

.service-image {
    width: 100%;
    height: 128px;
    object-fit: cover;
    margin-bottom: 16px;
}

.service-list {
    padding: 0 24px 24px;
    list-style: none;
}

.service-list li {
    color: #333;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

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

.service-cta p {
    font-size: 18px;
    color: #333;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #f6f7f1;
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 48px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-main {
    margin-bottom: 32px;
}

.price-time {
    font-size: 48px;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.pricing-includes {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.pricing-includes h3 {
    font-weight: 600;
    margin-bottom: 16px;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.include-item {
    color: #7d8c47;
    font-size: 24px;
    text-align: left;
    font-weight: 600;
}

.pricing-note {
    font-size: 14px;
    color: #333;
    margin-bottom: 32px;
    font-weight: 600;
}

.pricing-note p {
    margin-bottom: 4px;
    text-align: left;
}

/* Flow Section */
.flow-section {
    padding: 80px 0;
    background-color: white;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7d8c47 0%, #6b7c32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.flow-step h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.flow-step p {
    color: #333;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-icon {
    width: 48px;
    height: 48px;
    background-color: #e8eadd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d8c47;
    font-weight: 700;
}

.reviewer-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.stars {
    color: #ea580c;
    font-size: 14px;
}

.review-card p {
    color: #333;
    line-height: 1.6;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23f3f4f6" opacity="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
}

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

.faq-item {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    overflow: hidden;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #7d8c47 0%, #6b7c32 100%);
    color: white;
    padding: 20px 24px;
    font-weight: 700;
}

.q-mark {
    background-color: white;
    color: #7d8c47;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item p {
    color: #333;
    line-height: 1.8;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    background-color: #f8fffe;
    padding: 20px 24px;
}

.a-mark {
    background-color: #7d8c47;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.faq-cta p {
    font-size: 18px;
    color: #333;
    margin-bottom: 24px;
    font-weight: 600;
}

.faq-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Company Section */
.company-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

/* 私たちの想いと実績 */
.company-vision {
    margin-bottom: 60px;
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-message {
    text-align: center;
    margin-bottom: 40px;
}

.company-message h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1f2937;
}

.company-message p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-weight: 600;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.stat {
    background-color: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: #e8eadd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: #7d8c47;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* 会社概要とロゴ */
.company-details {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.company-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.company-image {
    width: 100%;
}

.company-info h3 {
    font-size: 24px;
    margin-bottom: 32px;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-grid {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: #e8eadd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #7d8c47;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.info-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
}

.map-section {
    background-color: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-section h4 i {
    color: #7d8c47;
}

.map-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #7d8c47 0%, #6b7c32 100%);
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-content > p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 48px;
}

.line-cta {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.line-cta h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 24px;
}

.qr-code {
    width: 128px;
    height: 128px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin: 24px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0.8;
}

.cta-note {
    font-size: 14px;
    opacity: 0.75;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hours {
    font-size: 14px;
    opacity: 0.75;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-main {
    flex: 1;
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 30px;
}

.footer-contact {
    margin-top: 20px;
}

.contact-methods {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.contact-method:hover {
    background-color: #7d8c47;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 140, 71, 0.3);
}

.contact-method i {
    font-size: 16px;
}

.business-hours {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.footer-info {
    flex-shrink: 0;
    text-align: right;
}

.company-info h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.company-info p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        padding: 20px 0;
        height: 90px;
        align-items: center;
    }

    .header {
        height: 90px;
    }

    .logo-image {
        height: 50px;
        width: auto;
        max-width: 180px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
        align-items: center;
    }

    .hamburger-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        max-width: 100%;
    }

    .hero-cta .btn-outline {
        background-color: #fff;
    }
    .hero .container {
        max-width: 100%;
        position: relative;
        z-index: 2;
    }
    .logo-image {
        height: 45px;
        max-width: 160px;
    }
    
    .main-image {
        height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .company-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-message {
        padding: 24px;
    }
    
    .company-message h3 {
        font-size: 24px;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .contact-methods {
        justify-content: center;
    }
    .solution-badge {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-cta .btn-outline {
        background-color: #fff;
    }
    .hero .container {
        max-width: 100%;
        position: relative;
        z-index: 2;
    }
    .logo-image {
        height: 45px;
        max-width: 160px;
    }

    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .price-badge {
        position: static;
        transform: none;
        margin-top: 20px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .price-time {
        font-size: 36px;
    }
    
    .price-amount {
        font-size: 24px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll Animation Classes */
.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-delay {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.scroll-fade-delay.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-long-delay {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.4s;
}

.scroll-fade-long-delay.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Card Animation */
.scroll-fade-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-text {
    animation: fadeInUp 0.6s ease-out;
}

.hero-image {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Hover Effects */

.flow-step:hover .step-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}



/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #7d8c47;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7c32;
} 