/* ================= ROOT ================= */

:root {
    --white: #ffffff;
    --off-white: #f8f7f2;
    --soft-beige: #eee8d8;

    --navy: #06182f;
    --navy-soft: #0c2b4d;
    --navy-light: #123d68;

    --text-dark: #111827;
    --text-muted: #6b7280;

    --amber: #f5a623;
    --amber-light: #ffd166;
    --amber-soft: #ffe8b7;

    --teal: #14b8a6;
    --teal-soft: #bff7ef;

    --coral: #ff7a59;

    --glass: rgba(255, 255, 255, 0.13);
    --glass-strong: rgba(255, 255, 255, 0.19);
    --glass-border: rgba(255, 255, 255, 0.22);

    --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.25);

    --font-main: "Manrope", Arial, Helvetica, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* ================= HEADER / DASHBOARD ================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding-top: 18px;
    transition: 0.35s ease;
}

.header-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.35s ease;
}

.site-header.scrolled {
    padding-top: 12px;
}

.site-header.scrolled .header-container {
    min-height: 68px;
    padding: 0 18px;
    border-radius: 24px;
    background: rgba(6, 24, 47, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}


/* ================= LOGO ================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.42), transparent 25%),
        linear-gradient(135deg, var(--amber), var(--teal));
    color: var(--navy);
    font-weight: 900;
    letter-spacing: -1px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 16px 40px rgba(245, 166, 35, 0.22);
}

.logo-icon::before {
    content: "";
    position: absolute;
    width: 86px;
    height: 30px;
    top: 3px;
    left: -42px;
    background: rgba(255, 255, 255, 0.24);
    transform: rotate(-28deg);
    transition: 0.45s ease;
}

.logo:hover .logo-icon::before {
    left: 28px;
}

.logo-icon span {
    position: relative;
    z-index: 2;
    font-size: 16px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-text small {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.6px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
}


.logo-image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.site-logo-img {
    width: 200px;
    height: 75px;
    object-fit: contain;
    display: block;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* ================= NAVIGATION ================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu a {
    position: relative;
    padding: 11px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.84);
    transition: 0.28s ease;
}

.nav-menu a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.10);
    transform: scale(0.86);
    opacity: 0;
    transition: 0.28s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber), var(--teal));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.28s ease;
}

.nav-menu a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

/* ================= HEADER ACTIONS ================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-cta {
    position: relative;
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(245, 166, 35, 0.26);
    transition: 0.28s ease;
}

.nav-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent);
    transform: skewX(-22deg);
    transition: 0.4s ease;
}

.nav-cta:hover::before {
    left: 130%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--white), var(--amber-soft));
}

.nav-cta span {
    position: relative;
    z-index: 2;
    transition: 0.28s ease;
}

.nav-cta:hover span {
    transform: translateX(4px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    padding: 11px;
    transition: 0.28s ease;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    border-radius: 999px;
    transition: 0.28s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================= HERO ================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/hero-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(6, 24, 47, 0.88) 0%,
            rgba(6, 24, 47, 0.70) 44%,
            rgba(6, 24, 47, 0.38) 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.85;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.orb-one {
    width: 360px;
    height: 360px;
    right: -110px;
    top: 150px;
    background: rgba(245, 166, 35, 0.15);
}

.orb-two {
    width: 280px;
    height: 280px;
    left: -90px;
    bottom: 120px;
    background: rgba(20, 184, 166, 0.13);
    animation-delay: 1s;
}

.orb-three {
    width: 230px;
    height: 230px;
    right: 26%;
    bottom: 80px;
    background: rgba(255, 122, 89, 0.10);
    animation-delay: 1.8s;
}

@keyframes orbFloat {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(30px) scale(1.06);
    }
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 64px;
    padding: 132px 0 126px;
}


/* ================= HERO COPY ================= */

.hero-copy {
    max-width: 720px;
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--teal);
    box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.16);
    animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.32);
        opacity: 0.75;
    }
}
.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.2vw, 88px);
    line-height: 0.92;
    letter-spacing: -2.6px;
    margin-bottom: 24px;
}

