/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
section{
    padding: 3em;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Buttons */
.sales-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.sales-btn-primary {
    background-color: #2563eb;
    color: white;
}

.sales-btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.sales-btn-secondary {
    background-color: #10b981;
    color: white;
}

.sales-btn-secondary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.sales-btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.sales-btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.sales-btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.sales-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.sales-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.sales-nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.sales-nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sales-nav-list a:hover {
    color: #2563eb;
}

.sales-header-buttons {
    display: flex;
    gap: 1rem;
}
.sales-section{
    background-color: #10b981;
}
/* Hero Section */
.sales-hero-sales {
    padding: 120px 0;
    background:url("../img-sales/back_business.jpg");
}

.sales-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding:1em;
    align-items: center;
}

.sales-hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.sales-highlight {
    color: #2563eb;
}

.sales-hero-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.sales-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sales-hero-img {
    width: 100%;
    height: auto;
    transform: translate(10%, -20%) scale(2);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sales-hero-img-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:100%;
    z-index: -1;
}

/* Section Headers */
.sales-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sales-section-title {
    color: #1e293b;
    margin-bottom: 1rem;
}

.sales-section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

/* About Section */
.sales-about {
    padding: 80px 0;
    background-color: #dbf1cd;
}

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

.sales-about-text h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.sales-about-text p {
    color: #64748b;
    margin-bottom: 2rem;
}

.sales-about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sales-feature {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.sales-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}
.sales-feature-icon-img{
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.sales-feature h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.sales-feature p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.sales-about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.sales-services {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.sales-service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.sales-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.sales-service-icon {
    margin-bottom: 1.5rem;
}

.sales-service-img {
    width: 100%;
    object-fit: contain;
}

.sales-service-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.sales-service-card p {
    color: #64748b;
    margin-bottom: 0;
}

/* Strengths Section */
.sales-strengths {
    padding: 80px 0;
    background-color: white;
}

.sales-strengths-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.sales-strength-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sales-strength-item.sales-reverse {
    direction: rtl;
}

.sales-strength-item.sales-reverse .sales-strength-text {
    direction: ltr;
}

.sales-strength-image {
    direction: ltr;
}

.sales-strength-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sales-strength-text h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.sales-strength-text p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Cases Section */
.sales-cases {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.sales-case-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.sales-case-card:hover {
    transform: translateY(-5px);
}

.sales-case-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sales-case-content {
    padding: 2rem;
}

.sales-case-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.sales-case-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.sales-case-results {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sales-result-tag {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.sales-contact {
    padding: 80px 0;
    background-color: white;
}

.sales-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.sales-contact-info h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.sales-contact-info p {
    color: #64748b;
    margin-bottom: 2rem;
}

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

.sales-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.sales-method-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.sales-method-info h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.sales-method-info p {
    color: #64748b;
    margin-bottom: 0.25rem;
}

/* Form Styles */
.sales-form {
    background-color: #f8fafc;
    padding: 2rem!important;
    border-radius: 12px;
}

.sales-form-group {
    margin-bottom: 1.5rem;
}

.sales-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.sales-form-group input,
.sales-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.sales-form-group input:focus,
.sales-form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

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

/* Download Section */
.sales-download {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

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

.sales-download-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.sales-download-text p {
    color: #dbeafe;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.sales-download-features {
    list-style: none;
    margin-bottom: 2rem;
}

.sales-download-features li {
    color: #dbeafe;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.sales-download-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.sales-download-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Footer */
.sales-footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

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

.sales-footer-description {
    color: #cbd5e1;
    margin-bottom: 0;
}

.sales-footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.sales-footer-links {
    list-style: none;
}

.sales-footer-links li {
    margin-bottom: 0.5rem;
}

.sales-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sales-footer-links a:hover {
    color: white;
}

.sales-footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.sales-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.sales-footer-bottom p {
    color: #94a3b8;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sales-hero-content,
    .sales-about-content,
    .sales-contact-content,
    .sales-download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sales-hero-title {
        font-size: 2rem;
    }
    
    .sales-about-features {
        grid-template-columns: 1fr;
    }
    
    .sales-strength-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sales-strength-item.sales-reverse {
        direction: ltr;
    }
    
    .sales-nav-list {
        display: none;
    }
    
    .sales-header-buttons {
        display: none;
    }
}

@media (max-width: 480px) {
    .sales-container {
        padding: 0 15px;
    }
    
    .sales-hero {
        padding: 100px 0 60px;
    }
    
    .sales-hero-buttons {
        flex-direction: column;
    }
    
    .sales-btn-large {
        padding: 14px 24px;
    }
}