/* Full redesign system */
:root {
    --rd-bg: #edf3f9;
    --rd-surface: #ffffff;
    --rd-surface-alt: #f7fbff;
    --rd-text: #0f2035;
    --rd-muted: #5f728d;
    --rd-line: rgba(15, 32, 53, 0.1);
    --rd-primary: #0a8fda;
    --rd-primary-2: #18b7e7;
    --rd-dark: #071321;
    --rd-dark-2: #0a1f38;
    --rd-radius: 18px;
    --rd-radius-sm: 12px;
    --rd-shadow: 0 18px 50px rgba(7, 19, 33, 0.12);
    --rd-shadow-lg: 0 28px 70px rgba(7, 19, 33, 0.2);
}

body.site-redesign,
body.subpage.site-redesign {
    background: var(--rd-bg);
    color: var(--rd-text);
    font-family: "Poppins", sans-serif;
}

body.site-redesign h1,
body.site-redesign h2,
body.site-redesign h3,
body.site-redesign h4,
body.site-redesign h5,
body.site-redesign h6 {
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.03em;
}

body.site-redesign p {
    color: var(--rd-muted);
}

body.site-redesign .container {
    max-width: 1320px;
}

/* Navbar */
body.site-redesign .navbar {
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(15, 32, 53, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(7, 19, 33, 0.08);
}

body.site-redesign .nav-container {
    max-width: 1320px;
}

body.site-redesign .logo-link {
    gap: 12px;
}

body.site-redesign .nav-link {
    color: #102645;
    font-weight: 600;
    font-size: 0.95rem;
}

body.site-redesign .nav-link:hover,
body.site-redesign .nav-link--parent:hover {
    color: var(--rd-primary);
}

body.site-redesign .nav-link::after {
    background: var(--rd-primary);
}

body.site-redesign .nav-apps-btn {
    background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-2));
    box-shadow: 0 12px 24px rgba(10, 143, 218, 0.28);
}

body.site-redesign .nav-dropdown {
    border: 1px solid var(--rd-line);
    box-shadow: var(--rd-shadow);
}

/* Generic helpers */
body.site-redesign .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rd-primary);
    margin-bottom: 1rem;
}

body.site-redesign .section-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
}

body.site-redesign .section-kicker--light {
    color: #9fdfff;
}

body.site-redesign .section-header {
    margin-bottom: clamp(26px, 4vw, 48px);
}

body.site-redesign .section-header--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 24px;
    align-items: end;
}

body.site-redesign .transport-subtitle {
    max-width: 460px;
    justify-self: end;
}

body.site-redesign .section-header h2 {
    color: var(--rd-text);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 0;
}

body.site-redesign .section-header p {
    max-width: 620px;
    font-size: 1.03rem;
}

/* Buttons */
body.site-redesign .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 50px;
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
    font-size: 0.97rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.site-redesign .btn-primary,
body.site-redesign .btn-hero-buy,
body.site-redesign .contact-form .btn-primary {
    background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-2));
    color: #fff;
    box-shadow: 0 14px 28px rgba(10, 143, 218, 0.28);
}

body.site-redesign .btn-primary:hover,
body.site-redesign .btn-hero-buy:hover,
body.site-redesign .contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(10, 143, 218, 0.33);
}

body.site-redesign .btn-hero-voyager {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
}

/* Hero */
body.site-redesign .hero {
    position: relative;
    padding: 0 0 30px;
    background:
        linear-gradient(112deg, rgba(7, 19, 33, 0.95) 0%, rgba(10, 31, 56, 0.92) 48%, rgba(9, 65, 113, 0.78) 100%),
        url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
    overflow: hidden;
}

body.site-redesign .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(24, 183, 231, 0.18), transparent 28%),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    pointer-events: none;
}

body.site-redesign .hero-overlay,
body.site-redesign .hero-image,
body.site-redesign .hero__media {
    display: none !important;
}

body.site-redesign .hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
    padding-top: clamp(120px, 13vw, 165px);
}

body.site-redesign .hero-content,
body.site-redesign .hero__content,
body.site-redesign .hero-copy {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: none;
    text-align: left;
    align-items: flex-start;
}

body.site-redesign .hero-eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #9fdfff;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