.hero-copy h1 span {
    display: block;
    font-family: var(--font-main);
    color: var(--amber-soft);
    font-size: clamp(24px, 3vw, 35px);
    line-height: 1.18;
    letter-spacing: -0.9px;
    margin-top: 18px;
    font-weight: 700;
}

.hero-copy p {
    max-width: 610px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.btn {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 900;
    transition: 0.28s ease;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy);
    box-shadow: 0 18px 42px rgba(245, 166, 35, 0.28);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -85%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.42),
            transparent);
    transform: skewX(-22deg);
    animation: buttonShine 3.4s ease-in-out infinite;
}

@keyframes buttonShine {
    0% {
        left: -85%;
    }

    45%,
    100% {
        left: 140%;
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--white), var(--amber-soft));
}

.btn-primary span {
    position: relative;
    z-index: 2;
    transition: 0.28s ease;
}

.btn-primary:hover span {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
    transition: 0.28s ease;
}

.hero-tags span:hover {
    transform: translateY(-2px);
    background: rgba(245, 166, 35, 0.16);
    border-color: rgba(245, 166, 35, 0.35);
}


/* ================= HERO PANEL ================= */

.hero-panel {
    position: relative;
    justify-self: end;
    width: min(100%, 440px);
    padding: 28px;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-strong);
    color: var(--white);
    transition: 0.35s ease;
}

.hero-panel::before {
    content: "";
    position: absolute;
    width: 160%;
    height: 92px;
    top: 32%;
    left: -35%;
    transform: rotate(-18deg);
    background: rgba(255, 255, 255, 0.09);
    pointer-events: none;
}

.hero-panel:hover {
    transform: translateY(-8px);
    background: rgba(199, 7, 7, 0.16);
}

.panel-top,
.panel-services,
.panel-footer {
    position: relative;
    z-index: 2;
}

.panel-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.panel-top small {
    display: inline-block;
    color: var(--amber-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.panel-top h3 {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.5px;
}

.panel-status {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    background: rgba(253, 252, 252, 0.16);
    border: 1px solid rgba(20, 184, 166, 0.28);
}

.panel-status span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.14);
}
.panel-services {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.panel-service {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid var(--glass-border);
    transition: 0.28s ease;
}

.panel-service:hover {
    transform: translateX(7px);
    background: rgba(255, 255, 255, 0.17);
    border-color: rgba(245, 166, 35, 0.35);
}

.service-number {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 28%),
        rgba(245, 166, 35, 0.20);
    color: var(--amber-soft);
    font-size: 14px;
    font-weight: 900;
    transition: 0.28s ease;
}

.panel-service:hover .service-number {
    background: linear-gradient(135deg, var(--amber), var(--teal));
    color: var(--navy);
    transform: rotate(-4deg) scale(1.04);
}

.panel-service h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.panel-service p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.76);
}

.panel-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-footer div {
    padding: 12px 10px;
    border-radius: 18px;
    transition: 0.28s ease;
}

.panel-footer div:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-3px);
}

.panel-footer strong {
    display: block;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--white);
}

.panel-footer small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 800;
}


/* ================= BOTTOM STATS ================= */

.hero-bottom-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 3;
}

.bottom-bar-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bottom-stat {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    color: var(--white);
    transition: 0.28s ease;
}

.bottom-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(245, 166, 35, 0.30);
}

.bottom-stat strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--amber-soft);
}

.bottom-stat span {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78);
}


/* ================= TEMP SECTIONS ================= */

.placeholder-section {
    padding: 90px 0;
    background: var(--white);
    text-align: center;
}

.alt-bg {
    background: var(--off-white);
}

.quote-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(245, 166, 35, 0.14), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(20, 184, 166, 0.10), transparent 26%),
        var(--navy);
    color: var(--white);
}

.section-kicker {
    display: inline-block;
    color: var(--amber);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.placeholder-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.placeholder-section p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-muted);
}

.quote-section p {
    color: rgba(255, 255, 255, 0.76);
}


