/* ═══════════════════════════════════════════
   IRIDIUM TAX — DESIGN SYSTEM
═══════════════════════════════════════════ */
:root {
    --g1: #7D5A0A;
    --g2: #B8860B;
    --g3: #D4A017;
    --g4: #E8BA3A;
    --g5: #F5C842;
    --g6: #FAE08A;
    --g7: #FEF6D5;
    --black: #080808;
    --off-white: #FAFAF8;
    --warm-white: #F5F3EE;
    --light-cream: #EDE9DF;
    --text-dark: #111008;
    --text-mid: #3D3520;
    --text-soft: #8A7D5A;
    --border: rgba(184, 134, 11, 0.18);
    --border-strong: rgba(184, 134, 11, 0.4);
    --shadow-gold: rgba(184, 134, 11, 0.2);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--g4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: multiply;
}

.cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--g3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--g5);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* ── GOLD TEXT ── */
.gold {
    background: linear-gradient(135deg, var(--g1) 0%, var(--g4) 40%, var(--g2) 80%, var(--g5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--g2), var(--g5), var(--g2));
    background-size: 200% auto;
    color: var(--black);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 34px;
    border: none;
    cursor: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    transition: background-position 0.5s, transform 0.25s, box-shadow 0.3s;
    box-shadow: 0 8px 28px var(--shadow-gold);
}

.gold-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(184, 134, 11, 0.4);
    color: var(--black);
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--g3);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 34px;
    border: 1px solid var(--g3);
    cursor: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    transition: background 0.3s, color 0.3s;
}

.ghost-btn:hover {
    background: rgba(212, 160, 23, 0.08);
    color: var(--g4);
}

/* ════════════════════════════════
   NEW IRIDIUM HEADER
════════════════════════════════ */

.it-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 8px 0;
    /* reduced */
    background: rgba(8, 8, 8, .72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 200, 66, .10);
    transition: .35s ease;
}

.it-header.scrolled {
    padding: 6px 0;
    /* reduced */
    background: rgba(8, 8, 8, .96);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .36);
    border-bottom-color: rgba(245, 200, 66, .22);
}

.it-container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.it-nav {
    min-height: 64px;
    /* shorter header */
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

/* Logo */
.it-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    width: 220px;
    /* bigger logo area */
    flex-shrink: 0;
}

.it-logo img {
    width: 200px;
    /* bigger logo */
    max-height: 88px;
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(0 8px 20px rgba(245, 200, 66, .22)) drop-shadow(0 2px 8px rgba(0, 0, 0, .55));
    transition: .35s ease;
}

.it-header.scrolled .it-logo img {
    width: 185px;
    max-height: 80px;
}

.it-logo:hover img {
    transform: scale(1.04);
}

/* Desktop Menu */
.it-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.it-menu a {
    position: relative;
    color: rgba(250, 250, 248, .88);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 6px 0;
    /* less vertical space */
    transition: .3s ease;
}

.it-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--g6), var(--g5), var(--g3));
    transform: translateX(-50%);
    transition: .3s ease;
}

.it-menu a:hover {
    color: var(--g5);
}

.it-menu a:hover::after {
    width: 100%;
}

/* Right Area */
.it-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.it-phone {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(250, 250, 248, .9);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: .3s ease;
}

.it-phone i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    font-size: 16px;
}

.it-phone:hover {
    color: var(--g5);
}

.it-btn {
    min-height: 42px;
    /* slightly shorter */
    padding: 0 22px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(245, 200, 66, .22);
    transition: .35s ease;
    white-space: nowrap;
}

.it-btn:hover {
    transform: translateY(-3px);
    color: var(--black);
    box-shadow: 0 20px 42px rgba(245, 200, 66, .35);
}

/* Toggle */
.it-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(245, 200, 66, .35);
    border-radius: 50%;
    background: rgba(250, 250, 248, .08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
}

.it-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 20px;
    background: var(--g5);
    transition: .3s ease;
}

.it-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.it-toggle.active span:nth-child(2) {
    opacity: 0;
}

.it-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Tablet */
@media(max-width:1100px) {
    .it-nav {
        grid-template-columns: auto auto;
        min-height: 60px;
    }

    .it-logo {
        width: 190px;
    }

    .it-logo img {
        width: 175px;
        max-height: 76px;
    }

    .it-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(8, 8, 8, .98);
        border: 1px solid rgba(245, 200, 66, .24);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: .35s ease;
    }

    .it-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .it-menu a {
        width: 100%;
        padding: 15px 16px;
        border-radius: 16px;
        color: rgba(250, 250, 248, .9);
    }

    .it-menu a:hover {
        background: rgba(245, 200, 66, .11);
    }

    .it-menu a::after {
        display: none;
    }

    .it-actions {
        margin-left: auto;
    }

    .it-toggle {
        display: flex;
    }

    .it-phone span {
        display: none;
    }

    .it-btn {
        padding: 0 18px;
        min-height: 40px;
    }
}

