/* ========================================
   Variables & Reset
======================================== */
:root {
    --main-green: rgb(0, 153, 68);
    --main-green-dark: rgb(0, 120, 53);
    --accent-yellow: #E6FF00;
    --gray-dark: #2c2c2c;
    --gray-medium: #666666;
    --gray-light: #f5f5f5;
    --gray-border: #e0e0e0;
    --white: #ffffff;
    --font-main: 'Noto Sans JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    background-color: var(--white);
}

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

/* ========================================
   Container & Layout
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.sp-only {
    display: none;
}

/* ========================================
   Header
======================================== */
.header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
    align-items: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--main-green);
}

.nav-link-cta {
    background-color: var(--main-green);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-link-cta:hover {
    background-color: var(--main-green-dark);
    color: var(--white);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle-bar {
    width: 25px;
    height: 3px;
    background-color: var(--gray-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding: 0;
}

.hero-image-wrapper {
    width: 100%;
    line-height: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   Hero CTA Section
======================================== */
.section-hero-cta {
    background-color: var(--white);
    padding: 50px 0;
    text-align: center;
}

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

.hero-cta-copy {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.hero-cta-copy .copy-emphasis {
    color: var(--main-green);
    font-weight: 600;
}

.hero-cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-box-wrapper {
    background-color: var(--white);
    border: 2px solid var(--main-green);
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 153, 68, 0.1);
}

.cta-limited-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--main-green);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.cta-limited-label .limited-number {
    font-size: 20px;
    font-weight: 900;
    color: var(--main-green);
    padding: 0 5px;
}

.cta-notice {
    font-size: 13px;
    color: var(--gray-medium);
    margin-top: 15px;
    text-align: center;
    line-height: 1.6;
}

.hero-note {
    font-size: 13px;
    color: var(--gray-medium);
    margin-bottom: 50px;
}

.cta-box {
    background-color: var(--white);
    border: 2px solid var(--main-green);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.cta-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-green);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--main-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 153, 68, 0.3);
}

.btn-large {
    padding: 22px 60px;
    font-size: 20px;
}

/* ========================================
   Section Titles
======================================== */
.section-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 50px;
}

.section-title.center {
    text-align: center;
}

.title-emphasis {
    color: var(--main-green);
}

/* ========================================
   Problem Section
======================================== */
.section-problem {
    background-color: var(--gray-light);
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.problem-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-medium);
    flex-shrink: 0;
}

.problem-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-dark);
    line-height: 1.7;
}

.problem-conclusion {
    text-align: center;
    margin-top: 60px;
}

.conclusion-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.9;
    color: var(--gray-dark);
}

.emphasis {
    color: var(--main-green);
    background: linear-gradient(transparent 60%, var(--accent-yellow) 60%);
    padding: 0 5px;
}

/* ========================================
   Definition Section
======================================== */
.section-definition {
    background-color: var(--white);
}

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

.definition-text {
    font-size: 20px;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.definition-text strong {
    color: var(--main-green);
    font-weight: 700;
}

.service-difference {
    max-width: 900px;
    margin: 0 auto 80px;
}

.difference-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.comparison-normal,
.comparison-ours {
    flex: 1;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.comparison-normal {
    background-color: var(--gray-light);
    border: 2px solid var(--gray-border);
}

.comparison-ours {
    background-color: #f0fff5;
    border: 3px solid var(--main-green);
}

.comparison-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.comparison-normal .comparison-label {
    color: var(--gray-medium);
}

.comparison-ours .comparison-label {
    color: var(--main-green);
}

.comparison-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
}

.comparison-normal .comparison-text {
    color: var(--gray-medium);
}

.comparison-ours .comparison-text {
    color: var(--gray-dark);
}

.comparison-arrow {
    font-size: 32px;
    font-weight: 900;
    color: var(--main-green);
    flex-shrink: 0;
}

.usp-content-inline {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 60px;
    border-top: 2px solid var(--gray-border);
}

.usp-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

/* ========================================
   USP Section
======================================== */
.section-usp {
    background-color: var(--gray-light);
}

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

.usp-intro {
    font-size: 20px;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.usp-box {
    background-color: var(--white);
    border: 3px solid var(--main-green);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.usp-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.usp-text strong {
    color: var(--main-green);
    font-weight: 700;
}

.usp-highlight {
    font-size: 22px;
    font-weight: 900;
    color: var(--main-green);
    background: linear-gradient(transparent 60%, var(--accent-yellow) 60%);
    padding: 5px 10px;
    display: inline-block;
    margin: 10px 0;
    line-height: 1.6;
}

.usp-note {
    font-size: 14px;
    color: var(--gray-medium);
}

/* ========================================
   Content Section
======================================== */
.section-content {
    background-color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.content-card {
    background-color: var(--gray-light);
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: var(--main-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 153, 68, 0.15);
}

.content-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--main-green);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.content-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--gray-dark);
}

.content-note {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-dark);
    margin-top: 40px;
}

