:root {
    --primary-color: #ff4e00;
    --text-color: #ffffff;
    --header-bg: rgba(0, 0, 0, 0.4);
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background: #000;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
    width: 100%;
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1520px !important;
    }
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease, transform 0.3s ease;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 20%,
            rgba(0, 0, 0, 0.45) 35%,
            rgba(0, 0, 0, 0.28) 50%,
            rgba(0, 0, 0, 0.15) 65%,
            rgba(0, 0, 0, 0.06) 80%,
            transparent 100%);
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.main-header.scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0 !important;
}

.main-header.scrolled .menu-label,
.main-header.scrolled .lang-switcher a,
.main-header.scrolled .lang-switcher button {
    color: #0f172a !important;
}

.main-header.scrolled .hamburger .bar {
    background: #0f172a !important;
}

.main-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left,
.header-right {
    flex: 1;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.menu-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    gap: 12px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-btn .bar {
    width: 32px;
    height: 2px;
    background: #fff;
    display: block;
    transition: var(--transition-speed);
}

.menu-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.9;
}

.logo-area {
    text-align: center;
}

.logo {
    display: inline-block;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    display: block;
}

.lang-switcher {
    display: flex;
    gap: 15px;
}

.lang-switcher a,
.lang-switcher button {
    color: #fff;
    background: transparent;
    border: none;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.2s;
    cursor: pointer;
}

.lang-switcher a.active,
.lang-switcher button.active,
.lang-switcher a:hover,
.lang-switcher button:hover {
    opacity: 1;
}

.sidenav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 200;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sidenav.open {
    transform: translateY(0);
}

.sidenav-header {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.sidenav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.sidenav-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.sidenav-links a:hover {
    color: var(--primary-color);
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
}

.mySwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff7b00 0%, #ff4e00 50%, #b33600 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 11rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
    z-index: 10;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-transform: none;
    animation: fadeInUp 1s ease-out;
}

.partners-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    padding: 1.5rem 0 2rem 0;
    color: white;
    z-index: 20;
}

.partners-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.25rem;
}

.partners-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: #fff;
    opacity: 1;
    margin-bottom: 0;
}

.partners-title .plus {
    font-size: 1.3rem;
    font-weight: 600;
    margin-right: 8px;
    color: #fff;
}

.partners-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.partners-track-container {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
}

.partners-scroll-track {
    display: flex;
    width: max-content;
}

.partners-scroll-track:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding: 5px 3.5rem 5px 0;
    animation: scroll-marquee 25s linear infinite;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.partners-scroll-track img {
    user-select: none;
    -webkit-user-drag: none;
}

.partner-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.partner-card:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partner-card img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mock-text {
    font-size: 0.8rem;
    opacity: 0.5;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 4px;
}

.nav-arrow {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 5px;
    opacity: 0.5;
    transition: opacity 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
}

.nav-arrow:hover {
    opacity: 1;
}

.nav-arrow.left {
    left: 0;
}

.nav-arrow.right {
    right: 0;
}

.swiper-pagination {
    right: 3rem !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    border-radius: 50% !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
    box-shadow: 0 0 5px #fff;
}

.partners-overlay .container {
    position: relative;
}

.scroll-next {
    position: absolute;
    right: calc(1.5rem * 0.5);
    bottom: 8.5rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    gap: -5px;
}

.scroll-next i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    animation: mouse-scroll 1.5s infinite;
}

.scroll-next i:nth-child(1) {
    animation-delay: 0s;
}

.scroll-next i:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-next i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(3px);
    }

    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 1.25rem 1.5rem;
    }

    .logo-img {
        height: 50px !important;
    }

    .hero-content {
        bottom: 9rem;
    }

    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    .partners-overlay {
        padding: 0.75rem 1.25rem 1.5rem;
    }

    .partners-title-row {
        margin-bottom: 0.6rem !important;
    }

    .partners-title {
        font-size: 0.75rem !important;
    }

    .partner-card {
        height: 38px !important;
    }

    .partners-scroll-track {
        gap: 1.25rem;
    }

    .nav-arrow {
        display: none;
    }

    .swiper-pagination {
        right: auto !important;
        left: 50% !important;
        top: auto !important;
        bottom: 7rem !important;
        transform: translateX(-50%) !important;
        flex-direction: row !important;
        gap: 8px !important;
    }

    .scroll-next {
        display: none !important;
    }
}

