/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
    position:            relative;
    background-color:    var(--color-primary);
    background-size:     cover;
    background-position: center;
    background-repeat:   no-repeat;
    min-height:          calc(100vh - var(--header-height));
    display:             flex;
    align-items:         stretch;
    padding:             0;
    overflow:            hidden;
}
.hero::before {
    content:    '';
    position:   absolute;
    inset:      0;
    background: linear-gradient(
        to top,
        rgba(10, 37, 30, 0.7) 0%,
        rgba(10, 37, 30, 0.25) 50%,
        rgba(10, 37, 30, 0.1) 100%
    );
}

.hero > .container {
    position: relative;
    display:  flex;
}

.hero__wrp {
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    width:           100%;
    flex:            1;
    padding:         60px 0 24px;
}

/* Banner — centered with background */
.hero__banner {
    flex:              1;
    display:           flex;
    flex-direction:    column;
    align-items:       center;
    justify-content:   center;
    text-align:        center;
    padding:           40px;
}

.hero__banner-inner {
    background:       rgba(10, 37, 30, 0.7);
    backdrop-filter:  blur(12px);
    padding:          48px 60px;
    border-radius:    16px;
    border:           1px solid rgba(177, 131, 94, 0.3);
}

.hero__title {
    color:          #ffffff;
    font-size:      56px;
    font-weight:    400;
    line-height:    1.05;
    text-transform: uppercase;
    margin:         0 0 16px;
}

.hero__address {
    display:     inline-flex;
    align-items: center;
    gap:         10px;
    color:       var(--color-secondary);
    font-size:   17px;
    margin:      0;
}
.hero__address .icon {
    flex-shrink: 0;
}

/* Form — horizontal bar at bottom */
.hero__form {
    width:           100%;
    background:      rgba(10, 37, 30, 0.85);
    backdrop-filter:  blur(16px);
    border-radius:   0;
    border:          none;
    border-top:      3px solid var(--color-secondary);
    padding:         20px 32px 24px;
    display:         flex;
    flex-direction:  column;
    gap:             12px;
}

.hero__form-header {
    text-align: center;
}
.hero__form-title {
    color:          #ffffff;
    font-family:    var(--font-heading);
    font-size:      20px;
    font-weight:    400;
    text-transform: uppercase;
    margin:         0;
}
.hero__form-subtitle {
    display: none;
}

.hero__form .wp-block-group {
    width: 100%;
}
.hero__form .jet-fb-form-block {
    width: 100%;
}
.hero__form .jet-form-builder,
.hero__form form {
    display:     flex;
    width:       100%;
    gap:         12px;
    align-items: center;
    min-width:   0;
    flex-wrap:   wrap;
}

/* JetForm row/field wrappers — 25% each */
.hero .hero__form .jet-form-builder__row,
.hero .hero__form .jet-form-builder-row,
.hero .hero__form .jet-form-builder__field-wrap {
    flex:      1 1 0;
    min-width: 0;
    margin:    0 !important;
    padding:   0 !important;
}
.hero .hero__form .jet-form-builder__row.submit-type-row,
.hero .hero__form .jet-form-builder__submit-wrap {
    flex:      1 1 0;
    min-width: 0;
    margin:    0 !important;
    padding:   0 !important;
}
.hero .hero__form .jet-form-builder__fields-group {
    display:     flex !important;
    gap:         12px !important;
    margin:      0 !important;
    padding:     0 !important;
    flex-wrap:   wrap;
    align-items: center;
}
.hero .hero__form .jet-form-builder__field-label {
    display: none !important;
}
.hero .hero__form .jet-form-builder__submit {
    justify-content: center !important;
}
.hero .hero__form .cb-gthxmw9q .jet-form-builder__action-button {
    justify-content: center !important;
}

