 :root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.06);
    --line-strong: rgba(15, 23, 42, 0.1);
    --accent: #2563eb;
    --accent-glow: rgba(37, 99, 235, 0.15);
    --shadow: 
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-lg: 32px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
label {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    width: min(calc(100% - 12px), var(--max-width));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100vw;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 14px 18px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 40;
    overflow: visible;
    backdrop-filter: blur(16px);
}

.breadcrumb-bar {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -1px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.9);
}

.breadcrumb-shell {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(calc(100% - 80px), 1240px);
    margin: 0 auto;
    padding: 12px 0;
    color: #98a2b3;
    font-size: 0.8rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow-x: auto;
}

.breadcrumb-shell a,
.breadcrumb-shell span,
.breadcrumb-shell small {
    flex: 0 0 auto;
}

.breadcrumb-shell a {
    color: #667085;
    text-decoration: none;
}

.breadcrumb-shell span {
    color: #111827;
    font-weight: 600;
}

.breadcrumb-shell small {
    color: #cbd5e1;
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1;
    flex-wrap: nowrap;
    min-width: 0;
}

.header-shortcuts {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-left: auto;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand-pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #111111;
}

.brand-pin img,
.brand-pin svg {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
}

.brand-pin svg {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.site-nav a {
    position: relative;
    padding: 12px 18px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    background: #3d7cff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #3d7cff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.site-nav a.is-current {
    color: #3d7cff;
    font-weight: 800;
}

.site-nav a.is-current::after {
    transform: scaleX(1);
}

.quick-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 6px;
    border-left: 1px solid rgba(17, 17, 17, 0.08);
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667085;
    font-size: 0.94rem;
    font-weight: 600;
    white-space: nowrap;
}

.quick-link-whatsapp {
    color: #17a34a;
}

.quick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.quick-icon-whatsapp {
    background-color: currentColor;
    -webkit-mask: url("/icon/whatsapp.svg") center / contain no-repeat;
    mask: url("/icon/whatsapp.svg") center / contain no-repeat;
}

.quick-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-switcher {
    position: relative;
    z-index: 35;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher.is-open .language-toggle {
    color: var(--text);
    background: var(--bg-soft);
}

.language-flag {
    font-size: 0.82rem;
    font-weight: 800;
    color: #1d4ed8;
}

.language-caret {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.language-switcher.is-open .language-caret {
    transform: rotate(-135deg) translateY(-1px);
}

.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 190px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 50;
}

.language-switcher.is-open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 12px;
    border-radius: 16px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.language-menu a small {
    color: #9a9aa1;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a.is-active {
    background: var(--bg-soft);
    color: var(--text);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: #f8fbff;
    border-color: rgba(37, 99, 235, 0.24);
}

.nav-toggle-bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    padding: 2px 0 4px;
}

.hero-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 0 4px;
}

.hero-inner {
    width: 100%;
    margin: 0;
}

.hero-copy {
    width: 100%;
    padding: 26px 16px 82px;
    border-radius: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 78% 28%, rgba(59, 130, 246, 0.14), transparent 22%),
        radial-gradient(circle at 18% 22%, rgba(191, 219, 254, 0.1), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    text-align: center;
}

.hero-copy::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.12);
    padding: 6px 13px;
    border-radius: 99px;
    color: #2563eb;
    font-size: 0.74rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.75rem);
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    color: #1f2937;
    line-height: 1.1;
}

.hero p {
    font-size: 0.82rem;
    color: #667085;
    margin-bottom: 0;
    max-width: 680px;
    margin-inline: auto;
    line-height: 1.5;
}

.hero-form {
    width: min(calc(100% - 32px), 900px);
    margin: 14px auto 0;
    padding: 40px 16px;
    border-radius: 24px;
    background: rgba(248, 250, 252, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.16);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 2;
}

.hero-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1.45fr) minmax(0, 0.95fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
    gap: 8px;
    align-items: start;
}

.hero-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 11px 13px;
    border-radius: 17px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.14);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-form-field span {
    font-size: 0.66rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: -0.02em;
}

.hero-form-field input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #0f172a;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    outline: none;
}

.hero-form-field-date,
.hero-form-field-time {
    cursor: pointer;
}

.hero-form-field-date input,
.hero-form-field-time input {
    cursor: pointer;
}

.hero-form-field-time input::-webkit-calendar-picker-indicator,
.hero-form-field-date input::-webkit-calendar-picker-indicator {
    opacity: 1;
    cursor: pointer;
}

.hero-form-field input::placeholder {
    color: #98a2b3;
}

.hero-form-field.is-invalid {
    border-color: rgba(239, 68, 68, 0.22);
    background: #fff8f8;
}

.hero-form-field:focus-within {
    background: #fffaf5;
    border-color: rgba(255, 125, 36, 0.35);
    box-shadow: 0 16px 30px rgba(255, 125, 36, 0.1);
}

.hero-form-field.is-filled {
    background: #f2fff7;
    border-color: rgba(22, 163, 74, 0.34);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.12);
}

.hero-form-field.is-filled input {
    color: #166534;
}


.hero-form-actions {
    margin-top: 18px;
    width: 100%;
    border-radius: 15px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 5px 5px 14px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-form-actions-label {
    display: grid;
    min-height: 44px;
    align-items: center;
    padding: 0 18px;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.hero-form-actions-label > span {
    grid-area: 1 / 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-form-actions-label-hover {
    opacity: 0;
    transform: translateY(4px);
}

.hero-form-actions:not(.is-ready):hover .hero-form-actions-label-default {
    opacity: 0;
    transform: translateY(-4px);
}

.hero-form-actions:not(.is-ready):hover .hero-form-actions-label-hover {
    opacity: 1;
    transform: translateY(0);
}

.hero-form:not(.is-ready):has(.hero-form-actions:hover) .hero-form-field {
    background: #fff7f7;
    border-color: rgba(239, 68, 68, 0.18);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.08), 0 12px 28px rgba(15, 23, 42, 0.06);
}

.hero-form:not(.is-ready):has(.hero-form-actions:hover) .hero-form-field input {
    background: #fff7f7;
}

.hero-form-actions-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    border-radius: 14px;
    margin-left: auto;
    transition: background-color 0.3s ease;
}

.hero-form-app {
    min-height: 44px;
    min-width: 82px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.hero-form-app:hover:not(:disabled) {
    background: transparent;
    transform: translateY(-1px);
}

.hero-form-app:disabled {
    background: transparent;
    color: #0f172a;
    cursor: pointer;
    opacity: 0.5;
}

.hero-form-app-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-form-app-icon-whatsapp {
    background-color: currentColor;
    -webkit-mask: url("/icon/whatsapp.svg") center / contain no-repeat;
    mask: url("/icon/whatsapp.svg") center / contain no-repeat;
}

.hero-form-app-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-form-actions.is-ready {
    background: linear-gradient(135deg, #fffaf5 0%, #fff4ea 100%);
    border-color: rgba(255, 125, 36, 0.16);
    box-shadow: 0 12px 28px rgba(255, 125, 36, 0.08);
    animation: readyPulse 2.8s ease-in-out infinite;
}

.hero-form-actions.is-ready .hero-form-actions-label {
    background: rgba(255, 255, 255, 0.78);
    color: #c45a12;
    position: relative;
    padding-right: 34px;
    border: 1px solid rgba(255, 125, 36, 0.28);
    box-shadow:
        0 10px 22px -16px rgba(255, 125, 36, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.55);
    overflow: hidden;
}

.hero-form-actions.is-ready .hero-form-actions-label::after {
    content: "→";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 900;
    color: #c45a12;
    text-shadow:
        0 0 8px rgba(255, 125, 36, 0.45),
        0 0 16px rgba(255, 125, 36, 0.24);
    filter: drop-shadow(0 0 8px rgba(255, 125, 36, 0.35));
    animation: bookingArrowSlide 1.75s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-form-actions.is-ready .hero-form-actions-label::before {
    content: "";
    position: absolute;
    top: 0;
    left: -34%;
    width: 34%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 227, 196, 0.72), rgba(255, 255, 255, 0));
    transform: skewX(-18deg);
    opacity: 0.68;
    animation: bookingLabelShimmer 4.1s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-form-actions.is-ready .hero-form-app {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 125, 36, 0.22);
}

.hero-form-actions.is-ready .hero-form-app-whatsapp {
    background: rgba(37, 211, 102, 0.25);
    color: #1f9d57;
}

.hero-form-actions.is-ready .hero-form-app-telegram {
    background: rgba(34, 158, 217, 0.25);
    color: #1d7fb3;
}

.hero-form-actions.is-ready .hero-form-app-viber {
    background: rgba(115, 96, 242, 0.25);
    color: #5b49d6;
}

.hero-form-actions.is-ready .hero-form-app:hover:not(:disabled) {
    background: #ffffff;
}

.hero-form-actions.is-ready .hero-form-app-whatsapp:hover:not(:disabled) {
    background: rgba(37, 211, 102, 0.9);
    color: #ffffff;
}

.hero-form-actions.is-ready .hero-form-app-telegram:hover:not(:disabled) {
    background: rgba(34, 158, 217, 0.9);
    color: #ffffff;
}

.hero-form-actions.is-ready .hero-form-app-viber:hover:not(:disabled) {
    background: rgba(115, 96, 242, 0.9);
    color: #ffffff;
}

.hero-form-note {
    margin: 18px 0 0;
    text-align: center;
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.6;
    color: #667085;
}

@keyframes readyPulse {
    0%,
    100% {
        box-shadow: 0 12px 28px rgba(255, 125, 36, 0.06);
    }

    50% {
        box-shadow: 0 16px 34px rgba(255, 125, 36, 0.12);
    }
}

@keyframes bookingArrowSlide {
    0%,
    100% {
        transform: translateY(-50%) translateX(0) scale(0.96);
        opacity: 0.62;
    }
    50% {
        transform: translateY(-50%) translateX(9px) scale(1.05);
        opacity: 1;
    }
}

@keyframes bookingLabelShimmer {
    0% {
        left: -36%;
        opacity: 0;
    }
    24% {
        opacity: 0.74;
    }
    52% {
        left: 120%;
        opacity: 0;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

@keyframes bookingArrowDownPulse {
    0%,
    100% {
        transform: translateY(-52%) scale(0.92);
        opacity: 0.58;
    }
    50% {
        transform: translateY(-36%) scale(1.08);
        opacity: 1;
    }
}

.hero-actions {
    display: none;
}

.tour-catalog-section {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 46px 0 54px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.tour-catalog-shell {
    width: min(calc(100% - 88px), 1240px);
    margin: 0 auto;
}

.tour-catalog-head {
    margin-bottom: 20px;
    text-align: left;
}

.tour-catalog-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.84);
    color: #2563eb;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.tour-catalog-head h2 {
    margin: 12px 0 0;
    font-size: clamp(1.55rem, 3.2vw, 2.3rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.tour-catalog-head p {
    margin: 10px 0 0;
    max-width: 78ch;
    color: #52607a;
    font-size: 0.92rem;
    line-height: 1.65;
}

.tour-catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tour-catalog-card {
    position: relative;
    padding: 14px;
    border-radius: 20px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.tour-catalog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.tour-catalog-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.tour-catalog-card:hover::after {
    transform: translateX(120%);
}

.tour-catalog-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.tour-catalog-card h3 {
    margin: 0;
    color: #022c22;
    font-size: 1.05rem;
    line-height: 1.28;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-align: left;
}

.tour-catalog-more,
.tour-catalog-more-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(6, 78, 59, 0.24);
    background: rgba(255, 255, 255, 0.82);
    color: #064e3b;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tour-catalog-more:hover,
.tour-catalog-more:focus-visible,
.tour-catalog-more-inline:hover,
.tour-catalog-more-inline:focus-visible {
    background: #064e3b;
    border-color: #064e3b;
    color: #ffffff;
}

.tour-catalog-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.tour-catalog-item-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    aspect-ratio: 0.86 / 1;
    min-height: 0;
    padding: 0;
    border-radius: 16px;
    border: 0;
    background: transparent;
    color: #334155;
    text-align: left;
    position: relative;
    overflow: visible;
    transition: transform 0.34s ease, filter 0.34s ease;
    text-decoration: none;
}

.tour-catalog-item-card::before {
    display: none;
}

.tour-catalog-item-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72%;
    min-height: 130px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 40%),
        linear-gradient(135deg, rgba(16, 185, 129, 0.24), rgba(6, 182, 212, 0.24));
    border: 1px solid rgba(6, 78, 59, 0.14);
    transition: transform 0.38s ease, filter 0.38s ease, box-shadow 0.38s ease;
    position: relative;
    overflow: hidden;
}

.tour-catalog-item-media.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 26px -18px rgba(15, 23, 42, 0.52);
}

.tour-catalog-item-media.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.22));
}