/* Mobile */
@media(max-width:576px) {
    .it-header {
        padding: 8px 0;
    }

    .it-nav {
        min-height: 56px;
        gap: 12px;
    }

    .it-logo {
        width: auto;
    }

    .it-logo img {
        width: 150px;
        /* bigger than before */
        max-height: 64px;
    }

    .it-header.scrolled .it-logo img {
        width: 140px;
        max-height: 58px;
    }

    .it-phone {
        display: none;
    }

    .it-btn {
        display: none;
    }

    .it-toggle {
        width: 42px;
        height: 42px;
    }

    .it-menu {
        left: 0;
        right: 0;
    }
}

/* ════════════════════════════════
   ABOUT US — DARK PREMIUM SECTION
════════════════════════════════ */

.ir-about-section {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(245, 200, 66, .16), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(212, 160, 23, .12), transparent 30%),
        linear-gradient(135deg, #080808 0%, #111008 45%, #080808 100%);
    color: var(--off-white);
    font-family: 'Outfit', sans-serif;
}

.ir-about-section * {
    box-sizing: border-box;
}

.ir-about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 200, 66, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 200, 66, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .5;
    pointer-events: none;
}

.ir-about-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .16), transparent 68%);
    pointer-events: none;
}

.ir-about-section .container {
    position: relative;
    z-index: 2;
}

/* Top Grid */
.ir-about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.ir-section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--g5);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.ir-section-label span {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--g5), transparent);
}

.ir-about-left h2 {
    margin: 0 0 26px;
    color: var(--warm-white);
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.8px;
}

.ir-about-left h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ir-about-left>p {
    max-width: 620px;
    margin: 0 0 18px;
    color: rgba(245, 243, 238, .66);
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
}

/* Highlight */
.ir-about-highlight {
    display: flex;
    gap: 18px;
    margin-top: 34px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(250, 250, 248, .07);
    border: 1px solid rgba(245, 200, 66, .18);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .25);
}

.ir-about-highlight>i {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    font-size: 24px;
    box-shadow: 0 16px 34px rgba(245, 200, 66, .25);
}

.ir-about-highlight h4 {
    margin: 0 0 8px;
    color: var(--warm-white);
    font-size: 19px;
    font-weight: 900;
}

.ir-about-highlight p {
    margin: 0;
    color: rgba(245, 243, 238, .62);
    font-size: 14px;
    line-height: 1.7;
}

/* Right Panel */
.ir-about-panel {
    position: relative;
    padding: 34px;
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(250, 250, 248, .14), rgba(250, 250, 248, .045));
    border: 1px solid rgba(245, 200, 66, .22);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, .42),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}



.ir-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 26px;
}

.ir-panel-top span {
    display: block;
    margin-bottom: 10px;
    color: var(--g5);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ir-panel-top h3 {
    margin: 0;
    color: var(--warm-white);
    font-size: 34px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -.8px;
}

.ir-panel-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    font-size: 28px;
    box-shadow: 0 18px 42px rgba(245, 200, 66, .26);
}

.ir-about-panel>p {
    margin: 0 0 28px;
    color: rgba(245, 243, 238, .64);
    font-size: 15px;
    line-height: 1.8;
}

.ir-panel-list {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.ir-panel-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(8, 8, 8, .28);
    border: 1px solid rgba(245, 200, 66, .12);
    color: rgba(245, 243, 238, .78);
    font-size: 14px;
    font-weight: 700;
}

.ir-panel-list i {
    color: var(--g5);
    font-size: 18px;
}

.ir-panel-badge {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    box-shadow: 0 20px 45px rgba(245, 200, 66, .20);
}

.ir-panel-badge strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

.ir-panel-badge span {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
    color: rgba(8, 8, 8, .72);
}

/* Values */
.ir-values-wrap {
    margin-top: 115px;
}

.ir-values-head {
    text-align: center;
    margin-bottom: 42px;
}

.ir-values-head .ir-section-label {
    justify-content: center;
}

.ir-values-head h3 {
    margin: 0;
    color: var(--warm-white);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1.2px;
}

.ir-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ir-value-card {
    min-height: 330px;
    padding: 28px;
    border-radius: 30px;
    background: rgba(250, 250, 248, .065);
    border: 1px solid rgba(245, 200, 66, .16);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .23);
    transition: .35s ease;
}

.ir-value-card:hover {
    transform: translateY(-8px);
    background: rgba(250, 250, 248, .095);
    border-color: rgba(245, 200, 66, .35);
}

.ir-value-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--black);
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    font-size: 25px;
}

.ir-value-card h4 {
    margin: 0 0 12px;
    color: var(--warm-white);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.ir-value-card p {
    margin: 0 0 22px;
    color: rgba(245, 243, 238, .58);
    font-size: 14px;
    line-height: 1.72;
}

.ir-value-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--g5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: .3s ease;
}

.ir-value-card a:hover {
    gap: 13px;
    color: var(--g6);
}

/* Bottom */
.ir-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 24px;
    margin-top: 70px;
}

.ir-info-card,
.ir-trust-card {
    padding: 30px;
    border-radius: 30px;
    background: rgba(250, 250, 248, .07);
    border: 1px solid rgba(245, 200, 66, .16);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.ir-info-card span,
.ir-trust-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--g5);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ir-info-card h3 {
    margin: 0 0 14px;
    color: var(--warm-white);
    font-size: 25px;
    line-height: 1.22;
    font-weight: 900;
}

