:root {
    --brand-blue: #0f2446;
    --brand-blue-soft: #213a8f;
    --brand-orange: #ff7a00;
    --brand-orange-deep: #ff5f00;
    --ink: #243b61;
    --muted: #667a99;
    --line: #e6ecf4;
    --surface: #ffffff;
    --surface-soft: #f6f9fc;
    --shadow: 0 18px 40px rgba(15, 36, 70, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Rubik", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: all 0.3s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(15, 36, 70, 0.05);
}

.site-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.logo-a2z,
.site-logo .logo-a2z {
    color: #1e3a8a;
}

.logo-exports,
.site-logo .logo-exports {
    color: var(--brand-orange);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex: 1;
    flex-wrap: wrap;
}

.site-nav a {
    position: relative;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--brand-blue);
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand-orange);
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.site-whatsapp i {
    color: #7b8ba7;
    font-size: 12px;
}

.site-quote-btn,
.primary-btn,
.about-btn,
.catalogue-card-button,
.shipping-cta,
.btn.primary,
.cta-primary,
.contact-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff8a1d 0%, #ff6a00 100%);
    color: #fff !important; 
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(255, 122, 0, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-quote-btn {
    min-width: 132px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
}

.primary-btn,
.secondary-btn,
.about-btn,
.cta-primary,
.cta-secondary {
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 700;
}

.site-quote-btn:hover,
.primary-btn:hover,
.about-btn:hover,
.catalogue-card-button:hover,
.shipping-cta:hover,
.btn.primary:hover,
.cta-primary:hover,
.contact-card a:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 122, 0, 0.28);
}

.secondary-btn,
.cta-secondary,
.btn.light,
.contact-card a.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
}

.secondary-btn {
    min-width: 132px;
    border: 1px solid rgba(15, 36, 70, 0.12);
    background: #fff;
    color: var(--brand-blue);
}

.secondary-btn:hover {
    color: var(--brand-blue);
    border-color: rgba(255, 122, 0, 0.4);
}

.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cta-secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalogue-section {
    padding: 28px 20px 42px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
}

.catalogue-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.catalogue-header {
    text-align: center;
    margin-bottom: 28px;
}

.catalogue-header h1,
.catalogue-header h2 {
    margin: 0;
    color: #0f2446;
    font-size: 34px;
    font-weight: 700;
}

.catalogue-header p {
    margin: 12px auto 0;
    max-width: 760px;
    color: #5c6f8d;
    font-size: 16px;
    line-height: 1.7;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.catalogue-card {
    background: #fff;
    border: 1px solid #e6edf6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(15, 36, 70, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalogue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(15, 36, 70, 0.13);
}

.catalogue-visual {
    position: relative;
    min-height: 220px;
    padding: 24px 18px 18px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.catalogue-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 19, 39, 0.05) 0%, rgba(7, 19, 39, 0.78) 100%);
    z-index: -1;
}

.catalogue-card-content {
    color: #fff;
}

.catalogue-card-content h2,
.catalogue-card-content h3 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 700;
}

.catalogue-card-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.catalogue-card-body {
    padding: 18px 18px 16px;
}

.catalogue-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 10px;
}

.catalogue-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3f5878;
    font-size: 14px;
    line-height: 1.4;
}

.catalogue-features li::before {
    content: "\f058";
    font-family: FontAwesome;
    color: #2bb24c;
    font-size: 13px;
    flex: 0 0 auto;
}

.catalogue-card-button {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
}

.catalogue-footer {
    text-align: center;
    margin-top: 24px;
}

.deal-section {
    padding: 26px 20px 30px;
}

.deal-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.deal-header {
    text-align: center;
    margin-bottom: 28px;
}

.deal-header h2 {
    margin: 0 0 10px;
    color: #0f2446;
    font-size: 36px;
    font-weight: 700;
}

.deal-header p {
    margin: 0 auto;
    max-width: 760px;
    color: #5c6f8d;
    font-size: 16px;
    line-height: 1.75;
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.deal-card {
    background: #fff;
    border: 1px solid #e6edf6;
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(15, 36, 70, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(15, 36, 70, 0.12);
    border-color: rgba(255, 122, 0, 0.28);
}

.deal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.12) 0%, rgba(33, 58, 143, 0.1) 100%);
    color: #ff7a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.deal-card h3 {
    margin: 0 0 8px;
    color: #0f2446;
    font-size: 18px;
    font-weight: 700;
}