.tour-catalog-item-media svg {
    width: 26px;
    height: 26px;
    color: #065f46;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tour-catalog-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(6, 78, 59, 0.26);
    color: #064e3b;
    font-size: 1rem;
    font-weight: 700;
}

.tour-catalog-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.96);
    border: 1px solid rgba(6, 78, 59, 0.3);
    color: #022c22;
    font-size: 0.7rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
}

.tour-catalog-item-title {
    margin-top: 9px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.25;
    color: #052e16;
    letter-spacing: -0.01em;
}

.tour-catalog-rating {
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #334155;
    font-size: 0.8rem;
    line-height: 1.2;
}

.tour-catalog-rating-dots {
    color: #16a34a;
    letter-spacing: 0.03em;
    font-size: 0.8rem;
}

.tour-catalog-item-type {
    margin-top: 5px;
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.2;
}

.tour-catalog-item-card:hover {
    transform: translateY(-4px);
    filter: saturate(1.06);
}

.tour-catalog-item-card:hover .tour-catalog-item-media {
    transform: scale(1.02);
    filter: saturate(1.1) contrast(1.04);
    box-shadow: 0 22px 34px -22px rgba(6, 78, 59, 0.48);
}

.tour-detail-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 44px 0 56px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, #fbfdff 0%, #f6f9ff 100%);
}

.tour-detail-shell {
    width: min(calc(100% - 88px), 1120px);
    margin: 0 auto;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: rgba(255, 255, 255, 0.85);
}

.tour-detail-kicker {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(243, 249, 255, 0.9);
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.tour-detail-shell h2 {
    margin: 10px 0 0;
    color: #0f172a;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.tour-detail-shell p {
    margin: 10px 0 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
}

.tour-detail-links {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-page-section {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 44px 0 56px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.tour-page-section::before {
    display: none;
}

.tour-page-shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 120px), 980px);
    margin: 0 auto;
    padding-left: 22px;
}

.tour-page-shell::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, #0f766e 0%, rgba(15, 118, 110, 0.08) 100%);
}

.tour-page-head h2 {
    margin: 10px 0 0;
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0b1220;
    text-wrap: balance;
}

.tour-page-head p {
    margin: 12px 0 0;
    max-width: 74ch;
    color: #334155;
    font-size: 1rem;
    line-height: 1.76;
}

.tour-page-head {
    position: relative;
    padding: 0 0 22px;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.tour-page-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 2px 0 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: #0f766e;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tour-page-badges {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tour-page-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: #ffffff;
    color: #0f172a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.tour-page-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.tour-page-card,
.tour-page-program {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.tour-page-card h3,
.tour-page-program h3 {
    margin: 0 0 13px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
    color: #06121f;
    font-size: 1.24rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 900;
    text-wrap: balance;
}

.tour-page-card ul {
    margin: 0;
    padding-left: 17px;
    display: grid;
    gap: 12px;
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.68;
}

.tour-page-card ul + h3 {
    margin-top: 24px;
}

.tour-page-card h3 + ul,
.tour-page-program h3 + .tour-page-timeline,
.tour-page-program h3 + .tour-page-accordion {
    margin-top: 6px;
}

.tour-page-program {
    margin-top: 30px;
}

.tour-page-grid + .tour-page-program {
    margin-top: 34px;
}

.tour-page-timeline {
    display: grid;
    gap: 16px;
}

.tour-page-timeline-item {
    position: relative;
    padding: 0 0 0 16px;
    border: 0;
    background: transparent;
}

.tour-page-timeline-item small {
    display: block;
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.tour-page-timeline-item strong {
    display: block;
    margin-top: 3px;
    color: #0f172a;
    font-size: 1.02rem;
}

.tour-page-timeline-item p {
    margin: 5px 0 0;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.62;
}

.tour-page-timeline-item::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 0.42rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.tour-page-timeline-item::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1rem;
    bottom: -10px;
    width: 1px;
    background: rgba(15, 118, 110, 0.24);
}

.tour-page-timeline-item:last-child::after {
    display: none;
}

.tour-page-faq {
    display: grid;
    gap: 10px;
}

.tour-page-faq-item {
    padding: 10px 11px;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.11);
    background: #ffffff;
}

.tour-page-faq-item strong {
    display: block;
    color: #0f172a;
    font-size: 0.88rem;
}

.tour-page-faq-item p {
    margin: 5px 0 0;
    color: #475569;
    font-size: 0.84rem;
    line-height: 1.6;
}

.tour-page-accordion {
    display: grid;
    gap: 0;
}

.tour-page-accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}

.tour-page-accordion-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 34px 14px 0;
    position: relative;
    color: #071827;
    font-size: 1.04rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    user-select: none;
}

.tour-page-accordion-item summary::-webkit-details-marker {
    display: none;
}

.tour-page-accordion-item summary::after {
    content: "+";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0f766e;
    font-size: 1.05rem;
    font-weight: 900;
    transition: transform 0.24s ease, color 0.24s ease;
}

.tour-page-accordion-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.tour-page-accordion-item > div {
    padding: 0 0 14px;
}

.tour-page-accordion-item p {
    margin: 0;
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.72;
}

.tour-page-cta {
    margin-top: 34px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tour-page-cta h3 {
    margin: 0;
    font-size: 1.14rem;
    letter-spacing: -0.01em;
}

.tour-page-cta p {
    margin: 5px 0 0;
    color: #475569;
    font-size: 0.98rem;
}

.tour-page-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(15, 118, 110, 0.32);
    background: #0f766e;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.tour-page-cta a:hover,
.tour-page-cta a:focus-visible {
    background: #0b5f59;
    transform: translateY(-1px);
    box-shadow: 0 14px 24px -18px rgba(15, 118, 110, 0.72);
}

.service-section {
    padding: 46px 0 54px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.service-shell {
    width: min(calc(100% - 140px), 1120px);
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    margin-bottom: 22px;
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(77, 125, 240, 0.08);
    color: #4d7df0;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-intro h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3.1vw, 2.7rem);
    line-height: 1.14;
    letter-spacing: -0.07em;
}

.service-intro p {
    margin: 12px auto 0;
    max-width: 88ch;
    color: #667085;
    font-size: 0.96rem;
    line-height: 1.8;
}

.service-highlight {
    margin: 18px 0 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 10px 22px;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.75) 0%, rgba(59, 130, 246, 0.75) 100%);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.6;
    -webkit-text-stroke: 0.2px rgba(17, 24, 39, 0.18);
    text-shadow: 0 1px 0 rgba(17, 24, 39, 0.14);
}

.service-block {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    padding: 24px;
}

.service-block-heading {
    margin-bottom: 16px;
}

.service-block-heading h3,
.service-meta-card h3 {
    margin: 0;
    color: #111827;
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.service-card {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8faff;
    border: 1px solid rgba(77, 125, 240, 0.08);
}

.service-card-icon {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
    padding-top: 1px;
}

.service-card h4 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 0.92rem;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.service-card p,
.service-meta-card p {
    margin: 0;
    color: #667085;
    font-size: 0.85rem;
    line-height: 1.7;
}

.service-meta-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 12px;
}

.service-meta-card {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.service-check-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.service-check-list li {
    position: relative;
    padding-left: 18px;
    color: #667085;
    font-size: 0.85rem;
    line-height: 1.6;
}

.service-check-list li::before {
    content: "";
    position: absolute;
    top: 0.58rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4d7df0;
}

.service-meta-card-cta {
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    border-color: rgba(77, 125, 240, 0.12);
}

.service-meta-card strong {
    display: inline-block;
    margin-top: 14px;
    color: #111827;
    font-size: 0.88rem;
    line-height: 1.55;
}

.service-cta-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 16px;
}

.service-cta-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(77, 125, 240, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: #111827;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-cta-links a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-cta-link-telegram img,
.service-cta-link-viber img {
    width: 18px;
    height: 18px;
    transform: scale(2.1);
    transform-origin: center;
}

.service-cta-links a:nth-child(1):hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

.service-cta-links a:nth-child(2):hover {
    background: #229ed9;
    border-color: #229ed9;
    color: #ffffff;
}

.service-cta-links a:nth-child(3):hover {
    background: #7360f2;
    border-color: #7360f2;
    color: #ffffff;
}

.service-cta-phone {
    display: block;
    width: 100%;
    margin-top: 14px;
    text-align: right;
    color: #111827;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.reasons-section {
    padding: 72px 0 72px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.homepage-seo-section {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 56px 0 58px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(90deg, rgba(147, 197, 253, 0.2) 0%, rgba(224, 242, 254, 0.18) 50%, rgba(253, 230, 138, 0.18) 100%);
}

.homepage-seo-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.28;
}

.homepage-seo-section::after {
    content: "";
    position: absolute;
    inset: -25% -10%;
    pointer-events: none;
    background:
        radial-gradient(42% 34% at 18% 36%, rgba(147, 197, 253, 0.16), rgba(147, 197, 253, 0)),
        radial-gradient(36% 30% at 78% 58%, rgba(252, 211, 77, 0.14), rgba(252, 211, 77, 0));
    filter: blur(34px);
    opacity: 0.58;
    animation: homepage-seo-aurora 13s ease-in-out infinite alternate;
}

.homepage-seo-shell {
    width: min(calc(100% - 72px), 1120px);
    margin: 0 auto;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(255, 252, 246, 0.86)),
        radial-gradient(120% 120% at 100% 0%, rgba(251, 191, 36, 0.14), rgba(251, 191, 36, 0));
    box-shadow:
        0 26px 46px -34px rgba(15, 23, 42, 0.45),
        0 8px 18px -14px rgba(180, 83, 9, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 26px 26px 24px;
    outline: 1px solid rgba(255, 255, 255, 0.55);
    outline-offset: -8px;
}

.homepage-seo-shell::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0), rgba(59, 130, 246, 0.45), rgba(217, 119, 6, 0.5), rgba(59, 130, 246, 0));
    pointer-events: none;
}