.ir-info-card p {
    margin: 0;
    color: rgba(245, 243, 238, .6);
    font-size: 14px;
    line-height: 1.75;
}

.ir-trust-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 13px;
}

.ir-trust-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(245, 243, 238, .72);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.ir-trust-card i {
    color: var(--g5);
    font-size: 18px;
    margin-top: 1px;
}

.ir-about-final {
    margin-top: 38px;
    padding: 28px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(245, 200, 66, .18), rgba(184, 134, 11, .08));
    border: 1px solid rgba(245, 200, 66, .22);
}

.ir-about-final p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--warm-white);
    font-size: 20px;
    line-height: 1.65;
    font-weight: 800;
}

/* Animations */
.ir-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s ease, transform .8s ease;
}

.ir-reveal.ir-visible {
    opacity: 1;
    transform: translateY(0);
}

.ir-delay-1 {
    transition-delay: .12s;
}

.ir-delay-2 {
    transition-delay: .22s;
}

.ir-delay-3 {
    transition-delay: .32s;
}

.ir-delay-4 {
    transition-delay: .42s;
}

/* Responsive */
@media(max-width:1100px) {
    .ir-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ir-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:991px) {
    .ir-about-section {
        padding: 90px 0;
    }

    .ir-about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ir-about-left,
    .ir-values-head {
        text-align: center;
    }

    .ir-section-label {
        justify-content: center;
    }

    .ir-about-left>p {
        margin-left: auto;
        margin-right: auto;
    }

    .ir-about-highlight {
        text-align: left;
    }

    .ir-about-panel::before {
        display: none;
    }

    .ir-values-wrap {
        margin-top: 80px;
    }
}

@media(max-width:576px) {
    .ir-about-section {
        padding: 75px 0;
    }

    .ir-about-left h2 {
        font-size: 38px;
    }

    .ir-about-left>p {
        font-size: 15px;
    }

    .ir-about-highlight {
        flex-direction: column;
        padding: 22px;
    }

    .ir-about-panel {
        padding: 24px;
        border-radius: 26px;
    }

    .ir-panel-top {
        flex-direction: column;
    }

    .ir-panel-top h3 {
        font-size: 28px;
    }

    .ir-values-grid {
        grid-template-columns: 1fr;
    }

    .ir-value-card {
        min-height: auto;
    }

    .ir-info-card,
    .ir-trust-card {
        padding: 24px;
        border-radius: 24px;
    }

    .ir-about-final p {
        font-size: 17px;
    }
}


/* ─────────────────────────────
   PREMIUM HERO CSS
   Uses your existing :root variables
───────────────────────────── */

.premium-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    color: var(--off-white);
    background: var(--black);
}

/* Background Slider */
.ph-bg-slider,
.ph-bg-slide {
    position: absolute;
    inset: 0;
}

.ph-bg-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 6s ease;
}

.ph-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Dark Premium Overlay */
.ph-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(8, 8, 8, .94) 0%,
            rgba(8, 8, 8, .84) 42%,
            rgba(8, 8, 8, .52) 100%),
        radial-gradient(circle at 78% 42%,
            rgba(212, 160, 23, .32),
            transparent 38%);
    z-index: 1;
}

/* Decorative Glow Shapes */
.ph-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    filter: blur(3px);
}

.ph-shape-1 {
    width: 420px;
    height: 420px;
    right: -150px;
    top: -130px;
    background: rgba(212, 160, 23, .18);
    animation: phFloat 8s ease-in-out infinite;
}

.ph-shape-2 {
    width: 270px;
    height: 270px;
    left: -110px;
    bottom: -90px;
    background: rgba(245, 200, 66, .14);
    animation: phFloat 10s ease-in-out infinite reverse;
}

@keyframes phFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-28px);
    }
}

/* Main Container */
.ph-container {
    width: 100%;
    max-width: 1240px;
    margin: auto;
    padding: 110px 22px 85px;
    position: relative;
    z-index: 3;
}

.ph-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
}

/* Left Content */
.ph-content {
    max-width: 650px;
}

.ph-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid var(--border-strong);
    background: rgba(250, 250, 248, .08);
    border-radius: 100px;
    color: var(--g6);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(184, 134, 11, .12);
    animation: phUp .8s ease both;
}

.ph-tag i {
    color: var(--g5);
}

.ph-content h1 {
    margin: 0 0 24px;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--off-white);
    animation: phUp .8s ease .12s both;
}

.ph-content h1 span {
    display: block;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ph-content p {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--light-cream);
    margin: 0 0 34px;
    animation: phUp .8s ease .24s both;
}

/* Buttons */
.ph-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: phUp .8s ease .36s both;
}

.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: .35s ease;
}

.ph-btn-primary {
    color: var(--black);
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    box-shadow: 0 18px 38px rgba(184, 134, 11, .32);
}

.ph-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 48px rgba(184, 134, 11, .45);
    color: var(--black);
}

