/* =========================================================
   IRHAS GLOBAL — MASTER STYLESHEET
   ========================================================= */

/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
    --navy: #07111f;
    --black: #080b10;
    --white: #ffffff;
    --ivory: #f7f5f0;

    --gold: #c8a96b;
    --gold2: #e1cc9b;
    --green: #87a41d;
    --blue: #018ada;
    --dark-green: #06B6D4;
    --dark-blue: #052057;

    --text: #17202a;
    --muted: #6b7280;

    --line: rgba(200, 169, 107, .25);
    --border: #e7e3da;
    --border-dark: rgba(255,255,255,.08);

    --max: 1180px;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
}

/* =========================================================
   02. RESET
   ========================================================= */

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

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

body {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    color: var(--text);
    background: var(--ivory);

    line-height: 1.65;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img,
svg,
video,
iframe {
    display: block;
}

img {
    max-width: 100%;
}

iframe {
    border: 0;
}

/* =========================================================
   03. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(var(--max), calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   04. GLOBAL TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-weight: 600;

    line-height: 1.12;
}

p {
    margin: 0;
}

.eyebrow {
    margin-bottom: 19px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: .24em;

    text-transform: uppercase;
}

/* =========================================================
   05. GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 105px 0;
}

.dark {
    background: var(--navy);
    color: var(--white);
}

.white {
    background: var(--white);
}

.section-head {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-head h2 {
    margin-bottom: 15px;

    font-size: clamp(38px, 4vw, 58px);
}

.section-head p {
    color: var(--muted);
}

.dark .section-head p {
    color: #b9c2cd;
}

/* =========================================================
   06. NAVIGATION
   ========================================================= */

.nav {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    padding: 21px 0;

    color: var(--white);

    transition:
        background .3s ease,
        padding .3s ease,
        border-color .3s ease,
        backdrop-filter .3s ease;
}

.nav.scrolled {
    padding: 13px 0;

    background: rgba(7, 17, 31, .96);

    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    font-family: "Manrope", sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1;
}

.logo-mark {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    object-fit: contain;
}

.logo .brand-name {
    display: flex;

    flex-direction: row;

    align-items: center;

    gap: 6px;

    margin-left: 10px;

    line-height: 1;

    white-space: nowrap;

    font-family: "Manrope", sans-serif;
}

.logo .brand-irhas {
    color: var(--blue) !important;
}

.logo .brand-global {
    color: var(--green) !important;
}

/* =========================================================
   NAV LINKS
   ========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 27px;

    font-size: 12px;

    letter-spacing: .08em;
}

.nav-links a {
    color: var(--gold);

    transition:
        color .25s ease,
        opacity .25s ease;
}

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

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu {
    display: flex;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--white);

    font-size: 26px;

    line-height: 1;
}

/* =========================================================
   07. BUTTON SYSTEM
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 13px 20px;

    border: 1px solid var(--gold);

    border-radius: 25px;

    background: transparent;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: .1em;

    text-transform: uppercase;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

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

.btn-primary,
.btn.gold {
    background: var(--gold);
    color: var(--navy);

    border-color: var(--gold);
    border-radius: 25px;
}

.btn-primary:hover,
.btn.gold:hover {
    background: var(--gold2);
    border-color: var(--gold2);
}

.btn-outline {
    background: transparent;
    color: var(--white);

    border-color: var(--gold);
    border-radius: 25px;
}

.btn-outline:hover {
    background: var(--white);
    border-color: var(--white);

    color: var(--navy);
}

/* =========================================================
   08. HERO
   ========================================================= */

.hero-slider {
    position: relative;

    width: 100%;
    height: 620px;

    overflow: hidden;

    isolation: isolate;

    background: #000;

    color: var(--white);
}

/* =========================================================
   HERO VIDEO WRAPPER
   ========================================================= */

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;

    overflow: hidden;

    pointer-events: none;

    background: #000;
}

/* =========================================================
   YOUTUBE HERO TARGET
   ========================================================= */

#youtubeHero {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

/* =========================================================
   YOUTUBE IFRAME
   FULL COVER / CROPPED
   ========================================================= */

#youtubeHero iframe,
.hero-video iframe {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 177.78vh;
    height: 100vh;

    min-width: 100vw;
    min-height: 56.25vw;

    transform: translate(-50%, -50%);

    border: 0;

    display: block;

    pointer-events: none;
}

/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(7,17,31,.94) 0%,
            rgba(7,17,31,.78) 38%,
            rgba(7,17,31,.45) 68%,
            rgba(7,17,31,.22) 100%
        );
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-slider .hero-content {
    position: relative;

    z-index: 2;

    width: min(var(--max), calc(100% - 48px));

    min-height: 620px;

    max-width: 780px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-top: 90px;
    padding-bottom: 70px;
}

.hero-slider h1 {
    color: var(--white);

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.08;
}

.hero-slider p {
    max-width: 660px;

    margin: 25px 0 34px;

    color: #d9dee5;

    font-size: 18px;

    line-height: 1.7;
}

/* =========================================================
   HERO ACTIONS
   ========================================================= */

.hero-slide-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

/* =========================================================
   HERO META
   ========================================================= */

.hero-meta {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 48px;

    color: #c9d0d8;

    font-size: 11px;

    letter-spacing: .05em;
}

/* =========================================================
   HERO SOUND TOGGLE
   ========================================================= */

.hero-sound-toggle {
    position: absolute;

    right: 28px;
    bottom: 28px;

    z-index: 5;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    background: rgba(5,32,87,.75);

    color: var(--white);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.hero-sound-toggle:hover {
    background: rgba(5,32,87,.95);

    border-color: var(--gold);

    transform: scale(1.05);
}

.hero-sound-toggle svg {
    width: 21px;
    height: 21px;
}

/* =========================================================
   09. TRUST BAR
   ========================================================= */

.trust {
    background: var(--black);

    color: var(--white);

    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    padding: 25px;

    text-align: center;

    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;

    color: var(--gold);

    font-size: 12px;

    letter-spacing: .12em;
}

.trust-item span {
    color: #b6bec8;

    font-size: 12px;
}

/* =========================================================
   10. GENERAL CARD SYSTEM
   ========================================================= */

.cards,
.card-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.card,
.product-card {
    position: relative;

    min-height: 410px;

    overflow: hidden;

    background: var(--navy);

    color: var(--white);

    border: 1px solid var(--border-dark);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.card:nth-child(2),
.product-card:nth-child(2) {
    background: #111923;
}

.card:nth-child(3),
.product-card:nth-child(3) {
    background: #0d1722;
}

.card::before,
.product-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 20%,
            rgba(0,0,0,.84) 100%
        );

    pointer-events: none;
}

