﻿/* PKD Store — styles principaux (page d’accueil) */

:root {
      --accent: #f59e0b;
      --accent-dark: #d97706;
      --accent-glow: rgba(245, 158, 11, 0.38);

      --heading: #1a3352;
      --emphasis: #b45309;

      --link: #0ea5e9;
      --link-hover: #0284c7;

      --surface-warm: #fff4e0;
      --surface-card: #ffefd4;
      --mint: #ecfdf3;
      --lavender: #fff5fb;
      --cream: #fffbf2;

      --text: #1b2430;
      --muted: #5c6778;
      --white: #ffffff;

      --radius-lg: 28px;
      --radius-md: 16px;
      --radius-pill: 999px;

      --shadow-soft: 0 4px 28px rgba(245, 158, 11, 0.09), 0 1px 3px rgba(27, 36, 48, 0.06);
      --shadow-card: 0 20px 50px rgba(27, 36, 48, 0.08);

      --max: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    body {
      margin: 0;
      font-family: "Plus Jakarta Sans", system-ui, sans-serif;
      font-size: 1rem;
      line-height: 1.65;
      color: var(--text);
      background: var(--cream);
      overflow-x: hidden;
    }

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

    a {
      color: var(--link);
    }

    a:hover {
      color: var(--link-hover);
    }

    .shell {
      max-width: var(--max);
      margin: 0 auto;
      padding-left: max(env(safe-area-inset-left), clamp(14px, 4.5vw, 22px));
      padding-right: max(env(safe-area-inset-right), clamp(14px, 4.5vw, 22px));
    }

    .blob-zone {
      position: relative;
      overflow: hidden;
    }

    .blob-zone::before,
    .blob-zone::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(64px);
      opacity: 0.62;
      z-index: 0;
      pointer-events: none;
    }

    .hero-wrap::before {
      width: min(420px, 92vw);
      height: min(420px, 92vw);
      background: linear-gradient(135deg, #fde047, #fef3c7);
      top: -120px;
      right: -80px;
    }

    .hero-wrap::after {
      width: min(320px, 78vw);
      height: min(320px, 78vw);
      background: linear-gradient(135deg, #fdba74, #ffedd5);
      bottom: 10%;
      left: -100px;
    }

    @media (max-width: 599px) {
      .hero-wrap::before {
        width: min(200px, 52vw);
        height: min(200px, 52vw);
        top: -40px;
        right: -28px;
        opacity: 0.42;
        filter: blur(44px);
      }

      .hero-wrap::after {
        width: min(160px, 42vw);
        height: min(160px, 42vw);
        left: -36px;
        bottom: 8%;
        opacity: 0.38;
        filter: blur(44px);
      }
    }

    /* HEADER */
    .site-header {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: clamp(8px, 2vw, 18px) 0 clamp(6px, 1.5vw, 12px);
    }

    .site-header-inner {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 0;
      text-decoration: none;
    }

    .logo img {
      display: block;
      width: auto;
      height: clamp(54px, 12vw, 86px);
      max-width: min(260px, 72vw);
      object-fit: contain;
    }

    @media (min-width: 768px) {
      .logo img {
        height: clamp(70px, 8vw, 96px);
        max-width: 320px;
      }
    }

    @media (min-width: 1100px) {
      .logo img {
        height: 96px;
        max-width: 360px;
      }
    }

    .lang-bar {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 6px;
      width: 100%;
    }

    .lang-bar-label {
      margin: 0;
      font-size: 0.58rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      opacity: 0.85;
    }

    .lang-flags {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 5px;
      align-items: center;
    }

    .lang-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 3px;
      border: 1px solid #dcdcdc;
      background: var(--white);
      border-radius: 6px;
      line-height: 0;
      cursor: pointer;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
      transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
    }

    .lang-btn:hover {
      border-color: var(--link);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(14, 165, 233, 0.22);
    }

    .lang-btn[aria-pressed="true"] {
      border-color: var(--link);
      box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.28);
    }

    .lang-btn-flag-img {
      display: block;
      width: 24px;
      height: auto;
      border-radius: 2px;
    }

    @media (min-width: 768px) {
      .site-header-inner {
        min-height: 72px;
      }

      .lang-bar {
        position: absolute;
        top: 10px;
        right: 0;
        width: auto;
        margin-top: 0;
      }

      .lang-bar-label {
        display: none;
      }
    }

    /* HERO */
    .hero {
      position: relative;
      z-index: 1;
      padding: clamp(18px, 4vw, 42px) 0 clamp(42px, 7vw, 72px);
    }

    .hero-grid {
      display: grid;
      gap: clamp(24px, 5vw, 56px);
      align-items: center;
    }

    @media (min-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .hero-copy h1 {
      margin: 0 0 18px;
      font-size: clamp(1.85rem, 4vw, 2.75rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: var(--heading);
    }

    .hero-copy h1 em {
      font-style: normal;
      color: var(--accent);
      display: block;
      margin-top: 6px;
    }

    .hero-copy .lead {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: clamp(0.95rem, 2vw, 1.05rem);
      max-width: 36em;
    }

    .hero-copy .lead-note {
      margin: 0 0 28px;
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 36em;
      line-height: 1.55;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 600;
      border: none;
      border-radius: var(--radius-pill);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 8px 26px var(--accent-glow);
    }

    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
      color: var(--white);
    }

    .hero-visual {
      position: relative;
    }

    .hero-visual .frame {
      border-radius: clamp(18px, 4vw, 28px);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      background: linear-gradient(145deg, var(--surface-card), var(--white));
    }

    .hero-carousel {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 5;
      background: linear-gradient(145deg, var(--surface-card), var(--white));
    }

    @media (min-width: 900px) {
      .hero-carousel {
        aspect-ratio: 600 / 520;
      }
    }

    .hero-carousel--loading::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        110deg,
        transparent 40%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 60%
      );
      background-size: 200% 100%;
      animation: hero-shimmer 1.2s ease-in-out infinite;
      pointer-events: none;
      z-index: 3;
    }

    @keyframes hero-shimmer {
      0% {
        background-position: 100% 0;
      }

      100% {
        background-position: -100% 0;
      }
    }

    .hero-carousel__img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      transition: opacity 0.75s ease;
      z-index: 1;
    }

    .hero-carousel__img.is-visible {
      opacity: 1;
      z-index: 2;
    }

    .hero-visual .blob-accent {
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.45), rgba(56, 189, 248, 0.22));
      bottom: -24px;
      left: -24px;
      z-index: -1;
      filter: blur(2px);
    }

    @media (max-width: 599px) {
      .hero {
        padding-top: 10px;
      }

      .hero-grid {
        gap: 20px;
      }

      .hero-copy {
        text-align: left;
      }

      .hero-copy h1 {
        font-size: clamp(1.55rem, 7vw, 2rem);
        margin-bottom: 12px;
      }

      .hero-copy .lead {
        font-size: 0.94rem;
        line-height: 1.55;
        margin-bottom: 14px;
      }

      .hero-copy .lead-note {
        font-size: 0.84rem;
        margin-bottom: 22px;
      }

      .hero-copy .btn-primary,
      .center-cta .btn-primary,
      .split-copy .btn-primary {
        width: 100%;
      }

      .hero-carousel {
        aspect-ratio: 1 / 1;
        max-height: 360px;
      }

      .hero-visual .blob-accent {
        width: min(120px, 34vw);
        height: min(120px, 34vw);
        left: -8px;
        bottom: -12px;
      }
    }

    /* PROMESSES */
    .promise-row {
      display: grid;
      gap: 12px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 max(env(safe-area-inset-right), clamp(14px, 4.5vw, 22px)) 48px
        max(env(safe-area-inset-left), clamp(14px, 4.5vw, 22px));
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .promise-row p {
      margin: 0;
      padding: 14px 16px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--heading);
      background: rgba(255, 255, 255, 0.7);
      border-radius: 14px;
      box-shadow: var(--shadow-soft);
      line-height: 1.4;
    }

    @media (min-width: 720px) {
      .promise-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding-bottom: 56px;
      }

      .promise-row p {
        background: transparent;
        box-shadow: none;
        padding: 0;
      }
    }

    /* SECTIONS */
    .section {
      padding: 64px 0;
      position: relative;
    }

    .section--soft {
      background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    }

    .section--map {
      background: linear-gradient(165deg, var(--mint) 0%, var(--surface-warm) 42%, var(--lavender) 100%);
    }

    .section-title {
      text-align: center;
      margin: 0 0 14px;
      font-size: clamp(1.45rem, 3vw, 1.85rem);
      font-weight: 700;
      color: var(--heading);
      letter-spacing: -0.02em;
    }

    .section-intro {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 36px;
      color: var(--muted);
    }

    @media (max-width: 599px) {
      .section {
        padding: 44px 0;
      }

      .section-intro {
        margin-bottom: 28px;
        padding: 0 2px;
        font-size: clamp(0.92rem, 3.5vw, 1rem);
      }
    }

    .about-body {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 32px;
      color: var(--muted);
    }

    .icon-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
      margin-top: 40px;
    }

    .icon-bubble {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--white);
      box-shadow: var(--shadow-soft);
      background: var(--white);
    }

    .icon-bubble img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .center-cta {
      text-align: center;
      margin-top: 32px;
    }

    @media (max-width: 599px) {
      .icon-row {
        gap: 12px;
        margin-top: 28px;
      }

      .icon-bubble {
        width: clamp(64px, 20vw, 88px);
        height: clamp(64px, 20vw, 88px);
        border-width: 3px;
      }
    }

    /* SPLIT */
    .split {
      display: grid;
      gap: 40px;
      align-items: center;
    }

    @media (min-width: 880px) {
      .split {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
      }
    }

    .split-right {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      max-width: 400px;
      margin: 0 auto;
      width: 100%;
    }

    .feature-card {
      margin: 0;
      min-height: 100px;
      padding: 14px 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: var(--white);
      border: 1px solid rgba(245, 158, 11, 0.18);
      border-radius: 14px;
      box-shadow: var(--shadow-soft);
    }

    .feature-card__text {
      margin: 0;
      font-size: 0.8rem;
      font-weight: 600;
      line-height: 1.35;
      color: var(--text);
    }

    @media (min-width: 880px) {
      .feature-grid {
        max-width: none;
        margin: 0;
      }
    }

    @media (max-width: 599px) {
      .feature-card {
        min-height: 88px;
        padding: 12px 10px;
      }

      .feature-card__text {
        font-size: 0.76rem;
      }
    }

    .split-copy h2 {
      margin: 0 0 16px;
      font-size: clamp(1.35rem, 2.8vw, 1.75rem);
      font-weight: 700;
      color: var(--heading);
      letter-spacing: -0.02em;
      line-height: 1.25;
    }

    .split-copy p {
      margin: 0 0 16px;
      color: var(--muted);
    }

    .phone-shot {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      background: var(--white);
    }

    .phone-shot img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* MAP */
    .map-inner {
      position: relative;
      border-radius: var(--radius-lg);
      padding: 40px 28px 48px;
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-soft);
    }

    .map-inner h2 {
      text-align: center;
      margin: 0 0 8px;
      font-size: clamp(1.35rem, 2.8vw, 1.75rem);
      font-weight: 700;
      color: var(--heading);
    }

    .map-inner .sub,
    .map-inner .explain {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 16px;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .map-inner h3.section-label {
      text-align: center;
      margin: 28px 0 14px;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
    }

    .regions {
      display: grid;
      gap: 28px;
    }

    @media (min-width: 720px) {
      .regions {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1000px) {
      .regions {
        max-width: 920px;
        margin: 0 auto;
      }
    }

    @media (max-width: 599px) {
      .map-inner {
        padding: 26px 16px 36px;
        border-radius: var(--radius-md);
      }
    }

    .region-block h3 {
      margin: 0 0 12px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--emphasis);
    }

    .region-block ul {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 0.9rem;
      color: var(--text);
    }

    .region-block li {
      margin-bottom: 8px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .flag {
      font-size: 1.1rem;
      line-height: 1;
    }

    /* BLOG */
    .blog-carousel-shell {
      display: flex;
      align-items: stretch;
      gap: 10px;
    }

    .blog-carousel__btn {
      flex-shrink: 0;
      align-self: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid #e2e8f0;
      border-radius: 50%;
      background: var(--white);
      color: var(--heading);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(27, 36, 48, 0.06);
      transition: background 0.15s, border-color 0.15s, transform 0.15s;
    }

    .blog-carousel__btn:hover {
      border-color: var(--link);
      color: var(--link);
      transform: scale(1.05);
    }

    .blog-carousel__btn svg {
      display: block;
    }

    .blog-carousel__viewport {
      flex: 1;
      min-width: 0;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }

    .blog-carousel__track {
      display: flex;
      gap: 20px;
      padding: 4px 2px 12px;
    }

    .blog-b-card {
      flex: 0 0 min(100%, min(340px, calc(100vw - 112px)));
      scroll-snap-align: start;
      border-radius: 20px;
      overflow: hidden;
      background: #f3f4f6;
      box-shadow: 0 4px 20px rgba(27, 36, 48, 0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .blog-b-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-card);
    }

    .blog-b-card__link {
      display: block;
      height: 100%;
      text-decoration: none;
      color: inherit;
    }

    .blog-b-card__thumb {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #e5e7eb;
    }

    .blog-b-card__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .blog-b-card__badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 1;
      padding: 6px 11px;
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--heading);
      background: var(--white);
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .blog-b-card__body {
      padding: 18px 20px 22px;
    }

    .blog-b-card__title {
      margin: 0 0 10px;
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.35;
      color: var(--heading);
    }

    .blog-b-card__excerpt {
      margin: 0 0 14px;
      font-size: 0.88rem;
      line-height: 1.55;
      color: var(--muted);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .blog-b-card__more {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--link);
    }

    .blog-b-card__link:hover .blog-b-card__more {
      text-decoration: underline;
      color: var(--link-hover);
    }

    #blog-read-more-ref {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 560px) {
      .blog-carousel-shell {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
          "track track"
          "nav-prev nav-next";
        gap: 14px 12px;
        align-items: center;
      }

      .blog-carousel__viewport {
        grid-area: track;
        min-width: 0;
      }

      .blog-carousel__btn--prev {
        grid-area: nav-prev;
        justify-self: end;
      }

      .blog-carousel__btn--next {
        grid-area: nav-next;
        justify-self: start;
      }

      .blog-b-card {
        flex: 0 0 min(calc(100vw - 56px), 340px);
      }
    }

    @media (max-width: 400px) {
      .blog-b-card {
        flex: 0 0 calc(100vw - 48px);
      }
    }

    @media (min-width: 900px) {
      .blog-b-card {
        flex: 0 0 calc((100% - 40px) / 3);
      }
    }

    /* CONTACT */
    .contact-split {
      display: grid;
      gap: 40px;
      align-items: center;
      padding: 48px 0 72px;
    }

    @media (min-width: 880px) {
      .contact-split {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 599px) {
      .contact-split {
        gap: 28px;
        padding: 32px 0 56px;
      }
    }

    .contact-copy h2 {
      margin: 0 0 12px;
      font-size: clamp(1.45rem, 3vw, 2rem);
      font-weight: 700;
      color: var(--heading);
    }

    .contact-copy .tagline {
      margin: 0 0 22px;
      color: var(--muted);
    }

    .contact-box {
      background: var(--surface-card);
      border-radius: var(--radius-md);
      padding: 22px 24px;
      margin-bottom: 18px;
      border: 1px solid rgba(245, 158, 11, 0.14);
    }

    .contact-box p {
      margin: 0 0 6px;
      font-size: 0.92rem;
      color: var(--muted);
    }

    .contact-box strong {
      display: block;
      margin-top: 8px;
      color: var(--text);
      font-weight: 600;
    }

    .contact-box a {
      font-weight: 600;
      word-break: break-word;
      overflow-wrap: anywhere;
    }

    .contact-visual {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: min(280px, 52vw);
      box-shadow: var(--shadow-card);
    }

    .contact-visual img {
      width: 100%;
      height: auto;
      min-height: 200px;
      max-height: min(520px, 70vh);
      object-fit: cover;
    }

    /* FOOTER */
    .site-footer {
      border-top: 1px solid #e8ecf2;
      padding: 20px max(env(safe-area-inset-right), clamp(14px, 4.5vw, 22px)) 32px
        max(env(safe-area-inset-left), clamp(14px, 4.5vw, 22px));
      padding-bottom: max(32px, env(safe-area-inset-bottom));
      text-align: center;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .footer-legal {
      margin-bottom: 14px;
      font-size: 0.9rem;
    }

    .footer-legal a {
      color: var(--link);
      font-weight: 600;
      text-decoration: none;
    }

    .footer-legal a:hover {
      text-decoration: underline;
      color: var(--link-hover);
    }

    .footer-sep {
      margin: 0 10px;
      color: #c5ccd6;
    }

    .site-footer p {
      margin: 0 0 6px;
    }

    @media (max-width: 520px) {
      .footer-legal {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .footer-sep {
        display: none;
      }

      .site-footer {
        font-size: 0.82rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .hero-carousel__img {
        transition: opacity 0.35s ease;
      }

      .blog-b-card {
        transition: none;
      }

      .blog-b-card:hover {
        transform: none;
      }

      .hero-carousel--loading::after {
        animation: none;
      }
    }

/* =========================
   FIX RESPONSIVE MOBILE PKD
   ========================= */

@media (max-width: 599px) {
  body {
    font-size: 15px;
    line-height: 1.55;
  }

  .shell {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .site-header-inner {
    min-height: auto;
  }

  .logo img {
    height: 42px;
    max-width: 150px;
  }

  .lang-bar {
    margin-top: 8px;
    gap: 6px;
  }

  .lang-bar-label {
    font-size: 0.55rem;
  }

  .lang-btn-flag-img {
    width: 22px;
  }

  .hero {
    padding-top: 12px;
    padding-bottom: 32px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 1.65rem;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
  }

  .hero-copy h1 em {
    margin-top: 3px;
  }

  .hero-copy .lead {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .hero-copy .lead-note {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 0.9rem;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-visual .frame {
    border-radius: 20px;
  }

  .hero-carousel {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 330px;
  }

  .hero-carousel__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .promise-row {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 34px;
    gap: 10px;
  }

  .promise-row p {
    font-size: 0.84rem;
    padding: 12px 14px;
  }
}