.ph-btn-light {
    color: var(--off-white);
    background: rgba(250, 250, 248, .10);
    border: 1px solid rgba(250, 250, 248, .20);
    backdrop-filter: blur(12px);
}

.ph-btn-light:hover {
    background: var(--off-white);
    color: var(--text-dark);
    transform: translateY(-4px);
}

/* Stats */
.ph-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 45px;
    max-width: 590px;
    animation: phUp .8s ease .48s both;
}

.ph-stats div {
    padding: 20px 16px;
    background: rgba(250, 250, 248, .08);
    border: 1px solid rgba(250, 250, 248, .14);
    border-radius: 22px;
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.ph-stats h3 {
    margin: 0 0 6px;
    color: var(--g5);
    font-size: 28px;
    font-weight: 900;
}

.ph-stats span {
    color: var(--light-cream);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* Right Image Section */
.ph-visual {
    display: flex;
    justify-content: center;
    animation: phRight .9s ease .25s both;
}

.ph-image-card {
    position: relative;
    width: min(100%, 470px);
    min-height: 560px;
    border-radius: 36px;
    padding: 16px;
    background: linear-gradient(145deg,
            rgba(250, 250, 248, .22),
            rgba(250, 250, 248, .05));
    border: 1px solid rgba(250, 250, 248, .24);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .48);
    backdrop-filter: blur(14px);
}

.ph-image-card::before {
    content: "";
    position: absolute;
    inset: 38px -22px -22px 38px;
    border-radius: 36px;
    border: 2px solid rgba(245, 200, 66, .45);
    z-index: -1;
}

.ph-image-card img {
    width: 100%;
    height: 528px;
    object-fit: cover;
    object-position: center;
    border-radius: 26px;
    display: block;
    filter: saturate(1.05) contrast(1.04);
}

/* Floating Cards */
.ph-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--off-white);
    color: var(--text-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
    animation: phBadge 4s ease-in-out infinite;
    border: 1px solid var(--border);
}

.ph-floating-card i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--black);
    flex-shrink: 0;
}

.ph-floating-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: var(--text-dark);
}

.ph-floating-card span {
    display: block;
    font-size: 12px;
    color: var(--text-soft);
    margin-top: 3px;
}

.card-one {
    top: 72px;
    left: -42px;
}

.card-two {
    right: -38px;
    bottom: 110px;
    animation-delay: 1.2s;
}

/* Rating Circle */
.ph-experience {
    position: absolute;
    left: 28px;
    bottom: 34px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(184, 134, 11, .45);
    border: 6px solid var(--off-white);
}

.ph-experience strong {
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
}

.ph-experience span {
    font-size: 12px;
    font-weight: 800;
    margin-top: 5px;
    color: var(--text-dark);
}

/* Dots */
.ph-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 9px;
}

.ph-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(250, 250, 248, .45);
    cursor: pointer;
    transition: .35s ease;
}

.ph-dot.active {
    width: 36px;
    border-radius: 40px;
    background: var(--g5);
}

/* Animations */
@keyframes phBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes phUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phRight {
    from {
        opacity: 0;
        transform: translateX(45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media(max-width:991px) {
    .premium-hero {
        min-height: auto;
    }

    .ph-container {
        padding: 110px 20px 90px;
    }

    .ph-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ph-content {
        text-align: center;
        margin: auto;
    }

    .ph-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .ph-buttons {
        justify-content: center;
    }

    .ph-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .ph-image-card {
        max-width: 430px;
        min-height: auto;
    }

    .ph-image-card img {
        height: 460px;
    }

    .card-one {
        left: 10px;
    }

    .card-two {
        right: 10px;
    }
}

@media(max-width:576px) {
    .ph-container {
        padding: 90px 15px 80px;
    }

    .ph-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .ph-content p {
        font-size: 15px;
    }

    .ph-btn {
        width: 100%;
    }

    .ph-stats {
        grid-template-columns: 1fr;
    }

    .ph-image-card {
        padding: 10px;
        border-radius: 26px;
    }

    .ph-image-card img {
        height: 360px;
        border-radius: 20px;
    }

    .ph-image-card::before {
        display: none;
    }

    .ph-floating-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 12px;
        animation: none;
    }

    .ph-experience {
        width: 90px;
        height: 90px;
        left: 18px;
        bottom: 18px;
    }

    .ph-experience strong {
        font-size: 28px;
    }

    .ph-experience span {
        font-size: 10px;
    }
}

/* ════════════════════════════════
   TICKER STRIP
════════════════════════════════ */
.ticker-strip {
    background: linear-gradient(90deg, var(--g1), var(--g3) 30%, var(--g5) 60%, var(--g3) 80%, var(--g1));
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 36px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--black);
    opacity: 0.4;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ════════════════════════════════
   SERVICES SECTION — IRIDIUM TAX LTD
════════════════════════════════ */

.services-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(212, 160, 23, .10), transparent 30%),
        linear-gradient(180deg, var(--off-white) 0%, var(--warm-white) 100%);
    color: var(--text-dark);
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 134, 11, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 134, 11, .045) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.services-head {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 60px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--g2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.section-label span {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--g3), transparent);
}