/* ================= ENTRY ANIMATION ================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    animation: revealUp 0.8s ease forwards;
}

.reveal-1 {
    animation-delay: 0.08s;
}

.reveal-2 {
    animation-delay: 0.18s;
}

.reveal-3 {
    animation-delay: 0.30s;
}

.reveal-4 {
    animation-delay: 0.42s;
}

.reveal-5 {
    animation-delay: 0.54s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.panel-services {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.panel-service {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid var(--glass-border);
    transition: 0.28s ease;
}

.panel-service:hover {
    transform: translateX(7px);
    background: rgba(255, 255, 255, 0.17);
    border-color: rgba(245, 166, 35, 0.35);
}

.service-number {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 28%),
        rgba(245, 166, 35, 0.20);
    color: var(--amber-soft);
    font-size: 14px;
    font-weight: 900;
    transition: 0.28s ease;
}

.panel-service:hover .service-number {
    background: linear-gradient(135deg, var(--amber), var(--teal));
    color: var(--navy);
    transform: rotate(-4deg) scale(1.04);
}

.panel-service h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.panel-service p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.76);
}

.panel-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-footer div {
    padding: 12px 10px;
    border-radius: 18px;
    transition: 0.28s ease;
}

.panel-footer div:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-3px);
}

.panel-footer strong {
    display: block;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--white);
}

.panel-footer small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 800;
}


/* ================= BOTTOM STATS ================= */

.hero-bottom-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 3;
}

.bottom-bar-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bottom-stat {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    color: var(--white);
    transition: 0.28s ease;
}

.bottom-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(245, 166, 35, 0.30);
}

.bottom-stat strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--amber-soft);
}

.bottom-stat span {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78);
}


/* ================= TEMP SECTIONS ================= */

.placeholder-section {
    padding: 90px 0;
    background: var(--white);
    text-align: center;
}

.alt-bg {
    background: var(--off-white);
}

.quote-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(245, 166, 35, 0.14), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(20, 184, 166, 0.10), transparent 26%),
        var(--navy);
    color: var(--white);
}

.section-kicker {
    display: inline-block;
    color: var(--amber);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.placeholder-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.placeholder-section p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-muted);
}

.quote-section p {
    color: rgba(255, 255, 255, 0.76);
}


/* ================= ENTRY ANIMATION ================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    animation: revealUp 0.8s ease forwards;
}

.reveal-1 {
    animation-delay: 0.08s;
}

.reveal-2 {
    animation-delay: 0.18s;
}

.reveal-3 {
    animation-delay: 0.30s;
}

.reveal-4 {
    animation-delay: 0.42s;
}

.reveal-5 {
    animation-delay: 0.54s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ================= TABLET RESPONSIVE ================= */