.card:hover,
.product-card:hover {
    transform: translateY(-6px);

    border-color: rgba(200,169,107,.5);

    box-shadow:
        0 20px 45px rgba(0,0,0,.16);
}

.card-content,
.product-body {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 2;
}

.number {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: .16em;
}

.card h3,
.product-body h3 {
    margin: 8px 0 10px;

    font-size: 30px;
}

.card p,
.product-body p {
    margin-bottom: 18px;

    color: #d0d6dc;

    font-size: 14px;
}

.arrow {
    color: var(--gold);

    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
   11. SPLIT LAYOUT
   ========================================================= */

.split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.big-quote {
    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.2;
}

/* =========================================================
   12. FEATURES
   ========================================================= */

.features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 26px;
}

.feature {
    padding: 20px 0;

    border-top: 1px solid #ddd;
}

.feature strong {
    display: block;

    font-size: 13px;

    letter-spacing: .08em;
}

.feature p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 13px;
}

/* =========================================================
   13. STEPS
   ========================================================= */

.steps {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 1px;

    background: var(--line);
}

.step {
    min-height: 190px;

    padding: 28px 22px;

    background: var(--navy);
}

.step span {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: .15em;
}

.step h3 {
    margin: 18px 0 8px;

    font-size: 23px;
}

.step p {
    color: #b9c2cd;

    font-size: 12px;
}

/* =========================================================
   14. CORPORATE GENERAL
   ========================================================= */

.corporate {
    background:
        linear-gradient(
            100deg,
            rgba(7,17,31,.97),
            rgba(7,17,31,.76)
        ),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=85")
        center / cover;

    color: var(--white);
}

.corp-copy {
    max-width: 690px;
}

.corp-copy h2 {
    font-size: clamp(42px, 5vw, 68px);
}

.corp-copy p {
    margin: 20px 0 28px;

    color: #d2d8df;
}

/* =========================================================
   15. ADVISORS
   ========================================================= */

.advisors {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.advisor {
    background: var(--white);
}

.advisor-img {
    height: 300px;

    background: #dfe3e7 center / cover;
}

.advisor:nth-child(1) .advisor-img {
    background-image:
        url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=900&q=80");
}

.advisor:nth-child(2) .advisor-img {
    background-image:
        url("https://images.unsplash.com/photo-1573496799515-eebbb63814f2?auto=format&fit=crop&w=900&q=80");
}

.advisor:nth-child(3) .advisor-img {
    background-image:
        url("https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=900&q=80");
}

.advisor-info {
    padding: 22px;
}

.advisor-info small {
    color: var(--gold);

    font-weight: 700;

    letter-spacing: .12em;
}

.advisor-info h3 {
    margin: 5px 0;

    font-size: 25px;
}

/* =========================================================
   16. TESTIMONIAL
   ========================================================= */

.testimonial {
    background: var(--black);

    color: var(--white);

    text-align: center;
}

.testimonial blockquote {
    max-width: 900px;

    margin: 0 auto 25px;

    font-family: "Playfair Display", serif;

    font-size: clamp(28px, 4vw, 46px);

    line-height: 1.25;
}

.testimonial cite {
    color: var(--gold);

    font-size: 11px;

    font-style: normal;

    letter-spacing: .1em;
}

/* =========================================================
   17. INSIGHTS
   ========================================================= */

#insights {
    background: var(--ivory);
}

.insights {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.article {
    padding: 28px;

    background: var(--white);

    border: 1px solid var(--border);
}

.article small {
    color: var(--gold);

    font-weight: 700;

    letter-spacing: .12em;
}

.article h3 {
    margin: 13px 0;

    font-size: 25px;
}

.article p {
    color: var(--muted);

    font-size: 13px;
}

.article a {
    display: inline-block;

    margin-top: 18px;

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
}

/* =========================================================
   18. FINAL CTA
   ========================================================= */

.final {
    padding: 115px 0;

    background: var(--white) !important;

    color: var(--navy);

    text-align: center;
}

.final h2 {
    max-width: 800px;

    margin: 0 auto 20px;

    font-size: clamp(42px, 5vw, 70px);
}

.final p {
    max-width: 600px;

    margin: 0 auto 28px;
}

.final .btn {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);
}

/* =========================================================
   19. CONTACT
   ========================================================= */

#contact {
    padding: 105px 0;

    background: var(--ivory);
}

#contact .section-head {
    max-width: 720px;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 70px;

    align-items: start;
}

.form-card {
    padding: 38px;

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow:
        0 15px 40px rgba(7,17,31,.05);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;

    padding: 13px 15px;

    outline: none;

    background: var(--white);

    border: 1px solid #ddd8ce;

    color: var(--text);

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.field input,
.field select {
    min-height: 48px;
}

.field textarea {
    min-height: 145px;

    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9ca3af;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(200,169,107,.1);
}

.form-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 5px;
}

.form-actions .btn {
    width: auto;

    min-height: 48px;

    flex: 1 1 0;

    border-radius: var(--radius-pill);

    background: var(--blue);

    border-color: var(--blue);

    color: var(--white);
}

.form-actions .btn svg {
    width: 17px;
    height: 17px;
}

.btn-whatsapp {
    background: #25D366 !important;

    border-color: #25D366 !important;

    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebe5d !important;

    border-color: #1ebe5d !important;
}

.form-status {
    min-height: 20px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 13px;
}

/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-info {
    display: flex;

    flex-direction: column;
}

.info-item {
    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 18px;

    padding: 22px 0;

    border-bottom: 1px solid #ddd8ce;
}

.info-item:first-child {
    padding-top: 0;
}

.info-item:last-of-type {
    border-bottom: 0;
}

.info-item .icon-box {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    background: rgba(200,169,107,.08);

    border: 1px solid rgba(200,169,107,.3);
}

.info-item .icon-box svg {
    width: 27px;
    height: 27px;
}

.info-item h4 {
    margin-bottom: 7px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 21px;
    font-weight: 600;

    line-height: 1.2;
}

.info-item p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}

.info-item a {
    color: var(--muted);

    transition: color .25s ease;
}

.info-item a:hover {
    color: var(--gold);
}

/* =========================================================
   CONTACT MAP
   ========================================================= */

.map-placeholder {
    position: relative;

    width: 100%;
    height: 310px;

    margin-top: 18px;

    overflow: hidden;

    background: #dfe3e7;

    border: 1px solid #ddd8ce;
}

.map-placeholder iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.map-click {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: block;
}

.map-label {
    position: absolute;

    left: 20px;
    bottom: 20px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 16px;

    background: rgba(7,17,31,.92);

    border: 1px solid rgba(200,169,107,.35);

    box-shadow:
        0 10px 25px rgba(0,0,0,.2);

    pointer-events: none;
}