body.site-redesign .hero-eyebrow__text {
    color: rgba(255, 255, 255, 0.72);
}

body.site-redesign .hero-logo-sygnet {
    height: 1.25rem;
    width: auto;
}

body.site-redesign .hero-logo-brand {
    color: #8fd9ff !important;
}

body.site-redesign .hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 3.9rem);
    line-height: 1.06;
    margin-bottom: 1rem;
    max-width: 620px;
}

body.site-redesign .hero p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 540px;
    font-size: clamp(0.96rem, 1.2vw, 1.06rem);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

body.site-redesign .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 1.8rem;
}

body.site-redesign .hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #eff8ff;
    font-size: 0.88rem;
    font-weight: 500;
}

body.site-redesign .hero-buttons,
body.site-redesign .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: auto;
}

body.site-redesign .hero-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

body.site-redesign .hero-panel__main,
body.site-redesign .hero-panel__tile {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow-lg);
}

body.site-redesign .hero-panel__main {
    padding: 28px;
}

body.site-redesign .hero-panel__kicker {
    display: inline-block;
    color: #9fdfff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

body.site-redesign .hero-panel__main h3 {
    color: #fff;
    font-size: 1.7rem;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

body.site-redesign .hero-panel__main p {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 0;
}

body.site-redesign .hero-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.site-redesign .hero-panel__tile {
    padding: 20px;
    display: grid;
    gap: 8px;
}

body.site-redesign .hero-panel__tile i {
    color: #8fd9ff;
    font-size: 1.1rem;
}

body.site-redesign .hero-panel__tile strong {
    color: #fff;
    font-size: 1rem;
}

body.site-redesign .hero-panel__tile span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.5;
}

body.site-redesign .hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border-radius: var(--rd-radius);
    overflow: hidden;
}

body.site-redesign .hero-stat {
    padding: 22px 18px;
    display: grid;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

body.site-redesign .hero-stat:last-child {
    border-right: none;
}

body.site-redesign .hero-stat__num {
    color: #8fd9ff;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
}

body.site-redesign .hero-stat__label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.site-redesign .hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #18b7e7, #0a8fda, transparent);
}

/* Sections */
body.site-redesign .services,
body.site-redesign .transport-section,
body.site-redesign .contact {
    background: var(--rd-bg);
    padding: clamp(70px, 8vw, 110px) 0;
}

body.site-redesign .fleet {
    background: linear-gradient(180deg, #0b182b 0%, #0e223d 100%);
    padding: clamp(70px, 8vw, 110px) 0;
}

body.site-redesign .fleet .section-header h2,
body.site-redesign .fleet .section-header p,
body.site-redesign .fleet .section-kicker {
    color: #fff;
}

body.site-redesign .fleet .section-kicker::before {
    background: #8fd9ff;
}

/* Services */
body.site-redesign .services-shell {
    display: grid;
    gap: 28px;
}

body.site-redesign .services-lead__card {
    padding: 22px 28px;
    border-radius: var(--rd-radius);
    background: linear-gradient(135deg, #0d2340, #13345b);
    box-shadow: var(--rd-shadow);
    max-width: 760px;
}

body.site-redesign .services-lead__label {
    display: inline-block;
    color: #9fdfff;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

body.site-redesign .services-lead__card h3 {
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.22;
    margin-bottom: 0.55rem;
}

body.site-redesign .services-lead__card p {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 0;
    max-width: 58ch;
}

body.site-redesign .transport-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

body.site-redesign .transport-card {
    position: relative;
    border-radius: var(--rd-radius);
    overflow: hidden;
    min-height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--rd-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

body.site-redesign .transport-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--rd-shadow-lg);
}

body.site-redesign .card-background {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center !important;
    transform: scale(1);
    transition: transform 0.45s ease;
}

body.site-redesign .transport-card:hover .card-background {
    transform: scale(1.06);
}

body.site-redesign .transport-card:nth-child(1) .card-background {
    background:
        linear-gradient(180deg, rgba(7, 19, 33, 0.08), rgba(7, 19, 33, 0.88)),
        linear-gradient(145deg, rgba(17, 132, 192, 0.45), rgba(8, 31, 58, 0.72)),
        url("https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1200&q=80") center/cover;
}

body.site-redesign .transport-card:nth-child(2) .card-background {
    background:
        linear-gradient(180deg, rgba(7, 19, 33, 0.08), rgba(7, 19, 33, 0.9)),
        linear-gradient(145deg, rgba(8, 96, 180, 0.38), rgba(8, 31, 58, 0.78)),
        url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=80") center/cover;
}

body.site-redesign .transport-card:nth-child(3) .card-background {
    background:
        linear-gradient(180deg, rgba(7, 19, 33, 0.08), rgba(7, 19, 33, 0.9)),
        linear-gradient(145deg, rgba(10, 143, 218, 0.34), rgba(8, 31, 58, 0.78)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1200&q=80") center/cover;
}

body.site-redesign .card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.08) 48%, transparent 68%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

body.site-redesign .transport-card:hover .card-shine {
    opacity: 1;
}

body.site-redesign .card-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
}

body.site-redesign .card-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

body.site-redesign .card-content h3 {
    color: #fff;
    font-size: 1.28rem;
    line-height: 1.2;
    margin-bottom: 0.7rem;
}

body.site-redesign .card-kup-online {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.site-redesign .card-description {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
    max-width: 30ch;
}

body.site-redesign .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

body.site-redesign .card-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.74rem;
    color: #f0f8ff;
}

body.site-redesign .card-arrow {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-top: 16px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Fleet */
body.site-redesign .fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

body.site-redesign .fleet-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--rd-radius);
    min-height: 430px;
    aspect-ratio: auto;
    box-shadow: var(--rd-shadow-lg);
    background: #10223a;
}

