/* ==========================================================================
   1. CSS Reset (Modern)
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

*:not(dialog) {
    margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

#root,
#__next {
    isolation: isolate;
}

/* ==========================================================================
   2. Variables
   ========================================================================== */
:root {
    --gold: #F5A623;
    --gold-light: #FFB938;
    --gold-dark: #D4861A;
    --navy: #050E1F;
    --navy-2: #0A1628;
    --navy-3: #0F1F3A;
    --navy-4: #152540;
    --navy-5: #1C2F50;
    --slate: #1E3A5F;
    --text-primary: #FFFFFF;
    --text-secondary: #A8BDD0;
    --text-muted: #5C7A96;
    --border: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(245, 166, 35, 0.25);
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-hover: rgba(245, 166, 35, 0.06);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-gold: 0 8px 32px rgba(245, 166, 35, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   3. Global Base Styles
   ========================================================================== */
body {
    font-family: Inter, -apple-system, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--navy);
    padding-top: 92px;
}

a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
}

a:hover {
    opacity: .8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 1em;
}

/* ==========================================================================
   4. Utility Classes
   ========================================================================== */
/* Display & Flex */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.\!align-items-center {
    align-items: center !important;
}

.align-content-center {
    align-content: center;
}

.\!align-content-center {
    align-content: center !important;
}

.justify-content-between {
    justify-content: space-between;
}

/* Colors */
.color-white {
    color: #fff !important;
}

/* Text Alignment */
.\!text-end {
    text-align: right;
}

.text-center {
    text-align: center;
}

.\!text-center {
    text-align: center !important;
}

@media screen and (max-width: 768px) {
    .text-sp-center {
        text-align: center;
    }

    .\!text-sp-center {
        text-align: center !important;
    }
}

/* Margins & Gaps */
.mb-6px {
    margin-bottom: 6px;
}

.mb-12px {
    margin-bottom: 12px;
}

.mb-24px {
    margin-bottom: 24px;
}

.\!mb-24px {
    margin-bottom: 24px !important;
}

.mb-36px {
    margin-bottom: 36px;
}

.mb-48px {
    margin-bottom: 48px;
}

.\!mb-48px {
    margin-bottom: 48px !important;
}

.mb-60px {
    margin-bottom: 60px;
}

.\!me-12px {
    margin-right: 12px !important;
}

.\!gap-12px {
    gap: 12px !important;
}

.\!gap-36px {
    gap: 36px !important;
}

.\!gap-60px {
    gap: 60px !important;
}

/* ==========================================================================
   5. General Components
   ========================================================================== */
/* Buttons */
.btn,
.wp-btn :is(a, button) {
    transition: var(--transition);
    white-space: nowrap;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
}

.btn:hover,
.wp-btn :is(a, button):hover {
    transform: translateY(-1px);
}

.btn-cta {
    font-size: 13px;
}

.btn-navy,
.wp-btn-navy :is(a, button) {
    color: var(--navy);
    box-shadow: rgba(245, 166, 35, 0.3) 0px 4px 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.btn-navy:hover,
.wp-btn-navy :is(a, button):hover {
    box-shadow: rgba(245, 166, 35, 0.45) 0px 8px 24px;
}

@media screen and (max-width: 768px) {
    .wp-btn {
        width: 100%;
    }
}

/* Language Switcher */
.pll-switcher-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    margin-right: 12px;
}

.pll-switcher-select option {
    background: var(--navy);
}

/* ==========================================================================
   6. Layout: Header & Navigation
   ========================================================================== */
.site-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    transition: top 0.3s ease;
    background: var(--navy);
}

body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position: fixed;
    }
}

/* Site Branding */
#masthead .site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

#masthead .site-branding img {
    width: 40px;
}

#masthead .site-branding .site-title {
    font-size: 14px;
}

.site-title a {
    font-weight: bold;
}

@media screen and (max-width: 900px) {
    #masthead .site-branding .site-title {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #masthead .site-branding .site-title {
        display: block;
    }
}

/* Navigation Menu */
.main-navigation {
    margin-right: 50px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-navigation .menu .menu-item a {
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: var(--transition);
}

.main-navigation .menu .menu-item.current-menu-item a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0px;
    right: 0px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .main-navigation {
        flex-wrap: wrap;
        width: 100%;
        margin-right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Mobile Menu Button */
.site-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
}

@media screen and (min-width: 769px) {
    .site-menu-btn {
        display: none;
    }
}

/* Mobile Menu Wrapper */
#masthead .site-wrap {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    #masthead .site-wrap {
        width: 100%;
        position: absolute;
        left: -100%;
        top: 82px;
        height: 100vh;
        background: var(--navy);
        z-index: 98;
        transition: var(--transition);
        display: block;
        border-top: 1px solid var(--gold);
        padding: 15px;
        overflow-y: auto;
    }

    body.open-menu {
        overflow: hidden;
    }

    body.open-menu #masthead .site-wrap {
        left: 0;
    }

    #masthead .site-wrap .site-contact {
        flex-direction: column;
        margin-top: 12px;
    }

    #masthead .site-wrap .site-contact .pll-switcher-select {
        margin-bottom: 12px;
    }
}