.brand-intro-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 78, 0, 0.12) 0%, rgba(255, 78, 0, 0) 34%),
        radial-gradient(circle at top right, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0) 28%),
        #ffffff;
    padding: 7rem 0 4.5rem;
    z-index: 5;
}

.brand-intro-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    pointer-events: none;
}

.brand-intro-glow-left {
    top: -220px;
    left: -120px;
    background: rgba(255, 78, 0, 0.18);
}

.brand-intro-glow-right {
    top: -190px;
    right: -120px;
    background: rgba(15, 23, 42, 0.08);
}

.brand-intro {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.brand-intro-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.brand-intro-title {
    max-width: 860px;
    margin: 0 auto;
    color: #111827;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.brand-intro-badge {
    display: flex;
    justify-content: center;
    margin: 3.25rem 0 2.5rem;
    perspective: 1000px;
}

.brand-intro-badge-inner {
    width: 260px;
    min-height: 300px;
    padding: 1.8rem 1.5rem;
    border: 2px solid rgba(17, 24, 39, 0.9);
    border-radius: 38px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    box-shadow:
        18px 18px 0 rgba(17, 24, 39, 0.08),
        0 28px 60px rgba(17, 24, 39, 0.14);
    transform: rotate(-5deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.brand-intro-badge-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.brand-intro-badge-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(17, 24, 39, 0.18);
    width: 100%;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.brand-intro-description {
    margin-top: 42px !important;
    max-width: 720px;
    margin: 0 auto;
    color: #374151;
    font-size: 1.25rem;
    line-height: 1.7;
    text-wrap: balance;
}

.brand-product-marquee {
    margin-top: 8.75rem;
}

.brand-product-marquee-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.brand-product-marquee-scroller {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 1.5rem 0.9rem;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.brand-product-marquee-scroller::-webkit-scrollbar {
    display: none;
}

.brand-product-marquee-scroller.is-dragging {
    cursor: grabbing;
}

.brand-product-marquee-track {
    display: flex;
    width: max-content;
    gap: 1rem;
}

.brand-product-marquee-group {
    display: flex;
    gap: 1rem;
}

.brand-product-card {
    flex: 0 0 auto;
    width: clamp(220px, 22vw, 340px);
    aspect-ratio: 1.15 / 1;
    border-radius: 28px;
    overflow: hidden;
    background: #f8fafc;
}

.brand-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-orientation: from-image;
    display: block;
    pointer-events: none;
}

.brand-intro-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.brand-highlight {
    padding: 1.35rem 1.25rem;
    border: 1px solid rgba(255, 78, 0, 0.22);
    border-radius: 22px;
    background: linear-gradient(180deg, #ff6a1f 0%, #ff4e00 100%);
    box-shadow: 0 18px 36px rgba(255, 78, 0, 0.2);
    backdrop-filter: blur(12px);
}

.brand-highlight strong {
    display: block;
    margin-bottom: 0.55rem;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.brand-highlight span {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.96rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .brand-intro-section {
        padding: 5.5rem 0 5rem;
    }

    .brand-intro-title {
        max-width: 720px;
    }

    .brand-intro-highlights {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .brand-intro-section {
        padding: 4.25rem 0 4rem;
    }

    .brand-intro-eyebrow {
        font-size: 0.95rem;
    }

    .brand-intro-title {
        font-size: 2.5rem;
        line-height: 1;
    }

    .brand-intro-badge {
        margin: 2.5rem 0 2rem;
    }

    .brand-intro-badge-inner {
        width: 210px;
        min-height: 248px;
        padding: 1.5rem 1.2rem;
        border-radius: 30px;
        box-shadow:
            12px 12px 0 rgba(17, 24, 39, 0.08),
            0 20px 38px rgba(17, 24, 39, 0.12);
    }

    .brand-intro-badge-logo {
        width: 120px;
    }

    .brand-intro-description {
        font-size: 1.02rem;
        line-height: 1.75;
    }

    .brand-product-marquee {
        margin-top: 4.2rem;
    }

    .brand-product-marquee-scroller {
        padding: 0.15rem 1rem 0.75rem;
    }

    .brand-product-marquee-track,
    .brand-product-marquee-group {
        gap: 0.8rem;
    }

    .brand-product-card {
        width: min(72vw, 260px);
        border-radius: 22px;
    }

    .brand-intro-highlights {
        gap: 0.8rem;
        margin-top: 2.2rem;
    }

    .brand-highlight {
        padding: 1.15rem 1rem;
        border-radius: 18px;
    }
}

/* --- Premium Categories Section --- */
.categories-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 24px;
    height: 900px;
    position: relative;
}

.categories-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    height: 100%;
    min-height: 0;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    height: 100%;
    z-index: 1;
    background: #f8fafc;
    /* Fallback */
    min-height: 0;
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    background-color: rgba(0, 0, 0, 0);
    z-index: 2;
    transition: background-color 0.5s ease;
}

.category-content {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 3;
    color: #fff;
}

.category-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.category-card.large .category-content h3 {
    font-size: 2.8rem;
}

/* Hover Effects */
.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover .category-overlay {
    background-color: rgba(0, 0, 0, 0.65);
}

.category-card:hover .category-content h3 {
    transform: translateY(-8px);
}

.category-details {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.2, 1, 0.3, 1) 0.1s, transform 0.5s cubic-bezier(0.2, 1, 0.3, 1) 0.1s;
}

.category-details li {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

.category-details li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-right: 12px;
    opacity: 0.9;
}

.category-card.large .category-details li {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.category-card:hover .category-details {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal Animations (Framer Motion style) */
.reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 34px, 0) scale(0.985);
    transition: opacity 0.9s cubic-bezier(0.2, 1, 0.3, 1), transform 0.9s cubic-bezier(0.2, 1, 0.3, 1), filter 0.9s cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity, filter;
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal-left {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(-60px, 0, 0);
    transition: opacity 0.9s cubic-bezier(0.2, 1, 0.3, 1), transform 0.9s cubic-bezier(0.2, 1, 0.3, 1), filter 0.9s cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity, filter;
}

.reveal-left.active {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

.reveal-right {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(60px, 0, 0);
    transition: opacity 0.9s cubic-bezier(0.2, 1, 0.3, 1), transform 0.9s cubic-bezier(0.2, 1, 0.3, 1), filter 0.9s cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity, filter;
}

.reveal-right.active {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

.stagger-item {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 28px, 0) scale(0.985);
    transition: opacity 0.85s cubic-bezier(0.2, 1, 0.3, 1), transform 0.85s cubic-bezier(0.2, 1, 0.3, 1), filter 0.85s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.45s ease;
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity, filter;
}

.stagger-item.active {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

.scroll-parallax {
    transform: translate3d(0, var(--parallax-shift, 0px), 0);
    transition: transform 0.18s linear;
    will-change: transform;
}

/* Responsive Categories */
@media (max-width: 992px) {
    .categories-grid {
        height: auto;
        grid-template-columns: 1fr;
    }

    .category-card.large {
        height: 550px;
    }

    .categories-stack {
        height: auto;
        grid-template-rows: repeat(2, 420px);
    }

    .category-content {
        top: 30px;
        left: 30px;
    }

    .category-content h3,
    .category-card.large .category-content h3 {
        font-size: 1.8rem;
    }

    .category-card.large .category-details li {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .categories-section {
        padding: 2rem 0;
    }

    .categories-grid {
        height: auto;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .categories-stack {
        gap: 16px;
    }

    .category-card.large {
        height: 480px;
    }

    .categories-stack {
        grid-template-rows: repeat(2, 380px);
    }

    .category-content {
        top: 25px;
        left: 20px;
        right: 20px;
    }

    .category-content h3,
    .category-card.large .category-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .category-details {
        margin-top: 0.5rem;
    }

    .category-details li,
    .category-card.large .category-details li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }
}

/* Content Section Styles */
.bg-light {
    background: #f1f5f9 !important;
}

.bg-light .grid-item {
    background: #ffffff !important;
}

.content-section {
    padding: 6rem 0;
    background: #ffffff;
    color: #0f172a;
    position: relative;
    z-index: 5;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.dummy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.grid-item {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.grid-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.grid-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0 !important;
    text-align: left !important;
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .menu-label {
        display: none;
    }

    /* compact header */
}

body.lightbox-open {
    overflow: hidden;
}

/* --- Certificates Section --- */
.certificates-section {
    padding: 1rem 0 2.5rem;
    background: #ffffff;
    position: relative;
    z-index: 6;
}

.certificates-wrap {
    width: 100%;
}

.certificates-heading {
    max-width: 1040px;
    margin-bottom: 2.2rem;
}

.certificates-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.certificates-title {
    color: #111827;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.certificates-description {
    color: #4b5563;
    font-size: 1.08rem;
    line-height: 1.75;
}

.certificates-scroller {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    overflow: visible;
    padding: 0.35rem 0 0.75rem;
    user-select: none;
}

.certificates-scroller::-webkit-scrollbar {
    display: none;
}

.certificates-scroller.is-dragging {
    cursor: grabbing;
}

.certificate-card {
    min-width: 0;
    width: 100%;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 1rem;
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 78, 0, 0.25);
}

.certificate-card-media {
    display: block;
    overflow: hidden;
    background: #ffffff;
    aspect-ratio: 0.72 / 1;
}

.certificate-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.certificate-card-meta {
    display: block;
    padding: 1rem 0.25rem 0.15rem;
}

.certificate-card-meta strong {
    display: block;
    color: #111827;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
}

.certificate-card-meta span {
    display: block;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.certificate-lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.certificate-lightbox[hidden] {
    display: none;
}

.certificate-lightbox-dialog {
    width: min(100%, 980px);
    max-height: calc(100vh - 4rem);
    overflow: auto;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.certificate-lightbox-media {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    padding: 1.25rem;
}

.certificate-lightbox-image {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    border-radius: 22px;
    background: #ffffff;
}

.certificate-lightbox-content {
    padding: 1.4rem 1.5rem 1.65rem;
}

.certificate-lightbox-title {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 0.45rem;
}

.certificate-lightbox-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

.certificate-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 1.15rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.certificate-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .categories-section {
        z-index: 5;
    }

    .certificates-section {
        padding: 1.75rem 0 2rem;
        z-index: 7;
    }

    .certificates-heading {
        margin-bottom: 1.5rem;
    }

    .certificates-heading.scroll-parallax {
        transform: none;
    }

    .certificates-description {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .certificates-scroller {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        cursor: grab;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .certificate-card {
        flex: 0 0 min(250px, 78vw);
        border-radius: 22px;
        padding: 0.75rem;
    }

    .certificate-card-media {
        border-radius: 16px;
    }

    .certificate-card-meta {
        padding: 0.85rem 0.15rem 0.1rem;
    }

    .certificate-card-meta strong {
        font-size: 1rem;
    }

    .certificate-card-meta span {
        font-size: 0.88rem;
    }

    .certificate-lightbox {
        padding: 1rem;
    }

    .certificate-lightbox-dialog {
        border-radius: 22px;
        max-height: calc(100vh - 2rem);
    }

    .certificate-lightbox-media {
        padding: 0.85rem;
    }

    .certificate-lightbox-image {
        border-radius: 16px;
        max-height: 62vh;
    }

    .certificate-lightbox-content {
        padding: 1.1rem 1rem 1.2rem;
    }

    .certificate-lightbox-title {
        font-size: 1.2rem;
    }

    .certificate-lightbox-text {
        font-size: 0.94rem;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 2rem 0 6rem;
    background: #ffffff;
    position: relative;
    z-index: 6;
}

.faq-wrap {
    width: 100%;
}

.faq-heading {
    margin-bottom: 2.5rem;
}

.faq-kicker {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.faq-title {
    color: #111827;
    font-size: clamp(4rem, 10vw, 6.8rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 28px;
    background: #f3f4f6;
    overflow: hidden;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 1.45rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2.5px;
    background: #111827;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.25);
}

.faq-question-text {
    color: #111827;
    font-size: clamp(1.15rem, 2vw, 1.85rem);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.faq-answer {
    padding: 0 1.75rem 1.65rem 5.2rem;
}

.faq-answer-inner {
    max-width: 880px;
}

.faq-answer p {
    color: #374151;
    font-size: 1.22rem;
    line-height: 1.7;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1rem 0 4rem;
    }

    .faq-heading {
        margin-bottom: 1.8rem;
    }

    .faq-question {
        gap: 1rem;
        padding: 1.2rem 1.15rem;
        align-items: flex-start;
    }

    .faq-icon {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
        margin-top: 0.2rem;
    }

    .faq-icon::before,
    .faq-icon::after {
        width: 18px;
    }

    .faq-question-text {
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .faq-answer {
        padding: 0 1.15rem 1.2rem 3.15rem;
    }

    .faq-answer p {
        font-size: 0.98rem;
        line-height: 1.75;
    }
}

/* --- New Custom Footer --- */
.footer-wrapper {
    position: relative;
    width: 100%;
    background: #ffffff;
    /* Prevents dark body background leak */
    margin-top: 0;
    overflow: hidden;
}

.footer-core {
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 4rem 1.5rem;
    position: relative;
    min-height: 570px;
    /* Force larger spread */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* Larger gap inside layout items */
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-logo-img {
    width: min(100px, 60vw);
    height: auto;
    display: block;
}

.brand-desc {
    color: #64748b;
    font-weight: 500;
    font-size: 1.05rem;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.footer-socials a,
.footer-socials span {
    color: #64748b;
    font-size: 1.25rem;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-socials a:hover,
.footer-socials span:hover {
    color: var(--primary-color);
    transform: scale(1.15);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    width: 100%;
}

.footer-crafted a,
.footer-crafted span {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-crafted a:hover,
.footer-crafted span:hover {
    color: #0f172a;
}

.footer-bottom .copyright {
    font-size: 0.85rem;
    color: #64748b;
}

/* Large Background Text */
.bg-large-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 7rem;
    /* Shift upwards to prevent link overlap */
    font-size: clamp(3rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    text-align: center;
    white-space: nowrap;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.02) 60%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 4rem 1.5rem 6rem 1.5rem;
        min-height: 440px;
    }

    .footer-content {
        margin-bottom: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 3.5rem;
        text-align: center;
    }

    .bg-large-text {
        bottom: 9.5rem;
        font-size: clamp(2.5rem, 18vw, 6rem);
    }
}

.site-subpage-body {
    background:
        radial-gradient(circle at top left, rgba(255, 78, 0, 0.14) 0%, rgba(255, 78, 0, 0) 24%),
        linear-gradient(180deg, #fff8f3 0%, #ffffff 34%, #ffffff 100%);
    color: #0f172a;
}

.site-subpage-body main {
    min-height: 100vh;
}

.subpage-header {
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.82) 0%,
            rgba(15, 23, 42, 0.48) 45%,
            rgba(15, 23, 42, 0.08) 80%,
            transparent 100%);
}

.subpage-hero {
    position: relative;
    overflow: hidden;
    padding: 11rem 0 5rem;
}

.subpage-hero::before,
.subpage-hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.7;
}

.subpage-hero::before {
    width: 320px;
    height: 320px;
    top: 3.5rem;
    left: -6rem;
    background: rgba(255, 78, 0, 0.18);
}

.subpage-hero::after {
    width: 360px;
    height: 360px;
    right: -8rem;
    bottom: -5rem;
    background: rgba(15, 23, 42, 0.1);
}

.subpage-hero-about {
    background: linear-gradient(135deg, #fff5ec 0%, #ffffff 58%, #fffaf6 100%);
}

.subpage-hero-contact {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 52%, #fff4ec 100%);
}

.subpage-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.subpage-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #ff4e00;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.subpage-title {
    margin-top: 1.2rem;
    max-width: 880px;
    font-size: clamp(2.9rem, 6vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.subpage-description {
    margin-top: 1.4rem;
    max-width: 700px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #475569;
}

.about-story-section,
.about-values-section,
.contact-page-section {
    padding: 0 0 5rem;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.25rem;
}

.story-panel {
    padding: 1.8rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.story-panel-main {
    grid-row: span 2;
    background: linear-gradient(155deg, #0f172a 0%, #16263f 100%);
    color: #fff;
}

.story-panel h2,
.story-panel strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 0.95rem;
    letter-spacing: -0.03em;
}

.story-panel p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: inherit;
    opacity: 0.88;
}

.section-heading.centered {
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-heading.centered h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.04em;
    color: #0f172a;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.value-card {
    position: relative;
    min-height: 240px;
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f1 100%);
    border: 1px solid rgba(255, 78, 0, 0.1);
    box-shadow: 0 24px 50px rgba(255, 78, 0, 0.08);
}

.value-card span {
    display: inline-block;
    margin-bottom: 1rem;
    color: #ff4e00;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.value-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1.28rem;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.value-card p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #475569;
}

.subpage-cta-section {
    padding: 0 0 5.5rem;
}

.subpage-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.2rem;
    border-radius: 32px;
    background: linear-gradient(135deg, #111827 0%, #1d3557 52%, #ff4e00 140%);
    color: #fff;
}

.subpage-cta-inner h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -0.04em;
}

.subpage-cta-inner p {
    margin-top: 0.7rem;
    max-width: 700px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.subpage-cta-button,
.contact-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.subpage-cta-button {
    min-width: 210px;
    padding: 1rem 1.6rem;
}

.subpage-cta-button:hover,
.contact-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.4rem;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    gap: 1rem;
}

.contact-info-card,
.contact-form-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.contact-info-card {
    padding: 1.5rem;
}

.contact-info-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: #fff0e7;
    color: #ff4e00;
    font-size: 1.1rem;
}

.contact-info-card strong {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
    color: #0f172a;
}

.contact-info-card a,
.contact-info-card p {
    font-size: 0.96rem;
    line-height: 1.75;
    color: #475569;
    text-decoration: none;
}

.contact-form-panel {
    padding: 2rem;
}

.contact-form-intro h2 {
    font-size: 2rem;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.contact-form-intro p {
    margin-top: 0.7rem;
    color: #475569;
    line-height: 1.7;
}

.form-alert {
    margin-top: 1.25rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    font-size: 0.94rem;
    line-height: 1.6;
}

.form-alert-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.form-alert-warning {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fdba74;
}

.contact-form {
    margin-top: 1.5rem;
}

.contact-form-grid {
    display: grid;
    gap: 1rem;
}

.contact-form-grid.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: #334155;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 18px;
    background: #fff;
    padding: 0.95rem 1rem;
    font: inherit;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(255, 78, 0, 0.58);
    box-shadow: 0 0 0 4px rgba(255, 78, 0, 0.09);
}

.form-field textarea {
    resize: vertical;
    min-height: 170px;
}

.contact-submit-button {
    width: 100%;
    padding: 1rem 1.35rem;
    background: linear-gradient(135deg, #ff4e00 0%, #ff7b2c 100%);
    color: #fff;
}

.reveal-up {
    animation: revealUp 0.7s ease both;
    animation-delay: var(--delay, 0s);
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .about-story-grid,
    .about-values-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .story-panel-main {
        grid-row: auto;
    }

    .subpage-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .subpage-hero {
        padding: 9.5rem 0 4rem;
    }

    .subpage-title {
        font-size: clamp(2.3rem, 9vw, 3.4rem);
    }

    .subpage-description {
        font-size: 1rem;
    }

    .story-panel,
    .value-card,
    .contact-info-card,
    .contact-form-panel {
        border-radius: 22px;
    }

    .contact-form-grid.two-columns {
        grid-template-columns: 1fr;
    }

    .subpage-cta-button,
    .contact-submit-button {
        width: 100%;
    }
}
