:root {
    --bg-primary: #0a0f1c;
    --bg-secondary: #111827;
    --accent: #2563eb;
    --highlight: #22c55e;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border-soft: rgba(148, 163, 184, 0.28);
    --glass-bg: rgba(17, 24, 39, 0.58);
    --shadow-soft: 0 18px 45px rgba(2, 6, 23, 0.45);
    --radius-lg: 18px;
    --radius-md: 14px;
    --gradient-panel: linear-gradient(135deg, rgba(37, 99, 235, 0.34), rgba(99, 102, 241, 0.22));
    --gradient-cta: linear-gradient(120deg, #1d4ed8, #4338ca);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text-main);
    line-height: 1.65;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% -20%, rgba(37, 99, 235, 0.28), transparent 45%),
        radial-gradient(circle at 92% 0%, rgba(99, 102, 241, 0.2), transparent 40%),
        var(--bg-primary);
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    height: 3px;
    z-index: 1700;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, #2563eb, #22c55e, #60a5fa);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.8);
    pointer-events: none;
}

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

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

.container {
    width: min(1140px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 46px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bfdbfe;
    font-weight: 700;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: rgba(191, 219, 254, 0.85);
    border-radius: 999px;
}

h1,
h2,
h3,
h4 {
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.1rem, 3.8vw, 3.9rem);
    margin: 14px 0 18px;
}

h2 {
    font-size: clamp(1.65rem, 2.7vw, 2.55rem);
    margin-bottom: 14px;
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
    color: var(--text-muted);
    font-size: 1rem;
}

.section-lead {
    max-width: 640px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -130%;
    width: 65%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-22deg);
    opacity: 0;
    transition: transform 0.55s ease, opacity 0.24s ease;
    pointer-events: none;
}

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

.btn:hover::after {
    transform: translateX(240%) skewX(-22deg);
    opacity: 0.55;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.8);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-main);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.33);
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    border-color: rgba(148, 163, 184, 0.55);
    color: var(--text-main);
    background: rgba(148, 163, 184, 0.08);
}

.btn-outline:hover {
    border-color: rgba(191, 219, 254, 0.8);
    background: rgba(37, 99, 235, 0.16);
}

.btn-success {
    background: var(--highlight);
    color: #052e16;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.3);
}

.btn-success:hover {
    background: #16a34a;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.35);
    background: rgba(37, 99, 235, 0.15);
    color: #dbeafe;
    font-size: 0.84rem;
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(10, 15, 28, 0.7);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
    background: rgba(10, 15, 28, 0.88);
    border-color: rgba(148, 163, 184, 0.24);
}

body.page-ready .site-header {
    animation: slideDown 0.55s ease-out both;
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.brand-logo-img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .brand-logo-img {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.34));
}

.site-footer .brand-logo-img {
    height: 86px;
}

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    aspect-ratio: 1;
    border-radius: 11px;
    font-size: 0.95rem;
    color: var(--text-main);
    background: linear-gradient(145deg, #2563eb, #4338ca);
    box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.22);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.96rem;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.25s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: rgba(191, 219, 254, 0.85);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text-main);
}

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

.nav-cta {
    padding-inline: 20px;
}

.nav-toggle {
    display: none;
    width: 46px;
    aspect-ratio: 1;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: rgba(17, 24, 39, 0.72);
    color: var(--text-main);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    margin: 4px auto;
    background: var(--text-main);
}

.hero {
    position: relative;
    overflow: clip;
    padding: 122px 0 90px;
    background:
        linear-gradient(114deg, rgba(10, 15, 28, 0.9), rgba(17, 24, 39, 0.78)),
        radial-gradient(circle at 76% 30%, rgba(37, 99, 235, 0.3), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.22), transparent 38%),
        url("../img/services/web-hosting.jpg") center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 28%, rgba(191, 219, 254, 0.14) 50%, transparent 72%);
    transform: translateX(-115%);
    animation: heroSweep 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::before,
.cta-panel::before {
    content: "";
    position: absolute;
    inset: auto auto -100px -70px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(34px);
    background: rgba(37, 99, 235, 0.22);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 34px;
}

.hero-copy p {
    max-width: 620px;
}

.hero-copy .chip,
.hero-copy h1,
.hero-copy p,
.hero-actions {
    opacity: 0;
    transform: translateY(18px);
}