/* ==========================================================================
   7. Layout: Footer
   ========================================================================== */
.site-footer {
    background-color: #343a40;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.site-footer a {
    color: #adb5bd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin: 0px auto 48px;
}

#colophon {
    background: rgb(3, 7, 17);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 32px;
    color: var(--text-muted);
    text-align: left;
    font-size: 12px;
}

#colophon a {
    color: var(--text-muted);
}

#colophon h3 {
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

/* Footer Social Icons */
#colophon .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-image: initial;
    border-radius: 8px;
    transition: var(--transition);
}

#colophon .social-icon a {
    justify-content: center;
    padding: 8px;
}

#colophon .social-icon a svg {
    width: 20px !important;
    height: 20px !important;
}

#colophon .social-icon:hover {
    color: var(--gold);
    transform: translateY(-2px);
    background: rgba(245, 166, 35, 0.12);
    border-color: rgba(245, 166, 35, 0.3);
}

/* Footer Links List */
#colophon .ul-footer-link {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    margin-bottom: -10px;
}

#colophon .ul-footer-link li {
    margin-bottom: 10px;
}

#colophon .ul-footer-link li a {
    transition: var(--transition);
}

#colophon .ul-footer-link li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

#colophon .ul-footer-link li a::before {
    font-size: 11px;
    color: var(--gold-dark);
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

/* Footer Contact Icons */
#colophon .fci-icon {
    background: rgba(245, 166, 35, 0.1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

#colophon .fci-icon i {
    color: var(--gold);
    font-size: 12px;
}

/* Second Footer (Bottom Credit) */
@media screen and (max-width: 768px) {
    .second-footer p {
        text-align: center;
    }
}

/* ==========================================================================
   8. Global UI Sections
   ========================================================================== */
.site-main {
    padding: 20px 0;
}

@media (min-width: 769px) {
    body .site-main {
        padding: 40px 0 0;
    }
}


body.home .site-main {
    padding: 20px 0 0;
}

@media (min-width: 769px) {
    body.home .site-main {
        padding: 40px 0 0;
    }
}

/* Shared Section Spacing */
.section-padding {
    padding: 96px 24px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 64px 20px;
    }
}

/* Shared Section Title */
.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    .section-title {
        text-align: center;
    }
}

/* Shared Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    gap: 8px;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 100px;
}

.section-label::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    margin-right: 8px;
}

@media screen and (max-width: 768px) {
    .section-label-wrap {
        text-align: center;
    }
}

/* ==========================================================================
   9. Page Sections
   ========================================================================== */

/* 9.1. Hero Section
   -------------------------------------------------------------------------- */
.section-hero h1 {
    font-size: clamp(40px, 4.5vw, 72px);
    font-weight: 900;
    line-height: 3.5rem;
}

.section-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.section-hero .hero-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.section-hero .hero-stats {
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.section-hero .hero-stats p {
    background: var(--card-bg);
    padding: 20px 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.section-hero .hero-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.section-hero .hero-panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-hero .hero-panel-live,
.section-hero .hero-panel-uptime {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #4ADE80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 4px 10px;
    border-radius: 100px;
}

.section-hero .hero-panel-live::before,
.section-hero .hero-panel-uptime::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #4ADE80;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.section-hero .hero-panel-uptime {
    width: 100%;
    padding: 15px;
}

.section-hero .hero-panel-module {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 30px;
}

.section-hero .hero-panel-module.yellow {
    border-color: var(--gold);
}

.section-hero .hero-panel-module.blue {
    border-color: #60A5FA;
}

.section-hero .hero-panel-module.green {
    border-color: #4ADE80;
}

.section-hero .hero-panel-module.red {
    border-color: #F87171;
}

.section-hero .hero-panel-module small {
    color: var(--text-muted);
}

.section-hero .wp-btn :is(a, button) {
    min-width: 220px;
}

/* 9.2. Marquee Section
   -------------------------------------------------------------------------- */
.section-marquee {
    background: var(--navy-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0px;
    overflow: hidden;
}

.section-marquee .marquee-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
}

@media screen and (min-width: 769px) {
    .section-marquee .marquee-list {
        gap: 48px;
    }
}

.section-marquee .marquee-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: default;
    white-space: nowrap;
    transition: var(--transition);
}

.section-marquee .marquee-list li::before {
    content: "\f275";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    width: 20px;
    height: 20px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 9.3. Service Section
   -------------------------------------------------------------------------- */
.section-service {
    background-color: #fff;
    color: #333;
}

.section-service .service-title-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 100px;
}

.section-service .service-title-label::before {
    content: "\f009";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    margin-right: 8px;
}

.section-service .service-list .service-list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 30px 30px 60px;
    transition: var(--transition);
    position: relative;
}