body.site-redesign .fleet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.site-redesign .fleet-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    transform: translateY(0);
    background: linear-gradient(180deg, rgba(7, 19, 33, 0.05), rgba(7, 19, 33, 0.92));
    color: #fff;
}

body.site-redesign .fleet-overlay h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

body.site-redesign .fleet-overlay p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

body.site-redesign .fleet-item--voyager {
    background:
        linear-gradient(145deg, rgba(7, 19, 33, 0.72), rgba(11, 74, 136, 0.58)),
        url("https://images.unsplash.com/photo-1516321165247-4aa89a48be28?auto=format&fit=crop&w=1200&q=80") center/cover;
}

body.site-redesign .voy-brand {
    position: absolute;
    inset: 28px 28px auto 28px;
    transform: none;
    top: 0;
    left: 0;
    text-align: left;
    width: auto;
    z-index: 1;
}

body.site-redesign .voy-brand__name {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.2rem;
}

body.site-redesign .voy-brand__sub {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 0.8rem;
}

body.site-redesign .voy-brand__owner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.site-redesign .voy-brand__sygnet {
    width: 20px;
    height: 20px;
}

body.site-redesign .voy-brand__sindbad {
    color: #8fd9ff;
}

body.site-redesign .fleet-link-label {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.52rem 0.84rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Quick contact */
body.site-redesign .quick-contact-section {
    padding: 0 0 90px;
    background: linear-gradient(180deg, #0e223d 0%, #0f2744 100%);
}

body.site-redesign .quick-contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 34px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--rd-shadow-lg);
    margin-top: -10px;
}

body.site-redesign .quick-contact-title {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 0.6rem;
}

body.site-redesign .quick-contact-subtitle {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 0;
    max-width: 720px;
}

body.site-redesign .quick-contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

body.site-redesign .quick-action-btn {
    min-height: 52px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

body.site-redesign .quick-call-btn,
body.site-redesign .quick-email-btn {
    background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-2));
}

/* Contact */
body.site-redesign .contact-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

body.site-redesign .contact-aside {
    display: grid;
    gap: 20px;
}

body.site-redesign .contact-aside__intro,
body.site-redesign .contact-aside__note,
body.site-redesign .contact-form-wrap {
    background: var(--rd-surface);
    border: 1px solid var(--rd-line);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
}

body.site-redesign .contact-aside__intro,
body.site-redesign .contact-aside__note {
    padding: 26px;
}

body.site-redesign .contact-aside__intro h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.08;
    margin-bottom: 0.9rem;
}

