:root {
    --dark: #050505;
    --dark-2: #101010;
    --dark-3: #181818;
    --gold: #c99a2e;
    --gold-light: #f1d27a;
    --silver: #d4d4d4;
    --text: #f5f5f5;
    --muted: #a5a5a5;
    --glass: rgba(255, 255, 255, .075);
    --line: rgba(241, 210, 122, .22);
}

* { box-sizing: border-box; }

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        linear-gradient(rgba(201, 154, 46, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 154, 46, .035) 1px, transparent 1px),
        var(--dark);
    background-size: 42px 42px;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container-xxl { max-width: 1520px; }

.page-fade { animation: pageIn .55s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.topbar {
    padding: 9px 0;
    background: #020202;
    border-bottom: 1px solid rgba(201, 154, 46, .25);
    font-size: 13px;
    color: var(--muted);
}

.topbar-links { display: flex; gap: 22px; align-items: center; }
.topbar i { color: var(--gold-light); margin-right: 8px; }
.topbar-cta { color: var(--gold-light); font-weight: 700; }

.premium-nav {
    min-height: 86px;
    background: rgba(5, 5, 5, .88);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: .3s ease;
    z-index: 1000;
}

.premium-nav.scrolled {
    background: rgba(5, 5, 5, .68);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0,0,0,.42);
}

.navbar-brand img {
    width: 218px;
    height: 76px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(201,154,46,.22));
}

.nav-link {
    color: var(--silver);
    font-weight: 700;
    padding: 10px 14px !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0;
    transform: scaleX(.4);
    transition: .25s ease;
}

.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { opacity: 1; transform: scaleX(1); }

.navbar-toggler {
    width: 48px;
    height: 42px;
    border: 1px solid var(--line);
    display: grid;
    place-content: center;
    gap: 5px;
}

.navbar-toggler span {
    width: 22px;
    height: 2px;
    background: var(--gold-light);
    display: block;
}

.btn {
    border-radius: 6px;
    font-weight: 800;
    padding: 13px 20px;
    border: 0;
}

.btn-gold {
    color: #080808;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 14px 35px rgba(201,154,46,.25);
}

.btn-gold:hover { color: #000; transform: translateY(-2px); box-shadow: 0 18px 45px rgba(241,210,122,.3); }

.btn-outline-premium {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255,255,255,.045);
}

.btn-outline-premium:hover { color: var(--gold-light); border-color: var(--gold); background: rgba(201,154,46,.08); }

.mobile-offcanvas {
    width: min(400px, 100vw) !important;
    background: rgba(5,5,5,.96);
    color: var(--text);
    border-left: 1px solid var(--line);
}

.mobile-offcanvas img { width: 190px; height: 64px; object-fit: contain; }
.mobile-offcanvas a:not(.btn) {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: var(--silver);
    font-weight: 800;
}

.hero {
    min-height: calc(100vh - 86px);
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after, .page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 20%, rgba(201,154,46,.22), transparent 30%), linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.42));
    z-index: -1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 5s ease;
    z-index: -3;
}

.hero-slide.active { opacity: .72; transform: scale(1); }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(241,210,122,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(241,210,122,.11) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg, #000, transparent 85%);
    z-index: -2;
}

.hero-content { padding: 110px 12px 80px; }
.eyebrow, .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    border: 1px solid var(--line);
    background: rgba(201,154,46,.08);
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

.hero h1, .page-hero h1 {
    max-width: 980px;
    margin: 22px 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(46px, 6vw, 92px);
    line-height: .94;
    font-weight: 700;
}

.hero p, .page-hero p {
    max-width: 760px;
    color: var(--silver);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.65;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 14px;
    max-width: 900px;
    margin-top: 44px;
}

.hero-stats div, .glass-card, .contact-form, .contact-panel, .quote-sidebar, .quality-panel {
    background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 22px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
}

.hero-stats div { padding: 18px; border-radius: 8px; }
.hero-stats strong { display: block; color: var(--gold-light); font-family: "Rajdhani", sans-serif; font-size: 34px; }
.hero-stats span { color: var(--muted); font-weight: 700; }

.section { padding: 96px 0; position: relative; }
.section-head { max-width: 860px; margin-bottom: 38px; }
.section h2, .section-head h2, .cta-box h2 {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    margin: 16px 0;
}

.section p { color: var(--silver); line-height: 1.8; }

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

.service-card {
    min-height: 290px;
    padding: 26px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: .3s ease;
}

.service-card::before, .project-card::before {
    content: "";
    position: absolute;
    inset: var(--y, 50%) auto auto var(--x, 50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(241,210,122,.18), transparent 68%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241,210,122,.55);
}

