@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables & Theme Setup */
:root {
    --primary-color: #0b4572;
    --primary-hover: #072e4c;
    --primary-rgb: 11, 69, 114;
    --accent-color: #00a3a6;
    --accent-hover: #008285;
    --accent-rgb: 0, 163, 166;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --white: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --font-sans: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--light-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

/* Grid & Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.section-padding {
    padding: 5.5rem 0;
}

/* Header & Navigation Styling */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.header-wrapper.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-weight: 600;
}

.nav-menu {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-indicator {
    position: absolute;
    bottom: -2px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    opacity: 0;
    z-index: 5;
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(11, 69, 114, 0.2);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 69, 114, 0.3);
    color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 7rem;
    background: radial-gradient(circle at 80% 20%, rgba(0, 163, 166, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(11, 69, 114, 0.05) 0%, transparent 40%),
                var(--light-color);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(0, 163, 166, 0.1);
    color: var(--accent-color);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 163, 166, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 20%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(11, 69, 114, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(11, 69, 114, 0.35);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-blob {
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(0, 163, 166, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero-shield-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    z-index: 2;
    max-width: 420px;
    text-align: center;
    border-top: 4px solid var(--accent-color);
    animation: float 6s infinite ease-in-out;
}

.hero-shield-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 10px 15px rgba(11, 69, 114, 0.15));
}

/* Trust Badges / Stats */
.stats-strip {
    background-color: var(--white);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid & Section Headers */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Features & Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(0, 163, 166, 0.1);
    color: var(--accent-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Transaction Flow Chart styling */
.flow-section {
    background-color: #0b1c2e;
    color: var(--white);
    position: relative;
}

.flow-section .section-title {
    color: var(--white);
}

.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
}

.flow-container::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: dashed rgba(0, 163, 166, 0.3);
    z-index: 1;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 163, 166, 0.5);
    border: 4px solid #0b1c2e;
    font-family: 'Outfit', sans-serif;
}

.flow-step:nth-child(even) .flow-num {
    background-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(11, 69, 114, 0.5);
}

.flow-step h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.flow-step p {
    color: #94a3b8;
    font-size: 0.85rem;
    max-width: 200px;
}

/* Call To Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #062a47 60%, var(--accent-color) 120%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-banner-content {
    max-width: 650px;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.cta-banner .btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.cta-banner .btn-white:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
}

/* Table Style for Scope of Work and Compare */
.scope-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.scope-column {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.scope-title-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 1.25rem;
}

.scope-column-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
}

.scope-first .scope-column-icon {
    background-color: var(--primary-color);
}

.scope-second .scope-column-icon {
    background-color: var(--accent-color);
}

.scope-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for list */
.scope-list::-webkit-scrollbar {
    width: 6px;
}
.scope-list::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: var(--radius-sm);
}
.scope-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-sm);
}

.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.scope-check {
    color: var(--success-color);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.scope-item strong {
    color: var(--primary-color);
}

/* Compliance Cards & Legal Sections */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.compliance-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.compliance-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.compliance-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.legal-meta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.legal-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Address details / Contact Page structure */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
}