.homepage-seo-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: -32%;
    width: 34%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
    transform: skewX(-18deg);
    opacity: 0.36;
    animation: homepage-seo-shimmer 8.6s ease-in-out infinite;
}

.homepage-seo-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1rem, 1.95vw, 1.7rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.homepage-seo-head {
    position: relative;
}

.homepage-seo-head p {
    margin: 12px 0 0;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.86;
    max-width: 96ch;
}

.homepage-seo-head p::after {
    content: "";
    display: block;
    margin-top: 12px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(148, 163, 184, 0.2), rgba(217, 119, 6, 0.2));
}

.homepage-seo-badges {
    margin-top: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.homepage-seo-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.8);
    color: #1f2a3d;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
    animation: homepage-seo-badge-float 6.5s ease-in-out infinite;
}

.homepage-seo-badges span:nth-child(2n) {
    animation-delay: 0.6s;
}

.homepage-seo-badges span:nth-child(3n) {
    animation-delay: 1.1s;
}

.homepage-seo-badges span::before {
    content: "✓";
    margin-right: 6px;
    color: #2563eb;
    font-weight: 900;
}

.homepage-seo-metrics {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.homepage-seo-metric {
    border-radius: 11px;
    border: 1px solid rgba(59, 130, 246, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.86)),
        radial-gradient(120% 120% at 100% 0%, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0));
    padding: 9px 10px;
    display: grid;
    gap: 4px;
    box-shadow: 0 10px 16px -16px rgba(15, 23, 42, 0.5);
    animation: homepage-seo-metric-glow 8s ease-in-out infinite;
}

.homepage-seo-metric:nth-child(2) {
    animation-delay: 1.2s;
}

.homepage-seo-metric:nth-child(3) {
    animation-delay: 2s;
}

.homepage-seo-metric small {
    color: #64748b;
    font-size: 0.64rem;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.homepage-seo-metric strong {
    color: #0f172a;
    font-size: 0.88rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.seo-accent-term {
    display: inline;
    font-weight: 800;
    color: #0f2f66;
    background: linear-gradient(180deg, rgba(191, 219, 254, 0.42), rgba(251, 191, 36, 0.14));
    box-shadow: inset 0 -0.42em 0 rgba(59, 130, 246, 0.08);
    border-radius: 4px;
    padding: 0 2px;
}

.homepage-seo-content {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
    counter-reset: seo-part;
}

.homepage-seo-article {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    counter-increment: seo-part;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.88)),
        radial-gradient(120% 120% at 100% 0%, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0));
    padding: 16px 18px;
    box-shadow: 0 12px 22px -18px rgba(15, 23, 42, 0.45);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.homepage-seo-article:first-child {
    grid-column: 1 / -1;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(246, 251, 255, 0.9)),
        radial-gradient(120% 120% at 100% 0%, rgba(59, 130, 246, 0.13), rgba(59, 130, 246, 0));
    border-color: rgba(59, 130, 246, 0.22);
}

.homepage-seo-article::before {
    content: "";
    position: absolute;
    top: -22px;
    right: -20px;
    width: 92px;
    height: 92px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.22), rgba(59, 130, 246, 0)),
        radial-gradient(circle at 70% 70%, rgba(217, 119, 6, 0.16), rgba(217, 119, 6, 0));
    pointer-events: none;
    opacity: 0.78;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.homepage-seo-article::after {
    content: "";
    position: absolute;
    top: 0;
    left: -42%;
    width: 42%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    transform: skewX(-16deg);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.homepage-seo-article h3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: #111827;
    font-size: 1.03rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.homepage-seo-article h3::before {
    content: counter(seo-part, decimal-leading-zero);
    margin-right: 8px;
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f2f66;
    font-size: 0.64em;
    font-weight: 900;
    letter-spacing: 0.03em;
    background: linear-gradient(145deg, rgba(219, 234, 254, 0.94), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 16px -14px rgba(59, 130, 246, 0.8);
}

.homepage-seo-article h3::after {
    content: "";
    margin-left: 8px;
    width: 28px;
    height: 2px;
    align-self: center;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.85), rgba(217, 119, 6, 0.75));
}

.homepage-seo-article p {
    margin: 8px 0 0;
    color: #475569;
    font-size: 0.91rem;
    line-height: 1.84;
}

.homepage-seo-article:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.24);
    box-shadow:
        0 18px 30px -20px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(59, 130, 246, 0.09);
}

.homepage-seo-article:hover h3::before {
    border-color: rgba(37, 99, 235, 0.42);
    box-shadow: 0 10px 18px -12px rgba(37, 99, 235, 0.72);
}

.homepage-seo-article:hover::before {
    transform: scale(1.15);
    opacity: 0.92;
}

.homepage-seo-article:hover::after {
    opacity: 0.95;
    animation: homepage-seo-card-shine 1.2s ease;
}

@keyframes homepage-seo-aurora {
    0% {
        transform: translate3d(-1.5%, 0, 0) scale(1);
        opacity: 0.68;
    }
    100% {
        transform: translate3d(1.7%, -1.4%, 0) scale(1.05);
        opacity: 0.84;
    }
}

@keyframes homepage-seo-shimmer {
    0% {
        left: -38%;
        opacity: 0;
    }
    18% {
        opacity: 0.32;
    }
    42% {
        left: 112%;
        opacity: 0;
    }
    100% {
        left: 112%;
        opacity: 0;
    }
}

@keyframes homepage-seo-card-shine {
    0% {
        left: -46%;
    }
    100% {
        left: 126%;
    }
}

@keyframes homepage-seo-badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

@keyframes homepage-seo-metric-glow {
    0%, 100% {
        box-shadow: 0 10px 16px -16px rgba(15, 23, 42, 0.5);
    }
    50% {
        box-shadow: 0 14px 22px -16px rgba(59, 130, 246, 0.42);
    }
}

@media (prefers-reduced-motion: reduce) {
    .homepage-seo-section::after,
    .homepage-seo-shell::before,
    .homepage-seo-article:hover::after,
    .homepage-seo-badges span,
    .homepage-seo-metric {
        animation: none !important;
    }
}

.reasons-shell h2,
.steps-heading h2,
.compare-heading h2,
.fleet-heading h2,
.faq-heading h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3.1vw, 2.7rem);
    line-height: 1.14;
    letter-spacing: -0.07em;
}

.reasons-shell h2 {
    margin-bottom: 30px;
    text-align: center;
    text-wrap: wrap;
    overflow-wrap: normal;
    word-break: normal;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.reason-card {
    padding: 10px 8px;
    text-align: center;
}

.reason-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    color: #111111;
}

.reason-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reason-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.04em;
}

.reason-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.steps-section {
    padding: 64px 0 32px;
    margin-top: 20px;
    border-radius: 36px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.steps-heading {
    text-align: center;
    margin-bottom: 34px;
}

.steps-heading p,
.compare-heading p,
.fleet-heading p,
.faq-heading p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    min-height: 82px;
}

.step-box {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(180deg, #74a7ff, #4d7df0);
}

.step-box svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-number {
    position: absolute;
    top: 10px;
    left: calc(50% + 10px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #182033;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
}

.step-line {
    position: absolute;
    top: 50%;
    left: calc(50% + 29px);
    right: calc(-50% + 8px);
    width: auto;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(77, 125, 240, 0.8), rgba(77, 125, 240, 0.16));
}

.step-card h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.04em;
}

.step-card p {
    margin: 0 auto;
    max-width: 24ch;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.7;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 22px;
    border-radius: 999px;
    background: #edf4ff;
    color: #4d7df0;
    font-size: 0.92rem;
    font-weight: 700;
    min-width: 88px;
    align-self: center;
}

