/* ==========================================================
   ROOT
========================================================== */

:root {
    --navy: #0a1a2e;
    --navy-dark: #061220;
    --navy-soft: #132b40;
    --navy-mid: #1a334a;

    --gold: #d4a52a;
    --gold-light: #e8c146;
    --gold-dark: #b8921f;
    --gold-glow: rgba(212, 165, 42, 0.25);

    --text: #0d1c30;
    --muted: #5d6b79;

    --white: #ffffff;
    --off-white: #f8f9fc;
    --border: #dfe4e8;

    --process-bg: #f0f2f6;

    --container: 1180px;

    --shadow-small: 0 5px 18px rgba(10, 26, 46, 0.08);
    --shadow-medium: 0 15px 35px rgba(10, 26, 46, 0.13);
    --shadow-large: 0 22px 60px rgba(10, 26, 46, 0.2);
}


/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.55;
    overflow-x: hidden;
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 78px 0;
}


/* ==========================================================
   COMMON HEADINGS
========================================================== */

.section-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gold-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 27px;
    height: 3px;
    background: var(--gold);
    border-radius: 20px;
}

.section-eyebrow-left {
    justify-content: flex-start;
}

.section-heading h2,
.why-content h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.7px;
    line-height: 1.05;
}

.section-heading p {
    max-width: 710px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.gold-text {
    color: var(--gold);
}


/* ==========================================================
   BUTTONS
========================================================== */

.button {
    min-height: 49px;
    padding: 0 27px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 0.83rem;
    font-weight: 800;
    transition: transform 0.2s ease,
                background-color 0.2s ease,
                border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    color: #1a1a1a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 22px var(--gold-glow);
}

.button-gold:hover {
    box-shadow: 0 12px 30px rgba(212, 165, 42, 0.4);
}

.button-outline-white {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.03);
}

.button-outline-white:hover {
    color: var(--navy-dark);
    background: var(--white);
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(10, 26, 46, 0.08);
    backdrop-filter: blur(14px);
}

.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* ==========================================================
   BRAND
========================================================== */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: var(--navy);
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-primary {
    color: var(--navy);
    font-size: 1.4rem;
    font-weight: 900;
}

.brand-secondary {
    margin-top: 6px;
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}


/* ==========================================================
   NAVIGATION
========================================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 31px;
}

.nav-link {
    position: relative;
    padding: 28px 0 25px;
    color: var(--navy);
    font-size: 0.79rem;
    font-weight: 800;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 17px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login,
.nav-create {
    min-height: 43px;
    padding: 0 21px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 0.79rem;
    font-weight: 800;
    transition: background-color 0.2s ease,
                color 0.2s ease,
                transform 0.2s ease;
}

.nav-login {
    color: var(--navy);
    border: 1px solid #d0d6dd;
    background: var(--white);
}

.nav-login:hover {
    background: #f0f2f5;
}

.nav-create {
    color: var(--white);
    background: var(--navy);
}

.nav-create:hover {
    background: var(--navy-dark);
}

.mobile-menu-button {
    width: 44px;
    height: 44px;
    display: none;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    font-size: 1.25rem;
}

.mobile-navigation {
    display: none;
}


/* ==========================================================
   HERO
========================================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1200 / 535;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark);
}

.hero-banner {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(6, 18, 32, 0.97) 0%,
        rgba(6, 18, 32, 0.88) 24%,
        rgba(6, 18, 32, 0.48) 43%,
        rgba(6, 18, 32, 0.10) 65%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--container));
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    width: min(46%, 550px);
    max-width: 550px;
    padding: clamp(28px, 4vw, 65px) 0;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 17px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 10px;
    background: var(--gold-light);
}

.hero-title {
    margin: 0 0 17px;
    color: var(--white);
    font-size: clamp(2.5rem, 4vw, 4.65rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.98;
}

.hero-title span {
    display: block;
    margin-top: 7px;
    color: var(--gold-light);
}

.hero-description {
    max-width: 520px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.78rem, 0.9vw, 0.96rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-login-text {
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
}

.hero-login-text a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}


/* ==========================================================
   HERO WORLDWIDE CARD
========================================================== */

