/* USA courier charges landing page
   Load after app.css so these rules can safely override template defaults.
*/

:root {
    --gie-text: #172033;
    --gie-muted: #5c6577;
    --gie-primary: #0b55c7;
    --gie-primary-dark: #073f96;
    --gie-border: #dfe5ee;
    --gie-soft: #f5f8fc;
    --gie-white: #ffffff;
    --gie-success: #08783f;
    --gie-shadow: 0 18px 45px rgba(16, 35, 67, 0.09);
    --gie-radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--gie-text);
    background: var(--gie-white);
}

.gie-breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid var(--gie-border);
    background: var(--gie-white);
}

.gie-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.gie-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #9aa3b2;
}

.gie-breadcrumb a {
    color: var(--gie-primary);
}

.gie-hero {
    padding: 72px 0 56px;
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.gie-eyebrow,
.gie-section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gie-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gie-hero h1 {
    max-width: 780px;
    margin: 0 0 20px;
    color: var(--gie-text);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
}

.gie-hero__intro {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--gie-muted);
    font-size: 18px;
    line-height: 1.75;
}

.gie-price-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 22px;
    padding: 13px 18px;
    border: 1px solid #bed4f8;
    border-radius: 12px;
    background: #edf5ff;
}

.gie-price-badge strong {
    color: var(--gie-primary-dark);
    font-size: 18px;
}

.gie-price-badge span {
    color: var(--gie-muted);
    font-size: 13px;
}

.gie-trust-list,
.gie-check-list {
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

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

.gie-trust-list li,
.gie-check-list li {
    position: relative;
    padding-left: 25px;
    line-height: 1.55;
}

.gie-trust-list li::before,
.gie-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gie-success);
    font-weight: 800;
}

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

.gie-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gie-btn:hover {
    transform: translateY(-1px);
}

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

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

.gie-btn--secondary {
    color: var(--gie-primary);
    border-color: var(--gie-primary);
    background: var(--gie-white);
}

.gie-btn--whatsapp {
    color: #ffffff;
    background: #128c4e;
}

.gie-hero__media {
    margin: 0;
    padding: 16px;
    border: 1px solid var(--gie-border);
    border-radius: 24px;
    background: var(--gie-white);
    box-shadow: var(--gie-shadow);
}

.gie-hero__media img,
.gie-about img {
    display: block;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.gie-hero__media img {
    aspect-ratio: 4 / 3;
}

.gie-hero__media figcaption {
    padding: 12px 4px 2px;
    color: var(--gie-muted);
    font-size: 13px;
    line-height: 1.5;
}

.gie-quick-answer {
    padding: 0 0 24px;
}

.gie-answer-box {
    padding: 28px 30px;
    border-left: 5px solid var(--gie-primary);
    border-radius: 0 var(--gie-radius) var(--gie-radius) 0;
    background: var(--gie-soft);
}

.gie-answer-box h2 {
    margin: 0 0 10px;
    font-size: clamp(25px, 3vw, 36px);
}

.gie-answer-box p {
    margin: 0;
    color: var(--gie-muted);
    line-height: 1.75;
}

.gie-section {
    padding: 72px 0;
}

.gie-section--soft {
    background: var(--gie-soft);
}

.gie-section-heading {
    max-width: 840px;
    margin: 0 auto 36px;
    text-align: center;
}

.gie-section-heading--left {
    margin-left: 0;
    text-align: left;
}

.gie-section-heading h2,
.gie-content-panel h2,
.gie-quote-section h2,
.gie-about h2 {
    margin: 0 0 14px;
    color: var(--gie-text);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
}

.gie-section-heading p,
.gie-content-panel p,
.gie-quote-section p,
.gie-about p {
    color: var(--gie-muted);
    line-height: 1.75;
}

.gie-rate-shell {
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--gie-border);
    border-radius: var(--gie-radius);
    background: var(--gie-white);
    box-shadow: var(--gie-shadow);
}

.gie-rate-shell table {
    width: 100%;
}

.gie-rate-fallback {
    padding: 28px;
    text-align: center;
}

.gie-rate-fallback h3 {
    margin-bottom: 10px;
}

.gie-rate-note {
    margin-top: 24px;
    padding: 24px 26px;
    border: 1px solid var(--gie-border);
    border-radius: 14px;
    background: #fffdf6;
}

.gie-rate-note h3 {
    margin: 0 0 12px;
}

.gie-rate-note ul {
    margin: 0;
    padding-left: 20px;
}

.gie-rate-note li {
    margin: 7px 0;
    color: var(--gie-muted);
}

.gie-inline-cta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding: 26px 28px;
    border-radius: var(--gie-radius);
    color: var(--gie-white);
    background: #102f65;
}

