:root {
    /* Brand & UI */
    --primary-color: #1F3A5F;
    --primary-dark: #12263F;
    --primary-light: #3D5A80;
    --secondary-color: #10B981;
    --accent-color: #3DDC97;
    --danger-color: #EF4444;

    --ink: #0B0D10;
    --ink-soft: #141820;
    --ivory: #F3EEE6;
    --ivory-muted: rgba(243, 238, 230, 0.72);
    --brass: #3DDC97;
    --brass-deep: #2BB87A;

    --text-main: #141820;
    --text-muted: #5C6570;
    --text-light: #F3EEE6;

    --bg-body: #F7F5F1;
    --bg-surface: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.7);

    --border-color: #E4DFD6;

    --container-width: 1180px;
    --section-padding: 5rem 0;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(31, 58, 95, 0.2);

    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1.25rem;

    --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: var(--section-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(18, 38, 63, 0.28);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(18, 38, 63, 0.32);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-text {
    background: none;
    color: var(--text-main);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    --nav-h: 72px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: rgba(11, 13, 16, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(243, 238, 230, 0.08);
    transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
    overflow: hidden;
}

/* Transparent nav only over homepage hero (before scroll) */
body:has(.hero) .navbar:not(.is-scrolled) {
    --nav-h: 88px;
    height: var(--nav-h);
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.navbar.is-scrolled {
    --nav-h: 66px;
    height: var(--nav-h);
    background: rgba(11, 13, 16, 0.92);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(243, 238, 230, 0.08);
    overflow: hidden;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    width: 128px;
    flex-shrink: 0;
    margin: 0;
}

.logo:hover {
    opacity: 0.85;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    color: rgb(255 255 255);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--ivory);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-nav {
    padding: 0.7rem 1.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #071018;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #3DDC97 0%, #2BB87A 100%);
    color: #071018;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(43, 184, 122, 0.35);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 28px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--ivory);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Language Switcher */
.lang-switcher-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(61, 220, 151, 0.12);
    color: #3DDC97;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(61, 220, 151, 0.25);
    transition: var(--transition-fast);
    text-decoration: none;
}

.lang-switcher:hover,
.lang-switcher.active {
    background: #3DDC97;
    color: #071018 !important;
    border-color: #3DDC97;
}

.flag-icon {
    font-size: 1rem;
    line-height: 1;
}

/* Hero Section â€” professional premium */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 7rem 0 3.5rem;
    overflow: hidden;
    background: #071018;
    color: #fff;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
    filter: saturate(0.85) brightness(0.75);
}

.hero-media-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(7, 16, 24, 0.97) 0%, rgba(7, 16, 24, 0.9) 40%, rgba(7, 16, 24, 0.55) 68%, rgba(7, 16, 24, 0.72) 100%),
        linear-gradient(180deg, rgba(7, 16, 24, 0.55) 0%, transparent 30%, rgba(7, 16, 24, 0.82) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    align-items: stretch;
}

.hero-copy {
    max-width: 640px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: hero-rise 0.8s ease-out both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    gap: 0.6rem;
    padding: 0.45rem 0.9rem 0.45rem 0.7rem;
    margin-bottom: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3DDC97;
    box-shadow: 0 0 0 4px rgba(61, 220, 151, 0.18);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.8vw, 3.65rem);
    font-weight: 700;
    font-style: normal;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 34rem;
    margin-bottom: 1.35rem;
}

.hero-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.15rem;
    margin-bottom: 1.5rem;
}

.hero-checklist li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.hero-checklist i {
    color: #3DDC97;
    font-size: 0.75rem;
}

.reg-check-form {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    animation: none;
}

.check-console {
    background: rgba(12, 22, 34, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 1rem;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.check-console-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.85rem;
    padding: 0 0.2rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.62);
}

.check-console-price {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.7rem 0.35rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(61, 220, 151, 0.2), rgba(61, 220, 151, 0.08));
    border: 1px solid rgba(61, 220, 151, 0.4);
    box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.08);
}

.check-console-price em {
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.check-console-price strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #3DDC97;
    letter-spacing: -0.02em;
    line-height: 1;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    flex-wrap: nowrap;
}

.reg-plate {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 60px;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.reg-plate:focus-within {
    border-color: rgba(61, 220, 151, 0.55);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.32),
        0 0 0 3px rgba(61, 220, 151, 0.18);
}