.service-card i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    background: rgba(201,154,46,.1);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 22px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-family: "Rajdhani", sans-serif;
    font-size: 25px;
    line-height: 1.08;
}

.service-card p { font-size: 14px; }
.service-card a { color: var(--gold-light); font-weight: 800; }

.split-section, .process-section { background: linear-gradient(180deg, var(--dark-2), var(--dark)); }
.image-frame { border: 1px solid var(--line); padding: 10px; border-radius: 8px; background: rgba(255,255,255,.04); }
.image-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 5px; }

.mini-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.mini-features span {
    min-height: 108px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--silver);
    font-weight: 800;
}
.mini-features i { color: var(--gold-light); display: block; margin-bottom: 12px; font-size: 24px; }

.dark-band {
    background:
        linear-gradient(135deg, rgba(201,154,46,.08), transparent 36%),
        var(--dark-3);
    border-block: 1px solid rgba(255,255,255,.08);
}

.why-grid, .sector-grid, .vision-grid, .project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.why-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
.icon-line { padding: 20px; border-radius: 8px; font-weight: 800; color: var(--silver); }
.icon-line i { color: var(--gold-light); margin-right: 12px; }

.sector-card {
    min-height: 126px;
    display: flex;
    align-items: end;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(201,154,46,.12), rgba(255,255,255,.035));
    color: var(--silver);
    font-weight: 900;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}

.timeline-step {
    border-top: 2px solid var(--gold);
    padding: 26px 22px;
    background: rgba(255,255,255,.05);
    border-radius: 0 0 8px 8px;
}

.timeline-step span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #050505;
    border-radius: 50%;
    font-weight: 900;
    margin-bottom: 18px;
}

.timeline-step h3 { font-family: "Rajdhani", sans-serif; font-size: 27px; }

.cta-section { padding: 40px 0 96px; }
.cta-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(241,210,122,.3);
    border-radius: 8px;
    padding: clamp(32px, 6vw, 70px);
    background: linear-gradient(135deg, rgba(201,154,46,.28), rgba(255,255,255,.05)), #090909;
    box-shadow: 0 0 80px rgba(201,154,46,.16);
}

.cta-box p { max-width: 760px; color: var(--silver); font-size: 18px; }
.cta-box .btn { margin: 10px 10px 0 0; }

.page-hero {
    position: relative;
    isolation: isolate;
    min-height: 430px;
    display: flex;
    align-items: center;
    background: url("../img/hero-3.jpg") center/cover;
}

.breadcrumb-premium { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-weight: 800; margin-bottom: 14px; }
.breadcrumb-premium a { color: var(--gold-light); }
.breadcrumb-premium span::before { content: "/"; margin-right: 10px; color: var(--gold); }

.vision-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vision-grid .glass-card, .quality-panel { padding: 30px; border-radius: 8px; }
.quality-panel { margin-top: 28px; }

.service-list { display: grid; gap: 18px; }
.service-row {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 26px;
    padding: 18px;
    border-radius: 8px;
    align-items: center;
}
.service-row img { width: 100%; height: 230px; object-fit: cover; border-radius: 6px; }
.service-row i { color: var(--gold-light); font-size: 28px; }
.service-row h2 { font-size: clamp(28px, 3vw, 42px); }
.blog-strip { margin-top: 40px; padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.045); }

.detail-content img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 8px; margin-bottom: 28px; }
.quote-sidebar {
    position: sticky;
    top: 115px;
    border-radius: 8px;
    padding: 28px;
}
.quote-sidebar .btn { margin-top: 12px; }

.project-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: #111;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: .35s ease; }
.project-card:hover img { transform: scale(1.05); opacity: .72; }
.project-card div { position: absolute; inset: auto 20px 20px; }
.project-card span { color: var(--gold-light); font-weight: 900; }
.project-card h2 { font-family: "Rajdhani", sans-serif; font-size: 32px; }