.section-h2 {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.section-h2 em,
.section-h2 .gold {
    font-style: normal;
    background: linear-gradient(135deg, var(--g1), var(--g4), var(--g2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-intro {
    max-width: 470px;
    margin: 0 0 8px auto;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Service Card */
.svc-card,
.svc-goal-card {
    position: relative;
    min-height: 430px;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(8, 8, 8, .08);
    overflow: hidden;
    transition: .35s ease;
}

.svc-card::before,
.svc-goal-card::before {
    content: "";
    position: absolute;
    inset: auto -80px -90px auto;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, .16), transparent 68%);
    transition: .35s ease;
}

.svc-card:hover,
.svc-goal-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-strong);
    box-shadow: 0 30px 80px rgba(8, 8, 8, .13);
}

.svc-card:hover::before,
.svc-goal-card:hover::before {
    transform: scale(1.25);
}

.svc-card.featured {
    background:
        linear-gradient(145deg, rgba(8, 8, 8, .96), rgba(17, 16, 8, .94));
    color: var(--off-white);
    border-color: rgba(245, 200, 66, .32);
    box-shadow: 0 28px 80px rgba(8, 8, 8, .22);
}

.svc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.svc-num {
    color: rgba(184, 134, 11, .28);
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
}

.svc-card.featured .svc-num {
    color: rgba(245, 200, 66, .24);
}

.svc-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    font-size: 28px;
    box-shadow: 0 16px 35px rgba(184, 134, 11, .24);
}

.svc-title {
    margin: 0 0 16px;
    color: var(--text-dark);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.6px;
}

.svc-card.featured .svc-title {
    color: var(--warm-white);
}

.svc-desc {
    margin: 0 0 24px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.svc-card.featured .svc-desc {
    color: rgba(245, 243, 238, .62);
}

/* Service List */
.svc-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.svc-card.featured .svc-list li {
    color: rgba(245, 243, 238, .78);
}

.svc-list i {
    color: var(--g3);
    font-size: 16px;
    margin-top: 2px;
}

/* Links */
.svc-arrow,
.goal-btn {
    position: absolute;
    left: 34px;
    bottom: 34px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--g2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: .3s ease;
}

.svc-card.featured .svc-arrow {
    color: var(--g5);
}

.svc-arrow:hover,
.goal-btn:hover {
    gap: 14px;
    color: var(--g1);
}

.svc-card.featured .svc-arrow:hover {
    color: var(--g6);
}

/* Goal Card */
.svc-goal-card {
    background:
        linear-gradient(145deg, rgba(125, 90, 10, .96), rgba(212, 160, 23, .92));
    color: var(--black);
    border-color: rgba(184, 134, 11, .35);
}

.goal-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 250, 248, .92);
    color: var(--g2);
    font-size: 32px;
    margin-bottom: 34px;
    box-shadow: 0 16px 35px rgba(8, 8, 8, .16);
}

.svc-goal-card h3 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.8px;
}

.svc-goal-card p {
    margin: 0;
    color: rgba(8, 8, 8, .72);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 700;
}

.goal-btn {
    color: var(--black);
}

/* Responsive */
@media(max-width:991px) {
    .services-section {
        padding: 90px 0;
    }

    .services-head {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
        margin-bottom: 45px;
    }

    .section-label {
        justify-content: center;
    }

    .services-intro {
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .svc-card,
    .svc-goal-card {
        min-height: auto;
        padding-bottom: 88px;
    }
}

@media(max-width:576px) {
    .services-section {
        padding: 75px 0;
    }

    .section-h2 {
        font-size: 38px;
    }

    .services-intro {
        font-size: 15px;
    }

    .svc-card,
    .svc-goal-card {
        padding: 26px;
        padding-bottom: 84px;
        border-radius: 24px;
    }

    .svc-num {
        font-size: 40px;
    }

    .svc-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 24px;
    }

    .svc-title {
        font-size: 24px;
    }

    .svc-arrow,
    .goal-btn {
        left: 26px;
        bottom: 28px;
    }
}


/* ════════════════════════════════
   CLAIM TYPES SECTION — ONE CARD PER ROW
════════════════════════════════ */

.claim-types-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(212, 160, 23, .11), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(245, 200, 66, .14), transparent 30%),
        linear-gradient(180deg, var(--off-white) 0%, var(--warm-white) 100%);
    color: var(--text-dark);
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
}

.claim-types-section * {
    box-sizing: border-box;
}

.claim-types-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 134, 11, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 134, 11, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.claim-types-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.claim-types-head {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 42px;
}

.claim-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--g2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.claim-label span {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--g3), transparent);
}

.claim-types-head h2 {
    margin: 0;
    color: var(--text-dark);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.claim-types-head h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--g1), var(--g4), var(--g2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.claim-types-head p {
    max-width: 520px;
    margin: 0 0 8px auto;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

/* Note Box */
.claim-note-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 26px;
    margin-bottom: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(8, 8, 8, .08);
}

.claim-note-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    font-size: 25px;
    box-shadow: 0 14px 30px rgba(184, 134, 11, .22);
}