.hero-worldwide-card {
    position: absolute;
    z-index: 5;
    right: max(20px, calc((100% - var(--container)) / 2));
    bottom: 0;
    min-width: 256px;
    min-height: 70px;
    padding: 14px 19px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    border: 1px solid var(--gold-light);
    border-radius: 8px 8px 0 0;
    background: rgba(6, 18, 32, 0.95);
    box-shadow: var(--shadow-large);
}

.hero-worldwide-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-light);
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    font-size: 1.2rem;
}

.hero-worldwide-card strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.86rem;
}

.hero-worldwide-card span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.65rem;
}


/* ==========================================================
   SERVICES
========================================================== */

.services-section {
    background:
        radial-gradient(circle at center top, rgba(10, 26, 46, 0.04), transparent 35%),
        var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.service-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-small);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-medium);
}

.service-card-featured {
    background: #fdfcf7;
    border-color: #e8dba8;
}

.service-image-wrapper {
    position: relative;
    aspect-ratio: 1.5 / 1;
    height: auto;
    overflow: hidden;
    background: #e8eaed;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.035);
}

.service-popular-badge {
    position: absolute;
    right: 13px;
    top: 0;
    padding: 5px 12px;
    color: #1a1a1a;
    background: var(--gold-light);
    border-radius: 0 0 5px 5px;
    font-size: 0.66rem;
    font-weight: 900;
    text-transform: uppercase;
}

.service-content {
    position: relative;
    min-height: 223px;
    padding: 37px 21px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    position: absolute;
    top: -30px;
    left: 19px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--navy);
    border: 5px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 17px rgba(10, 26, 46, 0.18);
    font-size: 1.06rem;
}

.service-card-featured .service-icon {
    border-color: #fdfcf7;
}

.service-content h3 {
    margin: 0 0 7px;
    color: var(--navy);
    font-size: 1.06rem;
    font-weight: 900;
}

.service-content p {
    min-height: 90px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    margin-top: auto;
}

.service-link i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================
   SHIPPING RATES
========================================================== */

.rates-section {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.rates-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.5fr);
    gap: 32px;
    align-items: start;
}


/* ==========================================================
   RATE CALCULATOR
========================================================== */

.rate-calculator {
    position: sticky;
    top: 105px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-medium);
}

.rate-calculator-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 27px;
}

.rate-calculator-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    color: var(--gold);
    background: rgba(212, 165, 42, 0.12);
    font-size: 1.3rem;
}

.rate-calculator-label,
.rate-list-eyebrow {
    display: block;
    margin-bottom: 3px;
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rate-calculator-header h3,
.rate-list-header h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 900;
}

.rate-calculator-header p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.rate-field {
    margin-bottom: 15px;
}

.rate-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
}

.rate-input-wrapper {
    position: relative;
}

.rate-input-wrapper input {
    width: 100%;
    height: 54px;
    padding: 0 58px 0 16px;
    border: 1px solid #ccd3da;
    border-radius: 9px;
    outline: none;
    color: var(--navy);
    background: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rate-input-wrapper input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 42, 0.13);
}

.rate-input-wrapper span {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.rate-calculate-button {
    width: 100%;
    min-height: 51px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 9px;
    color: #1a1a1a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 22px var(--gold-glow);
    font-size: 0.82rem;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rate-calculate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 165, 42, 0.32);
}


/* ==========================================================
   CALCULATOR RESULT
========================================================== */

.rate-result {
    min-height: 140px;
    margin-top: 20px;
    padding: 21px;
    display: flex;
    align-items: center;
    border: 1px solid #e2e7ec;
    border-radius: 11px;
    background: #f8fafc;
}

.rate-result-placeholder {
    width: 100%;
    text-align: center;
}

.rate-result-placeholder i {
    margin-bottom: 9px;
    color: #9aa6b2;
    font-size: 1.5rem;
}