.reg-plate-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    width: 46px;
    padding: 6px 0 8px;
    background: linear-gradient(180deg, #163A78 0%, #0F2A5C 100%);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.reg-plate-flag {
    width: 16px;
    height: 10px;
    border-radius: 1px;
    background:
        linear-gradient(#012169, #012169) center/100% 100%,
        linear-gradient(90deg, transparent 42%, #C8102E 42%, #C8102E 58%, transparent 58%),
        linear-gradient(#C8102E, #C8102E);
    background-color: #012169;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.reg-plate input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0B1220;
    padding: 0 1.1rem;
    outline: none;
    min-width: 0;
}

.reg-plate input::placeholder {
    color: rgba(11, 18, 32, 0.32);
    font-weight: 600;
}

.btn-hero {
    flex: 0 0 auto;
    min-width: 178px;
    min-height: 60px;
    padding: 0 1.35rem;
    background: linear-gradient(135deg, #3DDC97 0%, #2BB87A 100%);
    color: #071018;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 10px 28px rgba(43, 184, 122, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #4AE6A4 0%, #32C68A 100%);
    color: #071018;
    transform: translateY(-1px);
    box-shadow:
        0 14px 32px rgba(43, 184, 122, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.02);
}

.btn-hero i {
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}

.btn-hero:hover i {
    transform: translateX(4px);
}

.check-console-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.15rem;
    margin-top: 0.85rem;
    padding: 0 0.15rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.check-console-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.check-console-meta i {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: auto;
    padding: 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.45rem;
    border-radius: 10px;
    transition: background 0.25s ease;
}

.hero-trust-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.hero-trust-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid rgba(61, 220, 151, 0.28);
    color: #3DDC97;
    font-size: 0.8rem;
}

.hero-trust-text {
    min-width: 0;
}

.hero-trust-item strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.15rem;
    letter-spacing: -0.02em;
}

.hero-trust-item span {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-panel {
    height: 100%;
    min-height: 0;
    animation: hero-rise 0.9s ease-out 0.15s both;
}

.hero-panel-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(18, 32, 48, 0.95), rgba(10, 18, 28, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 1.25rem 1.25rem 1.15rem;
    backdrop-filter: blur(20px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-panel-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.25rem;
}

.hero-panel-reg {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
}

.hero-panel-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(61, 220, 151, 0.12);
    border: 1px solid rgba(61, 220, 151, 0.3);
    color: #3DDC97;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3DDC97;
    box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.5);
    animation: status-pulse 2s ease-out infinite;
}

.hero-panel-car {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 200px;
    margin-bottom: 1rem;
    border-radius: 12px;
    background:
        radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 65%),
        rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.hero-panel-car img {
    width: 92%;
    max-width: 340px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
    transform: translateY(6px);
}

.hero-panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: auto;
}

.hero-panel-stats > div {
    text-align: center;
    padding: 0.75rem 0.4rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-stats span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0.3rem;
}

.hero-panel-stats strong {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
}

.hero-panel-checks {
    display: grid;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 0.35rem;
}

.hero-panel-checks li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.82);
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    background: rgba(61, 220, 151, 0.06);
    border: 1px solid rgba(61, 220, 151, 0.12);
}

.hero-panel-checks i {
    color: #3DDC97;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-scroll {
    display: none;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(243, 238, 230, 0.45);
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes status-pulse {
    0% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.45); }
    70% { box-shadow: 0 0 0 8px rgba(61, 220, 151, 0); }
    100% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0); }
}

/* Shared badge (used in other sections) */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(31, 58, 95, 0.08);
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(31, 58, 95, 0.15);
}

