@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================
   DESIGN SYSTEM
============================ */
:root {
    --bg-deep:        #12102A;
    --bg-mid:         #1E1B3C;
    --bg-light:       #2A2650;
    --purple-dark:    #4A4760;
    --purple-main:    #6B63A6;
    --purple-light:   #9B8FD4;

    --gold:           #C9A84C;
    --gold-light:     #E2C06D;
    --gold-subtle:    rgba(201, 168, 76, 0.12);
    --gold-border:    rgba(201, 168, 76, 0.28);

    --glass-bg:       rgba(255, 255, 255, 0.06);
    --glass-bg-hover: rgba(255, 255, 255, 0.10);
    --glass-border:   rgba(255, 255, 255, 0.11);
    --glass-border-h: rgba(255, 255, 255, 0.20);

    --text-primary:   #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.78);
    --text-muted:     rgba(255, 255, 255, 0.48);

    --shadow:         0 8px 32px rgba(0, 0, 0, 0.40);
    --shadow-hover:   0 24px 60px rgba(0, 0, 0, 0.50);

    --radius-sm:  12px;
    --radius:     20px;
    --radius-lg:  28px;

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

/* ============================
   RESET + BASE
============================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-deep);
    background-image:
        radial-gradient(ellipse 70% 60% at 15% 15%, rgba(107, 99, 166, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 85%, rgba(74, 71, 96, 0.32) 0%, transparent 55%),
        linear-gradient(155deg, #12102A 0%, #1E1B3C 45%, #2A2650 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ============================
   ANIMATED BACKGROUND
============================ */
.bg-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 99, 166, 0.16) 0%, transparent 70%);
    animation: floatShape 9s ease-in-out infinite;
    filter: blur(50px);
}
.shape:nth-child(1) { width: 480px; height: 480px; top: -140px; left: -120px; animation-delay: 0s; }
.shape:nth-child(2) { width: 340px; height: 340px; top: 55%; right: -80px; animation-delay: 2.5s; }
.shape:nth-child(3) { width: 280px; height: 280px; bottom: 8%; left: 18%; animation-delay: 4.5s; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); }
.shape:nth-child(4) { width: 220px; height: 220px; top: 28%; right: 22%; animation-delay: 1.2s; }
.shape:nth-child(5) { width: 380px; height: 380px; bottom: -100px; right: 8%; animation-delay: 3.3s; }
.shape:nth-child(6) { width: 300px; height: 300px; top: 45%; left: 4%; animation-delay: 5.8s; }

@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-30px) scale(1.06); opacity: 1; }
}

/* ============================
   GLASS UTILITY
============================ */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-h);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
nav.glass:hover,
footer.glass:hover,
.hero.glass:hover,
.hero-main:hover,
.alone-section:hover,
.trust-section:hover,
.final-cta-section:hover,
.page-hero:hover,
.contact-form.glass:hover,
.contact-info.glass:hover,
.service-detail:hover {
    transform: none;
    background: var(--glass-bg);
    border-color: var(--glass-border);
    box-shadow: var(--shadow);
}

/* ============================
   LAYOUT
============================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.content-wrapper { display: flex; flex-direction: column; gap: 28px; }

/* ============================
   NAVIGATION
============================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(18, 16, 42, 0.70);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
header .container { padding: 0; }
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}
.logo img {
    height: 64px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    object-position: left center;
    display: block;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.01em;
    white-space: nowrap;
    border: none;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--text-primary); background: var(--purple-main); }

/* ============================
   PAGE SYSTEM
============================ */
.page {
    display: none;
    min-height: calc(100vh - 90px);
    padding: 48px 0 64px;
    position: relative;
    z-index: 1;
}
.page.active { display: block; }

/* ============================
   SHARED UTILITIES
============================ */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.gold-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 8px auto 0;
    opacity: 0.7;
}

/* ============================
   BUTTONS
============================ */
.cta-button {
    display: inline-block;
    padding: 13px 36px;
    background: var(--purple-main);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 24px rgba(107, 99, 166, 0.45);
}
.cta-button:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(107, 99, 166, 0.55);
}
.cta-button-gold {
    display: inline-block;
    padding: 13px 36px;
    background: var(--gold);
    color: #1a1628;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
}
.cta-button-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.50);
}
.cta-button-outline {
    display: inline-block;
    padding: 12px 36px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.28);
    cursor: pointer;
    letter-spacing: 0.02em;
}
.cta-button-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
button[type="submit"] {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 15px;
    width: 100%;
    padding: 14px 36px;
    background: var(--purple-main);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
    box-shadow: 0 4px 24px rgba(107, 99, 166, 0.45);
    margin-top: 8px;
}
button[type="submit"]:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(107, 99, 166, 0.55);
}

/* ============================
   HOME – HERO (split layout)
============================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 48px;
}
.hero-image { display: flex; justify-content: center; align-items: center; order: -1; }
.hero-image img {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.hero-content { display: flex; flex-direction: column; gap: 20px; }
.hero h1 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.14;
    letter-spacing: -0.025em;
}
.hero p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.78; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-line { font-size: 13px; color: var(--text-muted); font-style: italic; }

/* ============================
   HOME – ALONE SECTION
============================ */
.alone-section {
    padding: 56px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.alone-section h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}