@media (max-width: 980px) {

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-header {
        padding-top: 12px;
    }

    .header-container {
        min-height: 68px;
        padding: 0 14px;
        border-radius: 22px;
        background: rgba(6, 24, 47, 0.76);
        border: 1px solid rgba(255, 255, 255, 0.13);
        backdrop-filter: blur(18px);
    }

    .nav-menu {
        position: absolute;
        top: 84px;
        left: 4%;
        right: 4%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        border-radius: 24px;
        background: rgba(6, 24, 47, 0.92);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
        animation: menuDrop 0.28s ease both;
    }

    @keyframes menuDrop {
        from {
            opacity: 0;
            transform: translateY(-8px) scale(0.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 14px;
        border-radius: 15px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(6, 24, 47, 0.88) 0%,
                rgba(6, 24, 47, 0.70) 100%);
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 130px 0 150px;
    }

    .hero-panel {
        justify-self: start;
        width: min(100%, 560px);
    }

    .bottom-bar-content {
        grid-template-columns: repeat(2, 1fr);
    }

}
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 620px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        padding-top: 10px;
    }

    .header-container {
        min-height: 66px;
        border-radius: 20px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .logo-icon span {
        font-size: 14px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .logo-text small {
        font-size: 9px;
        letter-spacing: 2.1px;
    }

    .nav-menu {
        top: 80px;
    }

    .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 24, 47, 0.88) 0%,
      rgba(6, 24, 47, 0.70) 44%,
      rgba(6, 24, 47, 0.38) 100%
    );
}

    .orb-one {
        width: 240px;
        height: 240px;
        right: -130px;
        top: 120px;
        background: rgba(245, 166, 35, 0.08);
        filter: blur(82px);
    }

    .orb-two {
        width: 220px;
        height: 220px;
        left: -140px;
        bottom: 190px;
        background: rgba(20, 184, 166, 0.08);
    }

    .orb-three {
        display: none;
    }

    .hero-layout {
        gap: 30px;
        padding: 116px 0 170px;
    }

    .eyebrow {
        min-height: 36px;
        font-size: 10.5px;
        padding: 0 12px;
        margin-bottom: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(41px, 12vw, 54px);
        line-height: 0.94;
        letter-spacing: -1.8px;
        margin-bottom: 18px;
    }

    .hero-copy h1 span {
        font-size: 22px;
        margin-top: 12px;
    }

    .hero-copy p {
        font-size: 15.6px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 22px;
    }

    .btn {
        width: 100%;
        min-height: 54px;
    }

    .btn:active {
        transform: scale(0.98);
    }

    .hero-tags {
        gap: 8px;
    }

    .hero-tags span {
        min-height: 34px;
        font-size: 12px;
        padding: 0 12px;
    }

    .hero-panel {
        width: 100%;
        padding: 18px;
        border-radius: 26px;
    }

    .hero-panel:hover {
        transform: none;
    }

}
@media (max-width: 620px) {

    .panel-top {
        margin-bottom: 18px;
    }

    .panel-top small {
        font-size: 10.5px;
    }

    .panel-top h3 {
        font-size: 23px;
    }

    .panel-status {
        font-size: 10px;
        min-height: 30px;
        padding: 0 9px;
    }

    .panel-service {
        grid-template-columns: 42px 1fr;
        padding: 14px;
        border-radius: 18px;
    }

    .panel-service:hover {
        transform: none;
    }

    .service-number {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 13px;
    }

    .panel-service h4 {
        font-size: 15.5px;
    }

    .panel-service p {
        font-size: 12.5px;
    }

    .panel-footer {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .panel-footer div {
        padding: 8px 6px;
    }

    .panel-footer strong {
        font-size: 18px;
    }

    .panel-footer small {
        font-size: 10px;
    }

    .hero-bottom-bar {
        bottom: 16px;
    }

    .bottom-bar-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .bottom-stat {
        padding: 12px;
        border-radius: 16px;
    }

    .bottom-stat strong {
        font-size: 18px;
    }

    .bottom-stat span {
        font-size: 10px;
        line-height: 1.3;
    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 380px) {

    .hero-copy h1 {
        font-size: 37px;
    }

    .panel-top {
        flex-direction: column;
    }

    .panel-footer {
        grid-template-columns: 1fr;
    }

    .bottom-bar-content {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        padding-bottom: 260px;
    }

}


/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

}
/* ================= SERVICES SECTION ================= */

.services-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(245, 166, 35, 0.13), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(20, 184, 166, 0.11), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8f7f2 100%);
}

.services-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -160px;
    border-radius: 50%;
    background: rgba(6, 24, 47, 0.08);
    filter: blur(30px);
    pointer-events: none;
}

.section-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-bottom: 52px;
}

.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.4px;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-heading p {
    max-width: 690px;
    font-size: 17px;
    color: var(--text-muted);
}


/* ================= SERVICES GRID ================= */

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(6, 24, 47, 0.09);
    box-shadow: 0 24px 70px rgba(6, 24, 47, 0.10);
    transition: 0.35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.14);
    transition: 0.35s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 160%;
    height: 90px;
    left: -35%;
    top: 44%;
    transform: rotate(-16deg);
    background: rgba(6, 24, 47, 0.035);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 166, 35, 0.32);
    box-shadow: 0 30px 90px rgba(6, 24, 47, 0.16);
}

.service-card:hover::before {
    transform: scale(1.18);
    background: rgba(20, 184, 166, 0.14);
}

.service-card-featured {
    background:
        radial-gradient(circle at 88% 12%, rgba(245, 166, 35, 0.20), transparent 28%),
        linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
}

.service-card-featured::before {
    background: rgba(20, 184, 166, 0.18);
}

.service-card-featured::after {
    background: rgba(255, 255, 255, 0.06);
}


/* ================= SERVICE CARD CONTENT ================= */

.service-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.50), transparent 28%),
        linear-gradient(135deg, var(--amber), var(--teal));
    color: var(--navy);
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(245, 166, 35, 0.22);
    transition: 0.35s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.06);
}