body.page-ready .hero-copy .chip,
body.page-ready .hero-copy h1,
body.page-ready .hero-copy p,
body.page-ready .hero-copy .hero-actions {
    animation: riseIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.page-ready .hero-copy h1 {
    animation-delay: 0.08s;
}

body.page-ready .hero-copy p {
    animation-delay: 0.16s;
}

body.page-ready .hero-copy .hero-actions {
    animation-delay: 0.24s;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stats-stack {
    display: grid;
    gap: 14px;
    justify-items: end;
}

.stat-chip {
    width: min(320px, 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    animation: floatY 4.8s ease-in-out infinite;
}

.stat-chip:nth-child(2) {
    animation-delay: 0.35s;
}

.stat-chip:nth-child(3) {
    animation-delay: 0.75s;
}

.stat-chip strong {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.1;
    display: block;
    margin-bottom: 6px;
}

.glass-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
}

.glass-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(240px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(96, 165, 250, 0.2), transparent 65%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.glass-card:hover::after {
    opacity: 1;
}

.services-grid,
.plans-grid,
.features-grid,
.testimonials-grid,
.info-grid,
.team-grid,
.quick-grid {
    display: grid;
    gap: 20px;
}

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

.service-card {
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.6);
}

.service-card img {
    width: 100%;
    height: clamp(185px, 24vw, 205px);
    object-fit: cover;
    transition: transform 0.65s ease, filter 0.65s ease;
}

.service-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.service-content {
    padding: 20px;
}

.icon-box {
    width: 42px;
    aspect-ratio: 1;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 14px;
    background: rgba(37, 99, 235, 0.18);
    color: #bfdbfe;
    border: 1px solid rgba(191, 219, 254, 0.25);
    transition: transform 0.28s ease, background-color 0.28s ease;
}

.service-card:hover .icon-box,
.feature-card:hover .icon-box,
.info-card:hover .icon-box {
    transform: translateY(-2px) scale(1.06);
    background: rgba(37, 99, 235, 0.34);
}

.service-content p,
.feature-card p,
.plan-card p,
.testimonial-card p,
.info-card p,
.team-card p {
    margin-top: 8px;
}

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

.plan-card {
    position: relative;
    padding: 28px 24px;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(148, 197, 255, 0.55);
}

.plan-card.featured {
    border-color: rgba(37, 99, 235, 0.7);
    box-shadow:
        0 0 0 1px rgba(37, 99, 235, 0.25),
        0 22px 48px rgba(37, 99, 235, 0.28);
    background:
        linear-gradient(180deg, rgba(37, 99, 235, 0.2), rgba(15, 23, 42, 0.6)),
        rgba(15, 23, 42, 0.92);
    animation: featuredPulse 3.4s ease-in-out infinite;
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #052e16;
    background: var(--highlight);
    padding: 6px 10px;
    border-radius: 999px;
}

.plan-price {
    margin: 14px 0 8px;
    font-family: "Sora", "Segoe UI", sans-serif;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.plan-price strong {
    font-size: 2.1rem;
    line-height: 1;
}

.plan-price span {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.list-check {
    list-style: none;
    margin: 18px 0 22px;
    display: grid;
    gap: 10px;
}

.list-check li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 0.95rem;
}

.list-check i {
    color: var(--highlight);
    font-size: 0.88rem;
}

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

.feature-card {
    padding: 22px;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.55);
}

.split {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.split figure img {
    border-radius: var(--radius-lg);
    min-height: 340px;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: transform 0.68s ease, filter 0.68s ease;
}

.split figure:hover img {
    transform: scale(1.03);
    filter: saturate(1.06);
}

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

.metric {
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.65);
}

.metric strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 3px;
}

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

.testimonial-card {
    padding: 24px;
}

.client-row {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-row img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.client-row strong {
    display: block;
    font-size: 1rem;
}

.client-row span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-block {
    padding: 10px 0 105px;
}

.cta-panel {
    position: relative;
    overflow: clip;
    border-radius: 20px;
    border: 1px solid rgba(147, 197, 253, 0.35);
    padding: 44px;
    background:
        radial-gradient(circle at 12% 20%, rgba(96, 165, 250, 0.24), transparent 38%),
        var(--gradient-cta);
    background-size: 140% 140%;
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.42);
    animation: gradientShift 9s ease-in-out infinite;
}

.cta-panel h2,
.cta-panel p {
    color: #eff6ff;
}

.cta-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-hero {
    padding: 104px 0 66px;
    background:
        linear-gradient(145deg, rgba(37, 99, 235, 0.15), rgba(99, 102, 241, 0.1)),
        rgba(10, 15, 28, 0.82);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.page-hero p {
    max-width: 720px;
}

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

.info-grid,
.team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.team-card {
    padding: 22px;
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    transition: transform 0.65s ease, filter 0.65s ease;
}

.team-card:hover img {
    transform: scale(1.05);
    filter: saturate(1.08);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
}

.contact-card,
.form-wrap {
    padding: 24px;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d1d5db;
    overflow-wrap: anywhere;
}

form {
    display: grid;
    gap: 12px;
}

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

label {
    display: block;
    color: #cbd5e1;
    font-size: 0.88rem;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    padding: 11px 12px;
    background: rgba(15, 23, 42, 0.62);
    color: var(--text-main);
    font: inherit;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius-md);
}

thead {
    background: rgba(37, 99, 235, 0.22);
}

th,
td {
    text-align: left;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    color: #dbeafe;
}

tbody tr:last-child td {
    border-bottom: 0;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.6);
}