.content-note strong {
    color: var(--main-green);
}

/* ========================================
   Scope Section
======================================== */
.section-scope {
    background-color: var(--gray-light);
}

.scope-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white);
    border: 2px solid var(--main-green);
    border-radius: 16px;
    padding: 50px 40px;
}

.scope-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 40px;
}

.scope-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.scope-item {
    padding: 30px;
    border-radius: 12px;
}

.scope-included {
    background-color: #f0fff5;
    border: 2px solid var(--main-green);
}

.scope-excluded {
    background-color: #fff9f0;
    border: 2px solid var(--gray-border);
}

.scope-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scope-icon {
    font-size: 24px;
    font-weight: 900;
}

.scope-included .scope-icon {
    color: var(--main-green);
}

.scope-excluded .scope-icon {
    color: var(--gray-medium);
}

.scope-list {
    list-style: none;
    padding: 0;
}

.scope-list li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-dark);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.scope-list li::before {
    content: '・';
    position: absolute;
    left: 5px;
    color: var(--gray-medium);
    font-weight: 700;
}

.scope-note {
    font-size: 13px;
    color: var(--gray-medium);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-border);
}

/* ========================================
   Target Section
======================================== */
.section-target {
    background-color: var(--gray-light);
}

.target-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.target-check {
    font-size: 28px;
    font-weight: 900;
    color: var(--main-green);
    flex-shrink: 0;
}

.target-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* ========================================
   Why Section
======================================== */
.section-why {
    background-color: var(--white);
}

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

.why-text {
    font-size: 20px;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.why-text strong {
    color: var(--main-green);
    font-weight: 700;
}

/* ========================================
   After Section
======================================== */
.section-after {
    background-color: var(--gray-light);
}

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

.after-card {
    background-color: var(--white);
    border: 2px solid var(--main-green);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.after-icon {
    font-size: 40px;
    font-weight: 900;
    color: var(--main-green);
    margin-bottom: 20px;
}

.after-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* ========================================
   Process Section
======================================== */
.section-process {
    background-color: var(--white);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background-color: var(--gray-light);
    border: 2px solid var(--main-green);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
}

.process-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--main-green);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.process-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--gray-dark);
}

.process-arrow {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-green);
    flex-shrink: 0;
}

/* ========================================
   Pricing Section
======================================== */
.section-pricing {
    background-color: var(--gray-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border: 3px solid var(--main-green);
    box-shadow: 0 8px 25px rgba(0, 153, 68, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-yellow);
    color: var(--gray-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-plan {
    font-size: 28px;
    font-weight: 900;
    color: var(--main-green);
    margin-bottom: 10px;
}

.pricing-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-medium);
}

.pricing-goal {
    background-color: var(--gray-light);
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 25px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--gray-dark);
}

.pricing-detail {
    margin-bottom: 25px;
    padding: 0 10px;
}

.detail-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-medium);
    text-align: left;
}

.pricing-price {
    padding-top: 20px;
    border-top: 2px solid var(--gray-border);
}

.price-original {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-medium);
    text-decoration: line-through;
    margin-bottom: 5px;
    opacity: 0.6;
}