body.site-redesign .contact-aside__note {
    display: grid;
    gap: 6px;
    background: linear-gradient(135deg, #0d2340, #13345b);
}

body.site-redesign .contact-aside__note strong,
body.site-redesign .contact-aside__note span {
    color: #fff;
}

body.site-redesign .contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.site-redesign .contact-item {
    background: var(--rd-surface);
    border: 1px solid var(--rd-line);
    border-radius: var(--rd-radius-sm);
    box-shadow: var(--rd-shadow);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

body.site-redesign .contact-item--link {
    margin: 0;
}

body.site-redesign .contact-item--link:hover {
    transform: translateY(-2px);
    background: #f6fbff;
}

body.site-redesign .contact-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-2));
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 14px 24px rgba(10, 143, 218, 0.22);
}

body.site-redesign .contact-details h4 {
    color: var(--rd-text);
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

body.site-redesign .contact-details p {
    margin: 0;
    color: var(--rd-muted);
    line-height: 1.6;
}

body.site-redesign .contact-form-wrap {
    overflow: hidden;
}

body.site-redesign .contact-form-head {
    padding: 28px 30px 0;
}

body.site-redesign .contact-form-head h3 {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}

body.site-redesign .contact-form-head p {
    margin-bottom: 0;
}

body.site-redesign .contact-form {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 24px 30px 30px;
}

body.site-redesign .form-group {
    margin-bottom: 16px;
}

body.site-redesign .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

body.site-redesign .form-row.is-hidden,
body.site-redesign .form-group.is-hidden,
body.site-redesign #b2bSection.is-hidden {
    display: none !important;
}

body.site-redesign .form-row .form-group {
    margin-bottom: 0;
}

body.site-redesign .contact-form input,
body.site-redesign .contact-form select,
body.site-redesign .contact-form textarea,
body.site-redesign .phone-dial-btn,
body.site-redesign .attachment-input {
    width: 100%;
    border: 1px solid #d4dfef;
    border-radius: 12px;
    background: #fbfdff;
    color: var(--rd-text);
}

body.site-redesign .contact-form input,
body.site-redesign .contact-form select,
body.site-redesign .contact-form textarea {
    padding: 15px 16px;
    font-size: 0.97rem;
    font-family: inherit;
}

body.site-redesign .contact-form select {
    appearance: none;
}

body.site-redesign .contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

body.site-redesign .contact-form input:focus,
body.site-redesign .contact-form select:focus,
body.site-redesign .contact-form textarea:focus,
body.site-redesign .phone-dial-btn:focus {
    outline: none;
    border-color: var(--rd-primary);
    box-shadow: 0 0 0 4px rgba(10, 143, 218, 0.12);
}

body.site-redesign .phone-input-group {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

body.site-redesign .phone-dial-btn {
    height: 100%;
    min-height: 54px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.site-redesign .phone-dial-dropdown {
    border-radius: 12px;
    border: 1px solid #d4dfef;
    box-shadow: var(--rd-shadow);
}

body.site-redesign .form-section-label {
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rd-primary);
    margin: 0 0 12px;
}

body.site-redesign .attachment-label {
    display: grid;
    gap: 6px;
    color: var(--rd-text);
    margin-bottom: 10px;
    font-weight: 600;
}

body.site-redesign .attachment-hint {
    color: var(--rd-muted);
    font-size: 0.82rem;
    font-weight: 400;
}

body.site-redesign .form-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

body.site-redesign .form-submit-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rd-muted);
    font-size: 0.88rem;
}

/* Drawer and modal */
body.site-redesign .drawer {
    background: #08172a;
    color: #e9f3ff;
}

body.site-redesign .drawer__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

body.site-redesign .drawer__nav-item,
body.site-redesign .drawer__mobile-nav-link,
body.site-redesign .drawer__text,
body.site-redesign .drawer__steps,
body.site-redesign .drawer__inline-link {
    color: #e9f3ff;
}