.deal-card p {
    margin: 0;
    color: #657896;
    font-size: 13px;
    line-height: 1.65;
}

.catalogue-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 10px;
    background: #213a8f;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(33, 58, 143, 0.2);
}

.catalogue-view-all:hover {
    color: #fff;
    background: #182f78;
}

.why-section {
    padding: 80px 20px;
    background: #f5f7fb;
}

.why-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a2540;
    text-align: center;
}

.why-section h2 span {
    color: #ff7a00;
}

.subtitle {
    margin-top: 10px;
    color: #6b7280;
    font-size: 15px;
    text-align: center;
}

.why-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-card .icon {
    width: 45px;
    height: 45px;
    background: #fff3e8;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0a2540;
}

.why-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.shipping-showcase {
    background: linear-gradient(180deg, #eef3fa 0%, #f8fafc 100%);
}

.shipping-stats {
    background: linear-gradient(135deg, #233b8d 0%, #2f4ca7 100%);
    color: #fff;
    padding: 34px 20px;
}

.shipping-stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}

.shipping-stat {
    padding: 8px 10px;
}

.shipping-stat strong {
    display: block;
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    color: #ff9850;
    margin-bottom: 10px;
}

.shipping-stat span {
    display: block;
    font-size: 15px;
    opacity: 0.94;
    letter-spacing: 0.2px;
}

.shipping-content {
    padding: 80px 20px;
}

.shipping-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
    gap: 42px;
    align-items: center;
}

.shipping-copy {
    color: #12315b;
}

.shipping-copy h2 {
    font-size: 48px;
    line-height: 1.02;
    font-weight: 700;
    margin: 0 0 22px;
    max-width: 460px;
}

.shipping-copy h2 span {
    display: block;
    color: #ff7a00;
}

.shipping-copy p {
    font-size: 18px;
    line-height: 1.8;
    color: #48607f;
    margin-bottom: 28px;
    max-width: 520px;
}

.shipping-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 18px;
}

.shipping-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: start;
}

.shipping-list i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.12);
    color: #12a150;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    font-size: 14px;
}

.shipping-list strong {
    display: block;
    font-size: 19px;
    color: #0f2446;
    margin-bottom: 4px;
}

.shipping-list span {
    display: block;
    font-size: 15px;
    line-height: 1.7;
    color: #5a6f8e;
}

.shipping-cta {
    min-width: 190px;
    padding: 14px 24px;
    font-weight: 600;
}

.shipping-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 16px;
}

.shipping-gallery figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(15, 36, 70, 0.12);
    background: #dfe8f5;
    min-height: 190px;
}

.shipping-gallery figure:nth-child(2) {
    transform: translateY(-18px);
}

.shipping-gallery figure:nth-child(3) {
    transform: translateY(10px);
}

.shipping-gallery img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    display: block;
}

.cta-banner {
    position: relative;
    min-height: 420px;
    background: url("https://images.unsplash.com/photo-1565610222536-ef125c59da2e") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 40, 90, 0.85), rgba(10, 40, 90, 0.85));
}

.cta-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    color: #fff;
    z-index: 2;
    padding: 0 15px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-content h2 span {
    color: #ff7a00;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 26px;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn.light {
    background: #f1f1f1;
    color: #1a2a4f;
    font-weight: 500;
}

.btn.light:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.footer-shell {
    margin-top: 10px;
    background: #0d1d3a;
    color: rgba(255, 255, 255, 0.78);
}

.footer-top {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 20px 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand h2,
.footer-col h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 20px;
}

.footer-brand p,
.footer-col li,
.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li + li {
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 20px 24px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
}

/* Contact page */
.hero-contact {
    padding: 62px 20px 34px;
}

.hero-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.hero-card,
.contact-card,
.info-panel,
.map-panel,
.support-card,
.faq-copy,
.faq-visual,
.faq-panel,
.about-copy,
.about-visual,
.story-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 38px;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 0, 0.16), transparent 32%),
        linear-gradient(135deg, #0f2446 0%, #1f3a8c 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.hero-card h1 {
    margin: 18px 0 14px;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 700;
}

.hero-card p {
    margin: 0 0 26px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-highlight {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-highlight strong {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.hero-highlight span {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.contact-card {
    padding: 34px 30px;
}

.contact-card h2,
.section-title {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.15;
    color: var(--brand-blue);
}

.contact-card > p,
.section-copy {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.contact-points {
    display: grid;
    gap: 14px;
}

.contact-point {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 1px solid #edf2f8;
}

.contact-point i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 0, 0.1);
    color: var(--brand-orange);
    font-size: 18px;
}

.contact-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--brand-blue);
    font-size: 16px;
}

.contact-point span,
.contact-point a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
}

