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

:root {
    /* Navy Blue Prestige Color Palette */
    --primary: #0A192F;
    /* Deep navy blue - main brand */
    --primary-light: #112B52;
    --primary-dark: #050D19;
    --secondary: #5A6872;
    /* Sophisticated gray */
    --accent: #1E4F8A;
    /* Blue accent */
    --accent-gold: #C4A35A;
    /* Prestige gold accent */

    --bg-light: #F8F9FA;
    --bg-cream: #FDFBF7;
    --bg-white: #ffffff;
    --bg-dark: #0A192F;

    --text-main: #1A1A1A;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    --border-color: #E5E7EB;
    --border-subtle: #F0F0F0;

    --max-width: 1280px;

    /* Premium Shadows */
    --shadow-sm: 0 1px 2px rgba(10, 25, 47, 0.05);
    --shadow: 0 4px 20px rgba(10, 25, 47, 0.08);
    --shadow-lg: 0 10px 40px rgba(10, 25, 47, 0.12);
    --shadow-xl: 0 20px 60px rgba(10, 25, 47, 0.15);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem;
}

section {
    padding: 120px 0;
}

/* Typography - Premium Style */
h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-text {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
}

/* Navigation - Premium */
nav {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    box-shadow: var(--shadow);
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons - Premium Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero - Premium Prestige Design */
.hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 90px);
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(10, 25, 47, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-right: 4rem;
}

.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.hero-content h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 8px;
    z-index: -1;
}

.hero-bullets {
    margin: 2.5rem 0;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-main);
}

.hero-bullets li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    border-left: 2px solid var(--border-color);
    max-width: 400px;
}

/* Trust Strip - Premium */
.trust-strip {
    padding: 3rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.pills-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.pill::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* Cards - Premium */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* How It Works - Refined Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.3;
}

.step {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 2.5rem 0;
    position: relative;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
}

/* Compliance / Operations - Dark Premium Section */
.compliance-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.compliance-section h2 {
    color: white;
}

.compliance-section .section-text {
    color: rgba(255, 255, 255, 0.75);
}

.compliance-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
    margin: 2.5rem 0;
}

.compliance-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.compliance-bullets li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* FAQs - Premium */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-item p:not(.faq-question) {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact - Premium */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-subtle);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-main);
    letter-spacing: 0.01em;
}

input,
textarea {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-white);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.1);
}

textarea {
    height: 140px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 1rem;
}

.info-item h4 {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.info-item p {
    color: var(--text-main);
    font-size: 1.05rem;
}

.info-item a {
    color: var(--primary);
    font-weight: 500;
}

.info-item a:hover {
    color: var(--accent);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.last-updated {
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    display: block;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.legal-section li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Footer - Premium */
footer {
    padding: 80px 0 40px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

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

.footer-copyright {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 60px 0;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-image {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .contact-form {
        padding: 2rem;
    }

    .compliance-bullets {
        grid-template-columns: 1fr;
    }

    .pills-container {
        gap: 1.5rem;
    }

    .steps-container::before {
        display: none;
    }

    .step {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Selection Style */
::selection {
    background: var(--primary);
    color: white;
}