.rate-result-placeholder p {
    max-width: 290px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.rate-result-success {
    width: 100%;
}

.rate-result-success span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.rate-result-success h4 {
    margin: 0;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 800;
}

.rate-result-success strong {
    display: block;
    margin-top: 8px;
    color: var(--gold-dark);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.rate-result-success small {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-size: 0.73rem;
}

.rate-result-error {
    width: 100%;
    text-align: center;
    color: #a33a3a;
}

.rate-result-error i {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.rate-result-error p {
    margin: 0;
    font-size: 0.8rem;
}

.rate-calculator-note {
    margin-top: 18px;
    padding: 14px 15px;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    border: 1px solid rgba(212, 165, 42, 0.28);
    border-radius: 9px;
    color: #625324;
    background: rgba(212, 165, 42, 0.08);
}

.rate-calculator-note i {
    margin-top: 2px;
    color: var(--gold-dark);
}

.rate-calculator-note p {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.5;
}


/* ==========================================================
   RATE LIST
========================================================== */

.rate-list-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-small);
}

.rate-list-header {
    padding: 25px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #e5e9ed;
}

.rate-currency-badge {
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 42, 0.35);
    border-radius: 20px;
    color: var(--gold-dark);
    background: rgba(212, 165, 42, 0.08);
    font-size: 0.72rem;
    font-weight: 900;
}

.rate-table-head {
    min-height: 43px;
    padding: 0 27px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    color: #7b8793;
    background: #f7f8fa;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.rate-table-head span:last-child {
    text-align: right;
}

.rate-row {
    min-height: 68px;
    padding: 13px 27px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #edf0f2;
    transition: background-color 0.2s ease;
}

.rate-row:hover {
    background: #fafbfc;
}

.rate-row > div {
    min-width: 0;
}

.rate-row > div > strong {
    display: block;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 800;
}

.rate-row > div > span {
    display: block;
    margin-top: 2px;
    color: #8a96a2;
    font-size: 0.68rem;
}

.rate-price {
    color: var(--gold-dark);
    font-size: 1rem;
    font-weight: 900;
    white-space: nowrap;
}

.rate-row-final {
    background: rgba(212, 165, 42, 0.055);
}


/* ==========================================================
   ADDITIONAL POUND RATE
========================================================== */

.additional-pound-rate {
    margin: 22px;
    padding: 18px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(212, 165, 42, 0.3);
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(212, 165, 42, 0.08), rgba(212, 165, 42, 0.03));
}

.additional-pound-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold-dark);
    background: #ffffff;
    box-shadow: var(--shadow-small);
}

.additional-pound-content span {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.additional-pound-content strong {
    display: block;
    color: var(--navy);
    font-size: 0.92rem;
}

.additional-pound-content p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.7rem;
}


/* ==========================================================
   RATES RESPONSIVE
========================================================== */

@media (max-width: 900px) {
    .rates-layout {
        grid-template-columns: 1fr;
    }

    .rate-calculator {
        position: static;
    }
}

@media (max-width: 680px) {
    .rate-calculator {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .rate-list-card {
        border-radius: 12px;
    }

    .rate-list-header {
        padding: 21px 18px;
    }

    .rate-table-head {
        padding: 0 18px;
    }

    .rate-row {
        min-height: 67px;
        padding: 13px 18px;
    }

    .rate-price {
        font-size: 0.9rem;
    }

    .additional-pound-rate {
        margin: 17px;
    }
}

@media (max-width: 430px) {
    .rate-list-header {
        align-items: flex-start;
    }

    .rate-table-head {
        display: none;
    }

    .rate-row {
        min-height: 78px;
        padding: 15px 17px;
    }

    .rate-row > div > strong {
        font-size: 0.8rem;
    }

    .rate-price {
        font-size: 0.88rem;
    }

    .additional-pound-rate {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   PROCESS
========================================================== */

.process-section {
    background: linear-gradient(180deg, #f0f2f6, #f7f8fa);
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 35px;
    margin-top: 12px;
}

.process-step {
    position: relative;
    text-align: center;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 37px;
    left: calc(50% + 53px);
    width: calc(100% - 72px);
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(10, 26, 46, 0.25) 0,
        rgba(10, 26, 46, 0.25) 6px,
        transparent 6px,
        transparent 11px
    );
}

.process-top {
    position: relative;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-icon {
    position: relative;
    z-index: 2;
    width: 61px;
    height: 61px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-small);
    font-size: 1.18rem;
}

.process-icon-purple {
    color: #4d10be;
}

.process-icon-gold {
    color: var(--gold-dark);
}

.process-icon-blue {
    color: #1a4a7a;
}

.process-icon-navy {
    color: var(--navy);
}

.process-number {
    position: absolute;
    top: 17px;
    left: calc(50% + 25px);
    color: rgba(10, 26, 46, 0.06);
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 1;
}

.process-step h3 {
    margin: 14px 0 6px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 900;
}

.process-step p {
    max-width: 220px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.55;
}


/* ==========================================================
   WHY US
========================================================== */

.why-section {
    background: var(--white);
}

.why-grid {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    align-items: stretch;
}

.why-image {
    position: relative;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.13 / 1;
    overflow: hidden;
}

.why-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
    object-position: center;
}

.why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0));
}

