h1,
h2,
h3,
h4,
h5,
h6,
.nav-link {
    color: var(--heading);
}

.nav-link {
    font-weight: bold;
}

h2,
h3,
h4,
h5,
h6,
.card-title {
    background-image: linear-gradient(to right, #DD1C1A, #EBCE02);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.section-heading,
.h4,
.h5 {
    background-image: linear-gradient(to right, #DD1C1A, #EBCE02);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

a {
    color: var(--link);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
    color: #b11211;
}

:root[data-theme='dark'] a:hover,
:root[data-theme='dark'] a:focus {
    color: #bfe6ff;
}

footer {
    background-color: #01AED5;
    color: #fff;
}

main {
    background-color: var(--bg);
}

.hero {
    padding-top: 110px;
    padding-bottom: 95px;
    color: #fff;
}

.hero h1 {
    color: #fff;
    font-size: 4em;
    text-shadow: 6px 6px #DD1C1A;
    font-weight: 900;
}

.hero a {
    color: #fff;
}

.hero-home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)), url("/img/bps-designs-homepage-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-our-work-item {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/img/our-work-hero-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.hero-blog-item,
.hero-page-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-page-item {
    position: relative;
}

.hero-home,
.hero-blog-item,
.hero-page-item,
.cta-panel {
    position: relative;
    overflow: hidden;
}

.hero-home::before,
.hero-home::after,
.hero-blog-item::after,
.hero-page-item::after,
.cta-panel::before {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
}

.hero-home::before,
.hero-blog-item::after,
.hero-page-item::after {
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, var(--accent-glow-strong), transparent 68%);
}

.hero-home::before {
    top: -6rem;
    left: -4rem;
}

.hero-home::after,
.cta-panel::before {
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
}

.hero-home::after {
    right: -4rem;
    bottom: -7rem;
}

.hero-blog-item::after,
.hero-page-item::after {
    top: -5rem;
    right: -4rem;
}

.cta-panel::before {
    top: -5rem;
    right: -4rem;
}

.hero-page-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.34));
    z-index: 0;
}

.hero-blog-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.hero-page-item > .container,
.hero-blog-item > .container,
.hero-home > .container,
.cta-panel > * {
    position: relative;
    z-index: 1;
}

.hero-page-item > .custom-shape-divider-bottom-hero,
.hero-blog-item > .custom-shape-divider-bottom-hero,
.hero-home > .custom-shape-divider-bottom-hero {
    position: absolute;
    z-index: 2;
}

.hero-our-work-item {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.16)), url("/img/our-work-hero-bg.webp");
}

.hero-location {
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 600px) {

    .hero-home,
    .hero-our-work-item,
    .hero-blog-item,
    .hero-page-item,
    .hero-location {
        background-attachment: initial;
    }

    .hero {
        padding-top: 88px;
        padding-bottom: 72px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-meta {
        justify-content: center;
    }

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

    .nav-item-theme-toggle {
        margin-left: 0;
    }

    .nav-item-theme-toggle .theme-toggle {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.35rem;
    }

}

.custom-shape-divider-bottom-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-hero svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 52px;
}

.custom-shape-divider-bottom-hero .shape-fill {
    fill: #FFFFFF;
}

.custom-shape-divider-top-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-footer svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

.custom-shape-divider-top-footer .shape-fill {
    fill: #FFFFFF;
}


:root {
    --bg: #ffffff;
    --bg-soft: #fff7e8;
    --bg-section: linear-gradient(180deg, rgba(241, 161, 34, 0.08), rgba(1, 174, 213, 0.08));
    --text: #24303f;
    --text-muted: #405166;
    --heading: #DD1C1A;
    --link: #DD1C1A;
    --nav-bg: rgba(255, 255, 255, 0.96);
    --card-bg: #ffffff;
    --card-border: rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.12);
    --accent-glow: rgba(14, 102, 226, 0.16);
    --accent-glow-strong: rgba(1, 174, 213, 0.22);
    --button-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.16);
}