.map-pin {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);
}

.map-pin svg {
    width: 25px;
    height: 25px;
}

.map-label-text strong {
    display: block;

    color: var(--gold);

    font-size: 11px;

    letter-spacing: .1em;
}

.map-label-text span {
    display: block;

    margin-top: 2px;

    color: #d9dee5;

    font-size: 10px;
}

/* =========================================================
   20. ABOUT
   ========================================================= */

#about {
    padding: 105px 0 55px;

    background: var(--ivory);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

#about .reveal {
    min-width: 0;
}

#about h2 {
    color: var(--navy);
}

#about .eyebrow {
    color: var(--gold);
}

#about p {
    line-height: 1.75;
}

/* =========================================================
   MISSION / VISION
   ========================================================= */

.about-pillars {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.pillar {
    display: grid;

    grid-template-columns: 68px 1fr;

    gap: 22px;

    align-items: start;

    padding: 28px;

    background: var(--white);

    border: 1px solid var(--border);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.pillar:hover {
    transform: translateY(-4px);

    border-color: rgba(200,169,107,.55);

    box-shadow:
        0 15px 35px rgba(7,17,31,.08);
}

.icon-box {
    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    background: rgba(200,169,107,.08);

    border: 1px solid rgba(200,169,107,.3);
}

.icon-box svg {
    width: 32px;
    height: 32px;
}

.pillar h4 {
    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 25px;

    line-height: 1.2;
}

.pillar p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}

/* =========================================================
   21. ABOUT STATISTICS
   ========================================================= */

.stats-section {
    padding: 50px 0 100px;

    background: var(--ivory);
}

.stats-row {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.stat-card {
    position: relative;

    min-height: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 30px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: var(--radius-md);

    background: var(--navy);

    color: var(--white);

    text-align: center;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.stat-card::before {
    content: "";

    position: absolute;

    top: -90px;
    right: -60px;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    pointer-events: none;
}

.stat-card::after {
    content: "";

    position: absolute;

    bottom: -65px;
    left: -40px;

    width: 120px;
    height: 120px;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 50%;

    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-6px);

    border-color: rgba(200,169,107,.5);

    box-shadow:
        0 20px 45px rgba(0,0,0,.16);
}

.stat-num {
    position: relative;

    z-index: 2;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 600;

    line-height: 1;
}

.stat-num span {
    color: var(--gold2);
}

.stat-label {
    position: relative;

    z-index: 2;

    margin-top: 13px;

    color: #d9dee5;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}

/* =========================================================
   22. CORE VALUES
   ========================================================= */

.core-values-section {
    padding: 105px 0;

    background: var(--white);
}

.core-values-section .section-head {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.core-values-section .section-head p {
    margin-top: 16px;

    color: var(--muted);

    font-size: 16px;
}

.core-values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.core-value-card {
    position: relative;

    min-height: 300px;

    padding: 32px 26px;

    background: var(--ivory);

    border: 1px solid var(--border);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.core-value-card:hover {
    transform: translateY(-6px);

    border-color: rgba(200,169,107,.55);

    box-shadow:
        0 18px 40px rgba(7,17,31,.09);
}

.core-value-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: var(--gold);

    background: rgba(200,169,107,.08);

    border: 1px solid rgba(200,169,107,.3);
}

.core-value-icon svg {
    width: 30px;
    height: 30px;
}

.core-value-card h3 {
    margin-bottom: 12px;

    color: var(--navy);

    font-size: 25px;
}

.core-value-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;
}

/* =========================================================
   23. FAQ
   ========================================================= */

.faq-sec {
    padding: 105px 0;

    background: var(--ivory);
}

.faq-section {
    max-width: 900px;

    margin: 0 auto;
}

.faq-section .section-head {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.faq-section .section-head p {
    color: var(--muted);
}

.faq-list {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 48px;
}

.faq-item {
    background: var(--white);

    border: 1px solid var(--border);

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.faq-item:hover {
    border-color: rgba(200,169,107,.45);
}

.faq-item.active {
    border-color: rgba(200,169,107,.6);

    box-shadow:
        0 10px 25px rgba(7,17,31,.06);
}

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 21px 24px;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-family: "DM Sans", sans-serif;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.5;

    letter-spacing: .08em;

    text-align: left;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    border: 1px solid rgba(200,169,107,.35);

    font-size: 20px;
    font-weight: 400;

    line-height: 1;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.faq-answer {
    display: none;

    padding: 0 24px 24px;
}

.faq-answer p {
    padding-right: 45px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);

    background: var(--gold);

    color: var(--navy);
}

/* =========================================================
   24. RECRUITMENT — CAREER PROMOTION
   ========================================================= */

.career-promo {
    position: relative;

    padding: 125px 0 105px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(200,169,107,.10),
            transparent 35%
        ),
        var(--ivory);
}

.career-promo-card {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 55px;

    align-items: stretch;

    min-height: 570px;
}

.career-promo-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    max-width: 650px;
}

.career-promo-content .eyebrow {
    margin-bottom: 18px;
}

.career-promo-content h2 {
    margin-bottom: 22px;

    color: var(--navy);

    font-size: clamp(44px, 5vw, 70px);

    line-height: 1.08;
}

.career-promo-content h2 span {
    color: var(--gold);
}

.career-promo-content > p {
    max-width: 620px;

    margin-bottom: 30px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

/* =========================================================
   CAREER BENEFITS
   ========================================================= */

.career-promo-exclusive {
    display: flex;

    flex-direction: column;

    gap: 12px;

    max-width: 610px;
}

.exclusive-item {
    display: grid;

    grid-template-columns: 54px 1fr;

    gap: 15px;

    align-items: center;

    padding: 15px 17px;

    background: var(--white);

    border: 1px solid var(--border);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.exclusive-item:hover {
    transform: translateX(5px);

    border-color: rgba(200,169,107,.55);

    box-shadow:
        0 10px 25px rgba(7,17,31,.07);
}

.exclusive-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    background: rgba(200,169,107,.08);

    border: 1px solid rgba(200,169,107,.3);
}

.exclusive-icon svg {
    width: 28px;
    height: 28px;
}

.exclusive-item strong {
    display: block;

    margin-bottom: 3px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .04em;
}

.exclusive-item span {
    display: block;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.55;
}

/* =========================================================
   CAREER VISUAL
   ========================================================= */

.career-promo-visual {
    position: relative;

    min-height: 570px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 42px 38px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(200,169,107,.16),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #07111f 0%,
            #0d1722 55%,
            #05090e 100%
        );

    border: 1px solid rgba(200,169,107,.25);

    color: var(--white);

    box-shadow:
        0 25px 60px rgba(7,17,31,.12);
}

.career-promo-visual::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 390px;
    height: 390px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(200,169,107,.12);

    border-radius: 50%;

    pointer-events: none;
}

.career-promo-visual::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 250px;
    height: 250px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(200,169,107,.10);

    border-radius: 50%;

    pointer-events: none;
}

