/* Emirates Compensation — Luxury Red & Gold Design */
:root {
    --primary: #D71A21;
    --primary-dark: #a81319;
    --primary-light: #fde8e9;
    --primary-muted: rgba(215, 26, 33, .08);
    --accent: #C4A35A;
    --accent-dark: #a88a3e;
    --bg-color: #faf9f7;
    --bg-warm: #f5f3ef;
    --bg-hero: linear-gradient(145deg, #1a0a0a 0%, #3d1012 35%, #D71A21 100%);
    --text-dark: #111827;
    --text-body: #3d3d3d;
    --text-light: #5a5a5a;
    --text-muted: #9a9a9a;
    --white: #fff;
    --card-bg: #fff;
    --card-border: rgba(0, 0, 0, .05);
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, .05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .07);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .1);
    --shadow-brand: 0 8px 30px rgba(0, 33, 87, .12);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, .12);
    --radius-xl: 20px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --green-bg: #f0fdf4;
    --green-border: #bbf7d0;
    --green-text: #15803d;
    --green-icon: #22c55e
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

html,
body {
    overflow-x: clip;
    width: 100%
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.75;
    background: var(--bg-color);
    background-image: radial-gradient(ellipse at 20% 0%, rgba(0, 33, 87, .03) 0%, transparent 50%);
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.15
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all .25s ease
}

a:hover {
    color: var(--accent)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.glass-effect {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .04)
}

.glass-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md)
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all .35s ease
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06)
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--text-dark)
}

.logo .highlight {
    color: var(--primary)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .3px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.btn-sm {
    padding: 10px 22px;
    font-size: .82rem
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1rem
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 33, 87, .3)
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 33, 87, .35)
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(247, 29, 37, .3)
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px)
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, .08)
}

.btn-white:hover {
    background: var(--bg-warm);
    box-shadow: var(--shadow-sm);
    color: var(--primary)
}

.btn-glow {
    animation: ctaPulse 3.5s ease-in-out infinite
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(0, 33, 87, .3)
    }

    50% {
        box-shadow: 0 4px 32px rgba(0, 33, 87, .5)
    }
}

.hero {
    position: relative;
    padding: 100px 0 180px;
    background: var(--bg-hero);
    color: var(--white);
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(247, 29, 37, .12) 0%, transparent 60%);
    border-radius: 50%;
    animation: heroOrb1 12s ease-in-out infinite
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, .04) 0%, transparent 60%);
    border-radius: 50%;
    animation: heroOrb2 10s ease-in-out infinite
}

@keyframes heroOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: .6
    }

    50% {
        transform: translate(-30px, 20px) scale(1.08);
        opacity: 1
    }
}

@keyframes heroOrb2 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(20px, -15px)
    }
}

.hero-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background: linear-gradient(150deg, transparent 0%, rgba(247, 29, 37, .06) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-text h1 {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1.5px
}

.text-gradient {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #ff6b5a 0%, #ffb3a8 50%, #fff 100%)
}

.hero-text p {
    font-size: 1.15rem;
    opacity: .85;
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    letter-spacing: .5px;
    text-transform: uppercase
}

.badge i {
    font-size: .7rem
}

.contact-widget {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .6)
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain
}

.widget-header h3 {
    margin: 0;
    font-size: 1.12rem;
    color: var(--text-dark)
}

.contact-list {
    list-style: none
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px
}

.contact-list li>i {
    width: 34px;
    height: 34px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    font-size: .85rem;
    flex-shrink: 0
}

.contact-list span {
    display: block;
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-weight: 500
}

.contact-list strong {
    display: block;
    font-size: .95rem;
    color: var(--text-dark);
    font-weight: 600
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0
}

.social-row a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-warm);
    color: var(--text-light);
    font-size: 1rem;
    transition: all .3s ease
}

.social-row a:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1)
}

.widget-footer p {
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    font-size: .78rem
}

.main-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10
}

.sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
    align-self: start;
}

.toc {
    padding: 24px
}

.toc h3 {
    font-size: .72rem;
    margin-bottom: 20px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700
}

.toc ul {
    list-style: none
}

.toc li {
    margin-bottom: 2px
}

.toc a {
    display: block;
    padding: 9px 14px;
    color: var(--text-light);
    border-radius: var(--radius-xs);
    font-size: .88rem;
    font-weight: 500;
    transition: all .25s ease;
    border-left: 2px solid transparent
}

.toc a:hover,
.toc a.active {
    background: var(--primary-muted);
    color: var(--primary);
    border-left-color: var(--primary)
}