.content-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 20px 60px;
    display: grid;
    gap: 26px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 26px;
}

.info-panel {
    padding: 34px;
}

.info-panel p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.support-card {
    padding: 22px;
}

.support-card i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 58, 143, 0.08);
    color: var(--brand-blue-soft);
    font-size: 18px;
    margin-bottom: 14px;
}

.support-card h3 {
    margin: 0 0 8px;
    color: var(--brand-blue);
    font-size: 18px;
}

.support-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.map-panel {
    overflow: hidden;
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    display: block;
}

/* FAQ page */
.faq-hero {
    padding: 56px 20px 24px;
}

.faq-hero-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 1.02fr) minmax(300px, 0.98fr);
    gap: 28px;
    align-items: center;
}

.faq-copy {
    padding: 40px;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 0, 0.14), transparent 30%),
        linear-gradient(135deg, #0f2446 0%, #213a8f 100%);
    color: #fff;
}

.faq-copy h1 {
    margin: 18px 0 14px;
    font-size: 48px;
    line-height: 1.02;
    font-weight: 700;
}

.faq-copy p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.faq-visual {
    overflow: hidden;
    min-height: 100%;
}

.faq-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}

.faq-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 20px 60px;
    display: grid;
    grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.85fr);
    gap: 26px;
}

.faq-panel {
    padding: 32px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

details.faq-item {
    border: 1px solid #e6edf6;
    border-radius: 18px;
    background: #f8fbff;
    overflow: hidden;
}

details.faq-item[open] {
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 36, 70, 0.08);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
    color: #0f2446;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.12);
    color: #ff7a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex: 0 0 auto;
}

.faq-answer {
    padding: 0 22px 20px;
    color: #5c6f8d;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

.quick-points {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 12px;
}

.quick-points li {
    display: flex;
    gap: 10px;
    color: #4d6483;
    font-size: 14px;
    line-height: 1.6;
}

.quick-points li i {
    color: #25b45c;
    margin-top: 3px;
}

.contact-card a {
    width: 100%;
    padding: 13px 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card a.secondary-link {
   
    color: #0f2446;
    border: 1px solid rgba(15, 36, 70, 0.12);
    box-shadow: none;
}

.contact-card a.secondary-link:hover {
    color: #0f2446;
    transform: translateY(-2px);
    box-shadow: none;
}

.footer-note {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 42px;
}

.footer-note-card {
    background: linear-gradient(135deg, #233b8d 0%, #2f4ca7 100%);
    color: #fff;
    border-radius: 22px;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    box-shadow: 0 18px 35px rgba(33, 58, 143, 0.2);
}

.footer-note-card h3 {
    margin: 0 0 8px;
    font-size: 28px;
}

.footer-note-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* About page */
.about-hero {
    padding: 56px 20px 30px;
}

.about-hero-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 1.02fr) minmax(320px, 0.98fr);
    gap: 28px;
    align-items: center;
}

.about-copy {
    padding: 40px;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 0, 0.14), transparent 30%),
        linear-gradient(135deg, #0f2446 0%, #213a8f 100%);
    color: #fff;
}

.about-copy h1 {
    margin: 18px 0 14px;
    font-size: 50px;
    line-height: 1.02;
    font-weight: 700;
}

.about-copy p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.about-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.about-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.about-visual {
    overflow: hidden;
    min-height: 100%;
}

.about-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}

.stats-strip {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 24px;
}

.stats-grid {
    background: linear-gradient(135deg, #233b8d 0%, #2f4ca7 100%);
    border-radius: 22px;
    padding: 28px 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
    box-shadow: 0 18px 35px rgba(33, 58, 143, 0.2);
}

.stat-item strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    color: #ff9850;
    margin-bottom: 8px;
}

.stat-item span {
    display: block;
    color: #fff;
    font-size: 14px;
    opacity: 0.95;
}

.section-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 20px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 28px;
}

.section-intro h2 {
    margin: 0 0 10px;
    font-size: 38px;
    color: #0f2446;
}

.section-intro p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.8;
    color: #5c6f8d;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.story-card {
    padding: 30px;
}

