* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
font-family: "Manrope", sans-serif;
background: #ffffff;
color: #07111f;
overflow-x: hidden;
}

body,
button,
a {
-webkit-font-smoothing: antialiased;
}

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

button {
font-family: inherit;
}

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

.container {
width: min(1180px, calc(100% - 40px));
margin: 0 auto;
}

.section {
padding: 110px 0;
}

/* =========================================================
HEADER
========================================================= */

.site-header {
position: relative;
z-index: 1000;
background: #ffffff;
border-bottom: 1px solid #edf0f4;
}

.header-container {
min-height: 86px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 25px;
}

/* LOGO */

.brand {
display: inline-flex;
align-items: center;
gap: 12px;
flex-shrink: 0;
}

.brand-icon {
width: 46px;
height: 46px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 14px;
background: #ff7900;
color: #ffffff;
box-shadow: 0 10px 25px rgba(255, 121, 0, 0.25);
}

.brand-wing {
font-size: 22px;
line-height: 1;
}

.brand-text {
display: flex;
flex-direction: column;
}

.brand-text strong {
color: #07111f;
font-size: 17px;
font-weight: 800;
line-height: 1.1;
letter-spacing: -0.4px;
}

.brand-text small {
margin-top: 3px;
color: #7b8794;
font-size: 8px;
font-weight: 800;
letter-spacing: 1.4px;
}

/* DESKTOP MENU */

.desktop-nav {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
margin-left: auto;
}

.desktop-nav a {
position: relative;
color: #435164;
font-size: 12px;
font-weight: 700;
white-space: nowrap;
transition: color 0.25s ease;
}

.desktop-nav a::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -9px;
height: 2px;
background: #ff7900;
transform: scaleX(0);
transform-origin: center;
transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
color: #07111f;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
transform: scaleX(1);
}

/* HEADER RIGHT */

.header-right {
display: flex;
align-items: center;
gap: 15px;
}

.header-phone {
display: flex;
flex-direction: column;
align-items: flex-end;
}

.header-phone span {
color: #8b95a1;
font-size: 8px;
font-weight: 800;
letter-spacing: 1px;
}

.header-phone strong {
margin-top: 3px;
color: #07111f;
font-size: 14px;
font-weight: 800;
}

/* MOBILE BUTTON */

.mobile-menu-button {
display: none;
width: 46px;
height: 46px;
padding: 0;
border: 1px solid #e3e7eb;
border-radius: 12px;
background: #ffffff;
cursor: pointer;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 5px;
}

.mobile-menu-button span {
display: block;
width: 21px;
height: 2px;
border-radius: 5px;
background: #07111f;
transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-button.is-active span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-active span:nth-child(2) {
opacity: 0;
}

.mobile-menu-button.is-active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE NAVIGATION */

.mobile-navigation {
display: none;
}

/* =========================================================
HERO
========================================================= */

.vip-hero {
position: relative;
overflow: hidden;
padding: 100px 0 110px;
background:
radial-gradient(
circle at 75% 20%,
rgba(255, 121, 0, 0.08),
transparent 28%
),
linear-gradient(
135deg,
#06101d 0%,
#0b1b30 55%,
#102743 100%
);
}

.vip-hero-grid {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
align-items: center;
gap: 80px;
}

.vip-hero-glow {
position: absolute;
border-radius: 50%;
pointer-events: none;
}

.vip-glow-one {
width: 650px;
height: 650px;
top: -420px;
right: -180px;
background: rgba(255, 121, 0, 0.09);
}

.vip-glow-two {
width: 520px;
height: 520px;
left: 15%;
bottom: -400px;
background: rgba(32, 90, 150, 0.14);
}

/* HERO CONTENT */

.vip-label {
display: inline-flex;
align-items: center;
gap: 11px;
margin-bottom: 26px;
color: #c5d0dc;
font-size: 10px;
font-weight: 800;
letter-spacing: 1.7px;
}

.vip-label-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #ff7900;
box-shadow: 0 0 0 6px rgba(255, 121, 0, 0.14);
}

.vip-hero-content h1 {
max-width: 680px;
color: #ffffff;
font-size: clamp(46px, 5vw, 72px);
font-weight: 800;
line-height: 1.06;
letter-spacing: -3px;
}