/* =========================================================
   CAREER BADGE
   ========================================================= */

.career-promo-badge {
    position: absolute;

    top: 28px;
    right: 28px;

    z-index: 3;

    width: 155px;

    padding: 14px 16px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(200,169,107,.35);

    text-align: center;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.career-promo-badge span {
    display: block;

    margin-bottom: 3px;

    color: #c9d0d8;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .18em;
}

.career-promo-badge strong {
    display: block;

    color: var(--gold);

    font-size: 12px;

    letter-spacing: .08em;
}

.career-promo-badge small {
    display: block;

    margin-top: 4px;

    color: #9da7b2;

    font-size: 8px;

    line-height: 1.4;
}

/* =========================================================
   CAREER MESSAGE
   ========================================================= */

.career-promo-message {
    position: relative;

    z-index: 2;

    margin-bottom: 45px;

    text-align: center;
}

.career-promo-message span {
    display: block;

    color: #d9dee5;

    font-family: "Playfair Display", serif;

    font-size: 24px;

    line-height: 1.25;
}

.career-promo-message strong {
    display: block;

    margin: 5px 0;

    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 4.5vw, 62px);

    line-height: 1.05;
}

/* =========================================================
   CAREER POINTS
   ========================================================= */

.career-promo-points {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;

    width: 100%;

    max-width: 500px;

    margin: 0 auto;
}

.career-promo-point {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 13px;

    align-items: center;

    padding: 12px 14px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.08);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.career-promo-point:hover {
    transform: translateX(4px);

    background: rgba(255,255,255,.06);

    border-color: rgba(200,169,107,.3);
}

.career-promo-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    background: rgba(200,169,107,.06);

    border: 1px solid rgba(200,169,107,.3);
}

.career-promo-icon svg {
    width: 25px;
    height: 25px;
}

.career-promo-point strong {
    display: block;

    margin-bottom: 2px;

    color: var(--white);

    font-size: 13px;
}

.career-promo-point span {
    display: block;

    color: #9da7b2;

    font-size: 11px;

    line-height: 1.5;
}

/* =========================================================
   CAREER WELCOME
   ========================================================= */

.career-sec {
    padding: 105px 0;

    background: var(--white) !important;
}

.career-welcome-grid {
    display: grid;

    grid-template-columns: 1fr;

    max-width: 780px;

    margin: 0 auto;
}

.career-welcome-card {
    padding: 45px 42px;

    background: var(--white);

    border: 1px solid var(--border);

    text-align: center;

    box-shadow:
        0 15px 40px rgba(7,17,31,.05);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.career-welcome-card:hover {
    transform: translateY(-5px);

    border-color: rgba(200,169,107,.45);

    box-shadow:
        0 20px 45px rgba(7,17,31,.09);
}

.career-welcome-icon {
    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    color: var(--gold);

    background: rgba(200,169,107,.08);

    border: 1px solid rgba(200,169,107,.3);
}

.career-welcome-icon svg {
    width: 34px;
    height: 34px;
}

.career-welcome-card h3 {
    margin-bottom: 12px;

    color: var(--navy);

    font-size: 30px;
}

.career-welcome-card p {
    max-width: 620px;

    margin: 0 auto 25px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.career-welcome-card .btn {
    min-height: 48px;

    border-radius: var(--radius-pill);
}

/* =========================================================
   25. RECRUITMENT — AGENT
   ========================================================= */

.agent-sec {
    padding: 105px 0;

    background: var(--navy);

    color: var(--white);
}

.agent-section,
.agent-inner {
    width: 100%;
}

.agent-sec .section-head {
    max-width: 820px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.agent-sec .section-head p {
    color: #b9c2cd !important;
}

.white-title {
    color: var(--white) !important;
}

.agent-benefit-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 48px;
}

.agent-benefit-card {
    min-height: 280px;

    padding: 30px 27px;

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.08);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.agent-benefit-card:hover {
    transform: translateY(-6px);

    background: rgba(255,255,255,.045);

    border-color: rgba(200,169,107,.4);

    box-shadow:
        0 20px 40px rgba(0,0,0,.18);
}

.agent-benefit-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    color: var(--gold);

    background: rgba(200,169,107,.07);

    border: 1px solid rgba(200,169,107,.3);
}

.agent-benefit-icon svg {
    width: 30px;
    height: 30px;
}

.agent-benefit-card h3 {
    margin-bottom: 12px;

    font-size: 23px;

    line-height: 1.2;
}

.agent-benefit-card p {
    color: #9da7b2 !important;

    font-size: 13px;

    line-height: 1.75;
}

.agent-cta {
    display: flex;

    justify-content: center;

    margin-top: 45px;
}

.agent-cta .btn {
    min-height: 50px;

    padding-left: 28px;
    padding-right: 28px;

    border-radius: var(--radius-pill);
}

/* =========================================================
   26. RECRUITMENT — CORPORATE PARTNERSHIP
   ========================================================= */

.corporate-sec {
    padding: 105px 0;

    background:
        linear-gradient(
            100deg,
            rgba(247,245,240,.97),
            rgba(247,245,240,.92)
        );

    color: var(--navy);
}

.corporate-section,
.corporate-inner {
    width: 100%;
}

.corporate-sec .section-head {
    max-width: 800px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.corporate-sec .section-head h2 {
    color: var(--navy);
}

.corporate-sec .section-head p {
    max-width: 700px;

    margin: 16px auto 0;

    color: var(--muted);
}

.corporate-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-top: 48px;
}

.corporate-card {
    min-height: 290px;

    padding: 30px 25px;

    background: var(--white);

    border: 1px solid var(--border);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.corporate-card:hover {
    transform: translateY(-6px);

    border-color: rgba(200,169,107,.55);

    box-shadow:
        0 18px 40px rgba(7,17,31,.08);
}

.corporate-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    color: var(--gold);

    background: rgba(200,169,107,.08);

    border: 1px solid rgba(200,169,107,.3);
}

.corporate-icon svg {
    width: 30px;
    height: 30px;
}

.corporate-card h3 {
    margin-bottom: 12px;

    color: var(--navy);

    font-size: 23px;

    line-height: 1.2;
}

.corporate-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}

/* =========================================================
   27. CAREER FORM PAGE
   ========================================================= */

.form-page-section {
    min-height: 100vh;

    padding: 150px 0 110px;

    background: var(--ivory);
}

