/* Service Page Specific Styles */
      .page-hero {
        padding: 120px 20px 80px;
        background-color: var(--paper);
        text-align: center;
        border-bottom: 1px solid var(--line);
      }
      .page-hero-label {
        font-size: 0.875rem;
        color: var(--blue);
        font-weight: 700;
        letter-spacing: 0.05em;
        margin-bottom: 16px;
        display: block;
      }
      .page-hero-title {
        font-size: 2.5rem;
        color: var(--navy);
        margin-bottom: 24px;
        line-height: 1.4;
      }
      .page-hero-lead {
        font-size: 1.125rem;
        color: var(--muted);
        max-width: 800px;
        margin: 0 auto 40px;
        line-height: 1.8;
      }
      .page-hero-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
      }
      .btn-outline {
        display: inline-block;
        padding: 14px 32px;
        border: 2px solid var(--blue);
        color: var(--blue);
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      .btn-outline:hover {
        background-color: var(--blue);
        color: var(--white);
      }

      .section-service {
        padding: 80px 20px;
        background-color: var(--soft);
      }
      .section-header {
        text-align: left;
        margin-bottom: 60px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
      }
      .section-header h2 {
        font-size: 2rem;
        color: var(--navy);
        margin-bottom: 16px;
      }
      .section-header p {
        color: var(--muted);
        max-width: 700px;
        margin: 0;
        line-height: 1.6;
      }

      .service-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        max-width: var(--max);
        margin: 0 auto;
      }
      .service-card {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 32px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
      }
      .service-card h3 {
        font-size: 1.25rem;
        color: var(--navy);
        margin-bottom: 12px;
        border-bottom: 2px solid var(--blue);
        display: inline-block;
        padding-bottom: 4px;
      }
      .service-card p {
        color: var(--muted);
        line-height: 1.6;
        margin-top: 12px;
      }

      .showroom-area {
        padding: 100px 20px;
        background-color: var(--paper);
      }
      .showroom-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        max-width: 1200px;
        margin: 0 auto;
      }
      @media (max-width: 1024px) {
        .showroom-grid { grid-template-columns: repeat(2, 1fr); }
      }
      @media (max-width: 768px) {
        .showroom-grid { grid-template-columns: 1fr; }
      }

      .sr-card {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .sr-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
      }
            .sr-thumb {
        background: #e2e8f0;
        height: 200px;
        overflow: hidden;
      }
      .sr-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform 0.5s ease;
      }
      .sr-card:hover .sr-thumb img {
        transform: scale(1.05);
      }
      .sr-content {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .sr-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
      }
      .sr-num {
        font-size: 0.875rem;
        color: var(--cyan);
        font-weight: 700;
      }
      .sr-cat {
        font-size: 0.75rem;
        background: var(--soft);
        color: var(--navy);
        padding: 4px 8px;
        border-radius: 4px;
      }
      .sr-title {
        font-size: 1.25rem;
        color: var(--navy);
        margin-bottom: 12px;
        font-weight: 700;
      }
      .sr-desc {
        font-size: 0.9375rem;
        color: var(--muted);
        margin-bottom: 24px;
        line-height: 1.5;
        flex: 1;
      }
      .sr-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .btn-sr-demo {
        text-align: center;
        padding: 10px;
        background: var(--soft);
        color: var(--navy);
        border-radius: 4px;
        font-size: 0.875rem;
        font-weight: 600;
        transition: background 0.2s;
      }
      .btn-sr-demo:hover { background: #e2e8f0; }
      .btn-sr-contact {
        text-align: center;
        padding: 10px;
        background: var(--blue);
        color: var(--white);
        border-radius: 4px;
        font-size: 0.875rem;
        font-weight: 600;
        transition: background 0.2s;
      }
      .btn-sr-contact:hover { background: var(--navy); }

      .how-to-use {
        padding: 80px 20px;
        background: var(--soft);
      }
      .step-list {
        display: flex;
        gap: 24px;
        max-width: 1000px;
        margin: 0 auto;
      }
      @media (max-width: 768px) {
        .step-list { flex-direction: column; }
      }
      .step-item {
        flex: 1;
        background: var(--white);
        padding: 32px 24px;
        border-radius: 8px;
        border: 1px solid var(--line);
        text-align: center;
        position: relative;
      }
      .step-num {
        font-size: 3rem;
        color: var(--soft);
        font-weight: 900;
        position: absolute;
        top: 16px;
        left: 24px;
        line-height: 1;
      }
      .step-title {
        font-size: 1.25rem;
        color: var(--navy);
        margin: 24px 0 16px;
        position: relative;
        z-index: 1;
      }
      .step-desc {
        color: var(--muted);
        font-size: 0.9375rem;
        line-height: 1.6;
      }

      .scope-area {
        padding: 80px 20px;
        background: var(--paper);
      }
      .scope-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        max-width: 900px;
        margin: 0 auto;
      }
      .scope-item {
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 4px;
        text-align: center;
        color: var(--navy);
        font-weight: 600;
        background: var(--white);
      }

      .faq-area {
        padding: 80px 20px;
        background: #f8fafc;
      }
      .faq-list {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .faq-item {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 30px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 24px rgba(0, 0, 40, 0.04);
      }
      .faq-item[open] {
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 40, 0.06);
      }
      .faq-q {
        font-weight: 700;
        color: #0f172a;
        padding: 24px 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        list-style: none;
        font-size: 1.1rem;
      }
      .faq-q::-webkit-details-marker {
        display: none;
      }
      .faq-icon {
        position: relative;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
      }
      .faq-icon::before, .faq-icon::after {
        content: "";
        position: absolute;
        background: #5a4fcf;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
      }
      .faq-icon::before {
        width: 14px;
        height: 2px;
      }
      .faq-icon::after {
        width: 2px;
        height: 14px;
      }
      .faq-item[open] .faq-icon::before {
        background: #0f172a;
      }
      .faq-item[open] .faq-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
      }
      .faq-a {
        padding: 0 32px 32px 32px;
        color: #0f172a;
        line-height: 1.8;
        font-size: 0.95rem;
        border-top: 1px solid #e2e8f0;
        margin: 0;
        padding-top: 24px;
      }

      .header-bg {
        background-color: var(--navy);
      }

      /* Story Narrative Background */
      .story-container {
        background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
      }
      /* Anxiety Section */
      .anxiety-area {
        padding: 80px 20px 40px;
        background-color: transparent;
      }
      .anxiety-list {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .anxiety-item {
        background: var(--soft);
        border: 1px solid var(--line);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
      }
      .anxiety-item.is-open {
        border-color: var(--blue);
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
      }
      .anxiety-header {
        display: flex;
        gap: 24px;
        align-items: center;
        padding: 24px 32px;
        cursor: pointer;
        user-select: none;
      }
      .anxiety-img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        flex-shrink: 0;
      }
      .anxiety-q-wrap {
        flex: 1;
      }
      .anxiety-label {
        font-size: 0.75rem;
        color: var(--muted);
        font-weight: 700;
        display: block;
        margin-bottom: 8px;
        letter-spacing: 0.05em;
      }
      .anxiety-q {
        font-weight: 700;
        color: var(--navy);
        font-size: 1rem;
        line-height: 1.6;
      }
      .anxiety-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      }
      .anxiety-item.is-open .anxiety-icon {
        background: var(--blue);
        transform: rotate(90deg);
      }
      .anxiety-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: var(--blue);
        stroke-width: 2;
        transition: stroke 0.3s;
      }
      .anxiety-item.is-open .anxiety-icon svg {
        stroke: var(--white);
      }
      .anxiety-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--white);
      }
      .anxiety-a {
        padding: 32px;
        color: var(--navy);
        line-height: 1.6;
        font-weight: 700;
      }
      @media (max-width: 768px) {
        .anxiety-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
          padding: 24px;
        }
        .anxiety-icon {
          align-self: flex-end;
          margin-top: -40px;
        }
        .anxiety-a {
          padding: 24px;
        }
      }

      /* Why Ars Section */
      .whyars-area {
        padding: 40px 20px 100px;
        background-color: transparent;
      }

      /* Scroll Fade Animations */
      .fade-in-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
      }
      .fade-in-up.is-visible {
        opacity: 1;
        transform: translateY(0);
      }
      .whyars-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        max-width: 1000px;
        margin: 0 auto;
      }
      .whyars-card {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 40px 32px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      }
      .whyars-img {
        width: 140px;
        height: 120px;
        object-fit: contain;
        margin: 0 auto 24px;
        display: block;
      }
      .whyars-card h3 {
        color: var(--navy);
        font-size: 1.25rem;
        margin-bottom: 16px;
      }
      .whyars-card p {
        color: var(--muted);
        line-height: 1.6;
      }

      /* Target Section */
      .target-area {
        padding: 80px 20px;
        background-color: var(--white);
        border-top: 1px solid var(--line);
      }
      .target-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        max-width: 1000px;
        margin: 0 auto;
      }
      @media (max-width: 768px) {
        .target-grid { grid-template-columns: repeat(2, 1fr); }
      }
      .target-item {
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        transition: transform 0.3s;
      }
      .target-item:hover { transform: translateY(-4px); }
      .target-item img {
        width: 80px;
        height: 80px;
        object-fit: contain;
      }
      .target-item span {
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--navy);
      }

      /* Pricing Section */
      .pricing-area {
        padding: 100px 20px;
        background-color: var(--white);
      }
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1100px;
        margin: 0 auto;
        align-items: start;
      }
      @media (max-width: 900px) {
        .pricing-grid { grid-template-columns: 1fr; }
      }
      .pricing-card {
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 32px 24px;
        position: relative;
      }
      .pricing-card.popular {
        border-color: var(--blue);
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        background: var(--white);
      }
      .popular-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--blue);
        color: var(--white);
        font-size: 0.75rem;
        font-weight: 700;
        padding: 4px 16px;
        border-radius: 20px;
      }
      .pricing-name {
        font-size: 1.125rem;
        color: var(--navy);
        margin-bottom: 8px;
        text-align: center;
      }
      .pricing-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--blue);
        text-align: center;
        margin-bottom: 24px;
      }
      .pricing-desc {
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 24px;
      }
      .pricing-list {
        list-style: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid var(--line);
        padding-top: 16px;
      }
      .pricing-list li {
        font-size: 0.875rem;
        color: var(--navy);
        margin-bottom: 12px;
        padding-left: 20px;
        position: relative;
        line-height: 1.5;
      }
      .pricing-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--cyan);
        font-weight: 700;
      }
      /* Pricing Options */
      .pricing-options {
        max-width: 1000px;
        margin: 40px auto 0;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        overflow: hidden;
      }
      .options-title {
        background: #f1f5f9;
        padding: 16px 24px;
        margin: 0;
        font-size: 1.1rem;
        color: #0f172a;
        border-bottom: 1px solid #e2e8f0;
      }
      .options-list {
        display: flex;
        flex-direction: column;
      }
      .option-row {
        padding: 24px;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        gap: 24px;
        align-items: center;
      }
      .option-img-wrapper {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
      }
      .option-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .option-content {
        flex-grow: 1;
        min-width: 0; /* Prevents flex blowout */
      }
      .option-header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 12px;
        flex-wrap: wrap;
        gap: 12px;
      }
      .option-name {
        margin: 0;
        font-size: 1.1rem;
        color: #0f172a;
      }
      .option-price {
        font-weight: 700;
        color: #4f46e5;
        font-size: 1.1rem;
      }
      .option-desc {
        margin: 0;
        color: #475569;
        font-size: 0.95rem;
        line-height: 1.6;
      }
      
      @media (max-width: 640px) {
        .option-row {
          flex-direction: column;
          align-items: center;
        }
        .option-img-wrapper {
          margin: 0 auto;
        }
      }


    
