/* =========================================================
   SPARK MICROFINANCE TANZANIA LIMITED
   Main Website Stylesheet
   Brand Identity: BLUE + YELLOW
   ========================================================= */

/* =========================================================
   1. ROOT / BRAND COLORS
   ========================================================= */

:root {
    --primary: #0057B8;
    --primary-dark: #003B7A;
    --primary-deep: #002B5C;
    --primary-light: #EAF3FF;

    --yellow: #F4C400;
    --yellow-dark: #D9A900;
    --yellow-light: #FFF8D6;

    --dark: #0A1F44;
    --dark-soft: #203454;

    --text: #334155;
    --text-light: #64748B;

    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light: #F1F5F9;

    --border: #E2E8F0;

    --success: #1769AA;
    --whatsapp: #25D366;

    --shadow-sm: 0 4px 14px rgba(10, 31, 68, 0.06);
    --shadow: 0 12px 35px rgba(10, 31, 68, 0.10);
    --shadow-lg: 0 20px 55px rgba(10, 31, 68, 0.14);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    --container: 1180px;

    --transition: all 0.3s ease;
}


/* =========================================================
   2. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    border: none;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   3. GENERAL
   ========================================================= */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

section {
    position: relative;
}

.section-padding {
    padding: 90px 0;
}

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

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

.section-header {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);
    background: var(--primary-light);

    padding: 7px 15px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;

    margin-bottom: 15px;
}

.section-label::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--yellow);
    border-radius: 50%;
}

.section-heading {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 17px;
}

.section-description {
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
    font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

strong {
    color: var(--dark);
}

::selection {
    background: var(--yellow);
    color: var(--dark);
}


/* =========================================================
   4. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 13px 24px;

    border-radius: 9px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 8px 22px rgba(0, 87, 184, 0.20);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 87, 184, 0.25);
}

.btn-secondary {
    color: var(--dark);
    background: var(--yellow);
    box-shadow: 0 8px 22px rgba(244, 196, 0, 0.20);
}

.btn-secondary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-light:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--primary);
    background: transparent;
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}


/* =========================================================
   5. HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(226, 232, 240, 0.9);

    transition: var(--transition);
}

.header-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: auto;
    height: 58px;
    max-width: 210px;
    object-fit: contain;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    position: relative;

    padding: 29px 12px;

    color: var(--dark-soft);

    font-size: 14px;
    font-weight: 650;

    transition: var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 19px;

    height: 3px;
    border-radius: 5px;

    background: var(--yellow);

    transform: scaleX(0);
    transform-origin: center;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-login {
    margin-left: 8px;

    background: var(--primary);
    color: var(--white);

    padding: 10px 17px;
    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.nav-login:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border-radius: 8px;
    background: var(--primary-light);

    color: var(--primary);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.mobile-navigation {
    display: none;
}


/* =========================================================
   6. HERO
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #F8FBFF 0%,
            #FFFFFF 52%,
            #F4F8FD 100%
        );

    padding: 88px 0 95px;
}

.hero-section::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: rgba(0, 87, 184, 0.05);

    top: -220px;
    right: -130px;
}

.hero-section::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(244, 196, 0, 0.08);

    bottom: -130px;
    left: -90px;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    gap: 70px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    background: var(--yellow-light);
    color: var(--dark);

    border: 1px solid rgba(244, 196, 0, 0.35);

    padding: 8px 14px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 750;

    margin-bottom: 21px;
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;

    background: var(--yellow);
    border-radius: 50%;
}

.hero-content h1 {
    font-size: clamp(42px, 5.4vw, 68px);
    line-height: 1.04;

    letter-spacing: -2.5px;

    color: var(--dark);

    margin-bottom: 23px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 620px;

    color: var(--text-light);

    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 28px;
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    color: var(--text-light);

    font-size: 13px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-item strong {
    color: var(--dark);
}

.hero-trust-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 13px;
}

.hero-visual {
    position: relative;
    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: relative;
    z-index: 2;

    width: min(100%, 440px);

    padding: 36px;

    background:
        linear-gradient(
            145deg,
            var(--primary) 0%,
            var(--primary-dark) 100%
        );

    border-radius: 24px;

    box-shadow: 0 30px 65px rgba(0, 59, 122, 0.25);

    overflow: hidden;
}

.hero-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

    right: -100px;
    top: -110px;
}

.hero-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    border: 25px solid rgba(244, 196, 0, 0.15);

    left: -100px;
    bottom: -100px;
}

.hero-card-content {
    position: relative;
    z-index: 3;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 50px;
}

.hero-card-label {
    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-card-mark {
    width: 43px;
    height: 43px;

    border-radius: 11px;

    background: var(--yellow);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--dark);
    font-size: 18px;
    font-weight: 900;
}

.hero-card h3 {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 11px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    margin-bottom: 30px;
}

.hero-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.hero-info-box {
    padding: 15px;

    background: rgba(255, 255, 255, 0.09);

    border: 1px solid rgba(255, 255, 255, 0.11);

    border-radius: 10px;
}

.hero-info-box span {
    display: block;

    color: rgba(255, 255, 255, 0.60);

    font-size: 11px;
    margin-bottom: 4px;
}

.hero-info-box strong {
    color: var(--white);
    font-size: 13px;
}

.floating-card {
    position: absolute;
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 12px;

    background: var(--white);

    padding: 14px 17px;

    border-radius: 13px;

    box-shadow: var(--shadow);

    border: 1px solid rgba(226, 232, 240, 0.8);
}

.floating-card-icon {
    width: 40px;
    height: 40px;

    border-radius: 10px;

    background: var(--yellow-light);
    color: var(--dark);

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;
}

.floating-card strong {
    display: block;
    font-size: 13px;
}

.floating-card span {
    display: block;
    color: var(--text-light);
    font-size: 11px;
}

.floating-card-one {
    left: -15px;
    bottom: 48px;
}

.floating-card-two {
    right: -15px;
    top: 45px;
}


/* =========================================================
   7. STATS
   ========================================================= */

.stats-section {
    background: var(--white);

    border-bottom: 1px solid var(--border);

    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    position: relative;

    padding: 30px 25px;

    text-align: center;

    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    color: var(--primary);

    font-size: 31px;
    font-weight: 850;

    line-height: 1;

    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================================
   8. TRUST
   ========================================================= */

.trust-section {
    padding: 70px 0;

    background: var(--off-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.trust-box {
    display: flex;
    align-items: flex-start;
    gap: 17px;

    padding: 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: var(--transition);
}

.trust-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 87, 184, 0.20);
}

.trust-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);
    color: var(--primary);

    border-radius: 12px;

    font-size: 20px;
}