:root[data-theme='dark'] {
    --bg: #0f172a;
    --bg-soft: #162033;
    --bg-section: linear-gradient(180deg, rgba(24, 34, 52, 0.94), rgba(15, 23, 42, 0.98));
    --text: #e5eefc;
    --text-muted: #c4d2e7;
    --heading: #f2c94c;
    --link: #8bd3ff;
    --nav-bg: rgba(15, 23, 42, 0.92);
    --card-bg: #162033;
    --card-border: rgba(139, 211, 255, 0.14);
    --shadow-soft: 0 1rem 2rem rgba(0, 0, 0, 0.28);
    --shadow-elevated: 0 1.5rem 3rem rgba(2, 6, 23, 0.42);
    --accent-glow: rgba(139, 211, 255, 0.18);
    --accent-glow-strong: rgba(199, 184, 255, 0.2);
    --button-shadow: 0 1rem 2rem rgba(2, 6, 23, 0.34);
}

body {
    color: var(--text);
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at top left, rgba(241, 161, 34, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(1, 174, 213, 0.08), transparent 24%);
    background-attachment: fixed;
    transition: background-color 0.2s ease, color 0.2s ease;
}

:root[data-theme='dark'] body {
    background-image:
        radial-gradient(circle at top left, rgba(242, 201, 76, 0.09), transparent 26%),
        radial-gradient(circle at top right, rgba(139, 211, 255, 0.08), transparent 24%);
}

nav.navbar {
    border-bottom: 4px solid #F3C709;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
}

.nav-link:hover,
.nav-link:focus {
    color: #b11211;
}

.navbar-toggler {
    border-color: rgba(221, 28, 26, 0.35);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(221, 28, 26, 0.2);
}

.navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.navbar-nav {
    gap: 0.65rem;
}

.navbar-nav .nav-link.active {
    background: var(--card-bg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--card-border);
}

.nav-item-theme-toggle {
    margin-left: 0.35rem;
}

.nav-item-theme-toggle .theme-toggle {
    width: auto;
}

.nav-item-theme-toggle .theme-toggle i {
    font-size: 1rem;
}

.theme-toggle {
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    box-shadow: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus {
    transform: translateY(-1px);
    color: var(--link);
}

.theme-toggle-nav {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-weight: 700;
}

.theme-toggle-label {
    line-height: 1;
}

footer .container {
    padding-top: 80px;
    padding-bottom: 32px;
}

footer h3 {
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

iframe {
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px #000;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.92);
}

h2,
h3,
h4 {
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 30px;
}

p {
    line-height: 1.75;
    color: var(--text);
}

li {
    color: var(--text);
}

.blog-meta {
    color: #617186;
    border-bottom: 1px solid rgba(36, 48, 63, 0.14);
}

.blog-card-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.blog-card-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    width: fit-content;
    padding: 0.24rem 0.5rem;
    border-radius: 999px;
    background: rgba(36, 48, 63, 0.06);
    border: 1px solid rgba(36, 48, 63, 0.08);
    color: #617186;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
}

h5,
h6 {
    font-weight: 650;
}

.cta-bg {
    background-image: url("/img/cta-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.cta-text {
    font-size: 1.3rem;
}

.top-bar {
    background-color: #F1A122;
    color: #fff;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.grecaptcha-badge {
    display: none;
}

#confetti-canvas {
    top: 0;
    position: absolute;
}

.badge a {
    color: #fff;
    text-decoration: none;
}

.card-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clamp-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.clamp-text-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

#contact-form {
    box-shadow: 0 0 10px #ccc;
    background: #fff;
}

.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.section-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0e66e2;
}

.lead-text {
    font-size: 1.18rem;
    color: var(--text-muted);
}

.lead-text-sm {
    font-size: 1.08rem;
    color: var(--text-muted);
}