body.site-redesign .drawer__mobile-nav {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.site-redesign .drawer__mobile-nav-divider,
body.site-redesign .drawer__divider {
    border-top-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

body.site-redesign .drawer__nav {
    gap: 8px;
}

body.site-redesign .drawer__nav-item,
body.site-redesign .drawer__nav-item__main,
body.site-redesign .drawer__accordion-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e9f3ff;
    border-radius: 12px;
}

body.site-redesign .drawer__nav-item:hover,
body.site-redesign .drawer__nav-item:focus,
body.site-redesign .drawer__nav-item__main:hover,
body.site-redesign .drawer__accordion-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

body.site-redesign .drawer__nav-item:hover .drawer__nav-arrow,
body.site-redesign .drawer__accordion-btn[aria-expanded="true"] .drawer__nav-arrow,
body.site-redesign .drawer__nav-item--split:hover .drawer__nav-item__main {
    color: #8fd9ff;
}

body.site-redesign .drawer__accordion-btn[aria-expanded="true"] {
    background: rgba(143, 217, 255, 0.08);
    color: #ffffff;
    border-color: rgba(143, 217, 255, 0.18);
}

body.site-redesign .drawer__nav-arrow {
    color: rgba(233, 243, 255, 0.45);
}

body.site-redesign .drawer__nav-action-btn,
body.site-redesign .drawer__nav-action-link {
    background: rgba(255, 255, 255, 0.04);
    color: #cfe6ff;
}

body.site-redesign .drawer__nav-action-btn:hover,
body.site-redesign .drawer__nav-action-link:hover {
    background: rgba(143, 217, 255, 0.12);
    color: #ffffff;
}

body.site-redesign .drawer__accordion-body {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0 0 12px 12px;
}

body.site-redesign .drawer__info-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
}

body.site-redesign .drawer__info-title {
    color: #8fd9ff;
}

body.site-redesign .drawer__info-title i {
    color: #8fd9ff;
}

body.site-redesign .drawer__steps li,
body.site-redesign .drawer__text {
    color: rgba(233, 243, 255, 0.82);
}

body.site-redesign .drawer__inline-link {
    color: #8fd9ff;
}

body.site-redesign .drawer__inline-link:hover {
    color: #ffffff;
}

body.site-redesign .drawer__payment-tag {
    background: rgba(143, 217, 255, 0.08);
    border-color: rgba(143, 217, 255, 0.22);
    color: #b7e7ff;
}

body.site-redesign .drawer__payment-tag--blik {
    background: rgba(58, 190, 116, 0.14);
    border-color: rgba(58, 190, 116, 0.28);
    color: #8ef0b5;
}

body.site-redesign .drawer__info-block--notice {
    background: rgba(10, 143, 218, 0.12);
    border-left: 3px solid #18b7e7;
    border-radius: 12px;
}

body.site-redesign .drawer__info-block--warning {
    background: rgba(240, 180, 41, 0.12);
    border-left: 3px solid #f0b429;
    border-radius: 12px;
}

body.site-redesign .drawer__info-block--warning .drawer__info-title,
body.site-redesign .drawer__info-block--warning .drawer__info-title i {
    color: #ffd36a;
}

body.site-redesign .drawer__buy-links {
    gap: 10px;
}

body.site-redesign .drawer__link-btn,
body.site-redesign .drawer__link-btn--teal,
body.site-redesign .drawer__link-btn--navy,
body.site-redesign .drawer__link-btn--blue {
    background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-2));
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 24px rgba(10, 143, 218, 0.24);
}

body.site-redesign .drawer__link-btn:hover,
body.site-redesign .drawer__link-btn--teal:hover,
body.site-redesign .drawer__link-btn--navy:hover,
body.site-redesign .drawer__link-btn--blue:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

body.site-redesign .currency-date-input,
body.site-redesign .currency-calc__input,
body.site-redesign .currency-calc__select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e9f3ff;
}

body.site-redesign .currency-date-input:focus,
body.site-redesign .currency-calc__input:focus,
body.site-redesign .currency-calc__select:focus {
    border-color: #8fd9ff;
    box-shadow: 0 0 0 3px rgba(143, 217, 255, 0.12);
}

body.site-redesign .currency-btn {
    background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-2));
    color: #ffffff;
}

body.site-redesign .currency-label,
body.site-redesign .currency-calc__label,
body.site-redesign .currency-calc__rate,
body.site-redesign .currency-calc__result {
    color: #d9edff;
}

body.site-redesign .currency-calc__arrow {
    color: #8fd9ff;
}

body.site-redesign .currency-table {
    background: transparent;
    color: #e9f3ff;
}