.alone-section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.82;
    max-width: 680px;
}

/* ============================
   HOME – HOW WE HELP
============================ */
.section-block { display: flex; flex-direction: column; gap: 24px; }
.section-block-header { text-align: center; }
.section-block-header h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}
.help-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.help-card {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.help-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: var(--transition);
}
.help-card:hover .help-icon { background: rgba(201,168,76,0.2); }
.help-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.help-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.72; margin: 0; }

/* ============================
   HOME – TRUST SECTION
============================ */
.trust-section { padding: 52px 56px; }
.trust-section > h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    text-align: center;
    margin-bottom: 8px;
}
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 36px;
}
.trust-person h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.credential-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.credential-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.credential-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
    top: 5px;
}
.trust-quote {
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 36px;
}
.trust-quote p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    font-style: italic;
}

/* ============================
   HOME – TESTIMONIALS
============================ */
.testimonials-section { display: flex; flex-direction: column; gap: 20px; }
.testimonials-section > h2 {
    font-size: clamp(1.6rem, 2vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    text-align: center;
}
.testimonial-card { padding: 40px 48px; position: relative; }
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 36px;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.25;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.testimonial-quote {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.82;
    font-style: italic;
    padding-top: 16px;
}
.testimonial-author {
    margin-top: 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================
   HOME – FINAL CTA
============================ */
.final-cta-section {
    padding: 64px 52px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.final-cta-section h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    max-width: 600px;
}
.final-cta-section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 500px;
}

/* ============================
   ABOUT PAGE
============================ */
.page-hero {
    padding: 56px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.page-hero h1 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.page-hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 620px;
}
.about-story {
    padding: 48px 52px;
    text-align: center;
}
.about-story h2 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}
.about-story p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 14px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.cred-card {
    padding: 40px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.cred-number {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--gold);
}
.cred-icon { font-size: 34px; }
.cred-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.55;
    text-align: center;
}

/* ============================
   SERVICES PAGE
============================ */
.service-detail {
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.service-detail-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-light);
}
.service-detail.mediation .service-detail-label { color: var(--gold); }
.service-detail h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    line-height: 1.25;
}
.service-detail > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.82;
}
.service-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-bullets li {
    color: var(--text-secondary);
    font-size: 1rem;
    padding-left: 24px;
    position: relative;
    line-height: 1.55;
}
.service-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--purple-light);
    font-weight: 700;
}
.service-detail.mediation .service-bullets li::before { color: var(--gold); }
.reassurance-box {
    background: rgba(107, 99, 166, 0.10);
    border: 1px solid rgba(107, 99, 166, 0.28);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    align-self: flex-start;
}
.service-detail.mediation .reassurance-box {
    background: var(--gold-subtle);
    border-color: var(--gold-border);
}
.mediation-banner {
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    text-align: center;
    letter-spacing: 0.02em;
}

/* PDF Download */
.pdf-download {
    padding: 52px 44px;
    text-align: center;
}
.pdf-download h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}
.pdf-download p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.72;
    margin-bottom: 28px;
}

/* ============================
   CONTACT PAGE
============================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: start;
}
.contact-form { padding: 44px 40px; }
.contact-form h2, .contact-info h2 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--purple-main);
    box-shadow: 0 0 0 3px rgba(107,99,166,0.22);
}
.form-group textarea { height: 130px; resize: vertical; line-height: 1.6; }
.contact-info { padding: 44px 36px; color: var(--text-primary); }
.contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
    width: 46px;
    height: 46px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-item-text h4 {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.contact-item-text p { color: var(--text-primary); font-size: 0.95rem; font-weight: 500; }

/* ============================
   FOOTER
============================ */
#footer { padding: 20px 0 32px; }
footer.glass:hover {
    transform: none;
    background: var(--glass-bg);
    border-color: var(--glass-border);
    box-shadow: var(--shadow);
}
.footer-content {
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-links { display: flex; gap: 2px; flex-wrap: wrap; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}
.footer-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.copyright { font-size: 13px; color: var(--text-muted); }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
    .page { padding: 32px 0 48px; }
    .content-wrapper { gap: 20px; }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 24px;
        gap: 28px;
    }
    .hero-content { align-items: center; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 300px; }
    .hero-ctas { justify-content: center; }
    header { padding: 10px 16px; }
    nav { flex-direction: column; gap: 12px; align-items: center; }
    .logo img { height: 50px; }
    .nav-links { gap: 4px; flex-wrap: wrap; justify-content: center; }
    .nav-links a { font-size: 14px; padding: 6px 14px; }
    .alone-section { padding: 40px 28px; }
    .help-cards { grid-template-columns: 1fr; }
    .trust-section { padding: 36px 28px; }
    .trust-grid { grid-template-columns: 1fr; gap: 24px; }
    .final-cta-section { padding: 44px 28px; }
    .page-hero { padding: 40px 24px; }
    .about-story { padding: 36px 28px; }
    .service-detail { padding: 36px 28px; }
    .contact-form, .contact-info { padding: 32px 24px; }
    .pdf-download { padding: 36px 24px; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .credentials-grid { grid-template-columns: 1fr; }
}