.compare-section {
    padding: 56px 0 32px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.compare-shell {
    width: min(calc(100% - 280px), 960px);
    margin: 0 auto;
}

.compare-heading {
    text-align: center;
    margin-bottom: 16px;
}

.compare-table {
    width: 100%;
}

.compare-row {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    align-items: center;
    gap: 16px;
    min-height: 64px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.compare-row:last-child {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.compare-row-head {
    min-height: 44px;
    color: #98a2b3;
    border-top: 0;
    font-weight: 700;
}

.compare-cell {
    color: #98a2b3;
    font-size: 0.9rem;
    line-height: 1.45;
    text-align: center;
}

.compare-cell-label {
    color: #1f2937;
    font-size: 0.94rem;
    font-weight: 700;
    text-align: left;
}

.compare-cell-brand-head {
    color: #4d7df0;
    font-weight: 700;
}

.compare-cell-brand {
    color: #4d7df0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.compare-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(77, 125, 240, 0.26);
    font-size: 0.78rem;
}

.fleet-section {
    padding: 56px 0 72px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.fleet-shell {
    width: min(calc(100% - 240px), 980px);
    margin: 0 auto;
}

.fleet-heading {
    text-align: center;
    margin-bottom: 18px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.fleet-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f7f8fa;
    overflow: visible;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 6px;
    left: 6px;
    height: 96px;
    z-index: 0;
    border-radius: 20px 20px 40px 40px;
    background: radial-gradient(ellipse at top center, rgba(88, 140, 255, 0.34) 0%, rgba(88, 140, 255, 0.2) 34%, rgba(88, 140, 255, 0.08) 58%, rgba(88, 140, 255, 0) 82%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.fleet-card > * {
    position: relative;
    z-index: 1;
}

.fleet-card:hover,
.fleet-card:focus-within {
    background: #f1f6ff;
    border-color: rgba(110, 148, 255, 0.18);
    box-shadow: 0 18px 34px rgba(101, 140, 233, 0.12);
}

.fleet-card:hover::after,
.fleet-card:focus-within::after {
    opacity: 1;
}

.fleet-card-media {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 148px;
    padding: 14px 12px 8px;
    border-radius: 14px;
}

.fleet-card-media::after {
    content: "";
    position: absolute;
    top: 0;
    left: -45%;
    width: 40%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    transform: skewX(-18deg);
    opacity: 0;
}

.fleet-card-media img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-card-media img,
.fleet-card:focus-within .fleet-card-media img {
    transform: scale(1.045);
}

.fleet-card:hover .fleet-card-media::after,
.fleet-card:focus-within .fleet-card-media::after,
.fleet-card:active .fleet-card-media::after {
    opacity: 1;
    animation: fleetShineSweep 1.15s ease;
}

@keyframes fleetShineSweep {
    0% {
        left: -45%;
    }
    100% {
        left: 125%;
    }
}

.fleet-card-body {
    padding: 0 14px 14px;
}

.fleet-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.fleet-card-top h3 {
    margin: 0;
    color: #1f2937;
    min-height: 1.5em;
    font-size: 0.82rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.fleet-card-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #98a2b3;
    flex-shrink: 0;
}

.fleet-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.76rem;
    font-weight: 700;
}

.fleet-meta-item svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fleet-card-body p {
    margin: 10px 0 0;
    color: #667085;
    font-size: 0.78rem;
    line-height: 1.6;
}

.faq-section {
    padding: 42px 0 48px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-shell {
    width: min(calc(100% - 300px), 720px);
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    margin-bottom: 14px;
}

.faq-list {
    display: grid;
    gap: 8px;
}

.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 15px;
    background: #ffffff;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    color: #111827;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-plus {
    position: relative;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    border-radius: 999px;
    background: #4d7df0;
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-plus::after {
    width: 1.5px;
    height: 12px;
}

.faq-item[open] .faq-plus::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0.4);
}

.faq-answer {
    padding: 0 16px 14px;
}

.faq-answer p {
    margin: 0;
    color: #667085;
    font-size: 0.82rem;
    line-height: 1.65;
}

.transfer-grid-section,
.transfer-detail-section {
    padding: 46px 0 58px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.transfer-detail-section {
    padding-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.transfer-grid-shell,
.transfer-detail-shell {
    width: min(calc(100% - 80px), 1240px);
    margin: 0 auto;
}

.transfer-grid-heading {
    text-align: center;
    margin-bottom: 18px;
}

.transfer-grid-heading h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3.1vw, 2.7rem);
    line-height: 1.14;
    letter-spacing: -0.07em;
}

.transfer-grid-heading p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.7;
}

.transfer-search {
    margin: 14px 0 16px;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.34);
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.12), 0 14px 28px rgba(59, 130, 246, 0.12);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.transfer-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #111827;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.transfer-search input::placeholder {
    color: #7b8798;
    font-weight: 600;
}

.transfer-search:focus-within {
    border-color: rgba(37, 99, 235, 0.62);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2), 0 16px 32px rgba(59, 130, 246, 0.16);
}

.transfer-search-empty {
    margin: 0 0 12px;
    color: #667085;
    font-size: 0.84rem;
    font-weight: 600;
}

.transfer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.transfer-card {
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

.transfer-card-link {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 18px 18px 6px;
    text-decoration: none;
    color: inherit;
}

.transfer-card-route {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    max-width: 100%;
    min-width: 0;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.24);
    background: rgba(239, 246, 255, 0.94);
    color: #3b82f6;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    white-space: nowrap;
    overflow: hidden;
}

.transfer-card-route img {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    object-fit: contain;
}

.transfer-card-route strong {
    color: #2563eb;
}

.transfer-card-route-arrow {
    flex: 0 0 auto;
    color: rgba(59, 130, 246, 0.72);
}

.transfer-card-route span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transfer-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    min-height: 180px;
}

.transfer-card-body h3 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 1.08rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.transfer-card-body p {
    margin: 0;
    color: #98a2b3;
    font-size: 0.82rem;
    line-height: 1.5;
}

.transfer-card-body p::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 9px 1px 0;
    border-radius: 50%;
    background: #d0d5dd;
    vertical-align: middle;
}

.transfer-card-stats {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #f8fafc;
    color: #667085;
    font-size: 0.82rem;
    line-height: 1;
}

.transfer-card-stats span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.transfer-card-stats span + span {
    position: relative;
    padding-left: 14px;
}

.transfer-card-stats span + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 16px;
    background: rgba(152, 162, 179, 0.34);
    transform: translateY(-50%);
}

.transfer-card-stats svg {
    width: 16px;
    height: 16px;
    color: #3b82f6;
}

.transfer-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding-top: 14px;
}

.transfer-card-price {
    color: #111827;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.04em;
    max-width: 160px;
}

.transfer-card-price b {
    color: #3b82f6;
    font-weight: 800;
}

.transfer-card-price small {
    display: inline;
    margin-left: 4px;
    font-size: 0.5em;
    font-weight: 500;
    letter-spacing: normal;
}

.transfer-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #f5f7fb;
    color: #98a2b3;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.transfer-card-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.22s ease;
}

.transfer-card:hover {
    border-color: rgba(59, 130, 246, 0.28);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.12), 0 28px 54px rgba(59, 130, 246, 0.12), 0 0 32px rgba(59, 130, 246, 0.12);
}

.transfer-card:hover .transfer-card-arrow {
    transform: translateX(2px);
    background: #eef4ff;
    color: #3b82f6;
}

.transfer-card:hover .transfer-card-arrow svg {
    transform: scale(1.14);
}

.transfer-detail-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 0;
    background: #09111f;
    min-height: 520px;
    isolation: isolate;
}

.transfer-detail-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(3, 8, 18, 0.88) 0%, rgba(5, 11, 22, 0.82) 34%, rgba(8, 15, 28, 0.54) 60%, rgba(8, 15, 28, 0.68) 100%), var(--transfer-detail-image);
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.transfer-detail-backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.24) 100%);
}

.transfer-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    gap: 28px;
    align-items: center;
    width: min(calc(100% - 80px), 1240px);
    margin: 0 auto;
    padding: 42px;
}

.transfer-detail-content {
    max-width: 720px;
    color: #ffffff;
}

.transfer-detail-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.transfer-detail-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.05rem, 4vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.08em;
}

.transfer-detail-content h2 span {
    color: #60a5fa;
    margin: 0 8px;
}

.transfer-detail-inline-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1;
}

.transfer-detail-inline-stats span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.transfer-detail-inline-stats svg {
    width: 18px;
    height: 18px;
    color: #93c5fd;
}

.transfer-detail-content p {
    margin: 18px 0 0;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.72;
}

.transfer-detail-benefits {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.transfer-detail-benefits li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.5;
}

.transfer-detail-benefits li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #4ade80;
}

.transfer-detail-benefits li::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 5px;
    width: 6px;
    height: 3px;
    border-left: 2px solid #4ade80;
    border-bottom: 2px solid #4ade80;
    transform: rotate(-45deg);
}

.transfer-detail-card {
    padding: 24px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.14) 100%);
    box-shadow: 0 24px 60px rgba(3, 8, 18, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #ffffff;
}

.transfer-detail-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.transfer-detail-card-top h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.transfer-detail-card-top p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.7;
}

.transfer-detail-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(74, 222, 128, 0.42);
    background: rgba(34, 197, 94, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 24px rgba(34, 197, 94, 0.12);
    color: #4ade80;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.transfer-detail-route-boxes {
    display: grid;
    gap: 10px;
}

.transfer-detail-route-box {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.transfer-detail-route-box small {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
    margin-bottom: 6px;
}

.transfer-detail-route-box strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
}

.transfer-detail-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.transfer-detail-stat {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.transfer-detail-stat small {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    margin-bottom: 6px;
    min-height: 2.5em;
}

.transfer-detail-stat strong {
    display: inline-block;
    color: #ffffff;
    font-size: 1.14rem;
    line-height: 1.35;
    letter-spacing: -0.03em;
    vertical-align: top;
}

.transfer-detail-stat strong b {
    color: #60a5fa;
    font-weight: 800;
}

.transfer-detail-stat strong small {
    display: block;
    margin-left: 0;
    margin-top: 2px;
    font-size: 0.5em;
    font-weight: 500;
    letter-spacing: normal;
}


.transfer-detail-channel-title {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.transfer-detail-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.transfer-detail-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.transfer-detail-actions a:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.14);
}

.transfer-detail-actions a:nth-child(1):hover {
    border-color: rgba(37, 211, 102, 0.42);
    background: rgba(37, 211, 102, 0.16);
    color: #86efac;
}

.transfer-detail-actions a:nth-child(2):hover {
    border-color: rgba(34, 158, 217, 0.44);
    background: rgba(34, 158, 217, 0.16);
    color: #93c5fd;
}

.transfer-detail-actions a:nth-child(3):hover {
    border-color: rgba(124, 58, 237, 0.42);
    background: rgba(124, 58, 237, 0.16);
    color: #c4b5fd;
}

.transfer-detail-actions img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.transfer-detail-actions a:nth-child(2) img,
.transfer-detail-actions a:nth-child(3) img {
    width: 34px;
    height: 34px;
}

.transfer-detail-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
    line-height: 1.6;
}