body.site-redesign .currency-table thead th {
    background: rgba(143, 217, 255, 0.12);
    color: #8fd9ff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.site-redesign .currency-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

body.site-redesign .currency-table tbody tr:hover {
    background: rgba(143, 217, 255, 0.06);
}

body.site-redesign .currency-table td {
    color: rgba(233, 243, 255, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.site-redesign .embed-modal__dialog {
    border-radius: 22px;
}

/* Footer */
body.site-redesign .footer {
    background: #030a14;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.site-redesign .footer-content {
    gap: 32px;
}

body.site-redesign .footer-section h4 {
    color: #fff;
    margin-bottom: 0.85rem;
}

body.site-redesign .footer-section p,
body.site-redesign .footer-section li,
body.site-redesign .footer-section a,
body.site-redesign .footer-bottom p,
body.site-redesign .footer-cookie-btn {
    color: rgba(255, 255, 255, 0.78);
}

body.site-redesign .footer-section a:hover,
body.site-redesign .footer-bottom a:hover,
body.site-redesign .footer-cookie-btn:hover {
    color: #9fdfff;
}

/* Subpages */
body.subpage.site-redesign .subpage-hero,
body.subpage.site-redesign .subpage-header,
body.subpage.site-redesign main {
    background: transparent;
}

/* Responsive */
@media (max-width: 1100px) {
    body.site-redesign .hero-shell,
    body.site-redesign .contact-shell,
    body.site-redesign .section-header--split,
    body.site-redesign .quick-contact-shell {
        grid-template-columns: 1fr;
    }

    body.site-redesign .transport-cards,
    body.site-redesign .fleet-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    body.site-redesign .hero-content,
    body.site-redesign .hero__content,
    body.site-redesign .hero-copy,
    body.site-redesign .section-header,
    body.site-redesign .section-header--split {
        text-align: left;
    }

    body.site-redesign .hero-panel__grid,
    body.site-redesign .contact-info,
    body.site-redesign .form-row,
    body.site-redesign .hero-stats {
        grid-template-columns: 1fr;
    }

    body.site-redesign .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.site-redesign .hero-stat:last-child {
        border-bottom: none;
    }

    body.site-redesign .phone-input-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.site-redesign .hero-shell {
        padding-top: 110px;
    }

    body.site-redesign .hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    body.site-redesign .hero-buttons,
    body.site-redesign .hero__actions,
    body.site-redesign .quick-contact-buttons,
    body.site-redesign .form-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    body.site-redesign .btn {
        width: 100%;
    }

    body.site-redesign .services-lead__card,
    body.site-redesign .contact-form-head,
    body.site-redesign .contact-form,
    body.site-redesign .contact-aside__intro,
    body.site-redesign .contact-aside__note,
    body.site-redesign .quick-contact-shell {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    body.site-redesign .drawer-backdrop {
        inset: 72px 0 0 0;
        background: rgba(7, 19, 33, 0.18);
        backdrop-filter: blur(2px);
    }

    body.site-redesign .drawer {
        top: 78px;
        right: 10px;
        width: min(86vw, 380px);
        max-width: calc(100vw - 20px);
        height: calc(100svh - 88px);
        border-radius: 18px;
        background: linear-gradient(180deg, #08172a 0%, #0c223d 100%);
        box-shadow: 0 24px 60px rgba(7, 19, 33, 0.22);
        transform: translateX(calc(100% + 16px));
        border: 1px solid rgba(15, 32, 53, 0.08);
    }

    body.site-redesign .drawer.is-open {
        transform: translateX(0);
    }

    body.site-redesign .drawer__header {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
    }

    body.site-redesign .drawer__content {
        padding: 16px 14px 18px;
        background: transparent;
    }

    body.site-redesign .drawer__mobile-nav {
        background: rgba(255, 255, 255, 0.03);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.site-redesign .drawer__mobile-nav-divider {
        border-top-color: rgba(255, 255, 255, 0.08);
    }

    body.site-redesign .drawer__mobile-nav-link {
        padding: 12px 16px;
        border-bottom-color: rgba(255, 255, 255, 0.06);
        color: #e9f3ff;
    }

    body.site-redesign .drawer__mobile-nav-link i {
        color: #8fd9ff;
    }

    body.site-redesign .drawer__mobile-nav-link:hover,
    body.site-redesign .drawer__mobile-nav-link:focus {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }

    body.site-redesign .drawer__nav-item {
        padding: 11px 12px;
        color: #e9f3ff;
    }

    body.site-redesign .drawer__nav-item:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }

    body.site-redesign .drawer__nav-icon {
        background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-2));
    }

    body.site-redesign .drawer__close {
        color: #d8e7f7;
    }

    body.site-redesign .drawer__close:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

    body.site-redesign .drawer__logo-sygnet {
        height: 28px;
    }

    body.site-redesign .drawer__logo-brand {
        font-size: 0.92rem;
        color: #8fd9ff;
    }
}

/* Restored original homepage layout */
body.site-redesign .hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: stretch;
    padding: 0;
}

body.site-redesign .hero::before {
    background:
        radial-gradient(circle at 20% 20%, rgba(24, 183, 231, 0.18), transparent 28%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
}

body.site-redesign .hero-content,
body.site-redesign .hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: clamp(120px, 12vw, 170px) clamp(24px, 6vw, 72px);
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
}

body.site-redesign .hero h1,
body.site-redesign .hero__content h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.03;
    margin-bottom: 1rem;
}

body.site-redesign .hero p,
body.site-redesign .hero__content p {
    max-width: 520px;
    font-size: clamp(1rem, 1.25vw, 1.08rem);
    line-height: 1.75;
    margin-bottom: 1.7rem;
}

body.site-redesign .hero-buttons,
body.site-redesign .hero__actions {
    width: auto;
}

body.site-redesign .hero-logo-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.site-redesign .hero-image,
body.site-redesign .hero__media {
    display: block !important;
    position: relative;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(7, 19, 33, 0.2), rgba(7, 19, 33, 0.55)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

body.site-redesign .hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 19, 33, 0.08), rgba(7, 19, 33, 0.36));
}