.service-label {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(6, 24, 47, 0.07);
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-card-featured .service-label {
    background: rgba(255, 255, 255, 0.12);
    color: var(--amber-soft);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card h3 {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.7px;
    color: var(--navy);
    margin-bottom: 16px;
}

.service-card-featured h3 {
    color: var(--white);
}

.service-card p {
    position: relative;
    z-index: 2;
    font-size: 15.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.76);
}


/* ================= SERVICE POINTS ================= */

.service-points {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    list-style: none;
    margin-bottom: 30px;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 800;
}

.service-points li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.13);
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
}

.service-card-featured .service-points li {
    color: rgba(255, 255, 255, 0.88);
}

.service-card-featured .service-points li::before {
    background: rgba(245, 166, 35, 0.18);
    color: var(--amber-soft);
}


/* ================= SERVICE LINK ================= */

.service-link {
    position: relative;
    z-index: 2;
    margin-top: auto;
    width: fit-content;
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    transition: 0.28s ease;
}

.service-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy);
}

.service-link span {
    transition: 0.28s ease;
}

.service-link:hover span {
    transform: translateX(4px);
}

.service-card-featured .service-link {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy);
}

.service-card-featured .service-link:hover {
    background: var(--white);
}


/* ================= SERVICES NOTE ================= */

.services-note {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-radius: 26px;
    background: rgba(6, 24, 47, 0.94);
    color: var(--white);
    box-shadow: 0 24px 70px rgba(6, 24, 47, 0.18);
}

.services-note strong {
    display: block;
    font-size: 18px;
    margin-bottom: 3px;
}

.services-note span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.services-note a {
    min-height: 48px;
    padding: 0 18px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    transition: 0.28s ease;
}

.services-note a:hover {
    transform: translateY(-3px);
    background: var(--white);
}

.services-note a span {
    color: inherit;
    transition: 0.28s ease;
}

.services-note a:hover span {
    transform: translateX(4px);
}


/* ================= SERVICES RESPONSIVE ================= */

@media (max-width: 980px) {
    .services-section {
        padding: 90px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }
}

@media (max-width: 620px) {
    .services-section {
        padding: 76px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .section-heading p {
        font-size: 15px;
    }

    .service-card {
        padding: 22px;
        border-radius: 26px;
    }

    .service-card-top {
        margin-bottom: 24px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        border-radius: 17px;
    }

    .service-label {
        min-height: 34px;
        padding: 0 11px;
        font-size: 10.5px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .service-card p {
        font-size: 14.5px;
    }

    .service-points li {
        font-size: 13.5px;
    }

    .services-note {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 24px;
    }

    .services-note a {
        width: 100%;
        justify-content: center;
    }
}
/* ================= ABOUT SECTION ================= */

.about-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(20, 184, 166, 0.10), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(245, 166, 35, 0.12), transparent 28%),
        var(--navy);
    color: var(--white);
}

.about-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -240px;
    bottom: -260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    filter: blur(20px);
    pointer-events: none;
}

.about-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}


/* ================= ABOUT CONTENT ================= */

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.8vw, 62px);
    line-height: 1.04;
    letter-spacing: -1.3px;
    margin-bottom: 22px;
}

.about-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16.5px;
    margin-bottom: 18px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.about-highlight {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    transition: 0.28s ease;
}

.about-highlight:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 166, 35, 0.32);
}

.about-highlight strong {
    display: block;
    color: var(--amber-soft);
    font-size: 17px;
    margin-bottom: 7px;
}

.about-highlight span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12.5px;
    line-height: 1.45;
}


/* ================= ABOUT CARD ================= */

.about-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-strong);
}

.about-card::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.16);
}

.about-card::after {
    content: "";
    position: absolute;
    width: 170%;
    height: 90px;
    left: -40%;
    top: 48%;
    transform: rotate(-16deg);
    background: rgba(255, 255, 255, 0.07);
}

.about-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.about-card-header span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--amber-soft);
}

.about-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--teal);
    box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.16);
    animation: pulseDot 1.8s ease-in-out infinite;
}


/* ================= ABOUT FEATURE LIST ================= */

.about-feature-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.about-feature {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid var(--glass-border);
    transition: 0.28s ease;
}