.trust-box h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.trust-box p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   9. SERVICES
   ========================================================= */

.services-section {
    padding: 95px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    transition: var(--transition);

    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--yellow);

    transform: scaleX(0);
    transform-origin: left;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 87, 184, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 58px;
    height: 58px;

    border-radius: 15px;

    background: var(--primary-light);
    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 11px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 750;

    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 11px;
}


/* =========================================================
   10. PRODUCTS
   ========================================================= */

.products-section {
    padding: 95px 0;

    background:
        linear-gradient(
            180deg,
            #F8FBFF 0%,
            #FFFFFF 100%
        );
}

.products-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 60px;

    align-items: center;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-row {
    display: grid;
    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 15px;

    padding: 19px 20px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    transition: var(--transition);
}

.product-row:hover {
    transform: translateX(5px);

    border-color: rgba(0, 87, 184, 0.25);

    box-shadow: var(--shadow-sm);
}

.product-number {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--primary);
    color: var(--white);

    font-size: 13px;
    font-weight: 800;
}

.product-row h3 {
    font-size: 15px;
    margin-bottom: 2px;
}

.product-row p {
    color: var(--text-light);
    font-size: 12px;
    margin: 0;
}

.product-arrow {
    color: var(--primary);
    font-size: 17px;
}

.products-highlight {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            145deg,
            var(--primary-dark),
            var(--primary)
        );

    border-radius: 24px;

    padding: 45px;

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

.products-highlight::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border: 55px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    right: -140px;
    top: -120px;
}

.products-highlight::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    background: rgba(244, 196, 0, 0.13);

    border-radius: 50%;

    left: -50px;
    bottom: -50px;
}

.products-highlight-content {
    position: relative;
    z-index: 2;
}

.products-highlight-label {
    color: var(--yellow);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 14px;
}

.products-highlight h3 {
    color: var(--white);

    font-size: 35px;
    line-height: 1.2;

    margin-bottom: 17px;
}

.products-highlight p {
    color: rgba(255, 255, 255, 0.76);

    font-size: 14px;
    line-height: 1.8;

    max-width: 470px;
}

.products-highlight .btn {
    margin-top: 10px;
}


/* =========================================================
   11. ABOUT PREVIEW
   ========================================================= */

.about-preview-section {
    padding: 100px 0;

    background: var(--white);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 75px;

    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 450px;
}