.transfer-price-compare-section {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    width: min(calc(100% - 72px), 810px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    padding: 14px 0 18px;
}

.transfer-price-compare-shell {
    width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1.5px solid rgba(77, 125, 240, 0.5);
    background: #f6f8fb;
    box-shadow: 0 8px 18px rgba(11, 23, 40, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    padding: 30px 20px 28px;
    text-align: center;
}

.transfer-route-insight-shell {
    width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1.5px solid rgba(77, 125, 240, 0.5);
    background: #f6f8fb;
    box-shadow: 0 8px 18px rgba(11, 23, 40, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    padding: 20px 18px;
    color: #344055;
}

.transfer-route-insight-shell h3 {
    margin: 0;
    color: #5e708b;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    line-height: 1.45;
}

.transfer-route-insight-lead {
    margin: 10px 0 0;
    font-size: 0.74rem;
    line-height: 1.65;
    color: #4a5870;
}

.transfer-route-insight-points {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.transfer-route-insight-points li {
    position: relative;
    padding-left: 14px;
    font-size: 0.7rem;
    line-height: 1.65;
    color: #44536b;
}

.transfer-route-insight-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f0ab3a;
    transform: translateY(-50%);
}

.transfer-route-insight-box {
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(77, 125, 240, 0.24);
    background: #fbfcfe;
    padding: 12px;
}

.transfer-route-insight-box strong {
    display: block;
    margin: 0 0 6px;
    color: #27344a;
    font-size: 0.82rem;
}

.transfer-route-insight-box p {
    margin: 0;
    color: #495872;
    font-size: 0.72rem;
    line-height: 1.6;
}

.transfer-route-insight-box p + p {
    margin-top: 2px;
}

.transfer-route-insight-note {
    margin: 10px 0 0;
    color: #4d5b73;
    font-size: 0.72rem;
    line-height: 1.62;
}

.transfer-route-insight-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #f0ab3a;
    background: #fff7ea;
    color: #c76f00;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
}

.transfer-smart-compare-section {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f1f4f7;
    padding: 8px 0 12px;
}

.transfer-smart-compare-shell {
    width: min(calc(100% - 72px), 860px);
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid transparent;
    background: transparent;
    padding: 20px 14px 14px;
}

.transfer-smart-compare-head {
    text-align: center;
}

.transfer-smart-compare-head h3 {
    margin: 0;
    color: #171c26;
    font-size: clamp(1.18rem, 2.1vw, 1.72rem);
    letter-spacing: -0.03em;
}

.transfer-smart-compare-head p {
    margin: 6px 0 0;
    color: #758093;
    font-size: 0.9rem;
}

.transfer-smart-compare-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.transfer-smart-card {
    border-radius: 12px;
    padding: 12px 10px 10px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.transfer-smart-card--taxi {
    border: 1px solid rgba(248, 113, 113, 0.36);
    background: #fdf2f2;
}

.transfer-smart-card--reserve {
    border: 1px solid rgba(74, 222, 128, 0.45);
    background: #ebf8ef;
}

.transfer-smart-card-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 6px;
}

.transfer-smart-card-top strong {
    color: #1f2838;
    font-size: 0.9rem;
}

.transfer-smart-card-top b {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.transfer-smart-card--taxi .transfer-smart-card-top b {
    color: #ef4444;
    text-decoration: line-through;
}

.transfer-smart-card--reserve .transfer-smart-card-top b {
    color: #16a34a;
}

.transfer-smart-card-badge {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.transfer-smart-card--taxi .transfer-smart-card-badge {
    background: #fee2e2;
    color: #ef4444;
}

.transfer-smart-card--reserve .transfer-smart-card-badge {
    background: #d1fae5;
    color: #16a34a;
}

.transfer-smart-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.transfer-smart-list li {
    position: relative;
    padding-left: 14px;
    color: #4a576c;
    font-size: 0.8rem;
    line-height: 1.35;
}

.transfer-smart-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.82rem;
    line-height: 1;
}

.transfer-smart-list--minus li::before {
    content: "×";
    color: #f87171;
}

.transfer-smart-list--plus li::before {
    content: "✓";
    color: #22c55e;
}

.transfer-smart-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border-radius: 8px;
    background: #16a34a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 800;
}

.alanya-mini-guide-section {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(135% 130% at 4% 0%, rgba(30, 64, 175, 0.12), rgba(30, 64, 175, 0)),
        radial-gradient(120% 120% at 96% 100%, rgba(217, 119, 6, 0.12), rgba(217, 119, 6, 0)),
        linear-gradient(180deg, #ffffff 0%, #fffbf2 100%);
    padding: 40px 0 44px;
}

.alanya-mini-guide-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.22;
}

.alanya-mini-guide-shell {
    width: min(calc(100% - 140px), 980px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 247, 0.86)),
        radial-gradient(120% 120% at 100% 0%, rgba(251, 191, 36, 0.14), rgba(251, 191, 36, 0));
    box-shadow:
        0 22px 42px -28px rgba(15, 23, 42, 0.38),
        0 8px 20px -16px rgba(180, 83, 9, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 18px 16px;
}

.alanya-mini-guide-head {
    text-align: center;
}

.alanya-mini-guide-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(217, 119, 6, 0.34);
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.96), rgba(255, 255, 255, 0.94));
    color: #92400e;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px -16px rgba(180, 83, 9, 0.55);
}

.alanya-mini-guide-head h3 {
    margin: 10px 0 0;
    color: #141b2a;
    font-size: clamp(1rem, 2.2vw, 1.9rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-wrap: balance;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.alanya-mini-guide-head p {
    margin: 8px auto 0;
    max-width: 72ch;
    color: #5f6f86;
    font-size: 0.88rem;
    line-height: 1.65;
}

.alanya-mini-guide-info {
    position: relative;
    margin: 14px 0 0;
    border-radius: 14px;
    border: 1px solid rgba(217, 119, 6, 0.28);
    background:
        linear-gradient(165deg, rgba(255, 249, 239, 0.92), rgba(255, 242, 220, 0.88)),
        radial-gradient(120% 140% at 100% 0%, rgba(245, 158, 11, 0.22), rgba(245, 158, 11, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 14px 30px rgba(120, 53, 15, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    padding: 12px 12px 12px 16px;
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.alanya-mini-guide-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.alanya-mini-guide-info::after {
    content: "◈";
    position: absolute;
    right: 10px;
    top: 10px;
    color: rgba(180, 83, 9, 0.36);
    font-size: 0.9rem;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.alanya-mini-guide-info:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 119, 6, 0.46);
    box-shadow:
        0 18px 36px rgba(120, 53, 15, 0.18),
        0 0 0 1px rgba(251, 191, 36, 0.14);
}

.alanya-mini-guide-info:hover::after {
    color: rgba(217, 119, 6, 0.64);
    transform: scale(1.12) rotate(8deg);
}

.alanya-mini-guide-info h4 {
    margin: 0;
    color: #7c2d12;
    font-size: 0.76rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.alanya-mini-guide-info p {
    margin: 5px 0 0;
    color: #5b3b1f;
    font-size: 0.66rem;
    line-height: 1.5;
    max-width: 88%;
}

.alanya-mini-guide-info ul {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.alanya-mini-guide-info ul::-webkit-scrollbar {
    display: none;
}

.alanya-mini-guide-info li {
    position: relative;
    padding: 5px 10px 5px 21px;
    border-radius: 999px;
    border: 1px solid rgba(217, 119, 6, 0.34);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 237, 0.78));
    color: #4a2f1b;
    font-size: 0.59rem;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 6px 14px -12px rgba(180, 83, 9, 0.55);
    white-space: nowrap;
    flex: 0 0 auto;
    width: fit-content;
    max-width: 100%;
}

.alanya-mini-guide-info li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.7);
    transform: translateY(-50%);
}

.alanya-mini-guide-info li strong {
    font-weight: 800;
    color: #7c2d12;
    letter-spacing: 0.01em;
}

.alanya-mini-guide-info li span {
    color: #5e3f26;
}

.alanya-mini-guide-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.alanya-guide-plus-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.alanya-guide-plus-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 0;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.9)),
        radial-gradient(120% 120% at 100% 0%, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0));
    border: 1px solid rgba(217, 119, 6, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 22px rgba(120, 53, 15, 0.1);
    padding: 10px 11px;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.alanya-guide-plus-card::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -26px;
    width: 92px;
    height: 92px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.34), rgba(251, 191, 36, 0)),
        radial-gradient(circle at 70% 70%, rgba(217, 119, 6, 0.18), rgba(217, 119, 6, 0));
    pointer-events: none;
    transform: scale(1);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.alanya-guide-plus-card > * {
    position: relative;
    z-index: 1;
}

.alanya-guide-plus-card:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 119, 6, 0.34);
    box-shadow: 0 16px 30px rgba(120, 53, 15, 0.16);
}

.alanya-guide-plus-card:hover::before {
    transform: scale(1.2);
    opacity: 0.9;
}

.alanya-guide-plus-card h4 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #1b2a44;
    font-size: 0.84rem;
    line-height: 1.35;
}

.alanya-guide-plus-card h4::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.5);
}

.alanya-guide-plus-card p {
    margin: 6px 0 0;
    color: #45556e;
    font-size: 0.72rem;
    line-height: 1.5;
}

.alanya-guide-plus-card ul {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 4px;
}

.alanya-guide-plus-card li {
    position: relative;
    padding-left: 11px;
    color: #34455f;
    font-size: 0.71rem;
    line-height: 1.42;
}

.alanya-guide-plus-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.52);
}

.alanya-guide-plus-card--seo {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.36);
    background:
        linear-gradient(150deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94)),
        radial-gradient(120% 120% at 100% 0%, rgba(245, 158, 11, 0.22), rgba(245, 158, 11, 0));
    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.35),
        inset 0 1px 0 rgba(245, 158, 11, 0.25);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.alanya-guide-plus-card--seo::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 300%;
    background: linear-gradient(115deg, rgba(251, 191, 36, 0), rgba(251, 191, 36, 0.22), rgba(251, 191, 36, 0));
    transform: rotate(18deg);
    pointer-events: none;
    opacity: 0;
}

.alanya-guide-plus-card--seo:hover {
    border-color: rgba(251, 191, 36, 0.62);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(251, 191, 36, 0.16),
        0 0 20px rgba(251, 191, 36, 0.16),
        inset 0 1px 0 rgba(251, 191, 36, 0.35);
}

.alanya-guide-plus-card--seo:hover::before {
    opacity: 0.72;
    animation: seoGoldSweep 1.8s ease;
}

.alanya-guide-plus-card--seo h4 {
    color: #fbbf24;
}

.alanya-guide-plus-card--seo p,
.alanya-guide-plus-card--seo li {
    color: rgba(241, 245, 249, 0.9);
}

.alanya-guide-plus-card--seo h4::after {
    background: rgba(251, 191, 36, 0.72);
}

.alanya-guide-plus-card--seo li::before {
    background: rgba(251, 191, 36, 0.78);
}

@keyframes seoGoldSweep {
    from {
        left: -55%;
    }
    to {
        left: 135%;
    }
}

.alanya-mini-guide-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-radius: 14px;
    border: 1px solid rgba(217, 119, 6, 0.24);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.88)),
        radial-gradient(120% 120% at 100% 0%, rgba(245, 158, 11, 0.16), rgba(245, 158, 11, 0));
    box-shadow:
        0 16px 34px rgba(120, 53, 15, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    padding: 11px 11px 10px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.alanya-mini-guide-item::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -14px;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.34), rgba(245, 158, 11, 0)),
        conic-gradient(from 180deg, rgba(217, 119, 6, 0.22), rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.22));
    opacity: 0.68;
    pointer-events: none;
    transform: scale(1);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.alanya-mini-guide-item::after {
    content: "✦";
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(180, 83, 9, 0.8);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(217, 119, 6, 0.26);
    font-size: 0.68rem;
    line-height: 1;
    pointer-events: none;
}

.alanya-mini-guide-item > * {
    position: relative;
    z-index: 1;
}

.alanya-mini-guide-item:hover {
    border-color: rgba(217, 119, 6, 0.5);
    box-shadow:
        0 24px 48px rgba(180, 83, 9, 0.24),
        0 0 0 1px rgba(217, 119, 6, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.alanya-mini-guide-item:hover::before {
    opacity: 0.9;
    transform: scale(1.2);
}

.alanya-mini-guide-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff3db 0%, #ffe9bf 100%);
    border: 1px solid rgba(217, 119, 6, 0.3);
    box-shadow: 0 6px 14px rgba(217, 119, 6, 0.18);
    font-size: 0.9rem;
    line-height: 1;
}

.alanya-mini-guide-item h4 {
    display: inline-flex;
    align-self: flex-start;
    margin: 10px 0 0;
    padding: 3px 7px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    color: #1b2a44;
    font-size: 0.74rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.alanya-mini-guide-item p {
    align-self: flex-start;
    margin: 8px 0 0;
    padding: 5px 7px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    color: #4f5f79;
    font-size: 0.65rem;
    line-height: 1.55;
}

.alanya-mini-guide-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    color: #3f4f67;
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1.4;
}

.alanya-mini-guide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.alanya-mini-guide-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 6px;
    border-radius: 999px;
    border: 1px solid rgba(217, 119, 6, 0.26);
    background: rgba(255, 247, 237, 0.94);
    color: #9a3412;
    font-size: 0.54rem;
    font-weight: 700;
    line-height: 1;
}

