/* =============================================
   RESET
   ============================================= */
   *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* =============================================
     ANIMATIONS
     ============================================= */
  @keyframes pulse {
    0%   { transform: scale(1);    }
    50%  { transform: scale(1.04); }
    100% { transform: scale(1);    }
  }

  /* =============================================
     PAGE
     ============================================= */
  html,
  body {
    min-height: 100%;
    overflow-x: hidden;
  }
  
  body {
    background-color: #1c1d20;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  /* =============================================
     HERO SECTION
     Figma: Header / 111 / — node 11243:37
     Frame: 390 × 844 px (iPhone 14)
     Padding: 48px top/bottom, 20px left/right
     Gap between sections: 46px
     ============================================= */
  .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 46px;
    padding: 48px 20px;
    width: 375px;
    min-height: 844px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  /* ── Background photo ────────────────────────── */
  .hero__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    z-index: -1;
    pointer-events: none;
  }
  
  /* ── Section background images ──────────────── */
.section__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* ── Mobile Navigation Menu ─────────────────── */
  .nav-menu {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fefff6;
    border-radius: 10px;
    margin: 0 20px;
    padding: 48px 20px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  
  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  /* Backdrop blur overlay */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Close button */
  .nav-menu__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.15s ease;
  }
  
  .nav-menu__close:hover { opacity: 1; }
  
  .nav-menu__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
  }
  
  .nav-menu__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    background: linear-gradient(180deg, #ffe100 0%, #d5be0d 100%);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s ease;
  }
  
  .nav-menu__btn:hover {
    opacity: 0.85;
  }
  
  /* ── Navigation ─────────────────────────────── */
  .hero__nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-shrink: 0;
  }
  
  .hero__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  
  /* Logo: 28 × 28 px, fully rounded */
  .hero__logo {
    width: 28px;
    height: 28px;
    border-radius: 200px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }
  
  /* Brand name: Inter Regular 14px / line-height 1.6 */
  .hero__brand-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    white-space: nowrap;
  }
  
  /* Burger button: 28 × 28 px */
  .hero__burger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .hero__burger img {
    width: 28px;
    height: 28px;
    display: block;
  }
  
  /* ── Body (heading + features) ──────────────── */
  /* gap: 144px — the large gap shows the background photo */
  .hero__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 210px;
    align-items: flex-start;
    width: 100%;
    flex-shrink: 0;
  }
  
  /* ── Heading ─────────────────────────────────── */
  /* Container: height 87px (≈ 3 lines × 24px × 1.2 lh) */
  .hero__heading-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 87px;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
  }
  
  /* Unbounded Bold 24px, tracking 0.72px, line-height 1.2 */
  .hero__heading {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.72px;
  }
  
  .hero__heading-yellow {
    color: #ffe100;
  }
  
  .hero__heading-white {
    color: #ffffff;
  }
  
  /* ── Features grid ───────────────────────────── */
  /* Container: height 153px, centered vertically */
  .hero__features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 153px;
    width: 100%;
    flex-shrink: 0;
  }
  
  /* Two columns, gap 8px — flex: 1 0 0 to fill container height */
  .hero__feat-grid {
    display: flex;
    flex: 1 0 0;
    gap: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 1px;
    margin-top: 0;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  /* Each column: 146×96px, gap 8px between items */
  .hero__feat-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    flex-shrink: 1;
  }
  
  /* Feature row: icon + text — пропорційний gap */
  .hero__feat-item {
    display: flex;
    gap: clamp(4px, 2vw, 8px);
    align-items: flex-start;
    flex-shrink: 0;
  }
  
  /* Icon — пропорційний розмір */
  .hero__feat-icon {
    width: clamp(16px, 6.15vw, 24px);
    height: clamp(16px, 6.15vw, 24px);
    flex-shrink: 0;
  }
  
  /* Feature title: Inter Bold — пропорційний розмір при звуженні */
  .hero__feat-title {
    font-weight: 700;
    font-size: clamp(11px, 4.6vw, 18px);
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
  }
  
  /* Feature subtitle: Inter Regular — пропорційний розмір при звуженні */
  .hero__feat-sub {
    font-weight: 400;
    font-size: clamp(11px, 4.6vw, 18px);
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
  }
  
  /* ── CTA ─────────────────────────────────────── */
  .hero__cta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
    margin-top: auto;
  }
  
  /* Button: 289 × 60 px, yellow, border-radius 10px */
  .hero__btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffe100;
    border: 1px solid #ffcc00;
    border-radius: 10px;
    width: 320px;
    height: 68px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    color: #0d0300;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    animation: pulse 2s ease-out infinite;
  }
  
  .hero__btn:hover {
    background-color: #ffd000;
  }
  
  .hero__btn:active {
    background-color: #ffcc00;
  }
  
  /* =============================================
     COVERAGE SECTION
     Figma: Contact / 26 / — node 11243:92
     Background: #1c1d20, padding: 48px 20px
     ============================================= */
  .coverage {
    width: 375px;
    background-color: #1c1d20;
    padding: 48px 20px;
    flex-shrink: 0;
  }
  
  .coverage__container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
    width: 100%;
  }
  
  /* Title with yellow left border */
  .coverage__title-wrap {
    border-left: 5px solid #ffe100;
    padding-left: 14px;
    width: 100%;
  }
  
  .coverage__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #ffffff;
    text-transform: uppercase;
  }
  
  /* Map image */
  .coverage__map-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 335 / 302;
  }
  
  .coverage__map {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* Stats list */
  .coverage__stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: 100%;
  }
  
  .coverage__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    width: 100%;
    max-width: 335px;
    word-break: break-word;
  }
  
  .coverage__stat-value {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1.2;
    letter-spacing: 0.44px;
    color: #ffe100;
    width: 100%;
    white-space: nowrap;
  }
  
  .coverage__stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    width: 100%;
  }
  
  /* =============================================
     TIMING SECTION
     Figma: Layout / 105 / — node 11249:79
     Background: #0d0300 + backtime.png @ 20% opacity
     ============================================= */
  .timing {
    position: relative;
    width: 375px;
    padding: 48px 20px;
    background-color: #0d0300;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  
  .timing__container {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  
  .timing__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
  }
  
  /* Title with yellow left border */
  .timing__title-wrap {
    border-left: 5px solid #ffe100;
    padding-left: 14px;
    width: 100%;
  }
  
  .timing__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #ffffff;
    max-width: 172px;
  }
  
  /* Steps list */
  .timing__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
    list-style: none;
  }
  
  .timing__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  
  .timing__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: block;
  }
  
  .timing__text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    flex: 1 0 0;
    min-width: 1px;
    word-break: break-word;
  }
  
  .timing__text-white {
    color: #ffffff;
  }
  
  .timing__text-yellow {
    color: #ffe100;
  }
  
  /* =============================================
     CREDIT SECTION
     Figma: Contact / 26 / — node 11222:1616
     Background: #fefff6, padding: 48px 20px
     ============================================= */
  .credit {
    width: 375px;
    background-color: #fefff6;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    flex-shrink: 0;
  }
  
  .credit__container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    width: 100%;
  }
  
  /* Bank logos row */
  .credit__banks {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .credit__bank-logo {
    display: block;
    border-radius: 10px;
    object-fit: cover;
    border: none;
    outline: none;
    box-shadow: none;
  }
  
  .credit__bank-logo--oschadbank {
    width: 130px;
    height: 65px;
  }
  
  .credit__bank-logo--privat {
    width: 97px;
    height: 69px;
  }
  
  /* Title with blue left border */
  .credit__title-wrap {
    border-left: 5px solid #1851a5;
    padding-left: 14px;
    width: 100%;
  }
  
  .credit__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #000000;
    max-width: 293px;
  }
  
  /* Description */
  .credit__desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    width: 100%;
    word-break: break-word;
  }
  
  /* Image + subtitle block */
  .credit__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  
  .credit__image-wrap {
    width: 335px;
    height: 228px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .credit__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .credit__subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #000000;
    text-align: center;
    width: 335px;
    word-break: break-word;
  }
  
  /* CTA button */
  .credit__cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .credit__btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1851a5;
    border: 1px solid #1851a5;
    border-radius: 10px;
    width: 289px;
    height: 60px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    animation: pulse 2s ease-out infinite;
  }
  
  .credit__btn:hover {
    background-color: #144088;
  }
  
  .credit__btn:active {
    background-color: #103570;
  }
  
  /* =============================================
     PROJECTS SECTION
     Figma: Contact / 26 / — node 11254:72
     Background: #fefff6, padding: 48px 20px
     ============================================= */
  .projects {
    width: 375px;
    background-color: #fefff6;
    padding: 48px 20px;
    flex-shrink: 0;
  }
  
  .projects__container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    width: 100%;
  }
  
  /* Title with blue left border */
  .projects__title-wrap {
    border-left: 5px solid #1851a5;
    padding-left: 14px;
    width: 100%;
  }
  
  .projects__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #000000;
    max-width: 293px;
  }
  
  /* Carousel slide area */
  .projects__carousel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  
  .projects__img-wrap {
    width: 335px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .projects__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .projects__slide-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .projects__slide-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 4.8vw, 20px);
    line-height: 1.2;
    letter-spacing: 0.32px;
    color: #000000;
    width: 100%;
    text-align: left;
    word-break: break-word;
  }
  
  .projects__slide-list {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(12px, 3.8vw, 16px);
    line-height: 1.6;
    color: #000000;
    width: 100%;
    padding-left: 27px;
    word-break: break-word;
  }
  
  .projects__slide-list li {
    margin-bottom: 0;
    font-size: clamp(12px, 3.8vw, 16px);
  }
  
  /* Navigation arrows */
  .projects__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
  }
  
  .projects__nav-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }
  
  .projects__nav-btn:hover {
    opacity: 0.75;
  }
  
  .projects__nav-icon {
    display: block;
    width: 60px;
    height: 60px;
  }
  
  .projects__nav-icon--prev {
    transform: scaleX(-1);
  }
  
  /* =============================================
     CHOICE SECTION
     Figma: Layout / 223 / — node 11254:322
     Background: backchoice.png (no overlay)
     Padding: 48px 20px, gap: 36px
     ============================================= */
  .choice {
    position: relative;
    width: 375px;
    height: auto;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
    flex-shrink: 0;
  }
  
  /* Title with yellow left border */
  .choice__title-wrap {
    border-left: 5px solid #ffe100;
    padding-left: 14px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  
  .choice__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #ffffff;
    max-width: 273px;
  }
  
  /* List */
  .choice__list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
    list-style: none;
    padding: 8px 0;
  }
  
  .choice__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
  }
  
  .choice__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: block;
  }
  
  .choice__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    min-width: 1px;
    color: #ffffff;
  }
  
  .choice__item-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #ffffff;
    width: 100%;
    word-break: break-word;
  }
  
  .choice__item-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    width: 100%;
    word-break: break-word;
  }
  
  /* CTA */
  .choice__cta {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .choice__btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffe100;
    border: 1px solid #ffcc00;
    border-radius: 10px;
    width: 289px;
    height: 60px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    color: #0d0300;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    animation: pulse 2s ease-out infinite;
  }
  
  .choice__btn:hover {
    background-color: #ffd000;
  }
  
  .choice__btn:active {
    background-color: #ffcc00;
  }
  
  /* =============================================
     TEAM SECTION
     Figma: Layout / 223 / — node 11243:50
     Background: diagonal gradient dark + yellow corner
     Padding: 48px 20px, gap: 48px
     ============================================= */
  .team {
    width: 375px;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  
  .team__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    pointer-events: none;
    display: block;
  }
  
  .team__title-wrap,
  .team__list {
    position: relative;
    z-index: 1;
  }
  
  /* Title with yellow left border */
  .team__title-wrap {
    border-left: 5px solid #ffe100;
    padding-left: 14px;
    width: 100%;
  }
  
  .team__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #ffffff;
  }
  
  /* Members list */
  .team__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
    list-style: none;
    padding: 8px 0;
  }
  
  .team__member {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
  }
  
  /* Photo */
  .team__photo-wrap {
    width: 220px;
    height: 272px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .team__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* Name + role */
  .team__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
  }
  
  .team__name {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #ffffff;
    width: 100%;
    word-break: break-word;
  }
  
  .team__role {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    width: 100%;
    word-break: break-word;
  }
  
  /* =============================================
     BENEFITS SECTION
     Figma: Layout / 223 / — node 11260:563
     Background: backadvantages.png + yellow diagonal
     Padding: 48px 20px, gap: 36px
     ============================================= */
  .benefits {
    position: relative;
    overflow: hidden;
    width: 375px;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    flex-shrink: 0;
  }
  
  /* Title with yellow left border */
  .benefits__title-wrap {
    border-left: 5px solid #ffe100;
    padding-left: 14px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  
  .benefits__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #ffffff;
  }
  
  /* Cards list */
  .benefits__list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
    list-style: none;
    padding: 8px 0;
  }
  
  /* Card */
  .benefits__card {
    background: #f7f8f2;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  
  .benefits__card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 4px;
  }
  
  .benefits__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
  }
  
  .benefits__card-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #000000;
    width: 100%;
    word-break: break-word;
  }
  
  .benefits__card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    width: 100%;
    word-break: break-word;
  }
  
  /* Bullet list inside card */
  .benefits__card-list {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    width: 100%;
    padding-left: 21px;
    word-break: break-word;
    list-style-type: disc;
  }
  
  .benefits__card-list li {
    margin-bottom: 0;
    color: #000000;
  }
  
  /* =============================================
     CLIENTS SECTION
     Figma: Layout / 223 / — node 11257:107
     Background: #1c1d20, padding: 48px 20px, gap: 48px
     ============================================= */
  .clients {
    width: 375px;
    background-color: #1c1d20;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    flex-shrink: 0;
  }
  
  /* Title with yellow left border */
  .clients__title-wrap {
    border-left: 5px solid #ffe100;
    padding-left: 14px;
    width: 100%;
  }
  
  .clients__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #ffffff;
  }
  
  /* Groups container */
  .clients__list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    width: 100%;
    padding: 8px 0;
  }
  
  /* Each group: image + content */
  .clients__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  
  /* Photo */
  .clients__img-wrap {
    width: 332px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .clients__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 5px;
  }
  
  /* Content */
  .clients__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
  }
  
  .clients__group-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #ffffff;
    width: 100%;
    word-break: break-word;
  }
  
  .clients__group-list {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    width: 100%;
    padding-left: 21px;
    list-style-type: disc;
    word-break: break-word;
  }
  
  .clients__group-list li {
    margin-bottom: 0;
  }
  
  .clients__group-list li::marker {
    color: #ffffff;
  }
  
  /* =============================================
     CONTACT FORM SECTION
     Figma: Layout / 105 / — node 11259:148
     Background: #403d33, padding: 64px 20px, gap: 48px
     ============================================= */
  .contact {
    width: 375px;
    background-color: #403d33;
    padding: 48px 20px;
    flex-shrink: 0;
  }
  
  .contact__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
  }
  
  /* Heading */
  .contact__heading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.48px;
    word-break: break-word;
    width: 100%;
  }
  
  .contact__heading-white {
    color: #ffffff;
  }
  
  .contact__heading-yellow {
    color: #ffe100;
  }
  
  /* Form wrapper */
  .contact__form-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    width: 100%;
  }
  
  .contact__note {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    width: 100%;
  }
  
  /* Form */
  .contact__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    width: 100%;
  }
  
  /* Radio group */
  .contact__radio-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    width: 300px;
  }
  
  .contact__radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: 100%;
  }
  
  .contact__radio-input {
    display: none;
  }
  
  .contact__radio-custom {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease;
  }
  
  .contact__radio-custom::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #ffe100;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  .contact__radio-input:checked + .contact__radio-custom {
    border-color: #ffe100;
  }
  
  .contact__radio-input:checked + .contact__radio-custom::after {
    opacity: 1;
  }
  
  .contact__radio-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
  }
  
  /* Input fields */
  .contact__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 300px;
  }
  
  .contact__field {
    width: 100%;
    border-bottom: 0.5px solid #ffffff;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8px;
    gap: 2px;
  }
  
  .contact__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
  }
  
  
  .contact__input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    padding: 0;
    margin-top: 8px;
  }
  
  .contact__input::placeholder {
    color: #ffffff;
    opacity: 1;
  }
  
  /* CTA */
  .contact__cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .contact__btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffe100;
    border: 1px solid #ffcc00;
    border-radius: 10px;
    width: 289px;
    height: 60px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    color: #0d0300;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    animation: pulse 2s ease-out infinite;
  }
  
  .contact__btn:hover {
    background-color: #ffd000;
  }
  
  .contact__btn:active {
    background-color: #ffcc00;
  }
  
  /* =============================================
     CREDIT MODAL
     ============================================= */
  .credit-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
  }
  
  .credit-modal.is-open {
    display: flex;
  }
  
  /* Blurred backdrop */
  .credit-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  /* Window */
  .credit-modal__window {
    position: relative;
    z-index: 1;
    background: #403d33;
    border-radius: 16px;
    width: 350px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: modal-in 0.25s ease;
  }
  
  @keyframes modal-in {
    from { opacity: 0; transform: translateY(-16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)     scale(1); }
  }
  
  /* Close button */
  .credit-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.15s ease;
  }
  
  .credit-modal__close:hover { opacity: 1; }
  
  /* Heading */
  .credit-modal__heading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    word-break: break-word;
  }
  
  .credit-modal__heading-white { color: #ffffff; }
  .credit-modal__heading-yellow { color: #ffe100; }
  
  /* Note */
  .credit-modal__note {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
  }
  
  /* Form */
  .credit-modal__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    width: 100%;
  }
  
  /* Radio */
  .credit-modal__radio-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
  }
  
  .credit-modal__radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  
  .credit-modal__radio-input { display: none; }
  
  .credit-modal__radio-custom {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease;
  }
  
  .credit-modal__radio-custom::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #ffe100;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  .credit-modal__radio-input:checked + .credit-modal__radio-custom { border-color: #ffe100; }
  .credit-modal__radio-input:checked + .credit-modal__radio-custom::after { opacity: 1; }
  
  .credit-modal__radio-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
  }
  
  /* Fields */
  .credit-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .credit-modal__field {
    width: 100%;
    border-bottom: 0.5px solid #ffffff;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8px;
    gap: 2px;
  }
  
  .credit-modal__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255,255,255,0.6);
    pointer-events: none;
  }
  
  .credit-modal__input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    padding: 0;
    margin-top: 8px;
  }
  
  .credit-modal__input::placeholder { color: rgba(255,255,255,0.4); }
  
  /* CTA */
  .credit-modal__cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }
  
  .credit-modal__btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffe100;
    border: 1px solid #ffcc00;
    border-radius: 10px;
    width: 100%;
    height: 60px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    color: #0d0300;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    animation: pulse 2s ease-out infinite;
  }
  
  .credit-modal__btn:hover  { background-color: #ffd000; }
  .credit-modal__btn:active { background-color: #ffcc00; }
  
  /* =============================================
     FOOTER
     Figma: Footer / 2 / — node 11243:138
     Background: #06090e, padding: 48px 20px
     ============================================= */
  .footer {
    width: 375px;
    background-color: #06090e;
    padding: 48px 20px;
    flex-shrink: 0;
  }
  
  .footer__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
  }
  
  /* Divider */
  .footer__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
  }
  
  /* Row */
  .footer__row {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding-bottom: 16px;
    width: 100%;
  }
  
  /* Brand */
  .footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  
  .footer__logo {
    width: 36px;
    height: 36px;
    border-radius: 200px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }
  
  .footer__brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    white-space: nowrap;
  }
  
  /* Contacts */
  .footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
  }
  
  .footer__contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
  }
  
  .footer__contact-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    white-space: nowrap;
  }
  
  .footer__contact-value {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    word-break: break-word;
  }
  
  a.footer__contact-value:hover {
    color: #ffe100;
  }
  
  .benefits__card-list li::marker {
    color: #000000;
  }
  
  /* =============================================
     RESPONSIVE — FLUID MOBILE LAYOUT
     Base design: 390px (iPhone 14)
     Adapts to: 320px → 430px+
     ============================================= */
  
  /* ── Всі секції: fluid ширина, max 430px ── */
  .hero,
  .offer,
  .coverage,
  .timing,
  .credit,
  .projects,
  .choice,
  .team,
  .benefits,
  .clients,
  .contact,
  .footer {
    width: 100%;
    max-width: 430px;
  }
  
  /* ── Hero ── */
  .hero {
    min-height: 100svh;
  }
  
  .hero__heading-wrap {
    height: auto;
    overflow: visible;
  }
  
  .hero__btn {
    width: min(320px, 100%);
  }
  
  .hero__feat-title,
  .hero__feat-sub {
    white-space: nowrap;
  }
  
  /* ── Offer ── */
  .offer__img-wrap {
    width: min(240px, 62%);
    height: auto;
    aspect-ratio: 240 / 150;
  }
  
  /* ── Coverage ── */
  .coverage__stat {
    max-width: 100%;
  }
  
  .coverage__stat-value {
    white-space: normal;
    font-size: clamp(32px, 10vw, 44px);
  }
  
  /* ── Credit ── */
  .credit__image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 335 / 228;
  }
  
  .credit__subtitle {
    width: 100%;
  }
  
  .credit__btn {
    width: min(289px, 100%);
  }
  
  /* ── Projects ── */
  .projects__img-wrap {
    width: 100%;
  }
  
  .projects__slide-list {
    width: 100%;
  }
  
  /* ── Choice ── */
  .choice__btn {
    width: min(289px, 100%);
  }
  
  /* ── Team ── */
  .team__photo-wrap {
    width: min(220px, 58%);
    height: auto;
    aspect-ratio: 220 / 272;
  }
  
  /* ── Clients ── */
  .clients__img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 332 / 100;
  }
  
  /* ── Contact form ── */
  .contact__radio-group,
  .contact__fields {
    width: 100%;
    max-width: 100%;
  }
  
  .contact__btn {
    width: min(289px, 100%);
  }
  
  /* ── Modal ── */
  .credit-modal__window {
    width: calc(100% - 32px);
    max-width: 375px;
  }
  
  /* ── Small phones (≤ 375px: iPhone SE, Pixel) ── */
  @media (max-width: 375px) {
    .hero,
    .offer,
    .coverage,
    .timing,
    .credit,
    .projects,
    .choice,
    .team,
    .benefits,
    .clients,
    .contact,
    .footer {
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .hero__heading {
      font-size: 20px;
      letter-spacing: 0.5px;
    }
  
    .hero__feat-title,
    .hero__feat-sub {
      font-size: 15px;
    }
  
    .hero__btn {
      font-size: 17px;
      height: 56px;
    }
  
    .hero__body {
      gap: 140px;
    }
  
    .team__photo-wrap {
      width: 55%;
    }
  
    .offer__img-wrap {
      width: 58%;
    }
  }
  
  /* ── Дуже маленькі телефони (≤ 320px: старі Android) ── */
  @media (max-width: 320px) {
    .hero,
    .offer,
    .coverage,
    .timing,
    .credit,
    .projects,
    .choice,
    .team,
    .benefits,
    .clients,
    .contact,
    .footer {
      padding-left: 12px;
      padding-right: 12px;
    }
  
    .hero__heading {
      font-size: 17px;
    }
  
    .hero__feat-title,
    .hero__feat-sub {
      font-size: 13px;
    }
  
    .hero__body {
      gap: 100px;
    }
  
    .coverage__stat-value {
      font-size: clamp(24px, 8vw, 32px);
    }
  
    .credit-modal__window {
      width: calc(100% - 16px);
      padding: 32px 16px 28px;
    }
  }
  
  /* ── Великі телефони (≥ 414px: iPhone Plus/Pro Max) ── */
  @media (min-width: 414px) {
    .hero,
    .offer,
    .coverage,
    .timing,
    .credit,
    .projects,
    .choice,
    .team,
    .benefits,
    .clients,
    .contact,
    .footer {
      max-width: 480px;
    }
  
    .credit-modal__window {
      max-width: 375px;
    }
  }
  
  /* =============================================
     OFFER SECTION
     Figma: Layout / 223 / — node 11292:102
     width: 375px, Padding: 48px 20px
     ============================================= */
.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 20px;
  width: 100%;
  max-width: 430px;
    background-color: #1c1d20;
    flex-shrink: 0;
  }
  
  /* Title */
  .offer__title-wrap {
    border-left: 5px solid #ffe100;
    padding-left: 14px;
    width: 100%;
    flex-shrink: 0;
  }
  
  .offer__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #ffffff;
    word-break: break-word;
  }
  
  /* List */
  .offer__list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    width: 100%;
    list-style: none;
    padding: 8px 0;
  }
  
  /* Item */
  .offer__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
  }
  
  .offer__img-wrap {
    width: 240px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .offer__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
    border-radius: 10px;
  }
  
  .offer__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .offer__item-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #ffffff;
    word-break: break-word;
  }
  
  .offer__item-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    word-break: break-word;
  }
  