.contact-panel, .contact-form { padding: 26px; border-radius: 8px; }
.contact-panel img { border-radius: 6px; margin-bottom: 20px; }
.contact-panel a, .contact-panel span {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: var(--silver);
    font-weight: 800;
}
.contact-panel i { color: var(--gold-light); }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    color: var(--text);
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    padding: 15px 16px;
    outline: 0;
    transition: .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,154,46,.12);
}
.contact-form select option { color: #111; }
.map-placeholder {
    min-height: 190px;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-weight: 900;
    background: linear-gradient(135deg, rgba(201,154,46,.12), rgba(255,255,255,.04));
}

.footer {
    padding: 72px 0 24px;
    background: #030303;
    border-top: 1px solid var(--line);
}
.footer-logo { width: 260px; height: 92px; object-fit: contain; margin-bottom: 18px; }
.footer h3 { font-family: "Rajdhani", sans-serif; color: var(--gold-light); font-size: 25px; margin-bottom: 18px; }
.footer p, .footer a, .footer span { display: block; color: var(--muted); margin-bottom: 10px; }
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom a { display: inline; color: var(--gold-light); }

.floating-whatsapp, .to-top {
    position: fixed;
    right: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 999;
    border: 0;
}
.floating-whatsapp {
    bottom: 88px;
    background: #1fb65f;
    color: #fff;
    font-size: 27px;
    box-shadow: 0 16px 34px rgba(31,182,95,.35);
}
.to-top {
    bottom: 24px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #050505;
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
}
.to-top.visible { opacity: 1; pointer-events: auto; }

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

@media (max-width: 1199px) {
    .service-grid, .why-grid, .sector-grid, .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    .hero { min-height: 760px; }
    .hero-stats, .timeline, .mini-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-row { grid-template-columns: 1fr; }
    .service-row img { height: 260px; }
    .quote-sidebar { position: static; }
}

@media (max-width: 575px) {
    .navbar-brand img { width: 174px; height: 62px; }
    .premium-nav { min-height: 74px; }
    .hero { min-height: 720px; }
    .hero-content { padding-top: 70px; }
    .hero h1, .page-hero h1 { font-size: 43px; }
    .hero-stats, .service-grid, .why-grid, .sector-grid, .vision-grid, .project-grid, .mini-features, .why-grid.compact { grid-template-columns: 1fr; }
    .section { padding: 68px 0; }
    .page-hero { min-height: 360px; }
    .timeline { grid-template-columns: 1fr; }
    .footer-bottom { display: block; }
}

/* Premium upgrade pass */
.topbar {
    background: linear-gradient(90deg, #020202, #0c0a05 48%, #020202);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-right span {
    color: var(--silver);
    font-weight: 700;
}

.premium-nav {
    min-height: 96px;
    background: linear-gradient(180deg, rgba(6,6,6,.96), rgba(6,6,6,.82));
}

.premium-nav > .container-xxl {
    gap: 18px;
}

.brand-plate {
    width: 245px;
    height: 84px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid rgba(241,210,122,.2);
    border-radius: 8px;
    background: radial-gradient(circle at 30% 30%, rgba(241,210,122,.12), rgba(255,255,255,.035) 62%, rgba(0,0,0,.2));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 50px rgba(0,0,0,.22);
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-shell {
    padding: 7px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    background: rgba(255,255,255,.035);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

.nav-link i {
    color: var(--gold-light);
    font-size: 13px;
    opacity: .88;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(201,154,46,.08);
}

.nav-cta {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.hero-premium {
    min-height: calc(100vh - 96px);
}

.hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 72% 48%, rgba(241,210,122,.18), transparent 28%),
        linear-gradient(90deg, rgba(0,0,0,.93) 0%, rgba(0,0,0,.72) 44%, rgba(0,0,0,.36) 100%);
}

.hero-premium::after {
    background:
        linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.86)),
        linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.18));
}

.hero-slide {
    animation: heroBreath 12s ease-in-out infinite alternate;
    filter: saturate(1.08) contrast(1.08);
}

@keyframes heroBreath {
    from { transform: scale(1.03); }
    to { transform: scale(1.09); }
}

.hero-scan {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(241,210,122,.16), transparent);
    height: 34%;
    opacity: .18;
    animation: scanMove 6s linear infinite;
}

@keyframes scanMove {
    from { transform: translateY(-80%); }
    to { transform: translateY(260%); }
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
}

.hero-copy {
    max-width: 980px;
}

.hero-copy h1 {
    text-shadow: 0 18px 55px rgba(0,0,0,.65);
}

.hero-command {
    position: relative;
    min-height: 540px;
    padding: 20px;
    border: 1px solid rgba(241,210,122,.28);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
        rgba(3,3,3,.62);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 90px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.09);
    overflow: hidden;
}

.hero-command::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    pointer-events: none;
}

.command-top {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--silver);
    font-size: 13px;
    font-weight: 800;
}

.command-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 16px rgba(241,210,122,.6);
}

.command-top strong {
    margin-left: auto;
    color: var(--gold-light);
}

.radar-wrap {
    position: relative;
    min-height: 310px;
    display: grid;
    place-items: center;
    margin: 22px 0;
}

.radar {
    position: absolute;
    width: min(310px, 80%);
    aspect-ratio: 1;
    border: 1px solid rgba(241,210,122,.45);
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, transparent 0 38px, rgba(241,210,122,.16) 39px 40px),
        conic-gradient(from 0deg, rgba(241,210,122,.32), transparent 31%, transparent);
    animation: radarSpin 6s linear infinite;
}