.about-card-main {
    position: absolute;

    width: 82%;
    height: 390px;

    top: 0;
    left: 0;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-dark)
        );

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

.about-card-main::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

    right: -100px;
    top: -80px;
}

.about-card-main::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    border: 35px solid rgba(244, 196, 0, 0.13);

    bottom: -100px;
    left: -80px;
}

.about-card-content {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 35px;

    z-index: 2;
}

.about-card-content span {
    display: block;

    color: var(--yellow);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 10px;
}

.about-card-content h3 {
    color: var(--white);

    font-size: 28px;
    line-height: 1.25;

    max-width: 330px;
}

.about-card-small {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 210px;

    padding: 22px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow-lg);

    z-index: 4;
}

.about-card-small-icon {
    width: 43px;
    height: 43px;

    background: var(--yellow-light);
    color: var(--dark);

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;
}

.about-card-small strong {
    display: block;

    font-size: 14px;
    margin-bottom: 4px;
}

.about-card-small span {
    color: var(--text-light);
    font-size: 11px;
}

.about-preview-content .section-label {
    margin-bottom: 15px;
}

.about-preview-content .section-heading {
    text-align: left;
}

.about-preview-content > p {
    color: var(--text-light);

    font-size: 15px;
    line-height: 1.8;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 13px;

    margin: 27px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    color: var(--dark-soft);

    font-size: 13px;
    font-weight: 600;
}

.feature-list li::before {
    content: "✓";

    width: 21px;
    height: 21px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow-light);
    color: var(--dark);

    border-radius: 50%;

    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   12. MISSION / VISION
   ========================================================= */

.mission-section {
    padding: 85px 0;

    background: var(--off-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 22px;
}

.mission-card {
    padding: 34px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    transition: var(--transition);
}

.mission-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.mission-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: var(--white);

    border-radius: 13px;

    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.mission-card p {
    color: var(--text-light);

    font-size: 14px;
    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   13. VALUES
   ========================================================= */

.values-section {
    padding: 95px 0;

    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.value-item {
    text-align: center;

    padding: 27px 20px;

    border: 1px solid var(--border);

    border-radius: 15px;

    transition: var(--transition);
}

.value-item:hover {
    border-color: rgba(0, 87, 184, 0.22);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.value-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 21px;
}

.value-item h3 {
    font-size: 15px;
    margin-bottom: 7px;
}

.value-item p {
    color: var(--text-light);

    font-size: 12px;
    line-height: 1.65;

    margin: 0;
}


/* =========================================================
   14. HOW TO APPLY
   ========================================================= */

.how-apply-section {
    padding: 95px 0;

    background:
        linear-gradient(
            180deg,
            #F8FBFF,
            #FFFFFF
        );
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    counter-reset: steps;
}

.step-item {
    position: relative;

    padding: 30px 22px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 16px;

    text-align: center;

    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;

    margin: 0 auto 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-size: 16px;
    font-weight: 850;

    position: relative;
}

.step-number::after {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(244, 196, 0, 0.50);

    border-radius: 50%;
}

.step-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.step-item p {
    color: var(--text-light);

    font-size: 12px;
    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   15. FAQ PREVIEW
   ========================================================= */

.faq-preview-section {
    padding: 95px 0;

    background: var(--white);
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: start;
}

.faq-preview-intro {
    position: sticky;
    top: 110px;
}

.faq-preview-intro .section-heading {
    text-align: left;
}

.faq-preview-intro p {
    color: var(--text-light);

    font-size: 14px;
    line-height: 1.8;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.faq-item {
    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;

    background: var(--white);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px;

    background: var(--white);

    color: var(--dark);

    text-align: left;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
    background: #FBFDFF;
}

.faq-question span:last-child {
    color: var(--primary);
    font-size: 19px;
}

.faq-answer {
    padding: 0 20px 20px;

    color: var(--text-light);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   16. CTA
   ========================================================= */

.cta-section {
    padding: 30px 0 95px;

    background: var(--white);
}

.cta-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 50px 55px;

    border-radius: 24px;

    background:
        linear-gradient(
            120deg,
            var(--primary-dark),
            var(--primary)
        );

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

.cta-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 50px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    right: -120px;
    top: -150px;
}

.cta-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    background: rgba(244, 196, 0, 0.15);

    border-radius: 50%;

    left: 45%;
    bottom: -50px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);

    font-size: clamp(27px, 3vw, 38px);

    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.73);

    font-size: 14px;

    max-width: 650px;

    margin: 0;
}

.cta-actions {
    position: relative;
    z-index: 2;

    display: flex;
    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   17. CONTACT STRIP
   ========================================================= */

.contact-strip {
    padding: 0 0 85px;

    background: var(--white);
}

.contact-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.contact-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 20px;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: 12px;
}

.contact-strip-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: var(--white);

    border-radius: 10px;
}

.contact-strip-item span {
    display: block;

    color: var(--text-light);

    font-size: 11px;

    margin-bottom: 2px;
}

.contact-strip-item strong {
    display: block;

    color: var(--dark);

    font-size: 13px;
}


/* =========================================================
   18. FOOTER
   ========================================================= */

.site-footer {
    background: var(--dark);

    color: rgba(255, 255, 255, 0.68);

    padding-top: 70px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;

    gap: 45px;

    padding-bottom: 55px;
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: inline-flex;

    padding: 9px 12px;

    background: var(--white);

    border-radius: 9px;

    margin-bottom: 20px;
}

.footer-logo img {
    width: auto;
    height: 50px;
    max-width: 190px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.60);
}