/* Stats Section â€” award-level strip */
.stats-bar {
    position: relative;
    background:
        linear-gradient(180deg, #0A121A 0%, #0D1620 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, 40%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61, 220, 151, 0.55), transparent);
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.stat-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 2.75rem 1.75rem;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.stat-index {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #3DDC97;
    line-height: 1.4;
    padding-top: 0.35rem;
}

.stat-body {
    min-width: 0;
}

.stat-item h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 2.4vw, 2.55rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.45rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.stat-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 400;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

/* Features Section â€” award editorial */
.features-section {
    position: relative;
    background:
        radial-gradient(ellipse at top right, rgba(61, 220, 151, 0.08), transparent 42%),
        linear-gradient(180deg, #071018 0%, #0B1220 100%);
    color: #fff;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
    pointer-events: none;
    opacity: 0.45;
}

.features-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: end;
    margin-bottom: 3.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3DDC97;
}

.features-head-copy h2 {
    margin: 0;
    font-size: clamp(2.1rem, 3.6vw, 3.35rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    max-width: 14ch;
}

.features-head-lead {
    margin: 0;
    max-width: 34ch;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
    justify-self: end;
}

.features-bento {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.6rem 1.45rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(61, 220, 151, 0.35);
}

.feature-item--lg {
    grid-column: span 2;
    padding: 2rem 1.75rem;
    background:
        linear-gradient(145deg, rgba(61, 220, 151, 0.08), rgba(255, 255, 255, 0.03));
}

.feature-num {
    display: block;
    margin-bottom: 1.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #3DDC97;
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    border-radius: 11px;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid rgba(61, 220, 151, 0.22);
    color: #3DDC97;
    font-size: 1rem;
}

.feature-item h3 {
    margin: 0 0 0.7rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
}

.feature-item--lg h3 {
    font-size: 1.35rem;
}

.feature-item p {
    margin: 0;
    margin-top: auto;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
}

/* Shared section header styles for other sections */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .features-head {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        align-items: start;
    }

    .features-head-lead {
        justify-self: start;
        max-width: 48ch;
    }

    .features-head-copy h2 {
        max-width: none;
    }

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

    .feature-item--lg {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .features-bento {
        grid-template-columns: 1fr;
    }

    .feature-item--lg {
        grid-column: span 1;
    }
}

/* Excellence Section â€” premium editorial */
.excellence-section {
    position: relative;
    background:
        radial-gradient(ellipse at top right, rgba(61, 220, 151, 0.05), transparent 40%),
        linear-gradient(180deg, #FFFFFF 0%, #F7F5F1 100%);
    overflow: hidden;
}

.excellence-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.excellence-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.excellence-media-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 460px;
    box-shadow: 0 28px 60px rgba(11, 18, 32, 0.14);
}

.excellence-media-frame img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.excellence-media-frame:hover img {
    transform: scale(1.04);
}

.excellence-media-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(7, 16, 24, 0.7) 100%);
    pointer-events: none;
}

.excellence-media-caption {
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 2;
    color: #fff;
}

.excellence-media-caption span {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.excellence-media-caption strong {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.excellence-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.excellence-metric {
    padding: 1.1rem 0.9rem;
    border-radius: 14px;
    background: #0B1220;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.excellence-metric strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.excellence-metric span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.excellence-copy {
    max-width: 560px;
}

.excellence-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(11, 18, 32, 0.1);
    background: rgba(255, 255, 255, 0.8);
    color: #0B1220;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.excellence-eyebrow i {
    color: #1F8A5B;
    font-size: 0.75rem;
}

.excellence-copy h2 {
    margin: 0 0 1.1rem;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0B1220;
}

.excellence-lead {
    margin: 0 0 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(11, 18, 32, 0.66);
}

.excellence-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.excellence-point {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1.15rem 1.2rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(11, 18, 32, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.excellence-point:hover {
    transform: translateY(-2px);
    border-color: rgba(61, 220, 151, 0.35);
    box-shadow: 0 14px 30px rgba(11, 18, 32, 0.06);
}

.excellence-point-num {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #1F8A5B;
    padding-top: 0.35rem;
}

.excellence-point-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(61, 220, 151, 0.12);
    border: 1px solid rgba(61, 220, 151, 0.22);
    color: #1F8A5B;
    font-size: 0.95rem;
}

.excellence-point-text h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0B1220;
}

.excellence-point-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(11, 18, 32, 0.62);
}

.excellence-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.5rem;
    border-radius: 10px;
    background: #0B1220;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(11, 18, 32, 0.22);
    transition: transform 0.25s ease, background 0.25s ease;
}

.excellence-cta:hover {
    background: #142033;
    color: #fff;
    transform: translateY(-2px);
}

.excellence-cta i {
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}

.excellence-cta:hover i {
    transform: translateX(4px);
}

/* Keep badge-pill for other sections that may still use it */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(61, 220, 151, 0.12);
    color: #1F8A5B;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(61, 220, 151, 0.22);
}