.form-page-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.form-page-heading .eyebrow {
    margin-bottom: 16px;
}

.form-page-heading h1 {
    margin: 0;

    color: var(--navy);

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.form-page-heading p {
    max-width: 720px;

    margin: 20px auto 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}

/* =========================================================
   FORM PAGE CARD
   ========================================================= */

.form-page-card {
    width: 100%;
    max-width: 920px;

    margin: 0 auto;

    padding: 48px;

    background: var(--white);

    border: 1px solid var(--line);

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 70px rgba(7,17,31,.08);
}

.irhas-form {
    width: 100%;
}

.form-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;

    margin-bottom: 24px;
}

.form-field {
    width: 100%;

    display: flex;

    flex-direction: column;
}

.form-field > label {
    margin-bottom: 9px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.4;
}

.form-field > label span {
    color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 15px 17px;

    outline: none;

    color: var(--text);

    background: var(--white);

    border: 1px solid #dfe3e8;

    border-radius: 12px;

    font-family: inherit;

    font-size: 15px;

    line-height: 1.5;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background-color .25s ease;
}

.form-field input,
.form-field select {
    min-height: 52px;
}

.form-field textarea {
    min-height: 150px;

    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9ca3af;
}

.form-field select {
    cursor: pointer;

    appearance: auto;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(200,169,107,.12);

    background: var(--white);
}

.form-field:has(textarea) {
    margin-top: 0;
}

/* =========================================================
   FORM RESULT
   ========================================================= */

.form-result {
    min-height: 24px;

    margin-top: 22px;

    font-size: 14px;

    line-height: 1.6;
}

.form-result:empty {
    display: none;
}

.form-result.success {
    padding: 14px 16px;

    color: #166534;

    background: #f0fdf4;

    border: 1px solid #bbf7d0;

    border-radius: var(--radius-sm);
}

.form-result.error {
    padding: 14px 16px;

    color: #991b1b;

    background: #fef2f2;

    border: 1px solid #fecaca;

    border-radius: var(--radius-sm);
}

/* =========================================================
   FORM SUBMIT
   ========================================================= */

.form-submit {
    display: flex;

    justify-content: center;

    gap: 14px;

    margin-top: 32px;
}

.form-submit .btn {
    min-width: 220px;

    min-height: 52px;
}

.form-submit .btn-primary {
    background: var(--gold);

    border-color: var(--gold);

    border-radius: var(--radius-pill);

    color: var(--navy);

    box-shadow:
        0 10px 25px rgba(200,169,107,.20);
}

.form-submit .btn-primary:hover {
    background: var(--gold2);

    border-color: var(--gold2);

    box-shadow:
        0 14px 30px rgba(200,169,107,.28);
}

.form-submit .ws-recBtn {
    background: #25D366 !important;

    border-color: #25D366 !important;

    border-radius: var(--radius-pill);

    color: var(--white);
}

/* =========================================================
   28. OUR SERVICES
   ========================================================= */

.os-section {
    padding: 105px 0;

    background: var(--ivory);
}

.product-media {
    position: absolute;

    top: 32px;
    left: 32px;

    z-index: 2;

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    background: rgba(200,169,107,.06);

    border: 1px solid rgba(200,169,107,.3);
}

.product-media svg {
    width: 34px;
    height: 34px;
}

.product-body {
    z-index: 3;
}

.card-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
        color .25s ease,
        transform .25s ease;
}

.card-link svg {
    width: 17px;
    height: 17px;

    transition: transform .25s ease;
}

.card-link:hover {
    color: var(--gold2);

    transform: translateX(3px);
}

.card-link:hover svg {
    transform: translateX(3px);
}

/* =========================================================
   DENTAL PROMOTION
   ========================================================= */

.promo-dental {
    padding: 105px 0;

    background: var(--navy);

    color: var(--white);
}

.dental-promo-card {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: center;
}

.dental-promo-content {
    max-width: 650px;
}

.dental-promo-content h2 {
    margin-bottom: 18px;

    font-size: clamp(38px, 4.5vw, 58px);
}

.dental-promo-content p {
    margin-bottom: 28px;

    color: #b9c2cd;

    font-size: 16px;
}

.dental-benefits {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 30px;
}

.dental-benefits span {
    display: inline-flex;

    align-items: center;

    padding: 9px 13px;

    color: #d9dee5;

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(200,169,107,.22);

    font-size: 12px;
}

/* =========================================================
   DENTAL VISUAL
   ========================================================= */

.dental-promo-visual {
    position: relative;

    min-height: 400px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(200,169,107,.18),
            transparent 62%
        );

    border: 1px solid rgba(200,169,107,.25);
}

.dental-promo-visual::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(200,169,107,.22);

    border-radius: 50%;
}

.dental-promo-visual::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(200,169,107,.15);

    border-radius: 50%;
}

.dental-icon {
    position: relative;

    z-index: 2;

    width: 145px;
    height: 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(200,169,107,.4);

    border-radius: 50%;

    background: rgba(200,169,107,.08);

    color: var(--gold);

    box-shadow:
        0 0 60px rgba(200,169,107,.12);
}

.dental-icon svg {
    width: 82px;
    height: 82px;
}