.table-wrap table {
    min-width: 640px;
}

.site-footer {
    margin-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(10, 15, 28, 0.8);
}

.footer-grid {
    padding: 54px 0 26px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 20px;
}

.footer-grid h4 {
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.22s ease;
}

.footer-links a:hover {
    color: #bfdbfe;
}

.social-list {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-list a {
    width: 36px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.34);
    display: inline-grid;
    place-items: center;
    color: #dbeafe;
    background: rgba(148, 163, 184, 0.08);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-list a:hover {
    transform: translateY(-2px);
    background: rgba(37, 99, 235, 0.3);
}

.footer-bottom {
    padding: 0 0 28px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.18s;
}

.delay-3 {
    transition-delay: 0.26s;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSweep {
    0%,
    70%,
    100% {
        transform: translateX(-115%);
    }
    35% {
        transform: translateX(115%);
    }
}

@keyframes featuredPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(37, 99, 235, 0.25),
            0 22px 48px rgba(37, 99, 235, 0.28);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(96, 165, 250, 0.4),
            0 28px 56px rgba(37, 99, 235, 0.4);
    }
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .scroll-progress {
        display: none;
    }
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-cta {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 9px);
        left: 4%;
        right: 4%;
        border-radius: 16px;
        border: 1px solid rgba(148, 163, 184, 0.3);
        background: rgba(10, 15, 28, 0.96);
        padding: 16px;
        display: grid;
        gap: 12px;
        opacity: 0;
        pointer-events: none;
        max-height: min(65vh, 360px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateY(-8px);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a::after {
        bottom: -3px;
    }

    .hero {
        padding-top: 102px;
    }

    .hero-inner,
    .split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .stats-stack {
        justify-items: stretch;
    }

    .services-grid,
    .plans-grid,
    .quick-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .section {
        padding: 78px 0;
    }

    .services-grid,
    .plans-grid,
    .quick-grid,
    .features-grid,
    .testimonials-grid,
    .metrics {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 94px 0 58px;
    }

    .split figure img {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 72px 0;
    }

    .container {
        width: calc(100% - 28px);
    }

    .nav-wrap {
        min-height: 70px;
        gap: 12px;
    }

    .site-nav {
        left: 14px;
        right: 14px;
        padding: 14px;
    }

    .hero {
        padding: 96px 0 66px;
    }

    .hero-inner {
        gap: 24px;
    }

    .stat-chip,
    .plan-card,
    .testimonial-card,
    .feature-card,
    .info-card,
    .team-card,
    .contact-card,
    .form-wrap {
        padding: 20px;
    }

    .service-card img {
        height: 190px;
    }

    .services-grid,
    .plans-grid,
    .quick-grid,
    .features-grid,
    .testimonials-grid,
    .metrics,
    .field-row,
    .info-grid,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        padding: 32px 22px;
    }

    .cta-block {
        padding-bottom: 82px;
    }

    .hero-actions,
    .cta-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .plan-price strong {
        font-size: 1.85rem;
    }

    .brand-logo-img {
        height: 38px;
    }

    .site-footer .brand-logo-img {
        height: 62px;
    }
}

@media (max-width: 420px) {
    .section {
        padding: 64px 0;
    }

    h1 {
        font-size: clamp(1.85rem, 8.2vw, 2.2rem);
    }

    h2 {
        font-size: clamp(1.45rem, 7vw, 1.8rem);
    }

    p {
        font-size: 0.95rem;
    }

    .chip {
        padding: 7px 12px;
        font-size: 0.78rem;
    }

    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .site-nav a {
        font-size: 0.93rem;
    }

    .site-footer .brand-logo-img {
        height: 54px;
    }
}