.toc a.active {
    font-weight: 600
}

.content {
    padding: 56px
}

.intro-text .lead {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 16px
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 12px
}

.section-block {
    margin-bottom: 80px;
    scroll-margin-top: 130px
}

.section-block h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -.3px
}

.section-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px
}

.section-block>p {
    color: var(--text-light);
    margin-bottom: 12px;
    max-width: 680px;
    margin-top: 16px
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 32px
}

.bento-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.bento-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover)
}

.bento-card:hover::after {
    transform: scaleX(1)
}

.bento-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-dark)
}

.bento-card p {
    color: var(--text-light);
    font-size: .93rem;
    margin-bottom: 8px;
    line-height: 1.7
}

.bento-card ul {
    list-style: none;
    margin-top: 10px
}

.bento-card li {
    color: var(--text-light);
    font-size: .93rem;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative
}

.bento-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent)
}

.icon-box {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 1.1rem
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 30px
}

.factor-item {
    background: var(--card-bg);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all .3s ease
}

.factor-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--primary)
}

.factor-item i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem
}

.factor-item span {
    color: var(--text-body);
    font-weight: 500;
    font-size: .93rem;
    line-height: 1.5
}

.thresholds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 2rem;
    position: relative
}

.thresholds-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(to right, #e5e5e5, var(--primary), var(--accent), #e5e5e5);
    z-index: 0;
    border-radius: 2px;
    opacity: .5
}

.t-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.t-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.t-header {
    background: var(--bg-warm);
    padding: 24px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .04)
}

.t-time {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px
}

.t-title {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700
}

.t-body {
    padding: 20px 16px;
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.5;
    flex-grow: 1;
    text-align: center;
}

.t-body ul {
    list-style: none;
    margin-top: 8px
}

.t-body li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px
}

.t-body li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700
}

.t-card.highlight {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-brand);
    transform: scale(1.03);
    z-index: 5
}

.t-card.highlight .t-header {
    background: var(--primary)
}

.t-card.highlight .t-time,
.t-card.highlight .t-title {
    color: var(--white)
}

.t-card.highlight:hover {
    transform: scale(1.03) translateY(-6px)
}

.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 30px
}

.rights-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-xs);
    overflow: hidden
}

.rights-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg)
}

.rights-card.warning::before {
    background: linear-gradient(to bottom, #f59e0b, #ef4444)
}

.rights-card h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem
}

.rights-card ul {
    list-style: none
}

.rights-card li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: .93rem;
    line-height: 1.6
}

.rights-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: .8rem
}

.rights-card.warning li::before {
    content: '\f00d';
    color: #ef4444
}

.table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    background: var(--card-bg);
    margin-top: 24px
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 560px
}

th {
    background: var(--bg-warm);
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: .76rem;
    letter-spacing: 1.5px;
    padding: 18px 24px;
    text-align: left;
    border-bottom: 2px solid rgba(0, 0, 0, .05)
}

th:first-child {
    border-top-left-radius: var(--radius-lg)
}

th:last-child {
    border-top-right-radius: var(--radius-lg)
}

td {
    padding: 20px 24px;
    border-bottom: 1px solid #f5f5f5;
    color: var(--text-light);
    font-weight: 500;
    font-size: .93rem;
    transition: all .2s ease
}

tr:last-child td {
    border-bottom: none
}

tr:last-child td:first-child {
    border-bottom-left-radius: var(--radius-lg)
}

tr:last-child td:last-child {
    border-bottom-right-radius: var(--radius-lg)
}

tr:hover td {
    background: rgba(0, 33, 87, .02)
}

td:last-child {
    color: var(--primary-dark);
    font-size: 1.08rem;
    font-weight: 700
}

tr:hover td:last-child {
    background: var(--primary-light)
}

.steps-timeline {
    position: relative;
    max-width: 760px;
    margin-top: 40px
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative
}

.step-item:last-child {
    margin-bottom: 0
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 2;
    transition: all .3s ease
}

.step-item::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: -22px;
    width: 1px;
    background: rgba(0, 33, 87, .15);
    z-index: 1
}

.step-item:last-child::after {
    display: none
}

.step-content {
    background: var(--card-bg);
    padding: 20px 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    flex-grow: 1;
    font-weight: 500;
    color: var(--text-body);
    box-shadow: var(--shadow-xs);
    transition: all .3s ease;
    font-size: .93rem
}

.step-item:hover .step-content {
    border-color: rgba(0, 33, 87, .2);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm)
}

.step-item:hover .step-number {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.08)
}