.about-feature:hover {
    transform: translateX(7px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(245, 166, 35, 0.32);
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.35), transparent 28%),
        rgba(245, 166, 35, 0.20);
    color: var(--amber-soft);
    font-size: 14px;
    font-weight: 900;
    transition: 0.28s ease;
}

.about-feature:hover .about-feature-icon {
    background: linear-gradient(135deg, var(--amber), var(--teal));
    color: var(--navy);
    transform: rotate(-4deg) scale(1.04);
}

.about-feature h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.about-feature p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}


/* ================= ABOUT CARD FOOTER ================= */

.about-card-footer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-card-footer div {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    transition: 0.28s ease;
}

.about-card-footer div:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.about-card-footer strong {
    display: block;
    color: var(--amber-soft);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 7px;
}

.about-card-footer span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
}


/* ================= ABOUT RESPONSIVE ================= */

@media (max-width: 980px) {
    .about-section {
        padding: 90px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .about-section {
        padding: 76px 0;
    }

    .about-content h2 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .about-content p {
        font-size: 15px;
    }

    .about-card {
        padding: 20px;
        border-radius: 28px;
    }

    .about-feature {
        grid-template-columns: 44px 1fr;
        padding: 14px;
        border-radius: 20px;
    }

    .about-feature:hover {
        transform: none;
    }

    .about-feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        font-size: 13px;
    }

    .about-feature h4 {
        font-size: 15.5px;
    }

    .about-feature p {
        font-size: 12.5px;
    }

    .about-card-footer {
        grid-template-columns: 1fr;
    }
}
/* ================= BLOG SECTION ================= */

.blogs-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(245, 166, 35, 0.12), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8f7f2 100%);
}

.blogs-section::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: -220px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(6, 24, 47, 0.07);
    filter: blur(26px);
    pointer-events: none;
}

.blog-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.blog-heading p {
    margin-left: auto;
    margin-right: auto;
}


/* ================= BLOG GRID ================= */

.blogs-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(6, 24, 47, 0.09);
    box-shadow: 0 24px 70px rgba(6, 24, 47, 0.10);
    transition: 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 166, 35, 0.34);
    box-shadow: 0 30px 90px rgba(6, 24, 47, 0.16);
}

.blog-card-featured {
    background:
        radial-gradient(circle at 90% 12%, rgba(245, 166, 35, 0.20), transparent 28%),
        linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
}


/* ================= BLOG IMAGE AREA ================= */

.blog-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.blog-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 20%, rgba(245, 166, 35, 0.34), transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(20, 184, 166, 0.26), transparent 28%);
    transition: 0.4s ease;
}

.blog-card:hover .blog-image::before {
    transform: scale(1.12);
}

.blog-image::after {
    content: "";
    position: absolute;
    width: 160%;
    height: 90px;
    left: -35%;
    top: 46%;
    transform: rotate(-16deg);
    background: rgba(255, 255, 255, 0.08);
}

.blog-image span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.blog-image-one {
    background:
        linear-gradient(135deg, #06182f, #123d68);
}

.blog-image-two {
    background:
        linear-gradient(135deg, #0c2b4d, #14b8a6);
}

.blog-image-three {
    background:
        linear-gradient(135deg, #06182f, #f5a623);
}


/* ================= BLOG CONTENT ================= */

.blog-content {
    padding: 26px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.blog-meta span {
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.14);
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.blog-meta small {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
}

.blog-card-featured .blog-meta span {
    background: rgba(255, 255, 255, 0.12);
    color: var(--amber-soft);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.blog-card-featured .blog-meta small {
    color: rgba(255, 255, 255, 0.64);
}

.blog-content h3 {
    font-family: var(--font-display);
    font-size: 27px;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin-bottom: 14px;
}

.blog-card-featured .blog-content h3 {
    color: var(--white);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 22px;
}

.blog-card-featured .blog-content p {
    color: rgba(255, 255, 255, 0.74);
}


/* ================= BLOG LINK ================= */

.blog-link {
    width: fit-content;
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    transition: 0.28s ease;
}

.blog-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy);
}

.blog-link span {
    transition: 0.28s ease;
}

.blog-link:hover span {
    transform: translateX(4px);
}

.blog-card-featured .blog-link {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy);
}

.blog-card-featured .blog-link:hover {
    background: var(--white);
}


/* ================= BLOG RESPONSIVE ================= */

@media (max-width: 980px) {
    .blogs-section {
        padding: 90px 0;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 230px;
    }
}

@media (max-width: 620px) {
    .blogs-section {
        padding: 76px 0;
    }

    .blog-content {
        padding: 22px;
    }

    .blog-image {
        height: 190px;
    }

    .blog-content h3 {
        font-size: 25px;
    }

    .blog-content p {
        font-size: 14px;
    }

    .blog-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }
}
/* ================= QUOTE / CONTACT SECTION ================= */

.quote-section-main {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(245, 166, 35, 0.15), transparent 28%),
        radial-gradient(circle at 88% 22%, rgba(20, 184, 166, 0.12), transparent 26%),
        linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: var(--white);
}