body.site-redesign .hero-accent-bar,
body.site-redesign .hero-shell,
body.site-redesign .hero-panel,
body.site-redesign .hero-stats,
body.site-redesign .hero-badges,
body.site-redesign .hero-eyebrow,
body.site-redesign .hero-copy {
    display: none !important;
}

body.site-redesign .services-shell {
    display: block;
}

body.site-redesign .section-header {
    text-align: center;
}

body.site-redesign .transport-subtitle {
    justify-self: unset;
    max-width: none;
}

body.site-redesign .transport-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

body.site-redesign .transport-card {
    min-height: 390px;
}

body.site-redesign .card-content {
    padding: 26px;
}

body.site-redesign .card-content h3 {
    font-size: 1.45rem;
    line-height: 1.18;
}

body.site-redesign .card-description,
body.site-redesign .card-meta {
    display: none;
}

body.site-redesign .fleet .section-header,
body.site-redesign .quick-contact-section .container {
    text-align: center;
}

body.site-redesign .quick-contact-section {
    padding: 56px 0;
    background: linear-gradient(120deg, #0e223d, #15365f);
}

body.site-redesign .quick-contact-shell {
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
}

body.site-redesign .quick-contact-copy {
    display: none;
}

body.site-redesign .quick-contact-title {
    margin-bottom: 0.6rem;
}

body.site-redesign .quick-contact-subtitle {
    max-width: 560px;
    margin: 0 auto 1.6rem;
}

body.site-redesign .quick-contact-buttons {
    justify-content: center;
}

body.site-redesign .contact-shell {
    display: block;
}

body.site-redesign .contact-content {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

body.site-redesign .contact-aside,
body.site-redesign .contact-aside__intro,
body.site-redesign .contact-aside__note,
body.site-redesign .contact-form-wrap,
body.site-redesign .contact-form-head,
body.site-redesign .form-submit-row {
    display: none !important;
}

body.site-redesign .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

body.site-redesign .contact-form {
    background: var(--rd-surface);
    border: 1px solid var(--rd-line);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
    padding: 28px;
}

body.site-redesign .footer-section ul li a:hover {
    color: #9fdfff;
}

@media (max-width: 1100px) {
    body.site-redesign .hero {
        grid-template-columns: 1fr;
    }

    body.site-redesign .hero-image,
    body.site-redesign .hero__media {
        min-height: 300px;
        order: -1;
    }

    body.site-redesign .transport-cards,
    body.site-redesign .contact-content,
    body.site-redesign .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* Voyager subpage */
body.subpage.site-redesign .breadcrumb {
    padding: 110px 0 18px;
    background: linear-gradient(180deg, #f6f9fd 0%, #edf3f9 100%);
}

body.subpage.site-redesign .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rd-muted);
    font-size: 0.92rem;
}

body.subpage.site-redesign .breadcrumb-nav a {
    color: var(--rd-primary);
    text-decoration: none;
    font-weight: 600;
}

body.subpage.site-redesign .tourism-hero {
    position: relative;
    overflow: hidden;
    padding: 36px 0 72px;
    background:
        linear-gradient(115deg, rgba(7, 19, 33, 0.94) 0%, rgba(10, 31, 56, 0.88) 58%, rgba(9, 65, 113, 0.78) 100%),
        url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

body.subpage.site-redesign .tourism-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(24, 183, 231, 0.16), transparent 30%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    pointer-events: none;
}

body.subpage.site-redesign .tourism-hero .container {
    position: relative;
    z-index: 1;
}

body.subpage.site-redesign .tourism-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.03;
    margin-bottom: 1rem;
    max-width: 720px;
}

body.subpage.site-redesign .tourism-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
    font-size: clamp(1rem, 1.3vw, 1.08rem);
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

body.subpage.site-redesign .tourism-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.subpage.site-redesign .software-solutions,
body.subpage.site-redesign .tech-specs {
    padding: clamp(70px, 8vw, 110px) 0;
}

body.subpage.site-redesign .software-solutions {
    background: var(--rd-bg);
}

body.subpage.site-redesign .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

body.subpage.site-redesign .solution-card {
    background: var(--rd-surface);
    border: 1px solid var(--rd-line);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
    padding: 28px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

body.subpage.site-redesign .solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rd-shadow-lg);
}