.contact-info-panel {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 163, 166, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-panel h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-panel p.subtitle {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 4px;
}

.contact-detail-content h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.contact-socials {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-circle:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-form-panel {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-panel h3 {
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
    background-color: var(--light-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 163, 166, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Alert Boxes */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Footer Styling */
.footer {
    background-color: #08101a;
    color: var(--white);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-address {
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-address p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-address i {
    color: var(--accent-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .scope-comparison {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
    .navbar {
        padding: 0.5rem 0;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding: 0.75rem 0;
    }
    .nav-btn {
        width: 100%;
        margin-top: 1rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .hero-desc {
        margin-right: auto;
        margin-left: auto;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-shield-card {
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .flow-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .flow-container::after {
        display: none;
    }
    .flow-step {
        width: 100%;
    }
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta .btn {
        width: 100%;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .container {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .hero {
        padding: 7rem 0 4rem;
    }
    .cta-banner, .feature-card, .contact-info-panel, .contact-form-panel, .glass-card-dark, .registry-badge-card, .scope-column, .compliance-card {
        padding: 1.5rem;
    }
}

/* Scroll Reveal & Dynamic Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Visitor Counter Widget */
.counter-widget {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
}

.counter-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.counter-pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--success-color);
    border-radius: 50%;
    animation: pulse-ring 1.8s infinite ease-in-out;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.counter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
}

.counter-digits {
    display: flex;
    gap: 4px;
}

.counter-digit {
    background: #0f1c2d;
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid rgba(0, 163, 166, 0.25);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

/* --- About Us Page Visual Overhauls & Premium Aesthetics --- */

/* Glassmorphism Dark Card */
.glass-card-dark {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.glass-card-dark::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 163, 166, 0.15) 0%, transparent 70%);
    z-index: 1;
}

/* Glassmorphism Light Card */
.glass-card-light {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.glass-card-light:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 163, 166, 0.3);
}

/* Status Indicator Dot (glowing/pulsing) */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 163, 166, 0.08);
    border: 1px solid rgba(0, 163, 166, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.status-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: relative;
}

.status-pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: pulseSignal 1.5s infinite ease-in-out;
}

@keyframes pulseSignal {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Neon Mission/Vision Card Accents */
.mv-glow-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.mv-glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    transition: var(--transition);
}

.mv-glow-card.primary::before {
    background: var(--primary-color);
}

.mv-glow-card.accent::before {
    background: var(--accent-color);
}

.mv-glow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.mv-glow-card.primary:hover {
    box-shadow: 0 20px 40px -10px rgba(11, 69, 114, 0.12);
}

.mv-glow-card.accent:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 163, 166, 0.12);
}

/* Corporate Registry Badge */
.registry-badge-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.registry-badge-card::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: url('../images/logo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
}

.registry-table tr {
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.registry-table tr:hover {
    background-color: rgba(0, 163, 166, 0.03);
}

/* Settlement Flow Dashboard Visualizer */
.settlement-dashboard {
    background: #09121f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl), inset 0 1px 1px rgba(255,255,255,0.05);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.settlement-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.escrow-node {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.escrow-node:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 163, 166, 0.3);
    transform: scale(1.03);
}

.escrow-node-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

.escrow-node.primary .escrow-node-circle {
    background: rgba(11, 69, 114, 0.2);
    border: 2px solid var(--primary-color);
    color: #3b82f6;
}

.escrow-node.center .escrow-node-circle {
    background: rgba(0, 163, 166, 0.2);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 163, 166, 0.25);
}

.escrow-node.success .escrow-node-circle {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid var(--success-color);
    color: var(--success-color);
}

/* Telemetry stats count design */
.telemetry-metric-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desk Card Gear Spin */
.feature-card:hover .fa-users-gear {
    animation: rotateGear 4s infinite linear;
}

.feature-card:hover .fa-calculator {
    animation: pulseIcon 1.5s infinite ease-in-out;
}

.feature-card:hover .fa-clipboard-check {
    animation: bounceIcon 1.2s infinite ease-in-out;
}

@keyframes rotateGear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* SVG Flow Line Dash */
.flow-line-path {
    stroke-dasharray: 8, 8;
    animation: flowDots 30s infinite linear;
}

@keyframes flowDots {
    from {
        stroke-dashoffset: 500;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Floating Grid Background */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
    pointer-events: none;
}

/* Responsive Subpage Typography */
.subpage-hero-title {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}
@media (min-width: 768px) {
    .subpage-hero-title {
        font-size: 2.5rem;
    }
}
@media (min-width: 1024px) {
    .subpage-hero-title {
        font-size: 2.8rem;
    }
}

.subpage-hero-desc {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .subpage-hero-desc {
        font-size: 1.05rem;
    }
}
@media (min-width: 1024px) {
    .subpage-hero-desc {
        font-size: 1.1rem;
    }
}

.subpage-section-title {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
@media (min-width: 768px) {
    .subpage-section-title {
        font-size: 1.95rem;
    }
}
@media (min-width: 1024px) {
    .subpage-section-title {
        font-size: 2.2rem;
    }
}

.subpage-subsection-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .subpage-subsection-title {
        font-size: 1.3rem;
    }
}
@media (min-width: 1024px) {
    .subpage-subsection-title {
        font-size: 1.5rem;
    }
}

/* Mobile-First Responsive Grid Utilities */
.grid-md-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .grid-md-2 {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 3.5rem;
    }
}

.grid-md-2-equal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .grid-md-2-equal {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.grid-md-2-reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .grid-md-2-reverse {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
    }
}

.grid-md-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .grid-md-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 163, 166, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s,
                background-color 0.3s,
                box-shadow 0.3s;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 163, 166, 0.5);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--accent-hover) 100%);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