.hero-inner {
    max-width: 920px;
    padding-top: 0.5rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.info-card {
    background: linear-gradient(180deg, var(--card-bg), var(--bg-soft));
}

.card,
.info-card,
.product-card,
.theme-toggle {
    border-color: var(--card-border) !important;
}

.card,
.info-card,
.product-card {
    background-color: var(--card-bg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.card:hover,
.card:focus-within,
.info-card:hover,
.info-card:focus-within,
.product-card:hover,
.product-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--accent-glow-strong) !important;
}

.feature-list li {
    margin-bottom: 0.75rem;
}

.text-link-strong {
    color: #0e66e2;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.text-link-strong i {
    transition: transform 0.2s ease;
}

.text-link-strong:hover i,
.text-link-strong:focus i {
    transform: translateX(3px);
}

:root[data-theme='dark'] .text-link-strong {
    color: #8bd3ff;
}

:root[data-theme='dark'] h2,
:root[data-theme='dark'] h3,
:root[data-theme='dark'] h4,
:root[data-theme='dark'] h5,
:root[data-theme='dark'] h6,
:root[data-theme='dark'] .card-title,
:root[data-theme='dark'] .section-heading,
:root[data-theme='dark'] .h4,
:root[data-theme='dark'] .h5 {
    background-image: linear-gradient(to right, #8bd3ff, #c7b8ff);
}

:root[data-theme='dark'] .blog-meta {
    color: #b4c3d6;
    border-bottom-color: rgba(139, 211, 255, 0.16);
}

:root[data-theme='dark'] .blog-card-meta {
    background: rgba(139, 211, 255, 0.08);
    color: #b9c9db;
}

:root[data-theme='dark'] .blog-card-image-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(6, 10, 18, 0.28), rgba(6, 10, 18, 0.42));
    pointer-events: none;
}

:root[data-theme='dark'] .blog-card-meta {
    background: rgba(139, 211, 255, 0.14);
    border-color: rgba(139, 211, 255, 0.24);
    color: #eef6ff;
}

:root[data-theme='dark'] .top-bar {
    background-color: #182235;
}

:root[data-theme='dark'] nav.navbar {
    border-bottom-color: #7c6518;
}

:root[data-theme='dark'] .hero-home {
    background-image: linear-gradient(rgba(6, 10, 18, 0.64), rgba(6, 10, 18, 0.78)), url("/img/bps-designs-homepage-bg.webp");
}

:root[data-theme='dark'] .hero-blog-item {
    position: relative;
}

:root[data-theme='dark'] .hero-blog-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(6, 10, 18, 0.64), rgba(6, 10, 18, 0.78));
    z-index: 0;
}

:root[data-theme='dark'] .hero-blog-item > .container {
    position: relative;
    z-index: 1;
}

:root[data-theme='dark'] .hero-blog-item > .custom-shape-divider-bottom-hero {
    position: absolute;
    z-index: 2;
}

:root[data-theme='dark'] .hero h1 {
    color: #d7ddea;
    text-shadow: 4px 4px #243246;
}

:root[data-theme='dark'] .hero .btn-hero-primary {
    background-color: #b8931b;
    border-color: #b8931b;
    color: #0f172a !important;
}

:root[data-theme='dark'] .hero .btn-hero-primary:hover,
:root[data-theme='dark'] .hero .btn-hero-primary:focus,
:root[data-theme='dark'] .hero .btn-hero-primary:active {
    background-color: #c9a227;
    border-color: #c9a227;
    color: #0f172a !important;
}

:root[data-theme='dark'] .nav-link {
    color: #c8d5e6;
}

:root[data-theme='dark'] .nav-link:hover,
:root[data-theme='dark'] .nav-link:focus {
    color: #8bd3ff;
}