.footer-column h3 {
    color: var(--white);

    font-size: 14px;

    margin-bottom: 19px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--yellow);
    padding-left: 3px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
    line-height: 1.6;
}

.footer-contact-item i,
.footer-contact-item span:first-child {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);

    padding: 22px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 17px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--yellow);
}


/* =========================================================
   19. INNER PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    overflow: hidden;
}

.page-hero::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    border: 55px solid rgba(255, 255, 255, 0.06);

    right: -120px;
    top: -170px;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    background: rgba(244, 196, 0, 0.15);

    border-radius: 50%;

    left: 8%;
    bottom: -55px;
}

.page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.page-hero .section-label {
    background: rgba(255, 255, 255, 0.10);
    color: var(--yellow);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.page-hero h1 {
    color: var(--white);

    font-size: clamp(36px, 5vw, 56px);

    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.73);

    font-size: 16px;

    max-width: 700px;

    margin: 0;
}


/* =========================================================
   20. BREADCRUMB
   ========================================================= */

.breadcrumb {
    padding: 15px 0;

    background: var(--off-white);

    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    color: var(--text-light);

    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 650;
}

.breadcrumb .separator {
    color: #94A3B8;
}


/* =========================================================
   21. GENERIC CONTENT
   ========================================================= */

.content-section {
    padding: 85px 0;
}

.content-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;
}

.content-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    padding: 30px;

    box-shadow: var(--shadow-sm);
}

.content-card h2,
.content-card h3 {
    margin-bottom: 13px;
}

.content-card p {
    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   22. CONTACT PAGE
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 45px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 21px;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: 13px;
}

.contact-info-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);
    color: var(--primary);

    border-radius: 10px;
}

.contact-info-card h3 {
    font-size: 14px;

    margin-bottom: 3px;
}

.contact-info-card p {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.6;

    margin: 0;
}

.contact-form {
    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    color: var(--dark);

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 7px;
}

.form-control {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: var(--white);

    color: var(--dark);

    outline: none;

    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);

    box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.10);
}

textarea.form-control {
    min-height: 135px;

    resize: vertical;
}


/* =========================================================
   23. ALERTS
   ========================================================= */

.alert {
    padding: 14px 17px;

    border-radius: 9px;

    font-size: 13px;

    margin-bottom: 18px;
}

.alert-success {
    background: #EAF3FF;
    color: var(--primary-dark);
    border: 1px solid #CFE3FA;
}

.alert-warning {
    background: var(--yellow-light);
    color: #6A5300;
    border: 1px solid #F1D65E;
}

.alert-error {
    background: #FFF1F2;
    color: #9F1239;
    border: 1px solid #FECDD3;
}


/* =========================================================
   24. CARDS
   ========================================================= */

.card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 28px;

    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow);
}


/* =========================================================
   25. TABLES
   ========================================================= */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 15px;

    border-bottom: 1px solid var(--border);

    text-align: left;

    font-size: 13px;
}

th {
    color: var(--dark);

    background: var(--off-white);

    font-weight: 750;
}

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


/* =========================================================
   26. BADGES
   ========================================================= */

.badge {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 50px;

    font-size: 11px;
    font-weight: 750;
}

.badge-blue {
    background: var(--primary-light);
    color: var(--primary);
}

.badge-yellow {
    background: var(--yellow-light);
    color: #765D00;
}