.transfer-seo-faq-section {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #ffffff;
    padding: 44px 0 52px;
}

.transfer-seo-faq-shell {
    width: min(calc(100% - 72px), 1120px);
    margin: 0 auto;
}

.transfer-seo-faq-head {
    text-align: center;
}

.transfer-seo-faq-head h3 {
    margin: 0;
    color: #141b2a;
    font-size: clamp(0.94rem, 2.05vw, 2.02rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.transfer-seo-faq-head p {
    margin: 8px auto 0;
    max-width: 78ch;
    color: #6d798f;
    font-size: 0.79rem;
    line-height: 1.72;
    max-height: calc(1.72em * 2);
    overflow: hidden;
}

.transfer-seo-faq-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 52px;
    row-gap: 38px;
}

.transfer-seo-faq-item h4 {
    margin: 0;
    color: #1a2232;
    font-size: 1.114rem;
    line-height: 1.34;
    letter-spacing: -0.01em;
}

.transfer-seo-faq-item p {
    margin: 3px 0 0;
    color: #536077;
    font-size: 0.813rem;
    line-height: 1.95;
}

.transfer-review-wall-section {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f4f6f9;
    padding: 34px 0 45px;
}

.transfer-review-wall-shell {
    width: min(calc(100% - 72px), 840px);
    margin: 0 auto;
}

.transfer-review-wall-head {
    text-align: center;
}

.transfer-review-wall-head h3 {
    margin: 0;
    color: #141b2a;
    font-size: clamp(1.2rem, 2.25vw, 2.1rem);
    letter-spacing: -0.03em;
}

.transfer-review-wall-head p {
    margin: 12px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #66748c;
    font-size: 0.83rem;
}

.transfer-review-wall-stars {
    color: #f5b81f;
    letter-spacing: 0.08em;
    font-size: 1.2em;
}

.transfer-review-wall-head p strong {
    color: #1a2232;
    font-size: 1.12em;
}

.transfer-review-wall-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.transfer-review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 15px;
    border: 1px solid #dfe5ee;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(20, 32, 52, 0.05);
    padding: 15px 13px 12px;
}

.transfer-review-card-stars {
    color: #f5b81f;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    line-height: 1;
}