.vip-hero-content h1 span {
display: block;
color: #ff7900;
}

.vip-hero-content p {
max-width: 630px;
margin-top: 27px;
color: #b8c5d2;
font-size: 16px;
font-weight: 500;
line-height: 1.9;
}

/* HERO BUTTONS */

.vip-hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 36px;
}

.vip-button {
min-height: 56px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 0 24px;
border-radius: 12px;
font-size: 13px;
font-weight: 800;
transition:
transform 0.25s ease,
background 0.25s ease,
border-color 0.25s ease;
}

.vip-button:hover {
transform: translateY(-2px);
}

.vip-button-primary {
background: #ff7900;
color: #ffffff;
box-shadow: 0 16px 35px rgba(255, 121, 0, 0.2);
}

.vip-button-primary:hover {
background: #e86e00;
}

.vip-button-primary span {
font-size: 20px;
line-height: 1;
}

.vip-button-outline {
color: #ffffff;
border: 1px solid rgba(255, 255, 255, 0.25);
background: rgba(255, 255, 255, 0.03);
}

.vip-button-outline:hover {
border-color: #ffffff;
}

/* HERO POINTS */

.vip-hero-points {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-top: 55px;
}

.vip-hero-points div {
display: flex;
align-items: center;
gap: 9px;
}

.vip-hero-points strong {
color: #ff7900;
font-size: 13px;
font-weight: 800;
}

.vip-hero-points span {
color: #b7c1cd;
font-size: 10px;
font-weight: 700;
}

/* HERO VIP PANEL */

.vip-hero-panel {
position: relative;
min-height: 540px;
padding: 55px;
border: 1px solid rgba(255, 255, 255, 0.11);
border-radius: 32px;
background:
linear-gradient(
145deg,
rgba(255, 255, 255, 0.08),
rgba(255, 255, 255, 0.025)
);
box-shadow: 0 35px 80px rgba(0, 0, 0, 0.24);
overflow: hidden;
}

.vip-panel-top {
position: relative;
z-index: 2;
display: flex;
align-items: center;
gap: 16px;
}

.vip-panel-top span {
display: flex;
align-items: center;
justify-content: center;
width: 68px;
height: 68px;
border-radius: 20px;
color: #ffffff;
background: #ff7900;
font-size: 21px;
font-weight: 800;
box-shadow: 0 15px 30px rgba(255, 121, 0, 0.25);
}

.vip-panel-top small {
color: #d5dde6;
font-size: 10px;
font-weight: 800;
letter-spacing: 2px;
}

/* ROUTE */

.vip-route-line {
position: relative;
z-index: 2;
display: flex;
align-items: center;
margin: 115px 0 35px;
}

.route-point {
width: 18px;
height: 18px;
flex-shrink: 0;
border-radius: 50%;
border: 4px solid #ff7900;
background: #ffffff;
}

.route-end {
border-color: #ffffff;
background: #ff7900;
}

.route-line {
position: relative;
height: 2px;
flex: 1;
margin: 0 12px;
background:
repeating-linear-gradient(
90deg,
rgba(255, 255, 255, 0.75) 0,
rgba(255, 255, 255, 0.75) 10px,
transparent 10px,
transparent 19px
);
}

/* ROUTE INFO */

.vip-route-info {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
}

.vip-route-info div:last-child {
text-align: right;
}

.vip-route-info small {
display: block;
margin-bottom: 7px;
color: #91a1b3;
font-size: 8px;
font-weight: 800;
letter-spacing: 1.3px;
}

.vip-route-info strong {
color: #ffffff;
font-size: 14px;
font-weight: 700;
}

/* STATUS CARD */

.vip-status-card {
position: relative;
z-index: 3;
display: flex;
align-items: center;
gap: 14px;
width: min(100%, 330px);
margin-top: 80px;
padding: 18px;
border-radius: 16px;
background: #ffffff;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.status-icon {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
color: #ffffff;
background: #ff7900;
font-size: 19px;
font-weight: 800;
}

.vip-status-card small {
display: block;
margin-bottom: 4px;
color: #8b96a3;
font-size: 8px;
font-weight: 800;
letter-spacing: 1px;
}

