:root {
    --primary: #c5a059; /* Gold */
    --primary-dark: #9e7f45;
    --text-dark: #2b2b2b; /* Graphite */
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #0a1128; /* Dark Navy */
    --white: #ffffff;
    --gradient-bg: linear-gradient(135deg, #f0f2f5 0%, #ffffff 50%, #e9ecef 100%);
    --radius: 16px;
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html.smooth-scroll {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Animations --- */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.1);
    border-radius: 30px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}
.btn-primary:hover { 
    background-color: var(--primary-dark); 
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

/* --- Navigation --- */
header {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 20px 0;
    z-index: 100;
    animation: heroFadeUp 0.8s ease-out forwards;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.4);
}
.logo { font-size: 24px; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: 1px;}
.logo span { color: var(--text-dark); }
.logo svg { transition: transform 0.4s ease; }
.logo:hover svg { transform: rotate(90deg); }

.nav-links { display: flex; gap: 25px; }
.nav-links a { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; position: relative;}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0;
    background-color: var(--primary); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 15px; align-items: center; }

/* --- Internal Page Hero --- */
.page-hero {
    padding: 180px 0 100px;
    background: var(--bg-dark);
    color: var(--white);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px; pointer-events: none;
}
.page-hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    opacity: 0;
    animation: heroFadeUp 0.8s ease-out 0.2s forwards;
    position: relative;
    z-index: 2;
}
.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 650px;
    margin: 0 auto;
    opacity: 0;
    animation: heroFadeUp 0.8s ease-out 0.4s forwards;
    position: relative;
    z-index: 2;
}

/* --- Process Timeline Section --- */
.process-details {
    padding: 100px 0;
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}
.process-intro h2 {
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
}
.process-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.process-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.process-row:nth-child(even) {
    direction: rtl; /* Reverses the layout */
}
.process-row:nth-child(even) > * {
    direction: ltr; /* Keeps text reading left-to-right */
}

.process-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.process-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.process-image:hover img {
    transform: scale(1.05);
}
/* The gold background offset block */
.process-image::before {
    content: '';
    position: absolute;
    top: -20px; bottom: -20px; left: -20px; right: -20px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: var(--radius);
    z-index: -1;
    transition: var(--transition);
}

.process-text {
    padding: 20px;
}
.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
}
.process-text h3 {
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.process-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.process-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}
.process-feature {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    border-left: 3px solid var(--primary);
}
.process-feature h4 {
    color: var(--bg-dark);
    font-size: 1rem;
    margin-bottom: 5px;
}
.process-feature p {
    font-size: 0.85rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* --- CTA --- */
.cta { 
    background: var(--bg-dark); 
    color: var(--white); 
    padding: 100px 20px; 
    text-align: center; 
    margin: 0 20px 60px; 
    border-radius: 40px; 
    position: relative; 
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(10, 17, 40, 0.2);
}
.cta h2 { font-size: 3rem; margin-bottom: 25px; position: relative; z-index: 2; line-height: 1.2;}
.cta p { max-width: 700px; margin: 0 auto 40px; position: relative; z-index: 2; opacity: 0.8; font-size: 1.1rem;}
.cta .btn { position: relative; z-index: 2; }

.cta-shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.shape1 { width: 600px; height: 600px; bottom: -300px; right: -100px; background: radial-gradient(circle, rgba(197, 160, 89, 0.6) 0%, transparent 70%); }
.shape2 { width: 400px; height: 400px; top: -150px; left: -100px; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); }

/* --- Footer (Exact copy from main page) --- */
footer { padding: 80px 0 20px; text-align: center; background: #fff;}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; text-align: left; margin-bottom: 60px;}
.footer-col h4 { margin-bottom: 25px; font-size: 0.85rem; color: var(--bg-dark); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700;}
.footer-col ul { display: flex; flex-direction: column; gap: 15px; }
.footer-col a { color: var(--text-light); font-size: 0.95rem; transition: var(--transition); position: relative; display: inline-block;}
.footer-col a:hover { color: var(--primary-dark); transform: translateX(5px); }
.footer-regulatory { text-align: left; font-size: 0.8rem; color: var(--text-light); padding: 35px 0; border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; margin-bottom: 35px; line-height: 1.8;}
.footer-regulatory strong { color: var(--bg-dark); display: block; margin-bottom: 10px; font-size: 0.9rem;}
.footer-bottom { display: flex; justify-content: space-between; color: var(--text-light); font-size: 0.9rem; align-items: center;}
.big-text { font-size: 11vw; font-weight: 800; color: #f4f6f8; line-height: 0.8; margin-top: 50px; letter-spacing: -2px; user-select: none; text-transform: uppercase; text-align: center;}

/* Responsive */
@media (max-width: 992px) {
    .process-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px;}
    .process-row:nth-child(even) { direction: ltr; }
    .process-image::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .page-hero h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .process-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta h2 { font-size: 2.2rem; }
    .process-image img { height: 300px; }
}