@media (max-width: 992px) {
    .excellence-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .excellence-media-frame,
    .excellence-media-frame img {
        min-height: 360px;
    }

    .excellence-copy {
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    .excellence-metrics {
        grid-template-columns: 1fr;
    }

    .excellence-point {
        grid-template-columns: auto 1fr;
    }

    .excellence-point-num {
        grid-column: 1 / -1;
        padding-top: 0;
    }
}

/* About Section â€” premium editorial */
.about-section {
    background:
        radial-gradient(ellipse at top left, rgba(61, 220, 151, 0.06), transparent 45%),
        linear-gradient(180deg, #FBFaf7 0%, #F4F1EC 100%);
    overflow: hidden;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 32, 0.035) 1px, transparent 1px);
    background-size: 100% 56px;
    mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
    pointer-events: none;
    opacity: 0.5;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.about-visual {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 1rem;
    align-items: end;
    min-height: 520px;
}

.about-visual-main,
.about-visual-side {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 32, 0.12);
}

.about-visual-main {
    height: 100%;
    min-height: 480px;
}

.about-visual-side {
    height: 78%;
    min-height: 340px;
    margin-bottom: 1.5rem;
}

.about-visual-main img,
.about-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.about-visual-main:hover img,
.about-visual-side:hover img {
    transform: scale(1.04);
}

.about-visual-main::after,
.about-visual-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7, 16, 24, 0.45) 100%);
    pointer-events: none;
}

.about-metric {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 30px rgba(7, 16, 24, 0.15);
}

.about-metric strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B1220;
    letter-spacing: -0.03em;
    line-height: 1;
}

.about-metric span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.55);
}

.about-visual-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    color: #fff;
}

.about-visual-caption span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.about-visual-caption strong {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-copy {
    max-width: 560px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.5rem;
    width: fit-content;
    margin-bottom: 1.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(11, 18, 32, 0.1);
    background: rgba(255, 255, 255, 0.75);
    color: #0B1220;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-eyebrow i {
    color: #1F8A5B;
    font-size: 0.75rem;
}

.about-copy h2 {
    font-size: clamp(2.1rem, 3.4vw, 3.15rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0B1220;
    margin: 0 0 1.15rem;
}

.about-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(11, 18, 32, 0.68);
    margin: 0 0 1.75rem;
}

.about-proofs {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 2.25rem;
    padding: 0;
}

.about-proofs li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #172033;
}

.about-proofs i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(61, 220, 151, 0.15);
    color: #1F8A5B;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.about-pillar {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem 1.35rem;
    border-radius: 14px;
    background: #0B1220;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(11, 18, 32, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(11, 18, 32, 0.22);
}

.about-pillar-index {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #3DDC97;
    margin-bottom: 1rem;
}

.about-pillar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid rgba(61, 220, 151, 0.22);
    color: #3DDC97;
    font-size: 1rem;
}

.about-pillar h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.65rem;
}

.about-pillar p {
    margin: 0;
    margin-top: auto;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        max-width: 560px;
        margin: 0 auto;
        min-height: 420px;
    }

    .about-visual-main {
        min-height: 380px;
    }

    .about-visual-side {
        min-height: 280px;
    }

    .about-copy {
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .about-visual {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-visual-main,
    .about-visual-side {
        min-height: 260px;
        height: 280px;
        margin-bottom: 0;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }
}

/* Services Section â€” premium */
.services-section {
    position: relative;
    background:
        radial-gradient(ellipse at top left, rgba(61, 220, 151, 0.05), transparent 42%),
        linear-gradient(180deg, #FBFaf7 0%, #F3F0EA 100%);
    overflow: hidden;
}

.services-head {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.services-eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1F8A5B;
}

.services-head-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3.3vw, 3.1rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0B1220;
    max-width: 16ch;
}

.services-head-lead {
    margin: 0;
    max-width: 34ch;
    justify-self: end;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(11, 18, 32, 0.62);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #0B1220;
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 16px 40px rgba(11, 18, 32, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(11, 18, 32, 0.16);
    border-color: rgba(61, 220, 151, 0.28);
}

.service-card--featured {
    grid-column: span 8;
    flex-direction: row;
    min-height: 320px;
}

.service-card-media {
    position: relative;
    overflow: hidden;
    background: #142033;
}

.service-card:not(.service-card--featured) .service-card-media {
    height: 190px;
    flex-shrink: 0;
}

.service-card--featured .service-card-media {
    flex: 1.15;
    min-height: 100%;
}

.service-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 16, 24, 0.35) 100%);
    pointer-events: none;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.service-card:hover .service-card-media img {
    transform: scale(1.06);
}