.vip-status-card strong {
color: #07111f;
font-size: 13px;
}

/* PANEL DECORATION */

.vip-panel-decoration {
position: absolute;
right: -55px;
bottom: -70px;
color: rgba(255, 255, 255, 0.025);
font-size: 210px;
font-weight: 800;
line-height: 1;
pointer-events: none;
}

/* =========================================================
COMMON HEADINGS
========================================================= */

.section-eyebrow {
display: inline-block;
margin-bottom: 20px;
color: #ff7900;
font-size: 10px;
font-weight: 800;
letter-spacing: 1.7px;
}

.vip-section-heading h2,
.vip-heading-center h2,
.vip-process-heading h2,
.vip-advantages-content h2,
.vip-faq-intro h2 {
color: #07111f;
font-size: clamp(34px, 4vw, 56px);
font-weight: 800;
line-height: 1.12;
letter-spacing: -2.2px;
}

.vip-section-heading h2 span,
.vip-heading-center h2 span,
.vip-process-heading h2 span,
.vip-advantages-content h2 span,
.vip-faq-intro h2 span {
display: block;
color: #ff7900;
}

/* =========================================================
INTRO
========================================================= */

.vip-intro-section {
background: #ffffff;
}

.vip-intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 100px;
align-items: start;
}

.vip-intro-content > p {
color: #647286;
font-size: 16px;
line-height: 1.9;
}

.vip-intro-content > p + p {
margin-top: 18px;
}

.vip-intro-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
margin-top: 40px;
}

.vip-intro-stats div {
padding: 22px;
border: 1px solid #edf0f3;
border-radius: 16px;
background: #fafbfd;
}

.vip-intro-stats strong {
display: block;
margin-bottom: 8px;
color: #07111f;
font-size: 12px;
font-weight: 800;
}

.vip-intro-stats span {
color: #8a96a4;
font-size: 10px;
line-height: 1.5;
}

/* =========================================================
SERVICES
========================================================= */

.vip-services-section {
background: #f6f8fa;
}

.vip-heading-center {
max-width: 780px;
margin: 0 auto;
text-align: center;
}

.vip-heading-center p {
max-width: 620px;
margin: 22px auto 0;
color: #6c7887;
font-size: 15px;
line-height: 1.8;
}

.vip-services-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-top: 65px;
}

.vip-service-card {
position: relative;
min-height: 315px;
padding: 34px 28px;
border: 1px solid #e8ecf0;
border-radius: 20px;
background: #ffffff;
transition:
transform 0.25s ease,
box-shadow 0.25s ease;
}

.vip-service-card:hover {
transform: translateY(-7px);
box-shadow: 0 25px 55px rgba(10, 25, 45, 0.08);
}

.service-number {
position: absolute;
top: 25px;
right: 25px;
color: #d8dee5;
font-size: 12px;
font-weight: 800;
}

.service-symbol {
width: 54px;
height: 54px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 28px;
border-radius: 16px;
background: #fff1e5;
color: #ff7900;
font-size: 22px;
}

.vip-service-card h3 {
margin-bottom: 13px;
color: #07111f;
font-size: 18px;
font-weight: 800;
}

.vip-service-card p {
color: #718093;
font-size: 13px;
line-height: 1.8;
}

/* =========================================================
PROCESS
========================================================= */

.vip-process-section {
background: #07111f;
}

.vip-process-heading {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 50px;

}

.vip-process-heading h2 {
color: #ffffff;
}

.vip-process-heading p {
max-width: 390px;
color: #9fadb9;
font-size: 14px;
line-height: 1.8;
}

.vip-process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1px;
margin-top: 65px;
background: rgba(255, 255, 255, 0.08);
}

.vip-process-card {
min-height: 260px;
padding: 34px;
background: #0b1829;
}

.vip-process-card > span {
display: block;
margin-bottom: 45px;
color: #ff7900;
font-size: 12px;
font-weight: 800;
}

.vip-process-card h3 {
margin-bottom: 14px;
color: #ffffff;
font-size: 18px;
}

.vip-process-card p {
color: #9aa9b8;
font-size: 13px;
line-height: 1.8;
}