/* Checkbox row — full width bottom, light text */
.hero .hero__form .field-type-checkbox-field {
    flex:      1 1 0 !important;
    min-width: 0 !important;
    display:   block !important;
}
.hero .hero__form .field-type-checkbox-field .jet-form-builder__field-label {
    display: block !important;
}
.hero .hero__form .field-type-checkbox-field .checkradio-field {
    border:        none !important;
    border-radius: 0 !important;
    padding:       0 !important;
}
.hero .hero__form .field-type-checkbox-field .checkradio-wrap {
    align-items: flex-start !important;
}
.hero .hero__form .field-type-checkbox-field .jet-form-builder__fields-group,
.hero .hero__form .field-type-checkbox-field .jet-form-builder__field-wrap,
.hero .hero__form .field-type-checkbox-field label,
.hero .hero__form .field-type-checkbox-field span,
.hero .hero__form .field-type-checkbox-field .jet-form-builder__check-label {
    color:     rgba(255, 255, 255, 0.7) !important;
    font-size: 13px !important;
}
.hero .hero__form .field-type-checkbox-field a {
    color: var(--color-secondary) !important;
}
.hero .hero__form .field-type-checkbox-field input[type="checkbox"] {
    accent-color: var(--color-secondary) !important;
}
.hero .hero__form input[type="text"],
.hero .hero__form input[type="tel"],
.hero .hero__form input[type="email"],
.hero .hero__form textarea,
.hero .hero__form .jet-form-builder__field {
    width:            100% !important;
    background:       rgba(255, 255, 255, 0.1) !important;
    border:           1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius:    8px !important;
    padding:          13px 16px !important;
    color:            #ffffff !important;
    font-family:      var(--font-body) !important;
    font-size:        15px !important;
    margin-bottom:    0 !important;
    box-shadow:       none !important;
}
.hero .hero__form input::placeholder,
.hero .hero__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}
.hero .hero__form input:focus,
.hero .hero__form textarea:focus {
    outline:      none !important;
    border-color: var(--color-secondary) !important;
    background:   rgba(255, 255, 255, 0.15) !important;
}

/* Checkbox consent */
.hero .hero__form .jet-form-builder__row.checkboxes-wrap,
.hero .hero__form .jet-form-builder__field-wrap.checkboxes-wrap,
.hero .hero__form .checkboxes-field-wrap {
    flex:      0 0 100% !important;
    min-width: 0;
}
.hero .hero__form .jet-form-builder__field-label,
.hero .hero__form .jet-form-builder__check-label,
.hero .hero__form .jet-form-builder__check-label span,
.hero .hero__form label,
.hero .hero__form .field-type-checkbox-field label {
    color:     rgba(255, 255, 255, 0.6) !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}
.hero .hero__form .jet-form-builder__check-label a {
    color: var(--color-secondary) !important;
}
.hero .hero__form input[type="checkbox"] {
    accent-color: var(--color-secondary) !important;
}

.hero__form button[type="submit"],
.hero__form input[type="submit"],
.hero__form .jet-form-builder__submit,
.hero__form .jet-form-builder__action-button {
    background:       var(--color-secondary) !important;
    color:            #ffffff !important;
    border:           0 !important;
    border-radius:    8px !important;
    padding:          14px 32px !important;
    font-family:      var(--font-body);
    font-size:        15px !important;
    font-weight:      600;
    text-transform:   uppercase;
    letter-spacing:   0.04em;
    cursor:           pointer;
    transition:       background var(--transition), box-shadow var(--transition);
    white-space:      nowrap;
    width:            100% !important;
    text-align:       center !important;
}
.hero__form button[type="submit"]:hover,
.hero__form input[type="submit"]:hover,
.hero__form .jet-form-builder__submit:hover,
.hero__form .jet-form-builder__action-button:hover {
    background: #9a7250 !important;
    box-shadow: 0 4px 16px rgba(177, 131, 94, 0.4);
}

/* ── About (premium dark) ──────────────────────────────────────────────── */

.about {
    background: var(--color-primary);
    padding:    80px 0;
}

.about__wrp {
    display:     flex;
    align-items: center;
    gap:         48px;
}

.about__media {
    flex:      0 0 48%;
    min-width: 0;
}
.about__image {
    display:       block;
    width:         100%;
    height:        auto;
    border-radius: 16px;
    object-fit:    cover;
}

.about__content {
    flex:     1;
    position: relative;
}
.about__content[style] {
    background-size: 0;
}
.about__content::before {
    content:             '';
    position:            absolute;
    inset:               0;
    background-image:    inherit;
    background-size:     contain;
    background-position: center;
    background-repeat:   no-repeat;
    opacity:             0.06;
    pointer-events:      none;
}

.about__heading {
    color:          #ffffff;
    font-size:      32px;
    text-transform: uppercase;
    margin:         0 0 16px;
}