.quote-section-main::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -230px;
    bottom: -260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    filter: blur(24px);
    pointer-events: none;
}

.quote-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 64px;
}


/* ================= QUOTE LEFT CONTENT ================= */

.quote-content h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.04;
    letter-spacing: -1.4px;
    margin-bottom: 20px;
}

.quote-content p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16.5px;
    margin-bottom: 34px;
}

.quote-contact-box {
    display: grid;
    gap: 14px;
}
.quote-contact-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    transition: 0.28s ease;
}

.quote-contact-item:hover {
    transform: translateX(7px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 166, 35, 0.32);
}

.quote-contact-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 28%),
        rgba(245, 166, 35, 0.20);
    color: var(--amber-soft);
    font-size: 20px;
    transition: 0.28s ease;
}

.quote-contact-item:hover .quote-contact-icon {
    background: linear-gradient(135deg, var(--amber), var(--teal));
    color: var(--navy);
}

.quote-contact-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.quote-contact-item span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}


/* ================= FORM CARD ================= */

.quote-form-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-strong);
}

.quote-form-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -110px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.15);
}

.quote-form-card::after {
    content: "";
    position: absolute;
    width: 170%;
    height: 90px;
    left: -40%;
    top: 46%;
    transform: rotate(-16deg);
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.form-header,
.quote-form,
.form-note {
    position: relative;
    z-index: 2;
}

.form-header {
    margin-bottom: 24px;
}

.form-header span {
    display: inline-block;
    color: var(--amber-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-header strong {
    display: block;
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.6px;
}


/* ================= FORM ================= */

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 14px;
    transition: 0.28s ease;
}

.form-group textarea {
    min-height: 130px;
    padding-top: 14px;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(245, 166, 35, 0.58);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
}

.form-submit {
    grid-column: 1 / -1;
    min-height: 56px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(245, 166, 35, 0.24);
    transition: 0.28s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--white), var(--amber-soft));
}

.form-submit span {
    transition: 0.28s ease;
}

.form-submit:hover span {
    transform: translateX(4px);
}

.form-note {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    text-align: center;
}
/* ================= QUOTE RESPONSIVE ================= */

@media (max-width: 980px) {
    .quote-section-main {
        padding: 90px 0;
    }

    .quote-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 620px) {
    .quote-section-main {
        padding: 76px 0;
    }

    .quote-content h2 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .quote-content p {
        font-size: 15px;
    }

    .quote-contact-item {
        grid-template-columns: 44px 1fr;
        padding: 14px;
        border-radius: 20px;
    }

    .quote-contact-item:hover {
        transform: none;
    }

    .quote-contact-icon {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        font-size: 17px;
    }

    .quote-form-card {
        padding: 20px;
        border-radius: 28px;
    }

    .form-header strong {
        font-size: 28px;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 14px;
    }
}
/* ================= FOOTER ================= */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 28px;
    background:
        radial-gradient(circle at 12% 18%, rgba(245, 166, 35, 0.12), transparent 28%),
        radial-gradient(circle at 88% 28%, rgba(20, 184, 166, 0.10), transparent 26%),
        #041225;
    color: var(--white);
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    bottom: -280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(24px);
    pointer-events: none;
}

.footer-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.75fr 1fr 1fr;
    gap: 46px;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
/* ================= FOOTER BRAND ================= */

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.42), transparent 25%),
        linear-gradient(135deg, var(--amber), var(--teal));
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(245, 166, 35, 0.20);
}