/* =========================================================
ADVANTAGES
========================================================= */

.vip-advantages-section {
background: #ffffff;
}

.vip-advantages-grid {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 100px;
}

.vip-advantages-content > p {
max-width: 580px;
margin-top: 24px;
color: #687689;
font-size: 15px;
line-height: 1.9;
}

.vip-check-list {
display: grid;
gap: 15px;
margin: 34px 0;
list-style: none;
}

.vip-check-list li {
position: relative;
padding-left: 30px;
color: #364457;
font-size: 13px;
font-weight: 600;
}

.vip-check-list li::before {
content: "✓";
position: absolute;
top: -2px;
left: 0;
width: 19px;
height: 19px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: #ffffff;
background: #ff7900;
font-size: 10px;
}

.vip-dark-button {
min-height: 55px;
display: inline-flex;
align-items: center;
gap: 13px;
padding: 0 23px;
border-radius: 12px;
color: #ffffff;
background: #07111f;
font-size: 12px;
font-weight: 800;
transition: transform 0.25s ease;
}

.vip-dark-button:hover {
transform: translateY(-2px);
}

/* ADVANTAGE PANEL */

.vip-advantages-panel {
position: relative;
min-height: 540px;
border-radius: 30px;
background:
radial-gradient(
circle at center,
rgba(255, 121, 0, 0.11),
transparent 42%
),
#f6f8fa;
overflow: hidden;
}

.advantage-orbit {
position: absolute;
top: 50%;
left: 50%;
border: 1px solid #dfe5eb;
border-radius: 50%;
transform: translate(-50%, -50%);
}

.orbit-one {
width: 310px;
height: 310px;
}

.orbit-two {
width: 460px;
height: 460px;
}

.advantage-center {
position: absolute;
top: 50%;
left: 50%;
width: 135px;
height: 135px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 50%;
color: #ffffff;
background: #07111f;
transform: translate(-50%, -50%);
box-shadow: 0 25px 50px rgba(7, 17, 31, 0.18);
}

.advantage-center strong {
font-size: 28px;
line-height: 1;
}

.advantage-center span {
margin-top: 6px;
color: #ff7900;
font-size: 9px;
font-weight: 800;
letter-spacing: 2px;
}

.advantage-item {
position: absolute;
width: 135px;
padding: 18px;
border: 1px solid #e4e8ed;
border-radius: 15px;
background: #ffffff;
box-shadow: 0 15px 35px rgba(10, 25, 45, 0.06);
}

.advantage-item strong {
display: block;
margin-bottom: 4px;
color: #07111f;
font-size: 12px;
}

.advantage-item span {
color: #8b96a3;
font-size: 9px;
}

.advantage-item-one {
top: 80px;
left: 50%;
transform: translateX(-50%);
}

.advantage-item-two {
bottom: 90px;
left: 55px;
}

.advantage-item-three {
right: 45px;
bottom: 130px;
}

/* =========================================================
DELIVERY TYPES
========================================================= */

.vip-delivery-section {
background: #f6f8fa;
}

.vip-delivery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
margin-top: 60px;
}

.vip-delivery-grid article {
padding: 30px;
border-radius: 18px;
background: #ffffff;
}

.vip-delivery-grid article > span {
display: block;
margin-bottom: 38px;
color: #ff7900;
font-size: 11px;
font-weight: 800;
}

.vip-delivery-grid h3 {
margin-bottom: 12px;
color: #07111f;
font-size: 16px;
}

.vip-delivery-grid p {
color: #718093;
font-size: 12px;
line-height: 1.8;
}

/* =========================================================
REVIEWS
========================================================= */

.vip-reviews-section {
background: #ffffff;
}

.vip-reviews-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
margin-top: 60px;
}

.vip-review-card {
padding: 34px;
border: 1px solid #e9edf1;
border-radius: 20px;
background: #ffffff;
}

.review-stars {
margin-bottom: 24px;
color: #ff7900;
font-size: 14px;
letter-spacing: 2px;
}

.vip-review-card p {
min-height: 115px;
color: #586679;
font-size: 14px;
line-height: 1.85;
}