.checklist-box {
    background: linear-gradient(135deg, var(--green-bg) 0%, #dcfce7 100%);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden
}

.checklist-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -10px;
    bottom: -30px;
    font-size: 160px;
    color: var(--green-icon);
    opacity: .05;
    transform: rotate(-15deg)
}

.checklist-items {
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 2
}

.check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--green-text)
}

.check-item i {
    font-size: 1rem;
    color: var(--green-icon);
    background: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(34, 197, 94, .15)
}

.faq-accordion-container {
    margin-top: 24px
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: all .3s ease;
    overflow: hidden
}

.faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: rgba(0, 33, 87, .12)
}

.faq-item summary {
    padding: 20px 28px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: .93rem;
    transition: color .2s ease
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: .72rem;
    transition: transform .3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-muted);
    border-radius: 50%
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--white)
}

.faq-item[open] summary {
    color: var(--primary)
}

.faq-item p {
    padding: 0 28px 22px;
    color: var(--text-light);
    line-height: 1.75;
    font-size: .93rem;
    animation: faqReveal .3s ease-out
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.summary-box {
    background: var(--bg-warm);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden
}

.summary-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary)
}

.summary-box h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--text-dark)
}

.summary-box p {
    color: var(--text-light);
    line-height: 1.85;
    font-size: .93rem
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .05);
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, .04);
    display: none;
    animation: slideUp .35s ease-out
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-content span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark)
}

.footer-content span strong {
    color: var(--primary)
}

@keyframes slideUp {
    from {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 80px
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all .55s cubic-bezier(.25, .46, .45, .94)
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0)
}

.animate-on-scroll:nth-child(2) {
    transition-delay: .06s
}

.animate-on-scroll:nth-child(3) {
    transition-delay: .12s
}

.animate-on-scroll:nth-child(4) {
    transition-delay: .18s
}

.animate-on-scroll:nth-child(5) {
    transition-delay: .24s
}

.animate-on-scroll:nth-child(6) {
    transition-delay: .30s
}

.animate-on-scroll:nth-child(7) {
    transition-delay: .36s
}

.animate-on-scroll:nth-child(8) {
    transition-delay: .42s
}

.animate-on-scroll:nth-child(9) {
    transition-delay: .48s
}

.key-takeaways {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.key-takeaways-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.03;
    color: var(--primary);
    pointer-events: none;
}

.key-takeaways-title {
    margin-top: 0;
    color: #0f172a;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.key-takeaways-icon-box {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 33, 87, 0.3);
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media(max-width:1024px) {
    .thresholds-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .thresholds-grid::before {
        display: none
    }

    .t-card.highlight {
        transform: none
    }
}

@media(max-width:968px) {

    .hero-layout,
    .main-layout {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 60px 0 120px
    }

    .hero-text h1 {
        font-size: 2.3rem
    }

    .hero-bg-accent {
        display: none
    }

    .hero-card {
        display: block;
        margin-top: 40px
    }

    .contact-widget {
        padding: 24px
    }

    .sidebar {
        display: none
    }

    .content {
        padding: 28px;
        overflow-x: hidden
    }

    .container {
        width: 100%;
        overflow-x: hidden;
        padding: 0 20px
    }

    .bento-grid,
    .split-cards,
    .factors-grid,
    .takeaways-grid {
        grid-template-columns: 1fr;
    }

    .thresholds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .section-block h2 {
        font-size: 1.45rem
    }

    .step-item {
        gap: 14px
    }

    .step-number {
        width: 34px;
        height: 34px;
        font-size: .9rem
    }

    .step-item::after {
        left: 16px
    }

    .step-content {
        padding: 16px 20px;
        font-size: .9rem
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    .footer-content span {
        font-size: .9rem
    }

    .sticky-footer .btn {
        width: 100%;
        justify-content: center
    }

    .logo {
        font-size: 1.1rem;
    }

    .navbar .btn-sm {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media(max-width:480px) {
    .logo {
        font-size: 1rem;
        max-width: 140px;
        line-height: 1.2;
    }

    .navbar .btn-sm {
        padding: 6px 12px;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .key-takeaways {
        padding: 1.5rem;
    }

    .thresholds-grid {
        grid-template-columns: 1fr
    }

    .hero-text h1 {
        font-size: 1.9rem
    }

    .content {
        padding: 20px
    }

    .bento-card {
        padding: 24px
    }

    .rights-card {
        padding: 24px
    }

    .checklist-box {
        padding: 24px
    }

    .summary-box {
        padding: 24px
    }
}