/* Enhanced Card Styles */
.sr-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f8fafc;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin-top: 20px;
  margin-bottom: 16px;
}
.sr-card-specs div {
  display: flex;
  flex-direction: column;
}
.sr-card-specs dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 4px;
}
.sr-card-specs dd {
  font-size: 12px;
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.sr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.sr-tags span {
  font-size: 10px;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1px solid #cbd5e1;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Refactored Inline Styles */
.web-hero.hero {
  min-height: 400px !important;
  height: 45vh !important;
  display: flex;
  align-items: center;
}

.web-hero .hero-content {
  padding-top: 0 !important;
  height: auto !important;
  margin: 0;
  text-align: left;
}

.web-hero #hero-title {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.32;
  margin-bottom: 20px;
}

.web-hero .hero-copy {
  max-width: 800px;
  line-height: 1.8;
}

.web-hero .hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.web-hero .btn-primary {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  background: var(--blue);
}

.web-pricing-price {
  font-size: 1.8rem;
}

.web-pricing-price span {
  font-size: 1rem;
  font-weight: 600;
  margin-left: 4px;
}

.web-pricing-image-container {
  margin: 24px 0;
  height: 192px;
}

.web-pricing-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-area .cta-inner {
  text-align: center;
}

.cta-area .cta-inner p {
  margin-left: auto;
  margin-right: auto;
}

.web-contact-btn {
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 640px) {
  .web-hero.hero {
    min-height: 610px !important;
    height: auto !important;
    padding: 104px 20px 56px;
    align-items: center;
    overflow: hidden;
  }

  .web-hero .hero-image {
    object-position: 64% center;
    transform: scale(1.04);
  }

  .web-hero .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 20, 35, 0.9) 0%, rgba(3, 20, 35, 0.72) 52%, rgba(3, 20, 35, 0.38) 100%),
      linear-gradient(180deg, rgba(3, 20, 35, 0.82), rgba(3, 20, 35, 0.28) 48%, rgba(3, 20, 35, 0.76));
  }

  .web-hero .hero-content {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(100%, 335px);
    max-width: 335px;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto 0 0;
    padding: 0 !important;
    transform: none;
    text-align: left;
  }

  .web-hero .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .web-hero #hero-title {
    max-width: 100%;
    font-size: clamp(1.42rem, 7.1vw, 1.72rem);
    line-height: 1.52;
    margin-bottom: 18px;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .web-hero .hero-copy {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.82;
    overflow-wrap: anywhere;
  }

  .web-hero .hero-actions {
    width: 100%;
    margin-top: 26px;
    justify-content: flex-start;
  }

  .web-hero .btn-primary {
    width: min(100%, 248px);
    padding: 14px 20px;
    text-align: center;
    line-height: 1.3;
  }

  .story-container,
  .showroom-area,
  .target-area,
  .pricing-area,
  .faq-area,
  .cta-area {
    padding: 64px 16px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header h2 {
    font-size: clamp(1.42rem, 6.4vw, 1.72rem);
    line-height: 1.42;
    margin-bottom: 14px;
  }

  .section-header p {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .anxiety-header {
    padding: 22px;
  }

  .anxiety-img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
  }

  .anxiety-q {
    font-size: 1rem;
    line-height: 1.65;
  }

  .anxiety-icon {
    width: 42px;
    height: 42px;
    margin-top: -28px;
  }

  .anxiety-a {
    padding: 22px;
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .whyars-grid,
  .showroom-grid,
  .pricing-grid {
    gap: 22px;
  }

  .whyars-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .whyars-area {
    padding-right: 16px;
    padding-left: 16px;
  }

  .whyars-card,
  .pricing-card,
  .pricing-options,
  .faq-item {
    padding: 24px;
  }

  .whyars-img,
  .web-pricing-image-container {
    height: 150px;
  }

  .sr-card {
    border-radius: 8px;
  }

  .sr-thumb {
    height: 180px;
  }

  .sr-content {
    padding: 22px;
  }

  .sr-title {
    font-size: 1.16rem;
    line-height: 1.45;
  }

  .sr-desc,
  .pricing-desc,
  .pricing-list,
  .option-desc,
  .faq-a {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .sr-card-specs {
    grid-template-columns: 1fr;
  }

  .target-grid {
    gap: 12px;
  }

  .target-item {
    min-height: 150px;
    padding: 18px 12px;
  }

  .target-item span {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .pricing-name {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .pricing-price,
  .web-pricing-price {
    font-size: 1.6rem;
    line-height: 1.35;
  }

  .pricing-price span,
  .web-pricing-price span {
    display: block;
    margin: 4px 0 0;
    font-size: 0.88rem;
  }

  .option-row {
    padding: 24px 0;
  }

  .option-header {
    display: block;
  }

  .option-price {
    display: block;
    margin-top: 8px;
  }

  .faq-q {
    gap: 18px;
    align-items: flex-start;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .cta-area .cta-inner {
    width: 100%;
  }

  .cta-area h2 {
    font-size: clamp(1.35rem, 6.6vw, 1.75rem);
    line-height: 1.45;
  }

  .cta-area .cta-inner p {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .web-contact-btn {
    width: min(100%, 260px);
    padding: 15px 24px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .web-hero.hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .web-hero #hero-title,
  .web-hero .hero-copy {
    max-width: 100%;
  }

  .story-container,
  .showroom-area,
  .target-area,
  .pricing-area,
  .faq-area,
  .cta-area {
    padding-right: 14px;
    padding-left: 14px;
  }
}