.gie-inline-cta h3,
.gie-inline-cta p {
    margin: 0;
    color: var(--gie-white);
}

.gie-inline-cta p {
    margin-top: 6px;
    opacity: 0.86;
}

.gie-card-grid {
    display: grid;
    gap: 20px;
}

.gie-card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gie-card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gie-card {
    padding: 24px;
    border: 1px solid var(--gie-border);
    border-radius: 15px;
    background: var(--gie-white);
}

.gie-card h3 {
    margin: 0 0 9px;
    color: var(--gie-text);
    font-size: 20px;
}

.gie-card p {
    margin: 0;
    color: var(--gie-muted);
    line-height: 1.65;
}

.gie-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.gie-service-list article {
    padding: 28px;
    border: 1px solid var(--gie-border);
    border-radius: var(--gie-radius);
    background: var(--gie-white);
}

.gie-service-list h3 {
    margin: 0 0 10px;
}

.gie-service-list p {
    color: var(--gie-muted);
    line-height: 1.72;
}

.gie-service-list a,
.gie-info-panel a,
.gie-text-links a,
.gie-about a {
    color: var(--gie-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gie-factor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gie-factor-grid article {
    padding: 20px;
    border: 1px solid var(--gie-border);
    border-radius: 13px;
    background: var(--gie-white);
}

.gie-factor-grid h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.gie-factor-grid p {
    margin: 0;
    color: var(--gie-muted);
    line-height: 1.55;
}

.gie-info-panel,
.gie-content-panel {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--gie-border);
    border-radius: var(--gie-radius);
    background: var(--gie-white);
    box-shadow: var(--gie-shadow);
}

.gie-info-panel h3 {
    margin: 0 0 12px;
    font-size: 26px;
}

.gie-info-panel p {
    color: var(--gie-muted);
    line-height: 1.75;
}

.gie-info-panel a {
    display: block;
    margin-top: 13px;
}

.gie-process {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gie-process li {
    display: flex;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--gie-border);
    border-radius: 14px;
}

.gie-process > li > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gie-white);
    background: var(--gie-primary);
    font-weight: 800;
}

.gie-process h3 {
    margin: 0 0 6px;
    font-size: 19px;
}

.gie-process p {
    margin: 0;
    color: var(--gie-muted);
    line-height: 1.55;
}

.gie-text-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.gie-quote-section {
    background: #eef5ff;
}

.gie-quote-form {
    padding: 30px;
    border: 1px solid #ccdaed;
    border-radius: var(--gie-radius);
    background: var(--gie-white);
    box-shadow: var(--gie-shadow);
}

.gie-quote-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--gie-text);
    font-size: 14px;
    font-weight: 700;
}

.gie-quote-form input,
.gie-quote-form select,
.gie-quote-form textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 13px 14px;
    border: 1px solid #cfd7e4;
    border-radius: 9px;
    background: var(--gie-white);
    color: var(--gie-text);
}

.gie-quote-form input:focus,
.gie-quote-form select:focus,
.gie-quote-form textarea:focus {
    border-color: var(--gie-primary);
    outline: 3px solid rgba(11, 85, 199, 0.12);
}

.gie-form-note {
    margin: 12px 0 0;
    font-size: 13px;
}

.gie-contact-line {
    font-weight: 700;
}

.gie-contact-line a {
    color: var(--gie-primary);
}

.gie-about img {
    aspect-ratio: 4 / 3;
}

.gie-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.gie-faq-list details {
    margin-bottom: 12px;
    border: 1px solid var(--gie-border);
    border-radius: 12px;
    background: var(--gie-white);
}

.gie-faq-list summary {
    padding: 18px 20px;
    cursor: pointer;
    color: var(--gie-text);
    font-weight: 700;
}

.gie-faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--gie-muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .gie-hero {
        padding-top: 48px;
    }

    .gie-hero__media {
        margin-top: 34px;
    }

    .gie-card-grid--4,
    .gie-card-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gie-info-panel {
        margin-top: 24px;
    }

    .gie-inline-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .gie-about img {
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .gie-section {
        padding: 52px 0;
    }

    .gie-trust-list,
    .gie-card-grid--4,
    .gie-card-grid--3,
    .gie-service-list,
    .gie-factor-grid,
    .gie-process {
        grid-template-columns: 1fr;
    }

    .gie-hero h1 {
        font-size: 39px;
    }

    .gie-hero__intro {
        font-size: 16px;
    }

    .gie-answer-box,
    .gie-rate-shell,
    .gie-inline-cta,
    .gie-quote-form,
    .gie-content-panel,
    .gie-info-panel {
        padding: 22px;
    }

    .gie-actions,
    .gie-text-links {
        align-items: stretch;
        flex-direction: column;
    }

    .gie-btn {
        width: 100%;
    }
}