.claim-note-box h3 {
    margin: 0 0 7px;
    color: var(--text-dark);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.claim-note-box p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.claim-note-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 100px;
    background: var(--black);
    color: var(--off-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    transition: .3s ease;
}

.claim-note-link:hover {
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    transform: translateY(-2px);
}

/* One Card Per Line */
.claim-types-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

/* Card */
.claim-type-card {
    width: 100%;
    border-radius: 28px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(8, 8, 8, .075);
    overflow: hidden;
    transition: .35s ease;
}

.claim-type-card:hover {
    border-color: var(--border-strong);
    box-shadow: 0 28px 70px rgba(8, 8, 8, .12);
    transform: translateY(-3px);
}

.claim-type-card[open] {
    background: #fff;
    border-color: rgba(184, 134, 11, .34);
}

/* Summary */
.claim-type-card summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 108px;
}

.claim-type-card summary::-webkit-details-marker {
    display: none;
}

.claim-card-left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.claim-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    font-size: 26px;
    box-shadow: 0 14px 30px rgba(184, 134, 11, .18);
}

.claim-card-left span {
    display: block;
    color: rgba(184, 134, 11, .62);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 5px;
}

.claim-card-left h3 {
    margin: 0;
    color: var(--text-dark);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -.5px;
}

.claim-toggle-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g2);
    background: rgba(184, 134, 11, .08);
    transition: .3s ease;
}

.claim-type-card[open] .claim-toggle-icon {
    transform: rotate(45deg);
    background: var(--black);
    color: var(--g5);
}

/* Body */
.claim-card-body {
    padding: 0 28px 30px 110px;
    color: var(--text-soft);
}

.claim-body-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.claim-card-body h4 {
    margin: 18px 0 10px;
    color: var(--text-dark);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
}

.claim-card-body h4:first-child {
    margin-top: 0;
}

.claim-card-body p {
    margin: 0 0 14px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.claim-card-body ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.claim-card-body li {
    position: relative;
    padding-left: 26px;
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

.claim-card-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--g3);
    box-shadow: 0 0 0 5px rgba(212, 160, 23, .12);
}

.claim-highlight {
    margin: 20px 0;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(212, 160, 23, .10);
    border: 1px solid rgba(184, 134, 11, .20);
    color: var(--g1);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.6;
}

.claim-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--g2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: .3s ease;
}

.claim-card-link:hover {
    gap: 13px;
    color: var(--g1);
}

/* Responsive */
@media(max-width:991px) {
    .claim-types-section {
        padding: 90px 0;
    }

    .claim-types-head {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .claim-label {
        justify-content: center;
    }

    .claim-types-head p {
        margin: 0 auto;
    }

    .claim-note-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .claim-note-icon {
        margin: 0 auto;
    }

    .claim-note-link {
        width: max-content;
        margin: 0 auto;
    }

    .claim-body-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media(max-width:576px) {
    .claim-types-section {
        padding: 75px 0;
    }

    .claim-types-head h2 {
        font-size: 38px;
    }

    .claim-types-head p {
        font-size: 15px;
    }

    .claim-note-box {
        padding: 22px;
        border-radius: 22px;
    }

    .claim-type-card {
        border-radius: 22px;
    }

    .claim-type-card summary {
        padding: 20px;
        min-height: auto;
        align-items: flex-start;
    }

    .claim-card-left {
        align-items: flex-start;
        gap: 14px;
    }

    .claim-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 16px;
        font-size: 21px;
    }

    .claim-card-left h3 {
        font-size: 18px;
    }

    .claim-toggle-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .claim-card-body {
        padding: 0 20px 24px 20px;
    }

    .claim-note-link {
        width: 100%;
    }
}


/* ════════════════════════════════
   WHY SECTION — CLEAN VERSION
════════════════════════════════ */

.why-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 160, 23, .16), transparent 30%),
        linear-gradient(135deg, #080808 0%, #12110d 50%, #080808 100%);
    color: var(--off-white);
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 200, 66, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 200, 66, .035) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: .45;
    pointer-events: none;
}

.why-section .container {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

/* Left Content */
.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--g5);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.section-label span {
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--g5), transparent);
}

.why-content h2 {
    margin: 0 0 24px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    color: var(--warm-white);
    font-weight: 900;
    letter-spacing: -1.5px;
}

.why-content h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-main-text {
    max-width: 560px;
    margin: 0 0 34px;
    color: rgba(245, 243, 238, .68);
    font-size: 16px;
    line-height: 1.8;
}

/* Points */
.why-points {
    display: grid;
    gap: 15px;
}

.why-point {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(250, 250, 248, .055);
    border: 1px solid rgba(245, 200, 66, .14);
    transition: .3s ease;
}

.why-point:hover {
    transform: translateX(6px);
    background: rgba(250, 250, 248, .085);
    border-color: rgba(245, 200, 66, .34);
}

.why-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    font-size: 20px;
}

.why-point h4 {
    margin: 0 0 6px;
    color: var(--warm-white);
    font-size: 17px;
    font-weight: 900;
}

.why-point p {
    margin: 0;
    color: rgba(245, 243, 238, .58);
    font-size: 14px;
    line-height: 1.6;
}