.service-card-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.3rem 1.4rem;
    background: linear-gradient(180deg, #101924 0%, #0B1220 100%);
    color: #fff;
}

.service-card--featured .service-card-panel {
    flex: 0.95;
    justify-content: center;
    padding: 2rem 2rem 2.1rem;
}

.service-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.service-card-index {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #3DDC97;
}

.service-card-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(61, 220, 151, 0.12);
    border: 1px solid rgba(61, 220, 151, 0.25);
    color: #3DDC97;
    font-size: 0.9rem;
}

.service-card-panel h3 {
    margin: 0 0 0.65rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.25;
}

.service-card--featured .service-card-panel h3 {
    font-size: 1.65rem;
}

.service-card-panel p {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
}

.service-card--featured .service-card-panel p {
    font-size: 0.98rem;
    max-width: 34ch;
}

.service-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(61, 220, 151, 0.35);
    background: rgba(61, 220, 151, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3DDC97;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.service-card:hover .service-card-link {
    background: rgba(61, 220, 151, 0.16);
    border-color: rgba(61, 220, 151, 0.55);
}

.service-card-link i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .services-head {
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: start;
    }

    .services-head-copy h2 {
        max-width: none;
    }

    .services-head-lead {
        justify-self: start;
        max-width: 48ch;
    }

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

    .service-card,
    .service-card--featured {
        grid-column: span 1;
        flex-direction: column;
        min-height: 0;
    }

    .service-card--featured .service-card-media {
        height: 210px;
        min-height: 210px;
        flex: none;
    }

    .service-card--featured .service-card-panel {
        padding: 1.35rem 1.3rem 1.4rem;
    }

    .service-card--featured .service-card-panel h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card:not(.service-card--featured) .service-card-media {
        height: 180px;
    }
}

/* How It Works â€” premium process */
.process-section {
    position: relative;
    background:
        radial-gradient(ellipse at bottom left, rgba(61, 220, 151, 0.07), transparent 42%),
        linear-gradient(180deg, #071018 0%, #0B1220 100%);
    color: #fff;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(240px, 40%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61, 220, 151, 0.5), transparent);
}

.process-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3DDC97;
}

.process-head-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
}

.process-head-lead {
    margin: 0;
    max-width: 34ch;
    justify-self: end;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.process-track {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.process-track::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, rgba(61, 220, 151, 0.1), rgba(61, 220, 151, 0.45), rgba(61, 220, 151, 0.1));
    pointer-events: none;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(61, 220, 151, 0.35);
}

.process-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.process-step-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #3DDC97;
}

.process-step-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(61, 220, 151, 0.12);
    border: 1px solid rgba(61, 220, 151, 0.28);
    color: #3DDC97;
    font-size: 1.05rem;
    box-shadow: 0 0 0 8px rgba(61, 220, 151, 0.05);
}

.process-step h3 {
    margin: 0 0 0.7rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
}

.process-step p {
    margin: 0;
    margin-top: auto;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 992px) {
    .process-head {
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: start;
    }

    .process-head-lead {
        justify-self: start;
        max-width: 48ch;
    }

    .process-track {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-track::before {
        display: none;
    }
}

/* CTA Section â€” premium */
.cta-premium {
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(180deg, #F3F0EA 0%, #ECE8E1 100%);
}

.cta-premium-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2.25rem, 4vw, 3.25rem);
    border-radius: 22px;
    background:
        radial-gradient(ellipse at top right, rgba(61, 220, 151, 0.16), transparent 40%),
        linear-gradient(135deg, #0B1220 0%, #122033 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(11, 18, 32, 0.22);
    overflow: hidden;
    position: relative;
}

.cta-premium-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(ellipse at center, #000 15%, transparent 70%);
    pointer-events: none;
}

.cta-premium-copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.cta-premium-eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3DDC97;
}

.cta-premium-copy h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
}

.cta-premium-copy p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
}

.cta-premium-btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #3DDC97 0%, #2BB87A 100%);
    color: #071018;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(43, 184, 122, 0.35);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.cta-premium-btn:hover {
    color: #071018;
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.cta-premium-btn i {
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}