:root[data-theme='dark'] .cta-panel {
    background: linear-gradient(135deg, #14324a, #1b4568);
}

:root[data-theme='dark'] .btn-cta-light {
    background-color: #2d4a6b;
    border-color: #2d4a6b;
    color: #e5eefc !important;
}

:root[data-theme='dark'] .btn-card-action {
    background-color: #37587d;
    border-color: #37587d;
    color: #e5eefc !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

:root[data-theme='dark'] .btn-card-action:hover,
:root[data-theme='dark'] .btn-card-action:focus,
:root[data-theme='dark'] .btn-card-action:active {
    background-color: #4a6b94;
    border-color: #4a6b94;
    color: #ffffff !important;
}

:root[data-theme='dark'] .btn-cta-light:hover,
:root[data-theme='dark'] .btn-cta-light:focus,
:root[data-theme='dark'] .btn-cta-light:active {
    background-color: #37587d;
    border-color: #37587d;
    color: #ffffff !important;
}

:root[data-theme='dark'] footer {
    background-color: #14324a;
    color: #bfd0df;
}

:root[data-theme='dark'] footer h3 {
    color: #d9e3ec;
}

:root[data-theme='dark'] footer p,
:root[data-theme='dark'] footer li {
    color: #bfd0df;
}

:root[data-theme='dark'] footer a {
    color: #c9d9e6;
}

:root[data-theme='dark'] footer a:hover,
:root[data-theme='dark'] footer a:focus {
    color: #f1f5f9;
}

:root[data-theme='dark'] .custom-shape-divider-bottom-hero .shape-fill,
:root[data-theme='dark'] .custom-shape-divider-top-footer .shape-fill {
    fill: var(--bg);
}

:root[data-theme='dark'] .section-label {
    color: #8bd3ff;
}

:root[data-theme='dark'] .navbar-brand img {
    filter: brightness(0.72) contrast(0.98);
}

:root[data-theme='dark'] .navbar-toggler {
    border-color: rgba(139, 211, 255, 0.35);
}

:root[data-theme='dark'] .navbar-toggler-icon {
    filter: invert(1);
}

.hero-kicker {
    letter-spacing: 0.18em;
    font-weight: 700;
    text-shadow: 1px 1px 2px #000;
}

.section-soft {
    background: var(--bg-section);
}

.product-card {
    isolation: isolate;
    position: relative;
    overflow: hidden;
}

.product-card-featured {
    box-shadow: var(--shadow-elevated);
}

.product-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--card-border);
    background: linear-gradient(135deg, rgba(221, 28, 26, 0.08), rgba(1, 174, 213, 0.08));
}

.product-card-top-saas {
    background: linear-gradient(135deg, rgba(221, 28, 26, 0.1), rgba(243, 199, 9, 0.08));
}

.product-card-top-apps {
    background: linear-gradient(135deg, rgba(1, 174, 213, 0.12), rgba(14, 102, 226, 0.08));
}

.product-card-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.92);
    color: #0e66e2;
    font-size: 1.2rem;
    box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.product-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.product-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(14, 102, 226, 0.08);
    border: 1px solid rgba(14, 102, 226, 0.1);
    color: #35506d;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
}

.product-card .card-body p {
    margin-bottom: 0;
}

.product-card .btn-card-action {
    align-self: flex-start;
}

.product-card::after {
    content: "";
    position: absolute;
    inset: auto 1.25rem 1rem;
    height: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(221, 28, 26, 0.85), rgba(1, 174, 213, 0.85));
    opacity: 0;
    transform: scaleX(0.7);
    transform-origin: left;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.product-card:hover::after,
.product-card:focus-within::after {
    opacity: 1;
    transform: scaleX(1);
}

:root[data-theme='dark'] .product-card-top {
    background: linear-gradient(135deg, rgba(139, 211, 255, 0.08), rgba(199, 184, 255, 0.08));
    border-bottom-color: rgba(139, 211, 255, 0.14);
}

:root[data-theme='dark'] .product-card-top-saas {
    background: linear-gradient(135deg, rgba(124, 101, 24, 0.32), rgba(55, 88, 125, 0.18));
}