body.subpage.site-redesign .solution-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-2));
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 14px 28px rgba(10, 143, 218, 0.22);
    margin-bottom: 18px;
}

body.subpage.site-redesign .solution-card h3 {
    color: var(--rd-text);
    font-size: 1.55rem;
    line-height: 1.15;
    margin-bottom: 0.9rem;
}

body.subpage.site-redesign .solution-card p {
    line-height: 1.75;
}

body.subpage.site-redesign .solution-features {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
}

body.subpage.site-redesign .solution-features li {
    position: relative;
    padding-left: 22px;
    color: var(--rd-muted);
    line-height: 1.6;
}

body.subpage.site-redesign .solution-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-2));
}

body.subpage.site-redesign .solution-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

body.subpage.site-redesign .rez-subcategories {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

body.subpage.site-redesign .rez-subcard {
    display: block;
    padding: 18px;
    border-radius: 14px;
    text-decoration: none;
    background: #f6fbff;
    border: 1px solid #d9e8f6;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.subpage.site-redesign .rez-subcard:hover {
    transform: translateY(-2px);
    border-color: #a6d8f5;
    box-shadow: 0 12px 28px rgba(7, 19, 33, 0.08);
}

body.subpage.site-redesign .rez-subcard h4 {
    color: var(--rd-text);
    margin-bottom: 0.4rem;
}

body.subpage.site-redesign .rez-subcard p {
    margin: 0;
    color: var(--rd-muted);
}

body.subpage.site-redesign .tech-specs {
    background: linear-gradient(180deg, #0b182b 0%, #0e223d 100%);
}

body.subpage.site-redesign .tech-specs h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

body.subpage.site-redesign .specs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.subpage.site-redesign .spec-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rd-radius);
    padding: 24px;
    backdrop-filter: blur(12px);
    box-shadow: var(--rd-shadow-lg);
}

body.subpage.site-redesign .spec-item i {
    color: #8fd9ff;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

body.subpage.site-redesign .spec-item h4 {
    color: #fff;
    margin-bottom: 0.55rem;
}

body.subpage.site-redesign .spec-item p {
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
}

@media (max-width: 1100px) {
    body.subpage.site-redesign .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.subpage.site-redesign .specs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.subpage.site-redesign .solutions-grid,
    body.subpage.site-redesign .specs-grid {
        grid-template-columns: 1fr;
    }

    body.subpage.site-redesign .tourism-hero {
        padding: 28px 0 56px;
    }
}