.price-campaign {
    font-size: 13px;
    font-weight: 700;
    color: var(--main-green);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.price-contact {
    font-size: 28px;
    color: var(--main-green);
}

.price-note {
    font-size: 12px;
    color: var(--gray-medium);
}

/* ========================================
   CTA Section
======================================== */
.section-cta {
    background: linear-gradient(135deg, var(--main-green) 0%, var(--main-green-dark) 100%);
    padding: 100px 0;
}

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

.cta-message {
    font-size: 24px;
    font-weight: 700;
    line-height: 2;
    color: var(--white);
    margin-bottom: 25px;
}

.cta-copy {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-copy .copy-emphasis {
    font-weight: 600;
    opacity: 1;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cta-content .cta-box-wrapper {
    background-color: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.cta-content .cta-limited-label {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 25px;
}

.cta-content .cta-limited-label .limited-number {
    color: var(--accent-yellow);
    background: none;
    padding: 0 3px;
    border-radius: 0;
    font-size: 22px;
}

.cta-content .btn-primary {
    background-color: var(--white);
    color: var(--main-green);
}

.cta-content .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--main-green-dark);
}

.cta-content .cta-notice {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* ========================================
   Footer
======================================== */
.footer {
    background-color: var(--gray-dark);
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 14px;
    color: var(--gray-medium);
}

/* ========================================
   Responsive Design (Mobile)
======================================== */
@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }

    .section {
        padding: 60px 0;
    }

    /* Header */
    .header {
        padding: 12px 0;
    }

    .logo-img {
        height: 32px;
    }

    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-bottom: 1px solid var(--gray-border);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--gray-border);
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
    }

    .nav-link-cta {
        margin: 10px 20px;
        display: inline-block;
        border-radius: 25px;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero CTA */
    .section-hero-cta {
        padding: 40px 0;
    }

    .hero-cta-copy {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-box-wrapper {
        padding: 25px 20px;
    }

    .cta-limited-label {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .cta-limited-label .limited-number {
        font-size: 18px;
    }

    .cta-notice {
        font-size: 12px;
        margin-top: 12px;
        padding: 0 10px;
    }

    .btn {
        padding: 16px 40px;
        font-size: 16px;
    }

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

    /* Section Titles */
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    /* Problem */
    .problem-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-item {
        padding: 20px;
    }

    .conclusion-text {
        font-size: 18px;
    }

    /* Definition */
    .definition-text {
        font-size: 16px;
    }

    .service-difference {
        margin-bottom: 60px;
    }

    .difference-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .comparison-normal,
    .comparison-ours {
        width: 100%;
        padding: 25px 20px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
        font-size: 28px;
    }

    .comparison-label {
        font-size: 12px;
    }

    .comparison-text {
        font-size: 16px;
    }

    .usp-content-inline {
        padding-top: 40px;
    }

    .usp-subtitle {
        font-size: 20px;
    }

    /* USP */
    .usp-intro {
        font-size: 16px;
    }

    .usp-box {
        padding: 30px 20px;
    }

    .usp-text {
        font-size: 16px;
    }

    .usp-highlight {
        font-size: 18px;
    }

    /* Content */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-note {
        font-size: 16px;
    }

    /* Scope */
    .scope-box {
        padding: 35px 25px;
    }

    .scope-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .scope-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .scope-item {
        padding: 25px 20px;
    }

    .scope-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .scope-icon {
        font-size: 20px;
    }

    .scope-list li {
        font-size: 14px;
    }

    /* Target */
    .target-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .target-item {
        padding: 25px;
    }

    .target-text {
        font-size: 15px;
    }

    /* Why */
    .why-text {
        font-size: 16px;
    }

    /* After */
    .after-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .after-card {
        padding: 30px 20px;
    }

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

    .after-text {
        font-size: 16px;
    }

    /* Process */
    .process-flow {
        flex-direction: column;
        gap: 15px;
    }

    .process-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }

    .process-step {
        width: 100%;
        min-width: auto;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        padding: 35px 25px;
    }

    .pricing-plan {
        font-size: 24px;
    }

    .pricing-goal {
        min-height: 80px;
        padding: 25px 15px;
    }

    .goal-text {
        font-size: 15px;
    }

    .price-amount {
        font-size: 32px;
    }

    .price-contact {
        font-size: 24px;
    }

    /* CTA */
    .section-cta {
        padding: 80px 0;
    }

    .cta-message {
        font-size: 20px;
    }

    .cta-copy {
        font-size: 14px;
        margin-bottom: 35px;
    }
}