.why-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--g6), var(--g5), var(--g3));
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(245, 200, 66, .22);
    transition: .35s ease;
}

.why-btn:hover {
    transform: translateY(-3px);
    color: var(--black);
    box-shadow: 0 24px 55px rgba(245, 200, 66, .35);
}

/* Right Visual */
.why-visual {
    position: relative;
}

.why-image-box {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 560px;
    border: 1px solid rgba(245, 200, 66, .24);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .45);
}

.why-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, .1) 0%, rgba(8, 8, 8, .85) 100%),
        radial-gradient(circle at 70% 20%, rgba(245, 200, 66, .28), transparent 34%);
    z-index: 1;
}

.why-image-box img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.05);
}

.why-image-overlay {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    padding: 26px;
    border-radius: 24px;
    background: rgba(8, 8, 8, .66);
    border: 1px solid rgba(245, 200, 66, .18);
    backdrop-filter: blur(14px);
}

.why-image-overlay span {
    display: block;
    margin-bottom: 10px;
    color: var(--g5);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.why-image-overlay h3 {
    margin: 0 0 10px;
    color: var(--warm-white);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.why-image-overlay p {
    margin: 0;
    color: rgba(245, 243, 238, .66);
    font-size: 14px;
    line-height: 1.6;
}

/* Small Stats */
.why-small-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.why-small-stats div {
    padding: 18px 14px;
    text-align: center;
    border-radius: 20px;
    background: rgba(250, 250, 248, .07);
    border: 1px solid rgba(245, 200, 66, .16);
}

.why-small-stats strong {
    display: block;
    color: var(--g5);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
}

.why-small-stats span {
    color: rgba(245, 243, 238, .58);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Responsive */
@media(max-width:991px) {
    .why-section {
        padding: 90px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-content {
        text-align: center;
    }

    .section-label {
        justify-content: center;
    }

    .why-main-text {
        margin-left: auto;
        margin-right: auto;
    }

    .why-point {
        text-align: left;
    }

    .why-image-box {
        min-height: 460px;
    }

    .why-image-box img {
        height: 460px;
    }
}

@media(max-width:576px) {
    .why-section {
        padding: 75px 0;
    }

    .why-content h2 {
        font-size: 38px;
    }

    .why-main-text {
        font-size: 15px;
    }

    .why-point {
        padding: 16px;
        border-radius: 18px;
    }

    .why-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }

    .why-point h4 {
        font-size: 16px;
    }

    .why-image-box {
        min-height: auto;
        border-radius: 24px;
    }

    .why-image-box img {
        height: 360px;
    }

    .why-image-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 20px;
        border-radius: 20px;
    }

    .why-image-overlay h3 {
        font-size: 22px;
    }

    .why-small-stats {
        grid-template-columns: 1fr;
    }

    .why-btn {
        width: 100%;
        padding: 0 18px;
        text-align: center;
    }
}

/* ════════════════════════════════
   PROCESS SECTION
════════════════════════════════ */
.process-section {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.process-row::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g4) 20%, var(--g4) 80%, transparent);
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.process-step:hover .step-circle {
    background: linear-gradient(135deg, var(--g2), var(--g5));
    border-color: transparent;
    box-shadow: 0 8px 28px var(--shadow-gold);
}

.step-num-inner {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--g2), var(--g5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s;
}

.process-step:hover .step-num-inner {
    background: var(--black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.83rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-cream);
    overflow: hidden;
}

.testi-track-wrap {
    overflow: hidden;
    margin-top: 60px;
}

.testi-track {
    display: flex;
    gap: 24px;
    animation: testiScroll 40s linear infinite;
    width: max-content;
}

.testi-track:hover {
    animation-play-state: paused;
}

@keyframes testiScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testi-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px 28px;
    width: 340px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(184, 134, 11, 0.08);
    line-height: 1;
    pointer-events: none;
}

.testi-stars {
    color: var(--g4);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g3), var(--g5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.testi-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.testi-role {
    font-size: 0.73rem;
    color: var(--text-soft);
}

/* ════════════════════════════════
   CTA SECTION
════════════════════════════════ */
.cta-section {
    padding: 130px 0;
    background: var(--text-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 30% 50%, rgba(212, 160, 23, 0.09) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(184, 134, 11, 0.06) 0%, transparent 55%);
}

.cta-label {
    color: var(--g4);
}

.cta-h2 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #F5F3EE;
    line-height: 1;
    margin: 16px 0 28px;
}

.cta-h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--g3), var(--g5), var(--g2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    max-width: 420px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 70px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}

footer h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--g3);
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s;
    cursor: none;
}

footer ul li a:hover {
    color: var(--g4);
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.84rem;
    margin-bottom: 12px;
}

.footer-contact-row i {
    color: var(--g3);
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.18);
}

.socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.85rem;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    cursor: none;
}

.social-btn:hover {
    border-color: var(--g3);
    color: var(--g4);
    background: rgba(212, 160, 23, 0.08);
}