.section-service .service-list .service-list-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-service .service-list .service-list-item a {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    gap: 6px;
    transition: var(--transition);
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.section-service .service-list .service-list-item a::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
}

.section-service .service-list .service-list-item a:hover {
    gap: 12px;
}

.section-service .service-more .wp-btn :is(a, button)::before {
    content: "\f009";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

/* 9.4. Why Section
   -------------------------------------------------------------------------- */
.section-why .why-title-label::before {
    content: "\f005";
}

.section-why .why-feature i {
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

@media screen and (max-width: 768px) {
    .section-why .why-feature i {
        width: 44px;
        display: inline-flex;
    }
}

.section-why .why-metric .metric-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.section-why .why-metric .metric-box:hover {
    background: rgba(245, 166, 35, 0.07);
    border-color: rgba(245, 166, 35, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.section-why .why-metric .metric-box i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 18px;
}

/* Why Section - Metric Box Variants */
.section-why .why-metric .metric-box.metric-box-yellow i {
    color: var(--gold);
    background: rgba(245, 166, 35, 0.15);
}

.section-why .why-metric .metric-box.metric-box-blue i {
    color: #60A5FA;
    background: rgba(59, 130, 246, 0.15);
}

.section-why .why-metric .metric-box.metric-box-green i {
    color: #34D399;
    background: rgba(16, 185, 129, 0.15);
}

.section-why .why-metric .metric-box.metric-box-purple i {
    color: #A78BFA;
    background: rgba(139, 92, 246, 0.15);
}

.section-why .why-metric .metric-box.metric-box-yellow .metric-val {
    color: var(--gold);
}

.section-why .why-metric .metric-box.metric-box-blue .metric-val {
    color: #60A5FA;
}

.section-why .why-metric .metric-box.metric-box-green .metric-val {
    color: #34D399;
}

.section-why .why-metric .metric-box.metric-box-purple .metric-val {
    color: #A78BFA;
}

/* 9.5. Product Section
   -------------------------------------------------------------------------- */
.section-product {
    background-color: #fff;
    color: #333;
}

.section-product .product-title-label::before {
    content: "\f49e";
}

.section-product .product-list-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(226, 232, 240);
    border-image: initial;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

@media screen and (min-width: 769px) {
    .section-product .product-list-item {
        padding-bottom: 40px;
    }
}

.section-product .product-list-item:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 24px 64px;
    border-color: transparent;
}

.section-product .product-list-item .product-list-item-head {
    position: relative;
    padding: 28px;
    background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
    color: #fff;
}

.section-product .product-list-item .product-list-item-head i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15);
    border-image: initial;
    border-radius: 16px;
    font-size: 26px;
}

/* Product Section - Badges */
.section-product .product-list-item .product-list-item-head .product-list-item-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 100px;
}

.section-product .product-list-item .product-list-item-head .product-list-item-badge-best-seller {
    background: var(--gold);
}

.section-product .product-list-item .product-list-item-head .product-list-item-badge-new {
    background: rgb(96, 165, 250);
    color: #000;
}

.section-product .product-list-item .product-list-item-head .product-list-item-badge-popular {
    background: rgb(52, 211, 153);
    color: #000;
}

/* Product Section - Body */
.section-product .product-list-item .product-list-item-body {
    padding: 28px;
}

.section-product .product-list-item .product-list-item-body ul {
    padding: 0;
    margin: 0;
    list-style-position: inside;
}

.section-product .product-list-item .product-list-item-button {
    padding: 0 28px 28px;
}

@media screen and (min-width: 769px) {
    .section-product .product-list-item .product-list-item-button {
        position: absolute;
        bottom: 28px;
        right: 28px;
        padding: 0;
    }
}

.section-product .product-list-item .product-list-item-button .wp-btn :is(a, button) {
    padding: 8px 15px;
    font-size: 14px;
}

.section-product .product-list-item .product-list-item-button .wp-btn :is(a, button)::after {
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
}

/* 9.6. Testimonial Section
   -------------------------------------------------------------------------- */
.section-testimonial .testimonial-title-label::before {
    content: "\f10d";
}

.section-testimonial .testimonial-list .testimonial-list-item {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.07);
    border-image: initial;
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.section-testimonial .testimonial-list .testimonial-list-item:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 16px 40px;
    background: rgba(245, 166, 35, 0.05);
    border-color: rgba(245, 166, 35, 0.18);
}

.section-testimonial .testimonial-list .testimonial-list-item-avatar {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

@media screen and (max-width: 768px) {
    .section-testimonial .testimonial-list .testimonial-list-item-avatar {
        width: 44px;
        display: inline-flex;
    }
}

/* 9.7. CTA Section
   -------------------------------------------------------------------------- */
.section-cta {
    background: linear-gradient(135deg, var(--navy-4) 0%, var(--navy-5) 50%, var(--navy-4) 100%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(245, 166, 35, 0.2);
    border-image: initial;
    padding: 64px 80px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .section-cta {
        padding: 48px 20px;
    }
}