.review-person {
padding-top: 20px;
border-top: 1px solid #edf0f3;
}

.review-person strong {
display: block;
color: #07111f;
font-size: 12px;
}

.review-person span {
display: block;
margin-top: 5px;
color: #8b96a3;
font-size: 10px;
}

/* =========================================================
FAQ
========================================================= */

.vip-faq-section {
background: #f6f8fa;
}

.vip-faq-grid {
display: grid;
grid-template-columns: 0.8fr 1.2fr;
gap: 100px;
}

.vip-faq-intro p {
max-width: 430px;
margin-top: 22px;
color: #6c7888;
font-size: 14px;
line-height: 1.85;
}

.vip-faq-phone {
display: inline-block;
margin-top: 30px;
color: #ff7900;
font-size: 20px;
font-weight: 800;
}

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

.vip-faq-list details {
padding: 0 24px;
border: 1px solid #e4e9ed;
border-radius: 15px;
background: #ffffff;
}

.vip-faq-list summary {
position: relative;
padding: 23px 30px 23px 0;
color: #172436;
font-size: 13px;
font-weight: 800;
cursor: pointer;
list-style: none;
}

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

.vip-faq-list summary::after {
content: "+";
position: absolute;
top: 50%;
right: 0;
color: #ff7900;
font-size: 21px;
font-weight: 500;
transform: translateY(-50%);
}

.vip-faq-list details[open] summary::after {
content: "−";
}

.vip-faq-list details p {
padding: 0 0 22px;
color: #718093;
font-size: 13px;
line-height: 1.8;
}

/* =========================================================
CTA
========================================================= */

.vip-cta {
padding: 85px 0;
background: #ff7900;
}

.vip-cta-container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 50px;
}

.vip-cta-container > div:first-child {
max-width: 700px;
}

.vip-cta-container > div:first-child > span {
display: block;
margin-bottom: 18px;
color: rgba(255, 255, 255, 0.72);
font-size: 10px;
font-weight: 800;
letter-spacing: 1.5px;
}

.vip-cta h2 {
color: #ffffff;
font-size: clamp(32px, 4vw, 52px);
font-weight: 800;
line-height: 1.13;
letter-spacing: -1.8px;
}

.vip-cta p {
margin-top: 18px;
color: rgba(255, 255, 255, 0.82);
font-size: 14px;
line-height: 1.8;
}

.vip-cta-buttons {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.vip-white-button {
color: #07111f;
background: #ffffff;
}

.vip-cta-outline {
color: #ffffff;
border: 1px solid rgba(255, 255, 255, 0.55);
}

/* =========================================================
FOOTER
========================================================= */

.site-footer {
background: #06101c;
}

.footer-grid {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
gap: 60px;
padding: 85px 0;
}

.footer-logo {
display: inline-block;
margin-bottom: 20px;
color: #ffffff;
font-size: 19px;
font-weight: 800;
letter-spacing: -0.5px;
}

.footer-brand p {
max-width: 310px;
color: #8f9dac;
font-size: 12px;
line-height: 1.8;
}

.footer-main-phone {
display: inline-block;
margin-top: 25px;
color: #ff7900;
font-size: 17px;
font-weight: 800;
}

.footer-column {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
}

.footer-column h3 {
margin-bottom: 8px;
color: #ffffff;
font-size: 13px;
font-weight: 800;
}

.footer-column a,
.footer-column p {
color: #8f9dac;
font-size: 11px;
line-height: 1.6;
transition: color 0.2s ease;
}

.footer-column a:hover {
color: #ffffff;
}

.footer-contact a:last-child {
color: #ff7900;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
min-height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
color: #718091;
font-size: 10px;
}

/* =========================================================
TABLET
========================================================= */

@media screen and (max-width: 1100px) {

.desktop-nav {
    gap: 15px;
}

.desktop-nav a {
    font-size: 11px;
}

.vip-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
}

.vip-hero-content {
    max-width: 780px;
}

.vip-hero-panel {
    min-height: 500px;
}

.vip-services-grid,
.vip-delivery-grid {
    grid-template-columns: repeat(2, 1fr);
}

.vip-intro-grid,
.vip-advantages-grid,
.vip-faq-grid {
    gap: 60px;
}

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


}

