@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --midnight-blue: #0B1E39;
    --petrol: #0E7C86;
    --turquoise: #1FD1C1;
    --slate: #2E3A4A;
    --mist-white: #F4F6F8;
    --saffron: #F4C542;
    --text-dark: #1A2533;
    --text-muted: #4F5D6F;
    --border-color: #D7DFE7;
    --shadow-color: rgba(11, 30, 57, 0.08);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--mist-white);
    line-height: 1.6;
}

a {
    color: var(--petrol);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

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

.container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px var(--shadow-color);
}

.top-bar {
    background: var(--midnight-blue);
    color: #fff;
    font-size: 0.85rem;
}

.top-bar-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--midnight-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-name {
    white-space: nowrap;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--midnight-blue);
}

.nav-toggle-label .close-text {
    display: none;
}

.main-navigation ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--slate);
    font-weight: 500;
    position: relative;
}

.main-navigation a.active::after,
.main-navigation a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 3px;
    background: var(--turquoise);
    border-radius: 2px;
}

.hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, rgba(15, 46, 78, 0.08) 0%, rgba(31, 209, 193, 0.08) 100%);
}

.inner-hero {
    padding: 4rem 0 3rem;
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 1rem;
    color: var(--midnight-blue);
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.hero-highlights li {
    background: #fff;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    box-shadow: 0 8px 24px var(--shadow-color);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--slate);
    margin-top: 1rem;
}

.hero-image {
    border-radius: 1.25rem;
    box-shadow: 0 18px 40px var(--shadow-color);
    border: 1px solid #E1E8F0;
}

.section {
    padding: 4.5rem 0;
}

.section:nth-of-type(even) {
    background-color: #fff;
}

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

.section-heading h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0;
}

.metrics-grid,
.services-grid,
.story-grid,
.trust-grid,
.tax-grid,
.treasury-grid,
.cross-border-grid,
.faq-grid,
.info-grid,
.availability-grid,
.process-grid {
    display: grid;
    gap: 1.75rem;
}

.metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 2.5rem;
}

.metric-card,
.services-grid article,
.story-grid article,
.trust-grid div,
.tax-grid article,
.treasury-grid div,
.cross-border-grid div,
.faq-grid article,
.info-grid article,
.availability-grid article,
.process-grid article {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 16px 38px var(--shadow-color);
    border: 1px solid rgba(14, 124, 134, 0.08);
}

.metric-card h3,
.services-grid h3,
.story-grid h3,
.trust-grid h3,
.tax-grid h3,
.treasury-grid h3,
.cross-border-grid h3,
.faq-grid h3,
.info-grid h3,
.availability-grid h3,
.process-grid h3 {
    margin-top: 0;
    color: var(--midnight-blue);
    margin-bottom: 0.75rem;
}

.metric-card ul {
    padding-left: 1.1rem;
    margin: 0;
    color: var(--text-muted);
}

.metrics-visual,
.cross-border-visual,
.case-visual,
.treasury-visual {
    margin-top: 2.5rem;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column-content h2 {
    color: var(--midnight-blue);
    font-size: clamp(1.75rem, 2.3vw, 2.4rem);
}

.column-content p {
    color: var(--text-muted);
}

.column-visual .responsive-image {
    border-radius: 1.25rem;
    box-shadow: 0 18px 44px var(--shadow-color);
}

.stat-block {
    background: linear-gradient(135deg, var(--midnight-blue), var(--petrol));
    color: #fff;
    border-radius: 1.1rem;
    padding: 1.25rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 1.5rem 0;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.icon-list li {
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-muted);
}

.icon-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1rem;
    height: 1rem;
    background: var(--turquoise);
    border-radius: 0.3rem;
}

.tech-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.tech-grid div {
    background: rgba(15, 46, 78, 0.06);
    border-radius: 1rem;
    padding: 1.25rem;
}

.tech-grid h3 {
    margin-top: 0;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.cross-border-grid,
.tax-grid,
.treasury-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.case-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section.contact-section,
.contact-form-section {
    background: #fff;
}

.contact-details p {
    margin: 0 0 0.5rem;
    color: var(--text-muted);
}

.contact-form {
    background: var(--mist-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 48px var(--shadow-color);
    border: 1px solid rgba(31, 209, 193, 0.12);
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--slate);
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid #C8D4E0;
    border-radius: 0.85rem;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--petrol);
    box-shadow: 0 0 0 3px rgba(31, 209, 193, 0.2);
}

.hidden-field {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--petrol);
    color: #fff;
    border: none;
    border-radius: 0.85rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus {
    background: var(--midnight-blue);
    transform: translateY(-1px);
}

.btn-small {
    padding: 0.65rem 1.4rem;
    font-size: 0.95rem;
}

.sticky-cta {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    background: var(--saffron);
    color: var(--midnight-blue);
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(244, 197, 66, 0.35);
    z-index: 1200;
}

.site-footer {
    background: var(--midnight-blue);
    color: #fff;
    padding-top: 3.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1.25rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: center;
    font-size: 0.95rem;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid rgba(14, 124, 134, 0.3);
    padding-left: 1.5rem;
}

.timeline li {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-date {
    font-weight: 600;
    color: var(--petrol);
    display: block;
    margin-bottom: 0.25rem;
}

.timeline-content h3 {
    margin: 0 0 0.5rem;
    color: var(--midnight-blue);
}

.timeline-content p {
    margin: 0;
    color: var(--text-muted);
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -1.95rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    background: var(--turquoise);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(31, 209, 193, 0.2);
}

.summary-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 22px 48px var(--shadow-color);
    border: 1px solid rgba(14, 124, 134, 0.12);
    margin-bottom: 2.5rem;
}

.summary-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.next-steps ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
    color: var(--text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 18px 48px rgba(11, 30, 57, 0.25);
    width: min(100% - 2rem, 640px);
    z-index: 1500;
    padding: 1.75rem;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: grid;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--petrol);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 32px var(--shadow-color);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background: rgba(14, 124, 134, 0.08);
    color: var(--midnight-blue);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .hero-container,
    .two-column {
        grid-template-columns: 1fr;
    }

    .two-column {
        gap: 2rem;
    }

    .two-column.reverse {
        direction: ltr;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }
}

@media (max-width: 900px) {
    .nav-toggle-label {
        display: block;
    }

    .main-navigation {
        position: fixed;
        inset: 0;
        background: rgba(11, 30, 57, 0.98);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: scale(0.95);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
    }

    .main-navigation a {
        color: #fff;
        font-size: 1.5rem;
    }

    .nav-toggle:checked ~ .nav-toggle-label .menu-text {
        display: none;
    }

    .nav-toggle:checked ~ .nav-toggle-label .close-text {
        display: inline;
    }

    .nav-toggle:checked ~ .main-navigation {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-highlights li {
        padding: 0.75rem 0.85rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .sticky-cta {
        right: 1rem;
        bottom: 1rem;
    }

    .cookie-banner {
        bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .top-bar-container {
        gap: 1rem;
        font-size: 0.78rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .section-heading h2 {
        font-size: 1.9rem;
    }

    .section-heading p {
        font-size: 1rem;
    }

    .metrics-grid,
    .services-grid,
    .story-grid,
    .trust-grid,
    .tax-grid,
    .treasury-grid,
    .cross-border-grid,
    .faq-grid,
    .info-grid,
    .availability-grid,
    .process-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-banner {
        width: min(100% - 1rem, 400px);
        padding: 1.25rem;
    }

    .cookie-content {
        font-size: 0.9rem;
    }
}