.about__text {
    color:       rgba(255, 255, 255, 0.75);
    font-size:   16px;
    line-height: 1.7;
    margin:      0;
}
.about__text p { margin: 0 0 12px; }
.about__text p:last-child { margin-bottom: 0; }

.about__accent {
    color:       var(--color-secondary);
    font-family: var(--font-heading);
    font-size:   18px;
    font-style:  italic;
    margin:      16px 0 0;
}

/* Numbers strip */
.about__numbers {
    display:      flex;
    gap:          0;
    margin-top:   48px;
    border-top:   1px solid rgba(177, 131, 94, 0.25);
    padding-top:  32px;
}

.about__num {
    flex:       1;
    text-align: center;
}
.about__num + .about__num {
    border-left: 1px solid rgba(177, 131, 94, 0.15);
}

.about__num-value {
    display:     block;
    color:       var(--color-secondary);
    font-family: var(--font-heading);
    font-size:   36px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.about__num-label {
    color:     rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ── Advantages (icon cards) ───────────────────────────────────────────── */

.advantages {
    background: var(--color-bg-alt);
    padding:    80px 0;
}

.advantages__header {
    text-align:    center;
    margin-bottom: 48px;
}

.advantages__label {
    display:        block;
    color:          var(--color-secondary);
    font-size:      13px;
    font-weight:    600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom:  12px;
}

.advantages__heading {
    color:          var(--color-primary);
    font-size:      36px;
    text-transform: uppercase;
    margin:         0;
}

.advantages__wrp {
    display:         flex;
    flex-wrap:       wrap;
    gap:             20px;
    justify-content: center;
}

.adv-card {
    flex:            0 0 calc(25% - 15px);
    background:      #ffffff;
    border:          1px solid var(--color-border);
    border-radius:   16px;
    padding:         32px 24px;
    text-align:      center;
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    box-shadow:      0 4px 16px rgba(10, 37, 30, 0.06);
    transition:      transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.adv-card:hover {
    transform:    translateY(-6px);
    box-shadow:   0 12px 32px rgba(10, 37, 30, 0.12);
    border-color: var(--color-secondary);
}

.adv-card__icon {
    color:           var(--color-secondary);
    margin-bottom:   20px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    width:           64px;
    height:          64px;
    background:      rgba(177, 131, 94, 0.1);
    border-radius:   50%;
}
.adv-card__icon .icon {
    width:  28px;
    height: 28px;
}
.adv-card__icon-img {
    width:      32px;
    height:     32px;
    object-fit: contain;
}

.adv-card__title {
    color:          var(--color-primary);
    font-size:      18px;
    font-weight:    700;
    text-transform: uppercase;
    margin:         0 0 10px;
}

.adv-card__text {
    color:       var(--color-muted);
    font-size:   16px;
    line-height: 1.6;
    margin:      0;
}


/* ── Gallery ────────────────────────────────────────────────────────────── */

.gallery {
    background: var(--color-primary);
    padding:    80px 0;
    overflow:   hidden;
}

.gallery__header {
    text-align:    center;
    margin-bottom: 48px;
}

.gallery__label {
    display:        block;
    color:          var(--color-secondary);
    font-family:    var(--font-body);
    font-size:      13px;
    font-weight:    600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom:  12px;
}

.gallery__title {
    color:   #ffffff;
    font-size: 36px;
    margin:  0 0 12px;
}

.gallery__subtitle {
    color:     rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin:    0;
}

/* Slider — full width, overflow visible for peeking */
.gallery__slider {
    padding: 0 40px;
}

.gallery__slider .slick-list {
    overflow: visible;
}

.gallery__slide {
    padding: 0 10px;
    outline: none;
}

.gallery__link {
    display:  block;
    cursor:   pointer;
    overflow: hidden;
    border-radius: 12px;
}

.gallery__image {
    display:    block;
    width:      100%;
    height:     360px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery__link:hover .gallery__image {
    transform: scale(1.05);
}

/* Controls */
.gallery__controls {
    display:     flex;
    align-items: center;
    justify-content: center;
    gap:         16px;
    margin-top:  40px;
}

.gallery__arrow {
    width:         48px;
    height:        48px;
    border-radius: 50%;
    border:        1px solid rgba(255, 255, 255, 0.3);
    background:    transparent;
    color:         #ffffff;
    display:       inline-flex;
    align-items:   center;
    justify-content: center;
    cursor:        pointer;
    transition:    border-color var(--transition), background var(--transition);
}
.gallery__arrow:hover {
    border-color: var(--color-secondary);
    background:   var(--color-secondary);
    color:        #ffffff;
}
.gallery__arrow--prev { transform: scaleX(-1); }

/* ── Lightbox ──────────────────────────────────────────────────────────── */

.lightbox {
    position:   fixed;
    inset:      0;
    z-index:    var(--z-modal);
    background: rgba(0, 0, 0, 0.92);
    display:    flex;
    align-items: center;
    justify-content: center;
    opacity:    0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.is-open {
    opacity:    1;
    visibility: visible;
}

.lightbox__content {
    max-width:  90vw;
    max-height: 85vh;
    margin:     0;
    text-align: center;
}

.lightbox__image {
    max-width:  90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox__caption {
    color:      rgba(255, 255, 255, 0.7);
    font-size:  14px;
    margin-top: 12px;
}
.lightbox__caption:empty { display: none; }

.lightbox__close {
    position:   absolute;
    top:        24px;
    right:      24px;
    background: none;
    border:     0;
    color:      #ffffff;
    cursor:     pointer;
    opacity:    0.7;
    transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }

.lightbox__arrow {
    position:   absolute;
    top:        50%;
    transform:  translateY(-50%);
    background: none;
    border:     0;
    color:      #ffffff;
    cursor:     pointer;
    opacity:    0.6;
    transition: opacity var(--transition);
    padding:    12px;
}
.lightbox__arrow:hover { opacity: 1; }
.lightbox__arrow--prev { left: 24px; transform: translateY(-50%) scaleX(-1); }
.lightbox__arrow--next { right: 24px; }

.lightbox__counter {
    position:   absolute;
    bottom:     24px;
    left:       50%;
    transform:  translateX(-50%);
    color:      rgba(255, 255, 255, 0.5);
    font-size:  14px;
    font-variant-numeric: tabular-nums;
}

/* ── Developer ─────────────────────────────────────────────────────────── */

.developer {
    background: var(--color-primary);
    padding:    80px 0;
}

.developer__header {
    text-align:    center;
    margin-bottom: 48px;
}

.developer__label {
    display:        block;
    color:          var(--color-secondary);
    font-family:    var(--font-body);
    font-size:      13px;
    font-weight:    600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom:  12px;
}

.developer__heading {
    color:          #ffffff;
    font-size:      36px;
    text-transform: uppercase;
    margin:         0 0 12px;
}

.developer__subtitle {
    color:     rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin:    0;
}

.developer__wrp {
    display:     flex;
    align-items: flex-start;
    gap:         48px;
}

/* Video — left column */
.developer__video {
    flex-shrink: 0;
    width:       50%;
    position:    sticky;
    top:         calc(var(--header-height) + 20px);
}

.developer__video iframe {
    display:       block;
    width:         100%;
    aspect-ratio:  16 / 9;
    border:        0;
    border-radius: 16px;
}

/* Content — right column */
.developer__content {
    flex:         1;
    padding-left: 32px;
    border-left:  3px solid var(--color-secondary);
}

.developer__text {
    color:       rgba(255, 255, 255, 0.85);
    font-size:   16px;
    line-height: 1.8;
    margin:      0;
}
.developer__text p { margin: 0 0 16px; }
.developer__text p:last-child { margin-bottom: 0; }

/* ── Progress ───────────────────────────────────────────────────────────── */

.progress {
    background: var(--color-bg-alt);
    padding:    80px 0;
}

.progress__header {
    text-align:    center;
    margin-bottom: 48px;
}

.progress__label {
    display:        block;
    color:          var(--color-secondary);
    font-family:    var(--font-body);
    font-size:      13px;
    font-weight:    600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom:  12px;
}

.progress__heading {
    color:   var(--color-primary);
    font-size: 36px;
    margin:  0 0 12px;
}

.progress__subtitle {
    color:     var(--color-muted);
    font-size: 16px;
    margin:    0;
}

.progress__wrp {
    display:  flex;
    gap:      24px;
    position: relative;
}

.progress__card {
    flex:           1 1 0;
    min-width:      0;
    background:     #ffffff;
    border-radius:  16px;
    overflow:       hidden;
    border:         1px solid #0a251e;
    transition:     box-shadow var(--transition), transform var(--transition);
    display:        flex;
    flex-direction: column;
    position:       relative;
}
.progress__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform:  translateY(-6px);
}

/* Status block — icon + text above photo */
.progress__status {
    background:  var(--color-primary);
    padding:     20px 16px;
    text-align:  center;
    display:     flex;
    flex-direction: column;
    align-items: center;
    gap:         10px;
    min-height:  120px;
    justify-content: center;
    position:    relative;
}

.progress__icon {
    display:    block;
    width:      48px;
    height:     48px;
    object-fit: contain;
}

.progress__status-text {
    color:     var(--color-secondary);
    font-size: 14px;
    margin:    0;
    line-height: 1.3;
}

.progress__status::after {
    content:    '';
    position:   absolute;
    bottom:     0;
    left:       20%;
    right:      20%;
    height:     1px;
    background: var(--color-secondary);
    opacity:    0.3;
}

.progress__media {
    position: relative;
    overflow: hidden;
}

.progress__image {
    display:    block;
    width:      100%;
    height:     200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.progress__card:hover .progress__image {
    transform: scale(1.05);
}

.progress__badge {
    position:       absolute;
    top:            12px;
    left:           12px;
    background:     var(--color-success);
    color:          #ffffff;
    font-size:      12px;
    font-weight:    600;
    padding:        5px 12px;
    border-radius:  20px;
    letter-spacing: 0.02em;
}

.progress__body {
    padding: 20px 20px 24px;
    flex:    1;
}

.progress__name {
    color:       var(--color-primary);
    font-family: var(--font-body);
    font-size:   18px;
    font-weight: 600;
    margin:      0 0 8px;
}

.progress__desc {
    color:       var(--color-muted);
    font-size:   14px;
    line-height: 1.6;
    margin:      0;
}

a.progress__card {
    text-decoration: none;
    color:           inherit;
    cursor:          pointer;
}
a.progress__card:hover {
    border-color: var(--color-secondary);
}
a.progress__card:hover .progress__link {
    gap: 10px;
}

.progress__link {
    display:         inline-flex;
    align-items:     center;
    gap:             6px;
    color:           var(--color-secondary);
    font-size:       14px;
    font-weight:     600;
    margin-top:      12px;
    transition:      gap var(--transition);
}

/* ── Projects ──────────────────────────────────────────────────────────── */

.projects {
    background: var(--color-bg-alt);
    padding:    80px 0;
}

.projects__header {
    text-align:    center;
    margin-bottom: 48px;
}

.projects__label {
    display:        block;
    color:          var(--color-secondary);
    font-family:    var(--font-body);
    font-size:      13px;
    font-weight:    600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom:  12px;
}

.projects__heading {
    color:          var(--color-primary);
    font-size:      36px;
    text-transform: uppercase;
    margin:         0 0 12px;
}

.projects__subtitle {
    color:     var(--color-muted);
    font-size: 16px;
    margin:    0;
}

.projects__slider .slick-track {
    display: flex;
}
.projects__slider .slick-slide {
    padding: 0 12px;
    outline: none;
    height:  auto;
}
.projects__slider .slick-slide > div {
    height: 100%;
}
.projects__slider .slick-list {
    margin: 0 -12px;
}
.projects__slide {
    height: 100%;
}

.projects__card {
    height:          100%;
    background:      #ffffff;
    border-radius:   16px;
    overflow:        hidden;
    text-decoration: none;
    color:           inherit;
    display:         flex;
    flex-direction:  column;
    position:        relative;
    border:          1px solid var(--color-border);
    border-top:      3px solid var(--color-secondary);
    transition:      box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
a.projects__card:hover {
    box-shadow:   0 12px 32px rgba(10, 37, 30, 0.12);
    transform:    translateY(-6px);
    border-color: var(--color-secondary);
}

.projects__media {
    position: relative;
    overflow: hidden;
}
.projects__media::after {
    content:    '';
    position:   absolute;
    inset:      0;
    background: linear-gradient(to top, rgba(10, 37, 30, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.projects__image {
    display:    block;
    width:      100%;
    height:     260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
a.projects__card:hover .projects__image {
    transform: scale(1.05);
}

.projects__body {
    padding: 24px;
    flex:    1;
    display: flex;
    flex-direction: column;
}

.projects__name {
    color:          var(--color-primary);
    font-size:      20px;
    margin:         0 0 12px;
    padding-bottom: 12px;
    border-bottom:  1px solid rgba(177, 131, 94, 0.25);
}

.projects__desc {
    color:       var(--color-muted);
    font-size:   15px;
    line-height: 1.6;
    margin:      0 0 20px;
    flex:        1;
}

.projects__link {
    display:        inline-flex;
    align-items:    center;
    gap:            8px;
    color:          var(--color-secondary);
    font-size:      14px;
    font-weight:    600;
    letter-spacing: 0.04em;
    transition:     gap var(--transition), color var(--transition);
}
a.projects__card:hover .projects__link {
    gap:   12px;
    color: var(--color-primary);
}

/* Controls — hidden on desktop when all cards visible */
.projects__controls {
    display:         none;
    align-items:     center;
    justify-content: center;
    gap:             16px;
    margin-top:      40px;
}

.projects__arrow {
    width:           48px;
    height:          48px;
    border-radius:   50%;
    border:          2px solid var(--color-primary);
    background:      transparent;
    color:           var(--color-primary);
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    cursor:          pointer;
    transition:      border-color var(--transition), background var(--transition), color var(--transition);
}
.projects__arrow .icon {
    width:  20px;
    height: 20px;
}
.projects__arrow:hover {
    border-color: var(--color-secondary);
    background:   var(--color-secondary);
    color:        #ffffff;
}
.projects__arrow--prev { transform: scaleX(-1); }

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        min-height: calc(100vh - var(--header-height));
    }

    .hero__wrp {
        padding: 40px 0 20px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__banner-inner {
        padding: 32px 36px;
    }

    .hero__form {
        padding: 16px 20px 20px;
        gap:     10px;
    }

    .hero__form-title {
        font-size: 17px;
    }

    .hero__form .wp-block-group {
        display:   flex;
        flex-wrap: wrap;
        gap:       10px;
    }

    .hero .hero__form .jet-form-builder__row,
    .hero .hero__form .jet-form-builder-row,
    .hero .hero__form .jet-form-builder__field-wrap {
        flex: 1 1 45% !important;
    }

    .hero__form input[type="text"],
    .hero__form input[type="tel"],
    .hero__form input[type="email"],
    .hero__form textarea {
        padding: 12px 14px;
    }

    /* About — Tablet */
    .about { padding: 60px 0; }
    .about__heading { font-size: 28px; }
    .about__wrp { gap: 32px; }
    .about__media { flex: 0 0 44%; }
    .about__num-value { font-size: 28px; }
    .about__content::before { opacity: 0.04; }

    /* Advantages — Tablet */
    .advantages { padding: 60px 0; }
    .advantages__heading { font-size: 30px; }
    .adv-card { flex: 0 0 calc(33.333% - 14px); padding: 28px 20px; }
    .adv-card__icon { width: 56px; height: 56px; }
    .adv-card__title { font-size: 16px; }
    .adv-card__text { font-size: 14px; }

    /* Developer — Tablet */
    .developer { padding: 60px 0; }
    .developer__heading { font-size: 30px; }
    .developer__header { margin-bottom: 36px; }
    .developer__wrp { gap: 32px; }
    .developer__video { width: 50%; }
    .developer__content { padding-left: 24px; }
    .developer__text { font-size: 15px; }

    /* Progress — Tablet */
    .progress { padding: 60px 0; }
    .progress__heading { font-size: 30px; }
    .progress__header { margin-bottom: 36px; }
    .progress__wrp {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }
    .progress__card {
        min-width: 260px;
        flex:      0 0 260px;
        scroll-snap-align: start;
    }
    .progress__image { height: 180px; }

    /* Projects — Tablet */
    .projects { padding: 60px 0; }
    .projects__heading { font-size: 30px; }
    .projects__header { margin-bottom: 36px; }
    .projects__image { height: 220px; }
    .projects__controls { display: flex; margin-top: 28px; }
    .projects__arrow { width: 42px; height: 42px; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - var(--header-height));
    }

    .hero__wrp {
        padding: 20px 0 16px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__banner-inner {
        padding: 24px 20px;
    }

    .hero__banner {
        padding: 16px;
    }

    .hero__address {
        font-size: 13px;
        gap: 6px;
    }

    .hero__form {
        padding: 14px 16px 16px;
        gap:     8px;
    }

    .hero__form-title {
        font-size: 15px;
        margin-bottom: 4px !important;
    }

    .hero__form .wp-block-group {
        flex-direction: column;
    }

    .hero .hero__form .jet-form-builder__row,
    .hero .hero__form .jet-form-builder-row,
    .hero .hero__form .jet-form-builder__field-wrap,
    .hero .hero__form .field-type-checkbox-field {
        flex:  0 0 100% !important;
        width: 100% !important;
    }

    .hero__form input[type="text"],
    .hero__form input[type="tel"],
    .hero__form input[type="email"],
    .hero__form textarea {
        padding:   11px 14px;
        font-size: 14px;
    }

    .hero__form button[type="submit"],
    .hero__form input[type="submit"],
    .hero__form .jet-form-builder__submit,
    .hero__form .jet-form-builder__action-button {
        padding:   12px !important;
        font-size: 14px !important;
    }

    /* About — Mobile */
    .about { padding: 40px 0; }
    .about__wrp { flex-direction: column; gap: 20px; }
    .about__media { flex: none; width: 100%; }
    .about__image { border-radius: 10px; }
    .about__heading { font-size: 22px; margin-bottom: 12px; }
    .about__text { font-size: 14px; }
    .about__accent { font-size: 16px; }
    .about__content::before { display: none; }
    .about__numbers { flex-wrap: wrap; margin-top: 28px; padding-top: 20px; }
    .about__num { flex: 0 0 50%; padding: 10px 0; }
    .about__num + .about__num { border-left: none; }
    .about__num:nth-child(odd) { border-right: 1px solid rgba(177,131,94,0.15); }
    .about__num-value { font-size: 24px; }
    .about__num-label { font-size: 12px; }

    /* Advantages — Mobile */
    .advantages { padding: 40px 0; }
    .advantages__heading { font-size: 24px; }
    .advantages__label { font-size: 12px; }
    .advantages__header { margin-bottom: 28px; }
    .advantages__wrp { gap: 10px; }
    .adv-card { flex: 0 0 calc(50% - 5px); padding: 20px 14px; border-radius: 12px; }
    .adv-card__icon { width: 48px; height: 48px; margin-bottom: 12px; }
    .adv-card__icon .icon { width: 22px; height: 22px; }
    .adv-card__icon-img { width: 26px; height: 26px; }
    .adv-card__title { font-size: 14px; margin-bottom: 6px; }
    .adv-card__text { font-size: 13px; }

    /* Developer — Mobile */
    .developer { padding: 36px 0; }
    .developer__heading { font-size: 26px; margin-bottom: 8px; }
    .developer__header { margin-bottom: 24px; }
    .developer__wrp { flex-direction: column; gap: 24px; }
    .developer__video { width: 100%; position: static; }
    .developer__content { padding-left: 20px; }
    .developer__text { font-size: 15px; line-height: 1.6; }

    /* Progress — Mobile */
    .progress { padding: 40px 0; }
    .progress__heading { font-size: 26px; }
    .progress__header { margin-bottom: 28px; }
    .progress__card {
        min-width: 240px;
        flex:      0 0 240px;
    }
    .progress__status { min-height: 100px; padding: 16px 12px; }
    .progress__icon { width: 40px; height: 40px; }
    .progress__status-text { font-size: 13px; }
    .progress__image { height: 160px; }
    .progress__body { padding: 16px 16px 20px; }
    .progress__name { font-size: 16px; }
    .progress__desc { font-size: 13px; }

    /* Projects — Mobile */
    .projects { padding: 40px 0; }
    .projects__heading { font-size: 26px; }
    .projects__header { margin-bottom: 28px; }
    .projects__image { height: 200px; }
    .projects__body { padding: 20px; }
    .projects__name { font-size: 18px; }
    .projects__desc { font-size: 14px; margin-bottom: 16px; }
    .projects__controls { margin-top: 24px; }
    .projects__arrow { width: 40px; height: 40px; }
}
