:root {
    --brand-dark: #0b1526;
    --brand-deep: #111c2e;
    --brand-gold: #f2b632;
    --brand-gold-soft: #f6e27a;
    --brand-amber: #fbd88a;
    --text-strong: #0f172a;
    --text-muted: #475569;
    --text-soft: #94a3b8;
    --body-bg: #f8fafc;
    --card-bg: #ffffff;
    --card-border: rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 30px 80px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.08);
    --radius-lg: 22px;
    --radius-xl: 32px;
    --transition-curve: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Space Grotesk", "Inter", "Segoe UI", sans-serif;
    background: var(--body-bg);
    color: var(--text-strong);
    line-height: 1.65;
    margin: 0;
    min-height: 100vh;
}

main {
    margin-top: 74px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

::selection {
    background: rgba(242, 182, 50, 0.2);
}

.page-frame {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
    transform: translateY(16px);
}

.page-frame.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

.page-frame::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(246, 226, 122, 0.25), transparent 45%), radial-gradient(circle at 80% 0%, rgba(17, 28, 46, 0.12), transparent 55%);
    pointer-events: none;
    z-index: -1;
}

/* ---------- Header & Navigation ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-soft));
    color: var(--brand-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    box-shadow: 0 20px 40px rgba(242, 182, 50, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.brand-tagline {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.25rem 0;
    transition: color 0.35s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: linear-gradient(120deg, var(--brand-gold-soft), var(--brand-gold));
    transition: width 0.35s var(--transition-curve);
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-dark);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(242, 182, 50, 0.4);
    background: var(--brand-dark);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 18px 35px rgba(11, 21, 38, 0.18);
    transition: transform 0.35s var(--transition-curve), box-shadow 0.35s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(17, 28, 46, 0.25);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(11, 21, 38, 0.12);
    background: #fff;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-strong);
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--text-strong);
    transition: transform 0.35s ease, top 0.35s ease, opacity 0.35s ease;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.nav-toggle.is-open span {
    background: transparent;
}

.nav-toggle.is-open span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.is-open span::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        padding: 1.5rem;
        box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
        border-bottom-left-radius: var(--radius-lg);
        border-bottom-right-radius: var(--radius-lg);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }
}

/* ---------- Buttons & Badges ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.85rem 1.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.45s var(--transition-curve), box-shadow 0.35s ease, background 0.35s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--brand-gold-soft), var(--brand-gold));
    color: var(--brand-dark);
    box-shadow: 0 20px 45px rgba(242, 182, 50, 0.45);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(242, 182, 50, 0.6);
}

.btn-outline {
    border: 1.5px solid rgba(11, 21, 38, 0.12);
    color: var(--text-strong);
    background: transparent;
}

.btn-outline:hover {
    border-color: rgba(11, 21, 38, 0.35);
    transform: translateY(-2px);
}

.ghost-button {
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px dashed rgba(242, 182, 50, 0.6);
    color: var(--brand-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(242, 182, 50, 0.4);
    background: rgba(246, 226, 122, 0.15);
    color: var(--brand-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.pill-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(242, 182, 50, 0.2);
}

/* ---------- Section Utilities ---------- */
.section-padding {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}

.section-tag {
    display: inline-block;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(11, 21, 38, 0.06);
    color: var(--brand-dark);
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-light {
    background: #fff;
}

.section-contrast {
    background: var(--brand-dark);
    color: #fff;
}

.section-contrast .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Hero ---------- */
.hero-shell {
    position: relative;
    overflow: hidden;
    padding: clamp(6rem, 12vw, 9rem) 0 clamp(5rem, 8vw, 7rem);
}

.hero-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(246, 226, 122, 0.35), transparent 40%), radial-gradient(circle at 80% 0%, rgba(11, 28, 46, 0.25), transparent 45%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: var(--brand-dark);
    display: inline-block;
    position: relative;
}

.hero-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 12px;
    background: linear-gradient(120deg, rgba(246, 226, 122, 0.6), rgba(242, 182, 50, 0.6));
    z-index: -1;
    border-radius: 999px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 2.25rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-media {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.hero-media::before,
.hero-media::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(242, 182, 50, 0.2);
    filter: blur(20px);
    animation: floaty 8s ease-in-out infinite;
}

.hero-media::before {
    width: 180px;
    height: 180px;
    top: -60px;
    right: 10%;
}

.hero-media::after {
    width: 240px;
    height: 240px;
    bottom: -80px;
    left: 5%;
    animation-delay: 1.5s;
}

.media-card {
    background: rgba(11, 21, 38, 0.95);
    color: #fff;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.media-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.media-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.media-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.media-pill {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

.stat-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
}