.dental-promo-label {
    position: absolute;

    left: 50%;
    bottom: 35px;

    z-index: 3;

    width: calc(100% - 60px);

    padding: 16px 20px;

    transform: translateX(-50%);

    background: rgba(7,17,31,.88);

    border: 1px solid rgba(200,169,107,.3);

    text-align: center;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.dental-promo-label strong {
    display: block;

    color: var(--gold);

    font-size: 12px;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.dental-promo-label span {
    display: block;

    margin-top: 4px;

    color: #c9d0d8;

    font-size: 11px;
}

/* =========================================================
   29. TABLET — 1000PX
   ========================================================= */

@media (max-width: 1000px) {

    .career-promo-card {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .career-promo-content {
        max-width: 100%;
    }

    .career-promo-visual {
        min-height: 540px;
    }

    .agent-benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .corporate-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   30. TABLET — 900PX
   ========================================================= */

@media (max-width: 900px) {

    .container {
        width: min(var(--max), calc(100% - 40px));
    }

    .nav-links {
        gap: 18px;
    }

    .hero-slider {
        height: 600px;
    }

    .hero-slider .hero-content {
        min-height: 600px;
    }

    .cards,
    .advisors,
    .insights {
        grid-template-columns: 1fr 1fr;
    }

    .card:last-child,
    .advisor:last-child,
    .article:last-child {
        grid-column: 1 / -1;
    }

    .split {
        gap: 45px;
    }

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

    #contact {
        padding: 90px 0;
    }

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

        gap: 50px;
    }

    .form-card {
        padding: 32px;
    }

    .map-placeholder {
        height: 350px;
    }

    #about {
        padding: 90px 0 45px;
    }

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

        gap: 50px;
    }

    .stats-section {
        padding: 45px 0 80px;
    }

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

    .stats-row .stat-card:last-child {
        grid-column: 1 / -1;
    }

    .core-values-section {
        padding: 90px 0;
    }

    .core-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-sec {
        padding: 90px 0;
    }


    /* Recruitment */

    .career-promo {
        padding: 105px 0 80px;
    }

    .career-promo-card {
        min-height: auto;
    }

    .career-promo-visual {
        min-height: 520px;
    }

    .agent-sec,
    .corporate-sec {
        padding: 90px 0;
    }

    .agent-benefit-grid,
    .corporate-grid {
        gap: 16px;
    }

    .card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dental-promo-card {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .dental-promo-visual {
        min-height: 360px;
    }

    .form-page-section {
        padding: 130px 0 90px;
    }

    .form-page-card {
        padding: 38px;
    }

    .form-page-heading {
        margin-bottom: 42px;
    }
}

/* =========================================================
   31. MOBILE — 700PX
   ========================================================= */

@media (max-width: 700px) {

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

    .nav {
        padding: 16px 0;
		position: fixed;
		z-index: 99999 !important;
    }
	
	.nav-inner {
        position: relative !important;
    }

    .nav.scrolled {
        padding: 12px 0;
    }

    .nav-links {
        display: none;
		
		position: absolute;

        top: calc(100% + 12px);
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: rgba(7, 17, 31, .98);

        border: 1px solid var(--line);
        border-radius: 16px;

        box-shadow:
            0 20px 45px rgba(0, 0, 0, .25);

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
	
	.nav-links.active {
        display: flex;
    }
	
	.nav-links a {
        display: block;

        padding: 14px 16px;

        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .nav-links a:last-child {
        border-bottom: 0;
    }
	
	.nav-links.open {
		display: flex !important;

        position: absolute !important;

        top: 100% !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        flex-direction: column !important;
        align-items: stretch !important;

        padding: 12px !important;
        margin: 10px 0 0 !important;

        background: #07111f !important;

        border: 2px solid #c8a96b !important;
        border-radius: 16px !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform: none !important;

        z-index: 999999 !important;
	}
	
	.nav-links.open a {
		display: block !important;

        width: 100% !important;

        padding: 16px !important;

        color: #c8a96b !important;

        opacity: 1 !important;
        visibility: visible !important;
	}

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

    .menu {
		position: relative;

        z-index: 9999;
		
        display: flex;

        align-items: center;
        justify-content: center;
		
		width: 44px;
        height: 44px;

        padding: 0;

        border: 0;

        background: transparent;

        color: var(--white);

        font-size: 25px;

        line-height: 1;
		
		cursor: pointer;
    }

    .logo {
        font-size: 16px;
    }

    .logo-mark {
        width: 30px;
        height: 30px;

        flex-basis: 30px;
    }

    .logo .brand-name {
        gap: 5px;

        margin-left: 6px;
    }

    .hero-slider {
        height: 620px;
    }

    .hero-slider .hero-content {
        width: calc(100% - 32px);

        min-height: 620px;

        padding-top: 85px;
        padding-bottom: 80px;
    }

    .hero-slider h1 {
        font-size: clamp(40px, 11vw, 58px);
    }

    .hero-slider p {
        margin: 20px 0 28px;

        font-size: 15px;

        line-height: 1.7;
    }

    .hero-slide-actions {
        flex-direction: column;

        align-items: stretch;
    }

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

    .hero-meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

        margin-top: 30px;
    }

    .hero-sound-toggle {
        right: 18px;
        bottom: 18px;

        width: 46px;
        height: 46px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        padding: 18px 12px;

        border-bottom: 1px solid var(--line);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }

    .section {
        padding: 75px 0;
    }

    .section-head {
        margin-bottom: 35px;
    }

    .section-head h2 {
        font-size: 34px;
    }

    .cards,
    .card-grid,
    .advisors,
    .insights {
        grid-template-columns: 1fr;
    }

    .card:last-child,
    .advisor:last-child,
    .article:last-child {
        grid-column: auto;
    }

    .card,
    .product-card {
        min-height: 390px;
    }

    .split {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .features {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: auto;
    }

    .advisor-img {
        height: 260px;
    }

    #contact {
        padding: 75px 0;
    }

    .contact-grid {
        gap: 40px;
    }

    .form-card {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .form-actions .btn {
        width: 100%;
    }

    .info-item {
        grid-template-columns: 50px 1fr;

        gap: 15px;

        padding: 20px 0;
    }

    .info-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .info-item h4 {
        font-size: 19px;
    }

    .info-item p {
        font-size: 13px;
    }

    .map-placeholder {
        height: 300px;

        margin-top: 15px;
    }

    .map-label {
        left: 12px;
        bottom: 12px;

        padding: 10px 12px;
    }

    #about {
        padding: 75px 0 35px;
    }

    .about-grid {
        gap: 38px;
    }

    .about-grid h2 {
        font-size: 32px !important;
    }

    #about p {
        font-size: 16px !important;
    }

    .pillar {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 24px;
    }

    .icon-box {
        width: 58px;
        height: 58px;
    }

    .icon-box svg {
        width: 28px;
        height: 28px;
    }

    .pillar h4 {
        font-size: 23px;
    }

    .pillar p {
        font-size: 14px !important;
    }

    .stats-section {
        padding: 35px 0 70px;
    }

    .stats-row {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .stats-row .stat-card:last-child {
        grid-column: auto;
    }

    .stat-card {
        min-height: 165px;
    }

    .stat-num {
        font-size: 50px;
    }

    .core-values-section {
        padding: 75px 0;
    }

    .core-values-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .core-value-card {
        min-height: auto;

        padding: 28px 24px;
    }

    .core-value-icon {
        margin-bottom: 20px;
    }

    .faq-sec {
        padding: 75px 0;
    }

    .faq-list {
        margin-top: 35px;

        gap: 8px;
    }

    .faq-question {
        padding: 18px;

        font-size: 11px;
    }

    .faq-answer {
        padding: 0 18px 20px;
    }

    .faq-answer p {
        padding-right: 0;

        font-size: 14px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;

        flex-basis: 28px;
    }

    .career-promo {
        padding: 90px 0 65px;
    }

    .career-promo-card {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .career-promo-content h2 {
        font-size: 40px;
    }

    .career-promo-content > p {
        font-size: 15px;

        line-height: 1.75;
    }

    .career-promo-exclusive {
        gap: 10px;
    }

    .exclusive-item {
        grid-template-columns: 48px 1fr;

        gap: 12px;

        padding: 13px;
    }

    .exclusive-icon {
        width: 48px;
        height: 48px;
    }

    .exclusive-icon svg {
        width: 25px;
        height: 25px;
    }

    .exclusive-item strong {
        font-size: 12px;
    }

    .exclusive-item span {
        font-size: 11px;
    }

    .career-promo-visual {
        min-height: 510px;

        padding: 35px 20px 30px;
    }

    .career-promo-badge {
        top: 18px;
        right: 18px;

        width: 135px;

        padding: 11px 10px;
    }

    .career-promo-badge span {
        font-size: 7px;
    }

    .career-promo-badge strong {
        font-size: 10px;
    }

    .career-promo-badge small {
        font-size: 7px;
    }

    .career-promo-message {
        margin-top: 60px;

        margin-bottom: 35px;
    }

    .career-promo-message span {
        font-size: 19px;
    }

    .career-promo-message strong {
        font-size: 44px;
    }

    .career-promo-visual::before {
        width: 310px;
        height: 310px;
    }

    .career-promo-visual::after {
        width: 205px;
        height: 205px;
    }

    .career-promo-points {
        gap: 9px;
    }

    .career-promo-point {
        grid-template-columns: 42px 1fr;

        gap: 10px;

        padding: 10px 11px;
    }

    .career-promo-icon {
        width: 42px;
        height: 42px;
    }

    .career-promo-icon svg {
        width: 22px;
        height: 22px;
    }

    .career-promo-point strong {
        font-size: 12px;
    }

    .career-promo-point span {
        font-size: 10px;
    }

    .career-sec {
        padding: 75px 0;
    }

    .career-welcome-card {
        padding: 32px 22px;
    }

    .career-welcome-card h3 {
        font-size: 27px;
    }

    .career-welcome-card p {
        font-size: 13px;
    }

    .agent-sec {
        padding: 75px 0;
    }

    .agent-benefit-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 35px;
    }

    .agent-benefit-card {
        min-height: auto;

        padding: 27px 23px;
    }

    .agent-benefit-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 20px;
    }

    .agent-benefit-card h3 {
        font-size: 22px;
    }

    .agent-benefit-card p {
        font-size: 13px;
    }

    .agent-cta {
        margin-top: 35px;
    }

    .agent-cta .btn {
        width: 100%;
    }

    .corporate-sec {
        padding: 75px 0;
    }

    .corporate-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 35px;
    }

    .corporate-card {
        min-height: auto;

        padding: 27px 23px;
    }

    .corporate-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 20px;
    }

    .corporate-card h3 {
        font-size: 22px;
    }

    .corporate-card p {
        font-size: 13px;
    }

    .corporate-sec .agent-cta {
        margin-top: 35px;
    }

    .os-section {
        padding: 75px 0;
    }

    .card-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .product-card {
        min-height: 390px;
    }

    .product-media {
        top: 24px;
        left: 24px;

        width: 60px;
        height: 60px;
    }

    .product-media svg {
        width: 29px;
        height: 29px;
    }

    .product-body {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .product-body h3 {
        font-size: 27px;
    }

    .product-body p {
        font-size: 13px;
    }

    .promo-dental {
        padding: 75px 0;
    }

    .dental-promo-content h2 {
        font-size: 38px;
    }

    .dental-promo-content p {
        font-size: 15px;
    }

    .dental-benefits {
        gap: 8px;
    }

    .dental-benefits span {
        padding: 8px 11px;

        font-size: 11px;
    }

    .dental-promo-visual {
        min-height: 330px;
    }

    .dental-icon {
        width: 125px;
        height: 125px;
    }

    .dental-icon svg {
        width: 70px;
        height: 70px;
    }

    .dental-promo-visual::before {
        width: 240px;
        height: 240px;
    }

    .dental-promo-visual::after {
        width: 175px;
        height: 175px;
    }

    .dental-promo-label {
        bottom: 24px;

        width: calc(100% - 32px);

        padding: 13px 15px;
    }

    .form-page-section {
        padding: 115px 0 70px;
    }

    .form-page-heading {
        margin-bottom: 32px;
    }

    .form-page-heading h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }

    .form-page-heading p {
        font-size: 15px;

        line-height: 1.7;
    }

    .form-page-card {
        padding: 28px 20px;

        border-radius: 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 20px;
    }

    .form-field input,
    .form-field select {
        min-height: 50px;
    }

    .form-submit {
        flex-direction: column;

        margin-top: 26px;
    }

    .form-submit .btn {
        width: 100%;

        min-width: 0;
    }
}