.cta-premium-btn:hover i {
    transform: translateX(4px);
}

/* Contact Section â€” premium */
.contact-premium {
    background:
        radial-gradient(ellipse at top right, rgba(61, 220, 151, 0.06), transparent 40%),
        linear-gradient(180deg, #FBFaf7 0%, #F4F1EC 100%);
}

.contact-premium-head {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.contact-premium-eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1F8A5B;
}

.contact-premium-head-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #0B1220;
}

.contact-premium-lead {
    margin: 0;
    max-width: 34ch;
    justify-self: end;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(11, 18, 32, 0.62);
}

.contact-premium-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
}

.contact-premium-visual {
    position: relative;
    min-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 55px rgba(11, 18, 32, 0.14);
}

.contact-premium-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-premium-visual-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 16, 24, 0.78) 100%);
}

.contact-premium-info {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.contact-premium-info-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(61, 220, 151, 0.14);
    color: #1F8A5B;
    flex-shrink: 0;
}

.contact-premium-info span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.5);
}

.contact-premium-info a {
    display: block;
    margin: 0.15rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0B1220;
}

.contact-premium-info em {
    font-style: normal;
    font-size: 0.78rem;
    color: rgba(11, 18, 32, 0.55);
}

.contact-premium-form-wrap {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 20px 45px rgba(11, 18, 32, 0.06);
}

.contact-premium-form-wrap h3 {
    margin: 0 0 1.5rem;
    font-size: 1.35rem;
    font-weight: 600;
    color: #0B1220;
}

.contact-premium-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-premium-field {
    margin-bottom: 1rem;
}

.contact-premium-field label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #172033;
}

.contact-premium-field label span {
    color: #C24141;
}

.contact-premium-field input,
.contact-premium-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(11, 18, 32, 0.12);
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #0B1220;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-premium-field input:focus,
.contact-premium-field textarea:focus {
    border-color: rgba(61, 220, 151, 0.55);
    box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.14);
}

.contact-premium-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-premium-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.35rem;
    padding: 0.95rem 1.45rem;
    border-radius: 10px;
    background: #0B1220;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(11, 18, 32, 0.2);
}

.contact-premium-submit:hover {
    background: #142033;
    color: #fff;
    transform: translateY(-1px);
}

.contact-premium-submit i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.contact-premium-submit:hover i {
    transform: translateX(4px);
}

.contact-success {
    text-align: center;
    padding: 2rem 1rem;
}

.contact-success.hidden {
    display: none;
}

.contact-success .success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(61, 220, 151, 0.14);
    color: #1F8A5B;
    font-size: 1.75rem;
}

.contact-success h3 {
    margin-bottom: 0.75rem;
    color: #0B1220;
}

.contact-success p {
    color: rgba(11, 18, 32, 0.62);
}

