:root {
    --yellow: #FFC72C;
    --yellow-deep: #E8A400;
    --yellow-pale: #FFF4D6;
    --navy: #0E2A52;
    --navy-2: #163C74;
    --navy-soft: #2C4C7C;
    --cream: #FFFBF0;
    --white: #FFFFFF;
    --text: #1B2437;
    --text-muted: #5B6478;
    --line: #EFE4C4;
    --radius: 14px;
    --shadow: 0 18px 40px -18px rgba(14, 42, 82, 0.25);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--yellow-deep);
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    display: inline-block;
}

/* custom alert css */
.custom-success-message {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 350px;
    padding: 16px 18px;

    background: #fff;
    border: 1px solid #dce8df;
    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateX(120%);

    transition: all 0.35s ease;
}

.custom-success-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.success-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f7ed;
    color: #198754;
    border-radius: 50%;

    font-size: 22px;
}

.success-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.success-content strong {
    color: #0b315e;
    font-size: 16px;
}

.success-content span {
    color: #667085;
    font-size: 14px;
}

.success-close {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #98a2b3;
    font-size: 20px;
    cursor: pointer;
}

.success-close:hover {
    color: #344054;
}

@media (max-width: 576px) {
    .custom-success-message {
        left: 15px;
        right: 15px;
        top: 20px;
        min-width: auto;
    }
}

/* ---------- Brick motif (signature element) ---------- */
.brick-row {
    display: flex;
    height: 10px;
    width: 100%;
    overflow: hidden;
}

.brick-row span {
    flex: 1 0 46px;
    border-right: 2px solid rgba(14, 42, 82, 0.12);
}

.brick-row.offset {
    margin-left: 23px;
}

.brick-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.brick-divider .brick-row span {
    background: var(--yellow);
}

.brick-divider .brick-row:nth-child(2) span {
    background: var(--navy);
}

.brick-divider .brick-row:nth-child(3) span {
    background: var(--yellow-deep);
}

.brick-icon {
    width: 64px;
    height: 64px;
    border-radius: 0;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 18px;
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
}

.brick-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--navy);
}

.brick-icon i {
    font-size: 28px;
    line-height: 1;
    color: var(--navy);
}

/* ---------- Utility bar ---------- */
.utility-bar {
    background: var(--navy);
    color: #DCE6F5;
    font-size: 13px;
}

.utility-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 38px;
    gap: 6px;
}

.utility-bar strong {
    color: var(--yellow);
    font-weight: 600;
}