/* =========================================================
   32. SMALL MOBILE — 420PX
   ========================================================= */

@media (max-width: 420px) {

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

    .logo {
        font-size: 14px;
    }

    .logo-mark {
        width: 28px;
        height: 28px;

        flex-basis: 28px;
    }

    .logo .brand-name {
        gap: 4px;

        margin-left: 4px;
    }

    .hero-slider {
        height: 620px;
        min-height: 620px;
    }

    .hero-slider .hero-content {
        min-height: 620px;

        padding-top: 95px;
        padding-bottom: 40px;
    }

    .hero-slider h1 {
        font-size: 38px;

        line-height: 1.03;
    }

    .hero-slider p {
        margin-top: 18px;
        margin-bottom: 24px;

        font-size: 14px;
        line-height: 1.65;
    }
	
	.hero-slide-actions {
        gap: 10px;
    }

    .hero-slide-actions .btn {
        min-height: 48px;
    }

    .hero-sound-toggle {
        right: 14px;
        bottom: 14px;

        width: 44px;
        height: 44px;
    }

    .trust-item strong {
        font-size: 10px;
    }

    .trust-item span {
        font-size: 10px;
    }

    .about-grid h2 {
        font-size: 29px !important;
    }

    .pillar {
        padding: 20px;
    }

    .pillar h4 {
        font-size: 21px;
    }

    .stat-card {
        min-height: 150px;

        padding: 25px 18px;
    }

    .stat-num {
        font-size: 44px;
    }

    .stat-label {
        font-size: 10px;
    }

    .core-value-card {
        padding: 24px 20px;
    }

    .core-value-card h3 {
        font-size: 23px;
    }

    .faq-question {
        padding: 16px;

        gap: 12px;
    }

    .form-card {
        padding: 22px 16px;
    }

    .field input,
    .field select,
    .field textarea {
        font-size: 13px;
    }

    .field textarea {
        min-height: 125px;
    }

    .info-item {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .info-item .icon-box {
        width: 48px;
        height: 48px;
    }

    .map-placeholder {
        height: 270px;
    }

    .map-label-text strong {
        font-size: 10px;
    }

    .map-label-text span {
        font-size: 9px;
    }

    .career-promo {
        padding-top: 80px;
    }

    .career-promo-content h2 {
        font-size: 35px;
    }

    .career-promo-content > p {
        font-size: 14px;
    }

    .career-promo-visual {
        min-height: 500px;

        padding-left: 16px;
        padding-right: 16px;
    }

    .career-promo-badge {
        top: 15px;
        right: 15px;

        width: 125px;
    }

    .career-promo-message {
        margin-top: 55px;
    }

    .career-promo-message span {
        font-size: 17px;
    }

    .career-promo-message strong {
        font-size: 39px;
    }

    .career-promo-point span {
        font-size: 9px;
    }

    .career-welcome-card {
        padding: 28px 18px;
    }

    .career-welcome-card h3 {
        font-size: 24px;
    }

    .agent-benefit-card,
    .corporate-card {
        padding: 24px 20px;
    }

    .product-card {
        min-height: 400px;
    }

    .product-body h3 {
        font-size: 25px;
    }

    .dental-promo-content h2 {
        font-size: 34px;
    }

    .dental-promo-visual {
        min-height: 300px;
    }

    .dental-promo-label {
        bottom: 18px;
    }

    .dental-promo-label strong {
        font-size: 10px;
    }

    .dental-promo-label span {
        font-size: 10px;
    }

    .form-page-section {
        padding-top: 105px;
    }

    .form-page-heading h1 {
        font-size: 31px;
    }

    .form-page-heading p {
        font-size: 14px;
    }

    .form-page-card {
        padding: 24px 16px;
    }

    .form-field > label {
        font-size: 13px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 14px;
    }
}

/* =========================================================
   33. ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ============================================================
   IRHAS GLOBAL — ARTICLE PAGE
   ============================================================ */

.article-hero {
  position: relative;
  background: var(--navy, #07111f);
  color: var(--white, #fff);
  padding: 110px 0 90px;
  overflow: hidden;
}

.article-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border: 1px solid rgba(200, 169, 107, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.article-hero-inner {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.article-hero .eyebrow {
  margin-bottom: 20px;
  color: var(--gold, #c8a96b);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.article-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.article-subtitle {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

/* ============================================================
   ARTICLE CONTENT
   ============================================================ */

.article-section {
  background: var(--ivory, #f7f5f0);
  padding: 90px 0 100px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 80px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.article-content {
  min-width: 0;
  color: var(--text, #17202a);
  font-family: "Manrope", sans-serif;
}

.article-content h2 {
  margin: 52px 0 18px;
  color: var(--navy, #07111f);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 14px 0 10px;
  color: var(--navy, #07111f);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.article-content p {
  margin: 0 0 18px;
  color: #4b5563;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.article-content strong {
  color: var(--navy, #07111f);
  font-weight: 700;
}

/* ============================================================
   FOUR QUESTION FRAMEWORK
   ============================================================ */

.framework {
  margin: 45px 0 60px;
  padding: 40px;
  background: #fff;
  border: 1px solid rgba(200, 169, 107, 0.25);
}

.framework-intro {
  max-width: 650px;
  margin-bottom: 32px;
}

.framework-intro h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.framework-intro p {
  margin: 0;
}

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

.framework-card {
  padding: 28px;
  background: var(--ivory, #f7f5f0);
  border: 1px solid rgba(200, 169, 107, 0.18);
}

.framework-number {
  margin-bottom: 18px;
  color: var(--gold, #c8a96b);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.framework-card h3 {
  margin-top: 0;
}

.framework-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.75;
}

/* ============================================================
   ARTICLE NOTE
   ============================================================ */

.article-note {
  margin: 35px 0;
  padding: 26px 30px;
  background: var(--navy, #07111f);
  border-left: 3px solid var(--gold, #c8a96b);
  color: rgba(255, 255, 255, 0.78);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.article-note strong {
  color: var(--gold2, #e1cc9b);
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(200, 169, 107, 0.22);
}

.sidebar-label {
  margin-bottom: 18px;
  color: var(--navy, #07111f);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sidebar-box a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  color: #5b6470;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-box a:last-child {
  border-bottom: 0;
}

.sidebar-box a:hover {
  color: var(--gold, #c8a96b);
}

/* ============================================================
   CTA
   ============================================================ */

.article-cta {
  padding: 90px 0;
  background: var(--navy, #07111f);
  color: var(--white, #fff);
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner .eyebrow {
  margin-bottom: 18px;
  color: var(--gold, #c8a96b);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-inner h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
}

.cta-inner p {
  max-width: 650px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  background: var(--gold, #c8a96b);
  color: var(--navy, #07111f);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  
   border-radius: 25px;
   
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  background: var(--gold2, #e1cc9b);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .article-sidebar {
    position:static;
  }

  .sidebar-box {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .article-hero {
    padding: 80px 0 70px;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  .article-subtitle {
    font-size: 15px;
  }

  .article-section {
    padding: 65px 0 75px;
  }

  .article-content h2 {
    font-size: 28px;
    margin-top: 42px;
  }

  .article-content p {
    font-size: 15px;
  }

  .framework {
    padding: 25px 20px;
  }

  .framework-grid {
    grid-template-columns: 1fr;
  }

  .framework-card {
    padding: 24px;
  }

  .article-cta {
    padding: 70px 0;
  }
}

/* =========================================================
   HERO MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .hero-slider {
        height: 680px;
        min-height: 680px;
    }
	
    .hero-video iframe {
        position: absolute;

        top: 50%;
        left: 50%;

        width: 177.78vh;
        height: 100vh;

        min-width: 177.78vh;
        min-height: 100vh;

        transform: translate(-50%, -50%);

        border: 0;

        display: block;

        pointer-events: none;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 17, 31, .45) 0%,
                rgba(7, 17, 31, .62) 35%,
                rgba(7, 17, 31, .82) 65%,
                rgba(7, 17, 31, .96) 100%
            );
    }

    .hero-slider .hero-content {
        position: relative;

        z-index: 2;

        width: calc(100% - 32px);

        min-height: 680px;

        margin: 0 auto;

        padding-top: 110px;
        padding-bottom: 50px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: flex-start;

        box-sizing: border-box;
    }

    .hero-slider .eyebrow {
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-slider h1 {
        font-size: clamp(42px, 11vw, 58px);
        line-height: 1.02;
        margin-bottom: 0;
    }

    .hero-slider p {
        max-width: 500px;
        font-size: 15px;
        line-height: 1.65;
        margin: 20px 0 28px;
    }

    .hero-slide-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-slide-actions .btn {
        width: 100%;
		min-height: 50px;
        box-sizing: border-box;
        text-align: center;
    }
}