.why-image-message {
    position: absolute;
    z-index: 3;
    top: 108px;
    right: 39px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 1.85rem;
    font-style: italic;
    line-height: 1.2;
    text-align: center;
    transform: rotate(-5deg);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.why-image-message::after {
    content: "";
    width: 145px;
    height: 7px;
    margin: 6px auto 0;
    border-radius: 50%;
    background: var(--gold-light);
    transform: rotate(-5deg);
}

.why-content {
    min-width: 0;
    height: 100%;
    padding: clamp(35px, 5vw, 76px);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.why-content h2 {
    text-align: left;
}

.why-description {
    max-width: 640px;
    margin: 13px 0 26px;
    color: var(--muted);
    font-size: 0.87rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 31px;
}

.value-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: flex-start;
}

.value-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
    font-size: 0.75rem;
}

.value-item h3 {
    margin: 0 0 3px;
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 900;
}

.value-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.5;
}


/* ==========================================================
   CTA
========================================================== */

.cta-section {
    position: relative;
    padding: 42px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 63% 50%, rgba(10, 26, 46, 0.35), transparent 29%),
        linear-gradient(110deg, #0a1a2e, #0d2238 48%, #061220);
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -60px;
    right: 17%;
    width: 290px;
    height: 180px;
    border: 1px dotted rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(180px, 220px);
    align-items: center;
    gap: 40px;
}

.cta-eyebrow {
    display: block;
    margin-bottom: 5px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-content h2 {
    margin: 0 0 6px;
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -1px;
}

.cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
}

.cta-buttons .button {
    min-width: 128px;
}

.cta-features {
    display: grid;
    gap: 12px;
}

.cta-features div {
    display: grid;
    grid-template-columns: 25px 1fr;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    font-weight: 700;
}

.cta-features i {
    font-size: 1rem;
}


/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    position: relative;
    width: 100%;
    margin: 0;
    padding-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    background: #041e33;
    overflow: hidden;
}

.footer-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center right;
    pointer-events: none;
}

.footer-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(3, 28, 47, 0.98) 0%,
        rgba(3, 28, 47, 0.96) 42%,
        rgba(3, 28, 47, 0.82) 68%,
        rgba(3, 28, 47, 0.48) 100%
    );
    pointer-events: none;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 0.7fr 1fr 0.75fr 1.25fr;
    gap: 38px;
    padding: 50px 0 38px;
}

.footer-brand-logo {
    margin-bottom: 16px;
}

.footer-brand-logo .brand-primary {
    color: var(--white);
}

.footer-brand p {
    max-width: 260px;
    margin: 0 0 17px;
    font-size: 0.72rem;
    line-height: 1.55;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    width: 29px;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: rgba(69, 163, 174, 0.34);
    border-radius: 4px;
    font-size: 0.72rem;
    transition: background-color 0.2s ease;
}

.social-links a:hover {
    background: var(--gold);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.footer-column h3 {
    margin: 4px 0 9px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
}

.footer-column > a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.71rem;
    transition: color 0.2s ease;
}

.footer-column > a:hover {
    color: var(--gold-light);
}

.footer-contact {
    gap: 10px;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.69rem;
}

.footer-contact-item i {
    color: #95d7d0;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}


/* ==========================================================
   FOOTER BOTTOM
========================================================== */

.footer-bottom {
    min-height: 64px;
    padding: 16px 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.67rem;
}

.footer-bottom p {
    margin: 0;
}

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

.footer-legal span {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.36);
}

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


/* ==========================================================
   SCROLL REVEAL
========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1080px) {
    .nav-links {
        gap: 20px;
    }

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

    .service-content p {
        min-height: 70px;
    }

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


/* ==========================================================
   TABLET / MOBILE NAV
========================================================== */