.stat-pill {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(11, 21, 38, 0.08);
    text-align: left;
    box-shadow: var(--shadow-card);
    transition: transform 0.35s ease;
}

.stat-pill:hover {
    transform: translateY(-4px);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- Cards & Grids ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.glow-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: transform 0.45s var(--transition-curve), border-color 0.35s ease;
}

.glow-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(242, 182, 50, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section-contrast .glow-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: none;
}

.section-contrast .glow-card .feature-copy,
.section-contrast .glow-card .feature-list,
.section-contrast .glow-card .feature-list li {
    color: rgba(255, 255, 255, 0.75);
}

.section-contrast .glow-card .feature-list li::before {
    background: #fff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

.glow-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 182, 50, 0.5);
}

.glow-card:hover::after {
    opacity: 1;
    animation: pulse-border 2s linear infinite;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-soft));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    box-shadow: 0 18px 40px rgba(242, 182, 50, 0.4);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
}

.feature-copy {
    color: var(--text-muted);
}

.feature-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.45rem;
    color: var(--text-muted);
}

.feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 0 6px rgba(242, 182, 50, 0.15);
}

.border-animated {
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.border-animated::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(120deg, rgba(242, 182, 50, 0.6), rgba(11, 21, 38, 0.3));
    -webkit-mask: linear-gradient(#fff, #fff);
    mask: linear-gradient(#fff, #fff);
    opacity: 0;
    animation: gradient-border 4s ease infinite;
}

/* ---------- Testimonials & Clients ---------- */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(11, 21, 38, 0.08);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    font-size: 5rem;
    color: rgba(242, 182, 50, 0.15);
    top: 1.5rem;
    right: 2rem;
    font-family: "Times New Roman", serif;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.logo-pill {
    border-radius: 999px;
    padding: 1.25rem 1rem;
    border: 1px solid rgba(11, 21, 38, 0.1);
    background: #fff;
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.logo-pill:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 182, 50, 0.5);
}

/* ---------- About ---------- */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.story-item {
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(11, 21, 38, 0.08);
    box-shadow: var(--shadow-card);
}

.timeline {
    border-left: 2px dashed rgba(11, 21, 38, 0.2);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.timeline-step {
    position: relative;
    margin-bottom: 1.25rem;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: -1.75rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 0 6px rgba(242, 182, 50, 0.25);
}

.value-card {
    text-align: left;
    padding: 2rem;
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-soft));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    box-shadow: 0 18px 40px rgba(242, 182, 50, 0.45);
}

/* ---------- Services ---------- */
.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    background: #fff;
    border: 1px solid rgba(11, 21, 38, 0.08);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 0.45s var(--transition-curve);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(120deg, rgba(246, 226, 122, 0.5), rgba(11, 21, 38, 0.35));
    opacity: 0;
    transition: opacity 0.45s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::after {
    opacity: 1;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(246, 226, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--brand-dark);
    border: 1px solid rgba(242, 182, 50, 0.5);
}

.service-footer {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.service-chip {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(11, 21, 38, 0.05);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---------- Clients ---------- */
.success-card {
    border-radius: var(--radius-xl);
    padding: 3rem;
    background: linear-gradient(135deg, var(--brand-dark), #15223a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.success-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.success-card .pill-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.success-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- Clients Logos Row ---------- */
.client-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.result-pill {
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    text-align: center;
}

.result-pill strong {
    font-size: 1.5rem;
    display: block;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(11, 21, 38, 0.08);
    box-shadow: var(--shadow-card);
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(11, 21, 38, 0.15);
    padding: 0.9rem 1.1rem;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: rgba(242, 182, 50, 0.8);
    box-shadow: 0 0 0 4px rgba(242, 182, 50, 0.15);
    outline: none;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0;
    color: var(--text-muted);
}

.contact-list i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(11, 21, 38, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
}

.social-row {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(11, 21, 38, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-strong);
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--brand-deep);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: var(--brand-gold-soft);
    transform: translateX(4px);
}

.footer-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-icon:hover {
    transform: translateY(-4px);
    background: var(--brand-gold);
    color: var(--brand-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-delay-1 {
    transition-delay: 0.1s;
}

.scroll-delay-2 {
    transition-delay: 0.2s;
}

.scroll-delay-3 {
    transition-delay: 0.3s;
}

.floating-border {
    position: relative;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
}

.floating-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(246, 226, 122, 0.8), rgba(17, 28, 46, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: glow-sweep 5s linear infinite;
}

@keyframes glow-sweep {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

@keyframes gradient-border {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

@keyframes pulse-border {
    0% {
        opacity: 0.25;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.25;
    }
}

@keyframes floaty {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ---------- Media Queries ---------- */
@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-media {
        padding: 1.75rem;
    }

    .stat-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .page-container {
        padding: 0 1rem;
    }
}