/* =========================================================
MOBILE MENU
========================================================= */

@media screen and (max-width: 1024px) {

.desktop-nav,
.header-phone {
    display: none;
}

.mobile-menu-button {
    display: flex;
}

.mobile-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #edf0f3;
    border-bottom: 1px solid #edf0f3;
    box-shadow: 0 20px 40px rgba(7, 17, 31, 0.1);
}

.mobile-navigation.is-open {
    display: block;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    padding-bottom: 20px;
}

.mobile-menu-inner a {
    padding: 15px 5px;
    color: #172436;
    border-bottom: 1px solid #edf0f3;
    font-size: 13px;
    font-weight: 700;
}

.mobile-menu-inner a.active {
    color: #ff7900;
}

.mobile-menu-inner .mobile-call {
    margin-top: 15px;
    padding: 16px;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    background: #07111f;
    text-align: center;
}

}

/* =========================================================
TABLET AND SMALL SCREEN
========================================================= */

@media screen and (max-width: 900px) {

.section {
    padding: 85px 0;
}

.vip-intro-grid,
.vip-advantages-grid,
.vip-faq-grid {
    grid-template-columns: 1fr;
}

.vip-process-heading {
    display: block;
}

.vip-process-heading p {
    margin-top: 22px;
}

.vip-process-grid {
    grid-template-columns: repeat(2, 1fr);
}

.vip-cta-container {
    display: block;
}

.vip-cta-buttons {
    margin-top: 30px;
}

}

/* =========================================================
MOBILE
========================================================= */

@media screen and (max-width: 650px) {

.container {
    width: min(100% - 30px, 1180px);
}

.section {
    padding: 70px 0;
}

.header-container {
    min-height: 76px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.brand-text strong {
    font-size: 14px;
}

.brand-text small {
    font-size: 7px;
    letter-spacing: 1px;
}

.vip-hero {
    padding: 70px 0 75px;
}

.vip-hero-content h1 {
    font-size: clamp(39px, 11vw, 55px);
    letter-spacing: -2.3px;
}

.vip-hero-content p {
    font-size: 14px;
    line-height: 1.8;
}

.vip-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
}

.vip-button {
    width: 100%;
}

.vip-hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
}

.vip-hero-panel {
    min-height: 430px;
    padding: 30px 22px;
    border-radius: 24px;
}

.vip-panel-top span {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    font-size: 17px;
}

.vip-route-line {
    margin-top: 85px;
}

.vip-status-card {
    margin-top: 55px;
}

.vip-panel-decoration {
    right: -25px;
    bottom: -20px;
    font-size: 135px;
}

.vip-section-heading h2,
.vip-heading-center h2,
.vip-process-heading h2,
.vip-advantages-content h2,
.vip-faq-intro h2 {
    font-size: 35px;
    letter-spacing: -1.5px;
}

.vip-intro-stats {
    grid-template-columns: 1fr;
}

.vip-services-grid,
.vip-delivery-grid,
.vip-reviews-grid,
.vip-process-grid {
    grid-template-columns: 1fr;
}

.vip-services-grid {
    margin-top: 45px;
}

.vip-service-card {
    min-height: auto;
}

.vip-process-card {
    min-height: 210px;
}

.vip-process-card > span {
    margin-bottom: 30px;
}

.vip-advantages-panel {
    min-height: 450px;
}

.orbit-one {
    width: 250px;
    height: 250px;
}

.orbit-two {
    width: 370px;
    height: 370px;
}

.advantage-item {
    width: 115px;
    padding: 14px;
}

.advantage-item-two {
    left: 15px;
    bottom: 55px;
}

.advantage-item-three {
    right: 15px;
    bottom: 95px;
}

.vip-review-card p {
    min-height: auto;
    margin-bottom: 25px;
}

.vip-faq-list details {
    padding: 0 17px;
}

.vip-faq-list summary {
    padding-right: 25px;
    font-size: 12px;
}

.vip-cta {
    padding: 70px 0;
}

.vip-cta h2 {
    font-size: 35px;
}

.vip-cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 65px 0;
}

.footer-bottom-inner {
    min-height: auto;
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
}

}