.transfer-review-card blockquote {
    margin: 12px 0 0;
    color: #4f5d74;
    font-size: 0.74rem;
    line-height: 1.65;
    font-style: italic;
    min-height: 6.6em;
    max-height: 6.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.transfer-review-card-name {
    margin-top: auto;
    padding-top: 12px;
    color: #161f30;
    font-size: 0.82rem;
    font-weight: 700;
}

.transfer-review-card-meta {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #8a96ab;
    font-size: 0.68rem;
}

.transfer-review-card-meta span:last-child {
    white-space: nowrap;
}

.transfer-cta-banner-section {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 56px 0 40px;
}

.transfer-cta-banner-shell {
    width: min(calc(100% - 72px), 980px);
    margin: 0 auto;
    border-radius: 18px;
    background: linear-gradient(98deg, #0a1a2d 0%, #123355 50%, #1d4a74 100%);
    box-shadow: 0 16px 30px rgba(8, 23, 42, 0.24);
    padding: 15px 19px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.transfer-cta-banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9fd6ff;
    font-size: 0.638rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.transfer-cta-banner-kicker-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(159, 214, 255, 0.18);
    font-size: 0.8rem;
}

.transfer-cta-banner-left h3 {
    margin: 7px 0 0;
    color: #f8fbff;
    font-size: clamp(1.155rem, 2.178vw, 1.936rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.transfer-cta-banner-left p {
    margin: 5px 0 0;
    color: rgba(238, 245, 255, 0.85);
    font-size: 0.8rem;
    line-height: 1.55;
    white-space: nowrap;
}

.transfer-cta-banner-features {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.transfer-cta-banner-features span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ecf5ff;
    font-size: 0.748rem;
    font-weight: 600;
}

.transfer-cta-banner-features span::before {
    content: "✓";
    margin-right: 5px;
    color: #9fd6ff;
    font-weight: 800;
}

.transfer-cta-banner-right {
    display: grid;
    gap: 6px;
    justify-items: end;
}

.transfer-cta-banner-right a {
    min-width: 198px;
    min-height: 44px;
    border-radius: 11px;
    background: linear-gradient(90deg, #ffb84d 0%, #ff8f3a 100%);
    color: #1a2538;
    font-size: 1.21rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(255, 152, 64, 0.3);
}

.transfer-cta-banner-right a::after {
    content: "→";
    margin-left: 6px;
}

.transfer-cta-banner-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.transfer-cta-banner-rating span {
    color: #ffcf33;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
}

.transfer-cta-banner-rating small {
    color: rgba(236, 245, 255, 0.82);
    font-size: 0.74rem;
}

.transfer-price-compare-shell h3 {
    margin: 0;
    color: #141927;
    font-size: clamp(1.1rem, 2.35vw, 1.75rem);
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.transfer-price-compare-shell > p {
    margin: 6px 0 0;
    color: #8b95a5;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
}

.transfer-price-compare-main {
    margin-top: 15px;
    color: #df4a36;
    font-size: clamp(2.25rem, 6vw, 3.7rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.transfer-price-compare-main small {
    font-size: 0.2em;
    color: #909bad;
    vertical-align: super;
    margin-left: 2px;
}

.transfer-price-compare-sub {
    margin-top: 6px;
    color: #8d97a7;
    font-size: 0.74rem;
}

.transfer-price-compare-row {
    margin-top: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #3e4757;
    font-size: 0.72rem;
}

.transfer-price-compare-label {
    font-weight: 600;
}

.transfer-price-compare-row strong {
    font-weight: 800;
}

.transfer-price-compare-row--taxi strong {
    color: #f15a57;
    text-decoration: line-through;
}

.transfer-price-compare-row--transfer strong {
    color: #1ea653;
}

.transfer-price-compare-bar {
    width: 100%;
    height: 9px;
    border-radius: 999px;
    margin-top: 5px;
}

.transfer-price-compare-bar--taxi {
    background: linear-gradient(90deg, #ff7573 0%, #f35755 100%);
}

.transfer-price-compare-bar--transfer {
    width: calc(100% - 26%);
    background: linear-gradient(90deg, #3fd980 0%, #15b86f 100%);
}

.transfer-price-compare-savings {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #b8e8cb;
    background: #eaf8f0;
    color: #1a9250;
    font-size: 0.74rem;
    font-weight: 800;
}

.transfer-price-compare-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 40px;
    width: min(100%, 390px);
    border-radius: 10px;
    background: #db482f;
    box-shadow: 0 16px 32px rgba(197, 67, 42, 0.28);
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.78rem, 1.65vw, 1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transfer-price-compare-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(197, 67, 42, 0.34);
}

.transfer-price-compare-includes-title {
    margin-top: 12px;
    color: #97a0af;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.transfer-price-compare-includes {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.transfer-price-compare-includes li {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(157, 184, 246, 0.5);
    background: #fbfcfe;
    color: #374051;
    font-size: 0.68rem;
    font-weight: 550;
    padding: 0 9px;
    text-align: left;
}

.transfer-price-compare-includes li::before {
    content: "";
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border-radius: 50%;
    border: 1.5px solid #22c55e;
    box-sizing: border-box;
}

.site-footer {
    margin-top: 18px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #050608;
    color: rgba(255, 255, 255, 0.84);
}

.footer-shell {
    width: min(calc(100% - 120px), 1280px);
    margin: 0 auto;
    padding: 46px 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.footer-logo {
    display: inline-block;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.footer-language {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
}

.footer-brand p {
    margin: 0;
    max-width: 30ch;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.footer-socials a:hover {
    border-color: rgba(77, 125, 240, 0.48);
    background: rgba(77, 125, 240, 0.12);
    color: #cfe0ff;
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-column h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-list li {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.92rem;
    line-height: 1.65;
}

.footer-list-contact li:nth-child(2n) {
    color: #ffffff;
}

.footer-bottom {
    width: min(calc(100% - 120px), 1280px);
    margin: 0 auto;
    padding: 16px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.78rem;
}

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.primary-action {
    background: var(--text);
    color: #fff;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.12);
}

.secondary-action {
    border: 1px solid var(--line-strong);
    background: #fff;
}

.primary-action:hover,
.secondary-action:hover,
.primary-action:focus-visible,
.secondary-action:focus-visible {
    transform: translateY(-2px);
}

.floating-whatsapp-button {
    position: fixed;
    right: 50px;
    bottom: 50px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp-ring {
    position: absolute;
    width: 112px;
    height: 112px;
    border: 1.5px solid rgba(34, 197, 94, 0.35);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.floating-whatsapp-ring svg {
    width: 112px;
    height: 112px;
    overflow: visible;
    animation: whatsappTextSpin 9s linear infinite;
}

.floating-whatsapp-ring text {
    fill: #16a34a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.floating-whatsapp-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 32px rgba(34, 197, 94, 0.46);
}

.floating-whatsapp-button img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
}

.floating-whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.28);
    animation: whatsappPulse 1.8s ease-out infinite;
    z-index: 1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.95;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@keyframes whatsappTextSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1080px) {
    .reasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .service-shell {
        width: min(calc(100% - 72px), 980px);
    }

    .service-grid,
    .service-meta-grid {
        grid-template-columns: 1fr;
    }

    .fleet-shell {
        width: min(calc(100% - 80px), 980px);
    }

    .transfer-grid-shell,
    .transfer-detail-shell {
        width: min(calc(100% - 56px), 1080px);
    }

    .breadcrumb-shell,
    .transfer-detail-layout {
        width: min(calc(100% - 56px), 1080px);
    }

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

    .transfer-detail-layout {
        grid-template-columns: 1fr;
    }

    .faq-shell {
        width: min(calc(100% - 72px), 700px);
    }

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

    .footer-shell,
    .footer-bottom {
        width: min(calc(100% - 56px), 1080px);
    }

    .footer-shell {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .floating-whatsapp-button {
        right: 50px;
        bottom: 50px;
        width: 58px;
        height: 58px;
    }

    .floating-whatsapp-button img {
        width: 27px;
        height: 27px;
    }

    .floating-whatsapp-ring,
    .floating-whatsapp-ring svg {
        width: 102px;
        height: 102px;
    }

    .floating-whatsapp-ring text {
        font-size: 8px;
    }

    .compare-row {
        grid-template-columns: 1.15fr 1fr 1fr 1fr;
        gap: 16px;
    }

    .transfer-price-compare-section {
        width: min(calc(100% - 56px), 786px);
    }

    .transfer-price-compare-shell {
        padding: 26px 15px 22px;
    }

    .transfer-route-insight-shell {
        padding: 18px 14px;
    }

    .transfer-smart-compare-shell {
        width: min(calc(100% - 56px), 780px);
        padding: 16px 10px 12px;
    }

    .transfer-seo-faq-shell {
        width: min(calc(100% - 56px), 1000px);
    }

    .transfer-seo-faq-grid {
        column-gap: 44px;
        row-gap: 34px;
    }

    .transfer-review-wall-shell {
        width: min(calc(100% - 56px), 1000px);
    }

    .transfer-review-wall-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .transfer-cta-banner-shell {
        width: min(calc(100% - 56px), 800px);
        padding: 22px 22px;
        grid-template-columns: 1fr;
    }

    .transfer-cta-banner-right {
        justify-items: start;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 820px) {
    .page-shell {
        width: min(calc(100% - 10px), var(--max-width));
    }

    .service-shell {
        width: min(calc(100% - 28px), 640px);
    }

    .tour-catalog-shell {
        width: min(calc(100% - 28px), 640px);
    }

    .tour-detail-shell {
        width: min(calc(100% - 28px), 640px);
        padding: 14px;
    }

    .tour-page-shell {
        width: min(calc(100% - 28px), 640px);
        padding-left: 14px;
    }

    .tour-page-shell::before {
        width: 1px;
        opacity: 0.65;
    }

    .tour-page-grid {
        grid-template-columns: 1fr;
    }

    .tour-page-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-catalog-section {
        padding: 34px 0 40px;
    }

    .tour-catalog-head h2 {
        font-size: clamp(1.35rem, 5.1vw, 1.78rem);
    }

    .tour-catalog-head p {
        font-size: 0.84rem;
    }

    .tour-catalog-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tour-catalog-card {
        border-radius: 16px;
        padding: 12px;
    }

    .tour-catalog-card h3 {
        font-size: 1rem;
    }

    .tour-catalog-more,
    .tour-catalog-more-inline {
        min-height: 27px;
        padding: 0 10px;
        font-size: 0.65rem;
    }

    .tour-catalog-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .tour-catalog-item-card {
        aspect-ratio: 0.92 / 1;
        font-size: 0.76rem;
    }

    .tour-catalog-item-title {
        font-size: 0.82rem;
    }

    .service-section {
        padding: 38px 0 42px;
    }

    .service-block {
        padding: 18px;
        border-radius: 22px;
    }

    .service-intro p {
        font-size: 0.9rem;
    }

    .homepage-seo-section {
        padding: 40px 0 42px;
    }

    .homepage-seo-shell {
        width: min(calc(100% - 28px), 640px);
        border-radius: 14px;
        padding: 12px 12px 11px;
        outline: 1px solid rgba(255, 255, 255, 0.42);
        outline-offset: -6px;
    }

    .homepage-seo-head h2 {
        font-size: clamp(0.72rem, 2.7vw, 0.94rem);
        white-space: nowrap;
    }

    .homepage-seo-head p {
        margin-top: 8px;
        font-size: 0.8rem;
        line-height: 1.7;
    }

    .homepage-seo-badges {
        margin-top: 9px;
        gap: 6px;
    }

    .homepage-seo-badges span {
        min-height: 24px;
        padding: 0 8px;
        font-size: 0.62rem;
    }

    .homepage-seo-metrics {
        margin-top: 10px;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .homepage-seo-metric {
        border-radius: 8px;
        padding: 7px 8px;
    }

    .homepage-seo-metric small {
        font-size: 0.52rem;
    }

    .homepage-seo-metric strong {
        font-size: 0.72rem;
    }

    .seo-accent-term {
        padding: 0 1px;
        border-radius: 3px;
    }

    .homepage-seo-content {
        margin-top: 12px;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .homepage-seo-article {
        border-radius: 10px;
        padding: 10px 11px;
    }

    .homepage-seo-article:first-child {
        grid-column: 1;
    }

    .homepage-seo-article h3 {
        font-size: 0.82rem;
    }

    .homepage-seo-article h3::before {
        min-width: 22px;
        height: 22px;
        margin-right: 6px;
    }

    .homepage-seo-article p {
        margin-top: 5px;
        font-size: 0.72rem;
        line-height: 1.62;
    }

    .fleet-shell {
        width: min(calc(100% - 44px), 560px);
    }

    .transfer-grid-shell,
    .transfer-detail-shell {
        width: min(calc(100% - 28px), 640px);
    }

    .breadcrumb-shell,
    .transfer-detail-layout {
        width: min(calc(100% - 28px), 640px);
    }

    .transfer-grid {
        grid-template-columns: 1fr;
    }

    .transfer-card-link {
        gap: 15px;
        padding: 16px;
    }

    .transfer-card-body {
        min-height: auto;
    }

    .transfer-card-stats {
        flex-wrap: wrap;
        gap: 10px;
    }

    .transfer-detail-stats {
        grid-template-columns: 1fr;
    }

    .transfer-detail-shell {
        min-height: auto;
    }

    .transfer-detail-layout {
        padding: 28px 20px;
        gap: 20px;
    }

    .transfer-detail-content h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .transfer-detail-inline-stats {
        gap: 12px;
        font-size: 0.92rem;
    }

    .transfer-detail-content p,
    .transfer-detail-benefits li {
        font-size: 0.94rem;
    }

    .transfer-detail-card {
        padding: 18px;
        border-radius: 24px;
    }

    .transfer-detail-card-top {
        flex-direction: column;
    }

    .transfer-detail-actions {
        grid-template-columns: 1fr;
    }

    .transfer-price-compare-section {
        width: min(calc(100% - 28px), 328px);
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .transfer-price-compare-shell {
        border-radius: 14px;
        padding: 22px 10px 18px;
    }

    .transfer-route-insight-shell {
        border-radius: 14px;
        padding: 16px 10px;
    }

    .transfer-smart-compare-shell {
        width: min(calc(100% - 28px), 640px);
        border-radius: 14px;
        padding: 14px 8px 10px;
    }

    .transfer-smart-compare-head h3 {
        font-size: 1.1rem;
    }

    .transfer-smart-compare-head p {
        font-size: 0.8rem;
    }

    .transfer-smart-compare-grid {
        margin-top: 10px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .transfer-smart-card {
        min-height: auto;
        padding: 10px 8px 8px;
        border-radius: 10px;
    }

    .transfer-smart-card-top strong {
        font-size: 0.82rem;
    }

    .transfer-smart-card-top b {
        font-size: 1.24rem;
    }

    .transfer-smart-card-badge {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        font-size: 0.84rem;
    }

    .transfer-smart-list {
        margin-top: 8px;
        gap: 5px;
    }

    .transfer-smart-list li {
        padding-left: 13px;
        font-size: 0.74rem;
    }

    .transfer-smart-list li::before {
        font-size: 0.74rem;
    }

    .transfer-smart-cta {
        min-height: 30px;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .alanya-mini-guide-section {
        padding: 26px 0 30px;
    }

    .alanya-mini-guide-shell {
        width: min(calc(100% - 44px), 560px);
        border-radius: 14px;
        padding: 12px 12px 11px;
    }

    .alanya-mini-guide-head h3 {
        font-size: 0.95rem;
    }

    .alanya-mini-guide-head p {
        font-size: 0.74rem;
    }

    .alanya-mini-guide-kicker {
        font-size: 0.64rem;
        padding: 5px 10px;
    }

    .alanya-mini-guide-grid {
        margin-top: 14px;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .alanya-guide-plus-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 10px;
    }

    .alanya-guide-plus-card {
        border-radius: 10px;
        padding: 9px 10px;
    }

    .alanya-guide-plus-card h4 {
        font-size: 0.76rem;
    }

    .alanya-guide-plus-card p,
    .alanya-guide-plus-card li {
        font-size: 0.66rem;
    }

    .alanya-mini-guide-info {
        margin-top: 10px;
        border-radius: 10px;
        padding: 9px 10px;
    }

    .alanya-mini-guide-info h4 {
        font-size: 0.66rem;
    }

    .alanya-mini-guide-info p {
        font-size: 0.6rem;
    }

    .alanya-mini-guide-info li {
        font-size: 0.54rem;
    }

    .alanya-mini-guide-item {
        padding: 10px;
        border-radius: 10px;
    }

    .alanya-mini-guide-item h4 {
        font-size: 0.66rem;
    }

    .alanya-mini-guide-item p {
        font-size: 0.58rem;
        line-height: 1.5;
    }

    .alanya-mini-guide-meta {
        margin-top: 7px;
        font-size: 0.54rem;
    }

    .alanya-mini-guide-tags {
        margin-top: 7px;
        gap: 4px;
    }

    .alanya-mini-guide-tags span {
        font-size: 0.5rem;
        padding: 2px 5px;
    }

    .alanya-mini-guide-emoji {
        width: 24px;
        height: 24px;
        font-size: 0.76rem;
    }

    .transfer-seo-faq-section {
        padding: 28px 0 32px;
    }

    .transfer-seo-faq-shell {
        width: min(calc(100% - 28px), 640px);
    }

    .transfer-seo-faq-head h3 {
        font-size: 0.9rem;
    }

    .transfer-seo-faq-head p {
        margin-top: 8px;
        font-size: 0.67rem;
        line-height: 1.72;
        max-height: calc(1.72em * 2);
        overflow: hidden;
    }

    .transfer-seo-faq-grid {
        margin-top: 24px;
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .transfer-seo-faq-item h4 {
        font-size: 0.76rem;
    }

    .transfer-seo-faq-item p {
        margin-top: 2px;
        font-size: 0.656rem;
        line-height: 1.82;
    }

    .transfer-review-wall-section {
        padding: 30px 0 36px;
    }

    .transfer-review-wall-shell {
        width: min(calc(100% - 28px), 640px);
    }

    .transfer-review-wall-head h3 {
        font-size: 1.34rem;
    }

    .transfer-review-wall-head p {
        margin-top: 10px;
        gap: 7px;
        font-size: 0.92rem;
    }

    .transfer-review-wall-grid {
        margin-top: 18px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .transfer-review-card {
        border-radius: 14px;
        padding: 14px 12px 12px;
    }

    .transfer-review-card-stars {
        font-size: 0.94rem;
    }

    .transfer-review-card blockquote {
        margin-top: 8px;
        font-size: 0.86rem;
        line-height: 1.56;
    }

    .transfer-review-card-name {
        margin-top: 10px;
        font-size: 0.96rem;
    }

    .transfer-review-card-meta {
        margin-top: 5px;
        font-size: 0.78rem;
    }

    .transfer-cta-banner-section {
        padding: 12px 0 16px;
    }

    .transfer-cta-banner-shell {
        width: min(calc(100% - 28px), 640px);
        border-radius: 18px;
        padding: 16px 12px;
        gap: 14px;
    }

    .transfer-cta-banner-kicker {
        font-size: 0.74rem;
        gap: 8px;
    }

    .transfer-cta-banner-kicker-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 0.96rem;
    }

    .transfer-cta-banner-left h3 {
        margin-top: 10px;
        font-size: 1.34rem;
    }

    .transfer-cta-banner-left p {
        margin-top: 8px;
        font-size: 0.88rem;
        white-space: normal;
    }

    .transfer-cta-banner-features {
        margin-top: 10px;
        gap: 7px;
    }

    .transfer-cta-banner-features span {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .transfer-cta-banner-right {
        gap: 8px;
    }

    .transfer-cta-banner-right a {
        min-width: 100%;
        min-height: 52px;
        border-radius: 12px;
        font-size: 1.24rem;
    }

    .transfer-cta-banner-rating {
        gap: 8px;
    }

    .transfer-cta-banner-rating span {
        font-size: 1rem;
    }

    .transfer-cta-banner-rating small {
        font-size: 0.92rem;
    }

    .transfer-price-compare-shell > p {
        font-size: 0.68rem;
    }

    .transfer-price-compare-main {
        margin-top: 10px;
    }

    .transfer-price-compare-sub {
        margin-top: 4px;
        font-size: 0.66rem;
    }

    .transfer-price-compare-row {
        margin-top: 9px;
        font-size: 0.68rem;
    }

    .transfer-price-compare-bar {
        height: 8px;
        margin-top: 4px;
    }

    .transfer-price-compare-savings {
        margin-top: 9px;
        padding: 5px 9px;
        font-size: 0.68rem;
    }

    .transfer-price-compare-cta {
        margin-top: 9px;
        min-height: 38px;
        border-radius: 9px;
        font-size: 0.78rem;
    }

    .transfer-price-compare-includes-title {
        margin-top: 10px;
        font-size: 0.58rem;
    }

    .transfer-price-compare-includes {
        grid-template-columns: 1fr;
        margin-top: 6px;
        gap: 5px;
    }

    .transfer-price-compare-includes li {
        min-height: 30px;
        font-size: 0.64rem;
    }

    .faq-shell {
        width: min(calc(100% - 28px), 640px);
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fleet-card-media {
        min-height: 160px;
        padding-top: 14px;
    }

    .footer-shell,
    .footer-bottom {
        width: min(calc(100% - 28px), 640px);
    }

    .footer-shell {
        padding: 30px 0 18px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .floating-whatsapp-button {
        right: 50px;
        bottom: 50px;
        width: 54px;
        height: 54px;
    }

    .floating-whatsapp-button img {
        width: 24px;
        height: 24px;
    }

    .floating-whatsapp-ring,
    .floating-whatsapp-ring svg {
        width: 94px;
        height: 94px;
    }

    .floating-whatsapp-ring text {
        font-size: 7.5px;
    }

    .footer-bottom {
        padding: 12px 0 22px;
        align-items: flex-start;
        flex-direction: column;
    }

    .fleet-card-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .service-card {
        grid-template-columns: 28px 1fr;
        padding: 12px 14px;
    }

    .service-meta-card {
        padding: 16px;
    }

    .faq-item summary {
        padding: 16px 16px;
        font-size: 0.92rem;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .site-header {
        padding: 14px 12px;
        align-items: flex-start;
        flex-direction: column;
    }

    .header-tools {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .quick-actions {
        border-left: 0;
        padding-left: 0;
    }

    .language-menu {
        left: 0;
        right: auto;
    }

    .hero {
        padding-top: 0;
    }

    .hero-copy {
        padding: 22px 14px 18px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(1.42rem, 6vw, 1.95rem);
        text-wrap: wrap;
    }

    .hero-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .compare-heading {
        margin-bottom: 18px;
    }

    .compare-shell {
        width: min(calc(100% - 14px), 960px);
    }

    .reasons-shell h2,
    .steps-heading h2,
    .compare-heading h2,
    .fleet-heading h2,
    .faq-heading h2 {
        font-size: clamp(1.65rem, 5.8vw, 2.3rem);
    }

    .compare-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        min-height: 0;
        padding: 8px 0;
    }

    .compare-row-head {
        display: grid;
    }

    .compare-cell,
    .compare-cell-label,
    .compare-cell-brand {
        text-align: center;
        justify-content: center;
        font-size: 0.68rem;
        line-height: 1.35;
        white-space: nowrap;
    }

    .compare-cell-label {
        text-align: center;
        justify-content: center;
        font-size: 0.7rem;
    }

    .step-box {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .step-number {
        left: calc(50% + 10px);
    }
}

@media (max-width: 560px) {
    .fleet-shell {
        width: min(calc(100% - 60px), 520px);
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fleet-card {
        width: min(100%, 300px);
        margin: 0 auto;
    }

    .hero-form {
        width: min(calc(100% - 20px), 760px);
        padding: 10px;
    }

    .tour-catalog-grid {
        grid-template-columns: 1fr;
    }

    .tour-catalog-list {
        grid-template-columns: 1fr;
    }

    .tour-catalog-card-header {
        align-items: flex-end;
    }

    .tour-catalog-more,
    .tour-catalog-more-inline {
        margin-left: auto;
    }

    .tour-catalog-item-card {
        aspect-ratio: auto;
    }

    .tour-catalog-item-media {
        height: 190px;
    }

    .hero-form-grid {
        grid-template-columns: 1fr;
    }

    .hero-form-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        gap: 10px;
    }

    .hero-form-actions-label {
        text-align: center;
        min-height: 40px;
        width: 100%;
        justify-content: center;
        padding: 0 12px;
        font-size: 0.58rem;
        letter-spacing: 0.08em;
        white-space: normal;
        line-height: 1.25;
    }

    .hero-form-actions-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 6px;
        margin-left: 0;
    }

    .hero-form-app {
        min-width: 0;
        min-height: 40px;
        font-size: 0.7rem;
        gap: 4px;
        padding: 0 6px;
        white-space: nowrap;
    }

    .hero-form-app span:last-child {
        font-size: 0.66rem;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .hero-form-note {
        font-size: 0.68rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .homepage-seo-head h2 {
        white-space: normal;
        text-wrap: balance;
        line-height: 1.25;
    }

    .reasons-section {
        padding: 48px 0 18px;
    }

    .reasons-shell h2,
    .steps-heading h2,
    .compare-heading h2,
    .fleet-heading h2,
    .faq-heading h2 {
        font-size: clamp(1.45rem, 5.8vw, 2.1rem);
    }

    .reasons-shell h2 {
        margin-bottom: 20px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        padding: 8px 2px;
    }

    .steps-section {
        padding: 44px 0 20px;
        border-radius: 28px;
    }

    .steps-heading {
        margin-bottom: 22px;
    }

    .steps-heading p,
    .compare-heading p,
    .fleet-heading p,
    .faq-heading p {
        font-size: 0.92rem;
    }

    .step-card p {
        max-width: 100%;
    }
}

@media (max-width: 920px) {
    .site-header {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 10px 12px;
        position: sticky;
    }

    .brand-mark {
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand-text {
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.88rem;
    }

    .header-shortcuts {
        order: 2;
        margin-left: auto;
        gap: 6px;
        flex: 0 0 auto;
    }

    .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        order: 3;
        margin-left: 0;
    }

    .header-tools {
        display: none;
        width: 100%;
        flex: 1 0 100%;
        order: 4;
        margin-top: 6px;
        padding: 10px;
        border: 1px solid rgba(15, 23, 42, 0.1);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 14px 28px -20px rgba(15, 23, 42, 0.45);
        align-items: stretch;
        gap: 10px;
        flex-direction: column;
    }

    .site-header.is-mobile-nav-open .header-tools {
        display: flex;
    }

    .site-header.is-mobile-nav-open {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .site-header.is-mobile-nav-open .nav-toggle-bar:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-mobile-nav-open .nav-toggle-bar:nth-child(3) {
        opacity: 0;
    }

    .site-header.is-mobile-nav-open .nav-toggle-bar:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2px;
        overflow: visible;
        padding-bottom: 0;
    }

    .site-nav a {
        width: auto;
        align-self: flex-start;
        display: inline-flex;
        padding: 10px 0 12px;
        border-radius: 0;
    }

    .site-nav a::after {
        left: 0;
        right: auto;
        width: 100%;
        bottom: 4px;
    }

    .quick-actions {
        width: auto;
        border-left: 0;
        border-top: 0;
        padding-left: 0;
        padding-top: 0;
    }

    .quick-link span:last-child {
        display: none;
    }

    .language-switcher {
        width: auto;
    }

    .language-toggle {
        width: auto;
        justify-content: center;
        border-radius: 10px;
        background: #f8fafc;
        min-height: 38px;
        padding: 0 9px;
        gap: 6px;
    }

    .language-toggle > span:nth-child(2) {
        display: none;
    }

    .language-menu {
        left: auto;
        right: 0;
        min-width: 0;
    }

    .hero-form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-form-actions-label {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-form-actions.is-ready .hero-form-actions-label {
        padding-left: 34px;
        padding-right: 34px;
    }

    .hero-form-actions.is-ready .hero-form-actions-label::before,
    .hero-form-actions.is-ready .hero-form-actions-label::after {
        content: "↓↓";
        top: 50%;
        font-size: 1.08rem;
        line-height: 1;
        font-weight: 900;
        letter-spacing: 0.08em;
        color: #c45a12;
        text-shadow:
            0 0 8px rgba(255, 125, 36, 0.42),
            0 0 16px rgba(255, 125, 36, 0.22);
        filter: drop-shadow(0 0 8px rgba(255, 125, 36, 0.3));
        animation: bookingArrowDownPulse 1.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    .hero-form-actions.is-ready .hero-form-actions-label::before {
        left: 12px;
        right: auto;
        width: auto;
        height: auto;
        background: none;
        transform: translateY(-52%);
        opacity: 1;
    }

    .hero-form-actions.is-ready .hero-form-actions-label::after {
        right: 12px;
        left: auto;
        transform: translateY(-52%);
    }

    .hero-form-actions-links {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 820px) {
    .steps-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding: 0;
    }

    .step-card {
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-card p {
        max-width: 100%;
        font-size: 0.68rem;
        line-height: 1.45;
        min-height: 4.4em;
    }

    .step-card h3 {
        margin: 0 0 7px;
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .step-visual {
        margin-bottom: 10px;
        min-height: 54px;
    }

    .step-box {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .step-box svg {
        width: 15px;
        height: 15px;
    }

    .step-number {
        top: 3px;
        left: calc(50% + 6px);
        width: 18px;
        height: 18px;
        font-size: 0.58rem;
    }

    .step-badge {
        margin-top: auto;
        padding: 5px 10px;
        font-size: 0.64rem;
        min-width: 64px;
    }

    .step-line {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