@media (max-width: 992px) {
    .cta-premium-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-premium-head {
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: start;
    }

    .contact-premium-lead {
        justify-self: start;
        max-width: 48ch;
    }

    .contact-premium-grid {
        grid-template-columns: 1fr;
    }

    .contact-premium-visual {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .contact-premium-row {
        grid-template-columns: 1fr;
    }

    .contact-premium-form-wrap {
        padding: 1.35rem;
    }
}

/* Footer â€” premium */
.site-footer {
    background:
        radial-gradient(ellipse at top center, rgba(61, 220, 151, 0.08), transparent 40%),
        linear-gradient(180deg, #0B1220 0%, #071018 100%);
    color: #F3F4F6;
    padding: 4.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
    margin-bottom: 2.75rem;
    padding-bottom: 2.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-logo {
    display: inline-block;
    width: 150px;
    margin-bottom: 1.1rem;
    filter: brightness(0) invert(1);
}

.site-footer-logo img {
    width: 100%;
    height: auto;
}

.site-footer-brand p {
    max-width: 34ch;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.site-footer-col h4 {
    margin: 0 0 1.15rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.site-footer-col a,
.site-footer-col span {
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s ease;
}

.site-footer-col a:hover {
    color: #3DDC97;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.site-footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.site-footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.site-footer-bottom-links a:hover {
    color: #3DDC97;
}

@media (max-width: 992px) {
    .site-footer-top {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

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

@media (max-width: 640px) {
    .site-footer-cols {
        grid-template-columns: 1fr;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        align-items: flex-start;
        padding: calc(var(--nav-h, 72px) + 2.25rem) 0 3rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }

    .hero-copy {
        height: auto;
        max-width: 100%;
    }

    .hero-media-img {
        object-position: 60% center;
    }

    .hero-media-veil {
        background:
            linear-gradient(180deg, rgba(7, 16, 24, 0.7) 0%, rgba(7, 16, 24, 0.88) 45%, rgba(7, 16, 24, 0.96) 100%),
            linear-gradient(90deg, rgba(7, 16, 24, 0.75) 0%, rgba(7, 16, 24, 0.4) 100%);
    }

    .hero-trust {
        margin-top: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        padding: 0.7rem;
    }

    .hero-panel {
        height: auto;
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-panel-inner {
        height: auto;
    }

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

    .stat-item {
        padding: 2rem 1.25rem;
    }

    .stat-item:nth-child(2n)::after {
        display: none;
    }

    .check-console-price {
        align-self: flex-start;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-connector {
        display: none;
    }

    .step {
        margin-bottom: 3rem;
        max-width: 400px;
    }

    .step::after {
        content: '';
        display: block;
        width: 2px;
        height: 30px;
        background: #E5E7EB;
        margin: 1rem auto 0;
    }

    .step:last-child::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        overflow: visible;
    }

    .navbar:not(.nav-open) {
        overflow: hidden;
    }

    .logo {
        width: 108px;
    }

    .logo img {
        max-height: 64px;
    }

    .navbar.nav-open {
        overflow: visible;
        background: rgba(11, 13, 16, 0.98) !important;
        backdrop-filter: none !important;
        border-bottom-color: rgba(243, 238, 230, 0.08) !important;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h, 72px);
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1001;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1.25rem 1.5rem 1.75rem;
        background: rgba(11, 13, 16, 0.98);
        border-bottom: 1px solid rgba(243, 238, 230, 0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        max-height: calc(100vh - var(--nav-h, 72px));
        max-height: calc(100dvh - var(--nav-h, 72px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(243, 238, 230, 0.08);
        font-size: 1rem;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a::after {
        display: none;
    }

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

    .btn-nav {
        display: none;
    }

    .stats-bar-inner {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .lang-switcher-group {
        margin-left: 0;
        margin-top: 1rem;
    }

    .lang-switcher {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }

    .flag-icon {
        font-size: 0.9rem;
    }

    .hero {
        padding: calc(var(--nav-h, 72px) + 2rem) 0 2.5rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .hero-checklist {
        flex-direction: column;
        gap: 0.55rem;
    }

    .input-group {
        flex-direction: column;
    }

    .reg-plate,
    .btn-hero {
        width: 100%;
        min-width: 0;
    }

    .check-console-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .hero-panel-car {
        min-height: 150px;
    }

    .btn-lg {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }


    .cta-content h2
    {
        font-size: 29px;
    }

    .cta-content .btn
    {
        font-size: 15px;
    }


}

/* Checkout Page Styles */
.checkout-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.checkout-header {
    margin-bottom: 2.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--primary-dark);
    transform: translateX(-3px);
}

.back-link i {
    font-size: 0.875rem;
}

.checkout-title {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--text-main);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.checkout-form-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.checkout-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.checkout-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.checkout-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.checkout-form .form-group input.error {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.checkout-form .form-group input.success {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.checkout-form .form-help {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.checkout-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.price-badge {
    font-weight: 700;
    font-size: 1.125rem;
}

/* Order Summary */
.order-summary-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.order-summary-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.summary-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.plan-card {
    background: linear-gradient(135deg, #EEF2FF 0%, #F3F4F6 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.plan-header h4 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 0;
}

.plan-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.plan-delivery {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.plan-delivery i {
    color: var(--primary-color);
}

.plan-price {
    font-size: 1.125rem;
    color: var(--text-main);
    padding-top: 1rem;
    border-top: 1px solid rgba(79, 70, 229, 0.2);
}

.plan-price strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.summary-info-block {
    background: #F9FAFB;
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.summary-info-block h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.summary-features {
    margin-bottom: 1.5rem;
}

.summary-features h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-main);
    font-size: 0.9rem;
}

.features-list li i {
    color: var(--secondary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.features-list li.more-features {
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Trust Badges Section - New Eye-Catching Design */
.trust-badges-section {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.trust-badge-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
    border-color: var(--primary-light);
}

.trust-badge-card:hover::before {
    transform: scaleX(1);
}

.trust-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.trust-icon-wrapper.secure {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: var(--primary-color);
}

.trust-icon-wrapper.guarantee {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: #10B981;
}

.trust-icon-wrapper.support {
    background: linear-gradient(135deg, #F0F9FF 0%, #DBEAFE 100%);
    color: #3B82F6;
}

.trust-icon-wrapper i {
    font-size: 1.5rem;
    z-index: 1;
    color: inherit;
}

.trust-badge-card:hover .trust-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.trust-content {
    flex: 1;
}

.trust-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.trust-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.btn-block {
    width: 100%;
}

/* Payment Loader Overlay */
.payment-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.payment-loader-overlay.hidden {
    display: none;
}

.payment-loader-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 2rem;
}

.payment-loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: var(--primary-color);
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--primary-light);
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--secondary-color);
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.spinner-ring:nth-child(4) {
    border-top-color: rgba(255, 255, 255, 0.3);
    width: 55%;
    height: 55%;
    top: 22.5%;
    left: 22.5%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.payment-loader-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.payment-loader-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite both;
}

.loader-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Checkout Responsive */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-summary-card {
        order: -1;
    }

    .checkout-form-card {
        padding: 1.5rem;
    }

    .checkout-title {
        font-size: 2rem;
    }

    .trust-badges-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .checkout-title {
        font-size: 1.75rem;
    }

    .checkout-header {
        margin-bottom: 1.5rem;
    }

    .checkout-form-card,
    .order-summary-card {
        padding: 1.25rem;
    }

    .checkout-grid {
        gap: 1.5rem;
    }

    .trust-badges-section {
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
    }

    .trust-badge-card {
        padding: 1.25rem 1rem;
    }

    .trust-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .trust-icon-wrapper i {
        font-size: 1.25rem;
    }

    .trust-content h4 {
        font-size: 0.95rem;
    }

    .trust-content p {
        font-size: 0.8rem;
    }

    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badge-item {
        padding: 0.5rem;
    }

    .payment-loader-content {
        padding: 1.5rem;
        max-width: 90%;
    }

    .payment-loader-content h3 {
        font-size: 1.25rem;
    }

    .payment-loader-content p {
        font-size: 0.9rem;
    }

    .payment-loader-spinner {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.privacy-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EEF2FF;
}

.privacy-section h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.privacy-section li strong {
    color: var(--text-main);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition-fast);
}

.privacy-section a:hover {
    color: var(--primary-dark);
}

.footer-bottom a {
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: white;
}

/* Privacy Policy Responsive */
@media (max-width: 992px) {
    .privacy-content {
        padding: 2rem;
    }

    .privacy-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .container {
        width: 100%;
    }

    .trusted-content h2
    {
        font-size: 36px;
    }

    .excellence-content h2
    {
        font-size: 37px;
    }


    .privacy-policy-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .privacy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-intro {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-section {
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.125rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
}

/* Terms & Conditions Page Styles */
.terms-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.terms-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.terms-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.terms-section-item {
    margin-bottom: 3rem;
}

.terms-section-item:last-child {
    margin-bottom: 0;
}

.terms-section-item h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EEF2FF;
}

.terms-section-item h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.terms-section-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.terms-section-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section-item li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.terms-section-item li strong {
    color: var(--text-main);
    font-weight: 600;
}

.terms-section-item a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition-fast);
}

.terms-section-item a:hover {
    color: var(--primary-dark);
}

/* Terms & Conditions Responsive */
@media (max-width: 992px) {
    .terms-content {
        padding: 2rem;
    }

    .terms-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .terms-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-intro {
        font-size: 1rem;
    }

    .terms-content {
        padding: 1.5rem;
    }

    .terms-section-item {
        margin-bottom: 2rem;
    }

    .terms-section-item h2 {
        font-size: 1.5rem;
    }

    .terms-section-item h3 {
        font-size: 1.125rem;
    }

    .terms-section-item p,
    .terms-section-item li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .checkout-form-card,
    .order-summary-card {
        padding: 1.25rem;
    }

    .checkout-title {
        font-size: 1.5rem;
    }

    .checkout-btn {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-badge {
        font-size: 1rem;
    }
}