@keyframes radarSpin {
    to { transform: rotate(360deg); }
}

.radar-wrap img {
    position: relative;
    width: min(270px, 70%);
    filter: drop-shadow(0 20px 35px rgba(0,0,0,.65)) drop-shadow(0 0 28px rgba(241,210,122,.18));
}

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

.command-list div {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    background: rgba(0,0,0,.28);
}

.command-list i,
.sector-icon {
    color: var(--gold-light);
}

.command-list span {
    color: var(--silver);
    font-weight: 800;
}

.command-list strong {
    color: #1fe083;
    font-size: 12px;
}

.services-premium {
    background: linear-gradient(180deg, #050505, #0b0b0b);
}

.premium-photo-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.premium-photo-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 5px;
    background: linear-gradient(120deg, transparent 0 38%, rgba(241,210,122,.16) 44%, transparent 52%);
    transform: translateX(-80%);
    animation: photoSweep 5.6s ease-in-out infinite;
    pointer-events: none;
}

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

.photo-status {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(241,210,122,.32);
    border-radius: 8px;
    background: rgba(5,5,5,.76);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0,0,0,.32);
}

.photo-status.top {
    top: 30px;
    left: 30px;
    padding: 13px 16px;
    color: var(--gold-light);
    font-weight: 900;
}

.photo-status.bottom {
    right: 30px;
    bottom: 30px;
    padding: 16px 18px;
}

.photo-status strong {
    color: var(--gold-light);
    font-family: "Rajdhani", sans-serif;
    font-size: 34px;
}

.photo-status span {
    color: var(--silver);
    font-weight: 800;
}

.premium-mini span {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    transition: .25s ease;
}

.premium-mini span:hover {
    transform: translateY(-5px);
    border-color: rgba(241,210,122,.52);
}

.premium-mini strong,
.premium-mini small {
    display: block;
}

.premium-mini small {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.5;
}

.why-premium .icon-line {
    display: flex;
    align-items: center;
    min-height: 92px;
}

.why-premium .icon-line i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border: 1px solid rgba(241,210,122,.28);
    border-radius: 8px;
    background: rgba(201,154,46,.1);
}

.sector-premium-section {
    background:
        linear-gradient(rgba(201,154,46,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,154,46,.03) 1px, transparent 1px),
        #050505;
    background-size: 54px 54px;
}

.sector-photo-grid {
    gap: 18px;
}

.sector-photo-grid .sector-card {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    overflow: hidden;
    isolation: isolate;
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 70px rgba(0,0,0,.28);
    transition: .3s ease;
}

.sector-photo-grid .sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38) 36%, rgba(0,0,0,.92)),
        linear-gradient(90deg, rgba(0,0,0,.7), transparent 72%),
        radial-gradient(circle at 20% 18%, rgba(241,210,122,.22), transparent 32%);
}

.sector-photo-grid .sector-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    pointer-events: none;
}

.sector-photo-grid .sector-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241,210,122,.62);
    background-position: center 42%;
}

.sector-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid rgba(241,210,122,.42);
    background: rgba(5,5,5,.72);
    font-size: 21px;
}

.sector-card h3 {
    font-family: "Rajdhani", sans-serif;
    font-size: 28px;
    line-height: 1;
    margin: 0 0 10px;
    text-shadow: 0 12px 26px rgba(0,0,0,.75);
}

.sector-card p {
    max-width: 330px;
    margin: 0;
    color: rgba(245,245,245,.92);
    font-size: 14px;
    line-height: 1.55;
    text-shadow: 0 8px 22px rgba(0,0,0,.75);
}

@media (max-width: 1399px) {
    .brand-plate { width: 215px; }
    .nav-link { padding-inline: 10px !important; font-size: 14px; }
}

@media (max-width: 1199px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-command { max-width: 620px; }
}

@media (max-width: 991px) {
    .brand-plate { width: 190px; height: 70px; }
    .hero-command { min-height: auto; }
    .radar-wrap { min-height: 240px; }
}

@media (max-width: 575px) {
    .brand-plate { width: 160px; height: 62px; padding: 6px 10px; }
    .hero-premium { min-height: auto; }
    .hero-layout { padding-top: 54px; padding-bottom: 58px; }
    .hero-command { padding: 16px; }
    .command-list div { grid-template-columns: 32px 1fr; }
    .command-list strong { grid-column: 2; }
    .sector-photo-grid .sector-card { min-height: 230px; }
    .photo-status { position: static; margin-top: 10px; }
}