.story-card h3 {
    margin: 0 0 12px;
    color: #0f2446;
    font-size: 24px;
}

.story-card p {
    margin: 0 0 14px;
    color: #5c6f8d;
    font-size: 15px;
    line-height: 1.85;
}

/* Responsive */
@media (max-width: 992px) {
    .site-header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 18px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        gap: 18px;
    }

    .site-nav a.is-active::after {
        bottom: -6px;
    }

    .hero-shell,
    .content-grid,
    .faq-hero-shell,
    .faq-layout,
    .about-hero-shell,
    .story-grid,
    .shipping-layout {
        grid-template-columns: 1fr;
    }

    .hero-highlights,
    .support-grid,
    .footer-top,
    .footer-note-card,
    .stats-grid,
    .shipping-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalogue-grid,
    .deal-grid,
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-card h1,
    .faq-copy h1,
    .about-copy h1,
    .shipping-copy h2 {
        font-size: 40px;
    }

    .catalogue-card-content h2,
    .catalogue-card-content h3 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .site-header {
        position: static;
    }

    .site-header-inner {
        padding: 14px 15px;
        gap: 14px;
    }

    .site-logo {
        font-size: 26px;
    }

    .site-nav {
        gap: 14px 18px;
    }

    .site-nav a {
        font-size: 13px;
    }

    .site-header-actions {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .site-quote-btn {
        min-width: 0;
        padding: 11px 14px;
    }

    .hero-contact,
    .content-section,
    .faq-hero,
    .faq-layout,
    .footer-note,
    .about-hero,
    .stats-strip,
    .section-shell,
    .catalogue-section,
    .deal-section,
    .why-section,
    .shipping-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-card,
    .contact-card,
    .info-panel,
    .support-card,
    .faq-copy,
    .faq-panel,
    .about-copy,
    .story-card {
        padding: 24px 20px;
    }

    .hero-card h1,
    .faq-copy h1,
    .about-copy h1,
    .shipping-copy h2,
    .cta-content h2 {
        font-size: 32px;
    }

    .hero-card p,
    .contact-card > p,
    .info-panel p,
    .section-copy,
    .faq-copy p,
    .faq-answer,
    .contact-card p,
    .footer-note-card p,
    .shipping-copy p,
    .cta-content p,
    .section-intro p,
    .catalogue-header p,
    .subtitle {
        font-size: 14px;
    }

    .hero-actions,
    .cta-buttons,
    .about-actions {
        flex-direction: column;
    }

    .hero-actions a,
    .primary-btn,
    .secondary-btn,
    .cta-primary,
    .cta-secondary,
    .contact-card a,
    .btn,
    .shipping-cta,
    .about-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-highlights,
    .support-grid,
    .footer-top,
    .catalogue-grid,
    .deal-grid,
    .why-grid,
    .shipping-gallery {
        grid-template-columns: 1fr;
    }

    .contact-point {
        grid-template-columns: 44px 1fr;
        padding: 14px;
    }

    .contact-point i {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .map-panel iframe {
        min-height: 320px;
    }

    .faq-item summary {
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .footer-note-card {
        padding: 24px 20px;
        grid-template-columns: 1fr;
    }

    .footer-note-card h3 {
        font-size: 24px;
    }

    .catalogue-header h1,
    .catalogue-header h2,
    .deal-header h2,
    .section-intro h2,
    .why-section h2 {
        font-size: 26px;
    }

    .catalogue-visual {
        min-height: 205px;
    }

    .catalogue-card-content h2,
    .catalogue-card-content h3 {
        font-size: 25px;
    }

    .catalogue-features li {
        font-size: 13px;
    }

    .deal-header p,
    .deal-card p {
        font-size: 14px;
    }

    .stats-grid,
    .shipping-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px 8px;
    }

    .stat-item strong,
    .shipping-stat strong {
        font-size: 34px;
    }

    .shipping-list {
        gap: 16px;
    }

    .shipping-list li {
        grid-template-columns: 30px 1fr;
        gap: 12px;
    }

    .shipping-list strong {
        font-size: 17px;
    }

    .shipping-list span {
        font-size: 14px;
    }

    .shipping-gallery figure:nth-child(2),
    .shipping-gallery figure:nth-child(3) {
        transform: none;
    }

    .cta-banner {
        min-height: auto;
        padding: 50px 15px;
        background-attachment: scroll;
    }
}

@media (min-width: 601px) {
    .cta-banner {
        background-attachment: fixed;
    }
}