/* ════════════════════════════════
   FLOATING WA
════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 990;
    animation: waPulse 2.5s ease-in-out infinite;
    cursor: none;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.65);
    }
}

/* ════════════════════════════════
   SCROLL REVEAL
════════════════════════════════ */
.sr {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sr.in {
    opacity: 1;
    transform: none;
}

.sr-l {
    opacity: 0;
    transform: translateX(-38px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sr-l.in {
    opacity: 1;
    transform: none;
}

.sr-r {
    opacity: 0;
    transform: translateX(38px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sr-r.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.08s !important;
}

.d2 {
    transition-delay: 0.16s !important;
}

.d3 {
    transition-delay: 0.24s !important;
}

.d4 {
    transition-delay: 0.32s !important;
}

.d5 {
    transition-delay: 0.40s !important;
}

.d6 {
    transition-delay: 0.48s !important;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-row::before {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .hero-right {
        padding-top: 40px;
    }

    .nav-links,
    .nav-tel {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat+.hero-stat {
        border-left: none;
        padding-left: 0;
    }

    .hero-badge {
        display: none;
    }
}

/* ════════════════════════════════
   DARK CONTACT FORM SECTION
════════════════════════════════ */

.it-dark-form-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(245, 200, 66, .16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(245, 200, 66, .10), transparent 34%),
        #050505;
    overflow: hidden;
}

.it-dark-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .35;
    pointer-events: none;
}

.it-dark-form-bg {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: 80px;
    border-radius: 50%;
    background: rgba(245, 200, 66, .08);
    filter: blur(18px);
    pointer-events: none;
}

.it-dark-form-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 54px;
    align-items: center;
}

.it-dark-form-content {
    color: #fff;
}

.it-form-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--g5, #f5c842);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.it-form-label span {
    width: 38px;
    height: 2px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--g6, #f8d75c), var(--g5, #f5c842), var(--g3, #b8860b));
}

.it-dark-form-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: .95;
    font-weight: 900;
    margin-bottom: 24px;
    color: #fff;
}

.it-dark-form-content h2 em {
    color: var(--g5, #f5c842);
    font-style: italic;
}

.it-dark-form-content p {
    max-width: 590px;
    color: rgba(255,255,255,.68);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 28px;
}

.it-form-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 34px;
}

.it-form-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.86);
    font-size: .94rem;
    font-weight: 500;
}

.it-form-points i {
    color: var(--g5, #f5c842);
    font-size: 16px;
}

.it-form-contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.it-form-contact-box a {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(245, 200, 66, .18);
    transition: .3s ease;
}

.it-form-contact-box a i {
    color: var(--g5, #f5c842);
}

.it-form-contact-box a:hover {
    background: rgba(245, 200, 66, .12);
    border-color: rgba(245, 200, 66, .36);
    transform: translateY(-2px);
}

/* Form Card */
.it-dark-form-card {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045)),
        rgba(10,10,10,.92);
    border: 1px solid rgba(245, 200, 66, .22);
    box-shadow:
        0 34px 90px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.it-dark-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245,200,66,.55), transparent 32%, rgba(245,200,66,.18));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.it-form-card-head {
    margin-bottom: 24px;
}

.it-form-card-head span {
    display: inline-block;
    color: var(--g5, #f5c842);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.it-form-card-head h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.it-form-card-head p {
    color: rgba(255,255,255,.58);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0;
}

.it-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.it-field {
    margin-bottom: 16px;
}

.it-field label {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.it-field input,
.it-field select,
.it-field textarea {
    width: 100%;
    border: 1px solid rgba(245, 200, 66, .16);
    outline: none;
    border-radius: 16px;
    background: rgba(255,255,255,.065);
    color: #fff;
    padding: 14px 15px;
    font-size: .95rem;
    transition: .3s ease;
}

.it-field select {
    cursor: pointer;
}

.it-field textarea {
    resize: none;
}

.it-field input::placeholder,
.it-field textarea::placeholder {
    color: rgba(255,255,255,.35);
}

.it-field input:focus,
.it-field select:focus,
.it-field textarea:focus {
    border-color: rgba(245, 200, 66, .62);
    background: rgba(255,255,255,.095);
    box-shadow: 0 0 0 4px rgba(245, 200, 66, .10);
}

.it-field select option {
    background: #111;
    color: #fff;
}

.it-form-submit {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--g6, #f8d75c), var(--g5, #f5c842), var(--g3, #b8860b));
    color: #070707;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(245, 200, 66, .24);
    transition: .35s ease;
}

.it-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(245, 200, 66, .36);
}

.it-form-note {
    margin: 16px 0 0;
    color: rgba(255,255,255,.45);
    font-size: .78rem;
    line-height: 1.6;
    text-align: center;
}

/* Responsive */
@media(max-width: 991px) {
    .it-dark-form-wrap {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .it-dark-form-card {
        max-width: 620px;
    }
}

@media(max-width: 576px) {
    .it-dark-form-section {
        padding: 80px 0;
    }

    .it-form-points,
    .it-form-row {
        grid-template-columns: 1fr;
    }

    .it-dark-form-card {
        padding: 24px;
        border-radius: 24px;
    }

    .it-form-card-head h3 {
        font-size: 1.6rem;
    }

    .it-form-contact-box a {
        width: 100%;
        justify-content: center;
    }
}