@media (max-width: 900px) {
    .navbar {
        min-height: 72px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

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

    .mobile-navigation {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 12px 20px 20px;
        flex-direction: column;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: 0 18px 30px rgba(10, 35, 50, 0.1);
    }

    .mobile-navigation.open {
        display: flex;
    }

    .mobile-nav-link {
        padding: 12px 2px;
        color: var(--navy);
        border-bottom: 1px solid #edf2f3;
        font-size: 0.86rem;
        font-weight: 700;
    }

    .mobile-nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 15px;
    }

    .hero-section {
        aspect-ratio: auto;
        min-height: 610px;
    }

    .hero-banner {
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        width: 60%;
        max-width: 520px;
    }

    .hero-worldwide-card {
        right: 20px;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 47px;
    }

    .process-step:nth-child(2)::after {
        display: none;
    }

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

    .why-image {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .why-image > img {
        object-fit: cover;
        object-position: center;
    }

    .why-content {
        padding: 55px 30px;
    }

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

    .cta-content {
        grid-column: 1 / -1;
    }

    .cta-features {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, auto);
        justify-content: flex-start;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 56px 0;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-primary {
        font-size: 1.05rem;
    }

    .brand-secondary {
        margin-top: 4px;
        font-size: 0.52rem;
    }

    .mobile-nav-actions {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: 700px;
        aspect-ratio: auto;
    }

    .hero-banner {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 58% center;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(6, 18, 32, 0.97) 0%,
            rgba(6, 18, 32, 0.90) 45%,
            rgba(6, 18, 32, 0.62) 100%
        );
    }

    .hero-container {
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        max-width: 520px;
        padding: 58px 0 130px;
    }

    .hero-title {
        font-size: clamp(2.6rem, 13vw, 4rem);
        letter-spacing: -2px;
    }

    .hero-description {
        max-width: 470px;
        font-size: 0.9rem;
    }

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

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

    .hero-worldwide-card {
        left: 14px;
        right: 14px;
        bottom: 0;
        min-width: 0;
    }

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

    .service-image-wrapper {
        aspect-ratio: 16 / 9;
    }

    .service-content p {
        min-height: 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .process-step::after {
        display: none !important;
    }

    .why-image {
        aspect-ratio: 1 / 1;
    }

    .why-image > img {
        object-fit: cover;
        object-position: center;
    }

    .why-image-message {
        top: auto;
        right: 22px;
        bottom: 42px;
        font-size: 1.4rem;
    }

    .why-content {
        padding: 48px 20px;
    }

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

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .button {
        width: 100%;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-bg-image {
        width: 100%;
        height: 100%;
        right: auto;
        opacity: 0.55;
        object-fit: cover;
        object-position: 72% center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 22px;
    }

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

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


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 430px) {
    .hero-section {
        min-height: 720px;
    }

    .hero-banner {
        object-position: 54% center;
    }

    .hero-title {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

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

    .footer-brand {
        grid-column: auto;
    }

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


/* ==========================================================
   EXTRA LARGE DESKTOPS
========================================================== */

@media (min-width: 1500px) {
    :root {
        --container: 1320px;
    }

    .navbar {
        min-height: 82px;
    }

    .hero-content {
        max-width: 610px;
        width: 43%;
    }

    .hero-title {
        font-size: clamp(3.4rem, 3.6vw, 5.1rem);
    }

    .hero-description {
        max-width: 560px;
        font-size: 1rem;
    }

    .button {
        min-height: 52px;
        padding-inline: 30px;
    }
}

@media (min-width: 1900px) {
    :root {
        --container: 1440px;
    }

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

    .hero-title {
        font-size: 4.7rem;
    }

    .hero-description {
        font-size: 1.02rem;
    }
}

/* ==========================================================
   FLOATING WHATSAPP BUTTON
========================================================== */

.whatsapp-float {
    position: fixed !important;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    width: 58px;
    height: 58px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #25D366;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    font-size: 1.85rem;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
    color: #ffffff;
    background: #1fbd5a;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.whatsapp-float i {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

@media (max-width: 680px) {
    html,
    body {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden;
    }

    main {
        width: 100%;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
    }

    .site-footer {
        width: 100%;
        height: auto;
        min-height: 0;
        margin: 0 !important;
        padding-bottom: 0 !important;
    }

    .footer-bottom {
        margin-bottom: 0 !important;
    }

    .whatsapp-float {
        position: fixed !important;
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
        margin: 0;
        padding: 0;
        font-size: 1.7rem;
    }
}