/* =========================================================
   27. BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--primary);
    color: var(--white);

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: var(--transition);

    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
}


/* =========================================================
   28. ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(244, 196, 0, 0.65);
    outline-offset: 3px;
}


/* =========================================================
   29. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* =========================================================
   30. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .main-navigation {
        gap: 0;
    }

    .nav-link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 13px;
    }

    .nav-link::after {
        left: 8px;
        right: 8px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .products-layout,
    .about-preview-grid {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 3;
        max-width: 600px;
    }
}


/* =========================================================
   31. RESPONSIVE - TABLET / MOBILE NAV
   ========================================================= */

@media (max-width: 950px) {

    .header-container {
        min-height: 74px;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-navigation {
        padding: 10px 0 20px;

        border-top: 1px solid var(--border);

        background: var(--white);
    }

    .mobile-navigation.active {
        display: block;
    }

    .mobile-navigation .nav-link {
        display: block;

        padding: 12px 5px;

        border-bottom: 1px solid var(--border);
    }

    .mobile-navigation .nav-link::after {
        display: none;
    }

    .mobile-navigation .nav-login {
        display: inline-flex;

        margin: 15px 0 0;

        padding: 11px 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-highlight {
        min-height: 360px;
    }

    .about-preview-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }

    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-preview-grid {
        grid-template-columns: 1fr;
    }

    .faq-preview-intro {
        position: static;
    }

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


/* =========================================================
   32. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    body {
        font-size: 15px;
    }

    .container {
        width: min(91%, var(--container));
    }

    .section-padding,
    .services-section,
    .products-section,
    .about-preview-section,
    .values-section,
    .how-apply-section,
    .faq-preview-section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 38px;
    }

    .section-heading {
        font-size: 31px;
        letter-spacing: -0.8px;
    }

    .section-description {
        font-size: 14px;
    }

    .site-logo img {
        height: 49px;
        max-width: 180px;
    }

    .hero-section {
        padding: 65px 0 70px;
    }

    .hero-content h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
    }

    .hero-visual {
        min-height: 410px;
    }

    .hero-card {
        padding: 28px;
        border-radius: 19px;
    }

    .hero-card-top {
        margin-bottom: 35px;
    }

    .hero-card h3 {
        font-size: 25px;
    }

    .floating-card {
        padding: 11px 13px;
    }

    .floating-card-one {
        left: -5px;
        bottom: 20px;
    }

    .floating-card-two {
        right: -5px;
        top: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 23px 12px;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

    .stat-number {
        font-size: 26px;
    }

    .trust-grid,
    .services-grid,
    .mission-grid,
    .values-grid,
    .steps-grid,
    .contact-strip-grid {
        grid-template-columns: 1fr;
    }

    .trust-section {
        padding: 60px 0;
    }

    .trust-box {
        padding: 21px;
    }

    .service-card {
        padding: 27px;
    }

    .products-highlight {
        padding: 32px;
        min-height: 330px;
        border-radius: 19px;
    }

    .products-highlight h3 {
        font-size: 29px;
    }

    .product-row {
        grid-template-columns: auto 1fr;
    }

    .product-arrow {
        display: none;
    }

    .about-visual {
        min-height: 390px;
    }

    .about-card-main {
        width: 88%;
        height: 340px;
    }

    .about-card-small {
        width: 180px;
        padding: 17px;
    }

    .about-card-content {
        left: 27px;
        right: 27px;
        bottom: 27px;
    }

    .about-card-content h3 {
        font-size: 24px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding-bottom: 70px;
    }

    .cta-card {
        padding: 35px 27px;

        flex-direction: column;
        align-items: flex-start;

        border-radius: 19px;
    }

    .cta-content h2 {
        font-size: 29px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .contact-strip {
        padding-bottom: 65px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .page-hero {
        padding: 58px 0;
    }

    .page-hero h1 {
        font-size: 37px;
    }

    .content-section {
        padding: 65px 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form {
        padding: 25px;
    }
}


/* =========================================================
   33. SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .site-logo img {
        height: 45px;
        max-width: 165px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-card {
        padding: 23px;
    }

    .hero-card-info {
        grid-template-columns: 1fr;
    }

    .floating-card {
        transform: scale(0.88);
    }

    .floating-card-one {
        left: -18px;
    }

    .floating-card-two {
        right: -18px;
    }

    .about-visual {
        min-height: 340px;
    }

    .about-card-main {
        height: 300px;
        width: 91%;
    }

    .about-card-small {
        width: 160px;
        right: -3px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}


/* =========================================================
   34. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}