:root[data-theme='dark'] .product-card-top-apps {
    background: linear-gradient(135deg, rgba(20, 50, 74, 0.72), rgba(55, 88, 125, 0.24));
}

:root[data-theme='dark'] .product-card-eyebrow {
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(139, 211, 255, 0.16);
    color: #cfe2f7;
}

:root[data-theme='dark'] .product-card-icon {
    background: rgba(15, 23, 42, 0.76);
    border-color: rgba(139, 211, 255, 0.16);
    color: #8bd3ff;
    box-shadow: 0 0.75rem 1.5rem rgba(2, 6, 23, 0.25);
}

:root[data-theme='dark'] .product-chip {
    background: rgba(139, 211, 255, 0.1);
    border-color: rgba(139, 211, 255, 0.16);
    color: #dbeafe;
}

@media only screen and (max-width: 600px) {
    .product-card-top {
        padding: 1rem 1rem 0.95rem;
    }

    .product-card-icon {
        width: 2.6rem;
        height: 2.6rem;
        border-radius: 0.85rem;
        font-size: 1.05rem;
    }

    .product-chip {
        font-size: 0.74rem;
    }
}

.cta-panel {
    background: linear-gradient(135deg, #01AED5, #0e66e2);
}

footer {
    transition: background-color 0.2s ease, color 0.2s ease;
}

a.badge {
    text-decoration: none;
}

.hero-actions .btn {
    min-width: 220px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--button-shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-actions .btn i {
    transition: transform 0.2s ease;
}

.hero-actions .btn:hover,
.hero-actions .btn:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.hero-actions .btn:hover i,
.hero-actions .btn:focus i {
    transform: translateX(2px);
}

.btn-hero-primary {
    background-color: #F3C709;
    border: 2px solid #F3C709;
    color: #1f1f1f !important;
    font-weight: 700;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus,
.btn-hero-primary:active {
    background-color: #e0b807;
    border-color: #e0b807;
    color: #1f1f1f !important;
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.12);
    border: 2px solid #ffffff;
    color: #ffffff !important;
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus,
.btn-hero-secondary:active {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #0e66e2 !important;
}

:root[data-theme='dark'] .btn-hero-secondary {
    background-color: rgba(28, 42, 61, 0.78);
    border-color: rgba(139, 211, 255, 0.32);
    color: #e5eefc !important;
}

:root[data-theme='dark'] .btn-hero-secondary:hover,
:root[data-theme='dark'] .btn-hero-secondary:focus,
:root[data-theme='dark'] .btn-hero-secondary:active {
    background-color: rgba(48, 68, 95, 0.92);
    border-color: rgba(139, 211, 255, 0.42);
    color: #ffffff !important;
}

.btn-cta-light {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #0e66e2 !important;
    font-weight: 700;
    box-shadow: var(--button-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-cta-light:hover,
.btn-cta-light:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.btn-cta-light:hover,
.btn-cta-light:focus,
.btn-cta-light:active {
    background-color: #f2f7ff;
    border-color: #f2f7ff;
    color: #0e66e2 !important;
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background-color: #01AED5;
    border: 2px solid #01AED5;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 0.5rem 1rem rgba(1, 174, 213, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-card-action:hover,
.btn-card-action:focus,
.btn-card-action:active {
    background-color: #0e66e2;
    border-color: #0e66e2;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.cta-panel,
.cta-panel h2,
.cta-panel .cta-copy {
    color: #ffffff !important;
}

table {
    border: solid 1px #F1A122;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 20px auto;
}

table th {
    background-color: #F1A122;
    border: solid 1px #F1A122;
    color: #ffffff;
    padding: 10px;
    text-align: left;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
}

table tbody td {
    border: solid 1px #F1A122;
    color: #333;
    padding: 10px;
    text-shadow: 1px 1px 1px #fff;
}

.banner {
    box-shadow: 0 0 10px 2px #999;
}