.footer-logo strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1;
    color: var(--white);
}

.footer-logo small {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14.5px;
    margin-bottom: 22px;
}
/* ================= FOOTER SOCIALS ================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    transition: 0.28s ease;
}

.footer-socials a:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--amber), var(--teal));
    color: var(--navy);
}


/* ================= FOOTER COLUMNS ================= */

.footer-column h4 {
    font-size: 16px;
    font-weight: 900;
    color: var(--amber-soft);
    margin-bottom: 18px;
}

.footer-column a {
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: 0.28s ease;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(5px);
}
/* ================= FOOTER CONTACT ================= */

.footer-contact-item {
    margin-bottom: 16px;
}

.footer-contact-item span {
    display: block;
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
}

.footer-contact-item strong {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}


/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.footer-bottom a {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    transition: 0.28s ease;
}

.footer-bottom a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy);
}

.footer-bottom a span {
    transition: 0.28s ease;
}

.footer-bottom a:hover span {
    transform: translateY(-3px);
}
/* ================= FOOTER RESPONSIVE ================= */

@media (max-width: 980px) {
    .footer-layout {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 620px) {
    .site-footer {
        padding: 64px 0 24px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 34px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo-icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .footer-logo strong {
        font-size: 22px;
    }

    .footer-column h4 {
        margin-bottom: 14px;
    }

    .footer-column a {
        margin-bottom: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom a {
        width: 100%;
        justify-content: center;
    }
}
/* ================= PARTNER WITH US - BLOG STYLE ================= */

.partner-clean-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(163, 212, 39, 0.12), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(144, 106, 86, 0.1), transparent 26%),
        linear-gradient(180deg, #574618 0%, #2b0202 100%);
}
    
.partner-clean-section::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: -220px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(6, 24, 47, 0.07);
    filter: blur(26px);
    pointer-events: none;
}

.partner-clean-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.partner-clean-heading p {
    margin-left: auto;
    margin-right: auto;
}

.partner-form-wrapper {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}
.partner-clean-card {
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(6, 24, 47, 0.09);
    box-shadow: 0 24px 70px rgba(6, 24, 47, 0.10);
}

.partner-card-visual {
    position: relative;
    height: 210px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #06182f, #14b8a6);
}

.partner-card-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 20%, rgba(245, 166, 35, 0.34), transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(20, 184, 166, 0.26), transparent 28%);
}

.partner-card-visual::after {
    content: "";
    position: absolute;
    width: 160%;
    height: 90px;
    left: -35%;
    top: 46%;
    transform: rotate(-16deg);
    background: rgba(255, 255, 255, 0.08);
}

.partner-card-visual span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    min-height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}
.partner-card-content {
    padding: 34px;
}

.partner-card-text {
    max-width: 760px;
    margin-bottom: 28px;
}

.partner-small-label {
    display: inline-block;
    min-height: 32px;
    padding: 0 14px;
    line-height: 32px;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.15);
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.partner-card-text h3 {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.7px;
    color: var(--navy);
    margin-bottom: 14px;
}

.partner-card-text p {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.7;
}

.partner-clean-form {
    display: grid;
    gap: 18px;
}

.partner-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.partner-clean-form .form-group label {
    color: var(--navy);
}

.partner-clean-form .form-group input {
    background: rgba(6, 24, 47, 0.04);
    border: 1px solid rgba(6, 24, 47, 0.13);
    color: var(--navy);
}

.partner-clean-form .form-group input::placeholder {
    color: rgba(6, 24, 47, 0.42);
}

.partner-clean-form .form-group input:focus {
    border-color: rgba(245, 166, 35, 0.70);
    background: rgba(255, 255, 255, 0.95);
}

.partner-clean-form .form-submit {
    max-width: 220px;
}

@media (max-width: 760px) {
    .partner-clean-section {
        padding: 80px 0;
    }

    .partner-card-visual {
        height: 180px;
    }

    .partner-card-content {
        padding: 24px;
    }

    .partner-card-text h3 {
        font-size: 29px;
    }

    .partner-form-row {
        grid-template-columns: 1fr;
    }

    .partner-clean-form .form-submit {
        max-width: 100%;
    }
}
