/* ========================================
   MAX CAPITAL HUB - Vercel-Style Design
   ======================================== */

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

:root {
    /* Brand Colors */
    --primary: #D4A574;
    --primary-dark: #C4956A;
    --primary-light: #E8C4A0;
    --primary-glow: rgba(212, 165, 116, 0.2);

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EBEBEB;
    --gray-300: #E0E0E0;
    --gray-400: #A0A0A0;
    --gray-500: #6E6E6E;
    --gray-600: #444444;
    --gray-700: #333333;
    --gray-800: #1A1A1A;
    --gray-900: #111111;
    --black: #000000;

    /* Semantic */
    --success: #00D26A;
    --border: #EAEAEA;
    --border-dark: #333333;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);

    /* Layout */
    --container: 1100px;
    --section-padding: 80px;
    --radius: 8px;

    /* Typography - Geist */
    --font: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --duration: 0.2s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.5;
    font-size: 15px;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

.preloader, .cursor-trail, .hero-particles, .hero-visual,
.cta-glow, .card-glow, .icon-ring, .btn-shine,
.stat-divider, .scroll-indicator, .testimonial-rating,
.why-us-visual { display: none !important; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--gray-900);
}

h1 { font-size: clamp(36px, 5vw, 52px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 20px; }

a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-cube, .cube-face { display: none; }

.logo-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius);
    margin-left: 8px;
    transition: color var(--duration) var(--ease);
}

.nav-phone i {
    color: var(--primary);
    font-size: 13px;
}

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

.nav-link {
    color: var(--gray-500);
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: color var(--duration) var(--ease);
}

.nav-link:hover, .nav-link.active {
    color: var(--gray-900);
}

.nav-cta {
    padding: 8px 16px;
    background: var(--gray-900);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    margin-left: 8px;
    transition: all var(--duration) var(--ease);
}

.nav-cta:hover {
    background: var(--black);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1002;
}

.nav-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--gray-900);
    transition: all var(--duration) var(--ease);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 64px 0 60px;
    background: var(--gray-50);
    overflow: hidden;
}

.hero-hills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
}

/* Large centered logo watermark */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 90%;
    background-image: url('Assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.hero-bg, .gradient-orb, .grid-overlay { display: none; }

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

.hero-title {
    margin-bottom: 16px;
    font-weight: 700;
}

.title-line { display: block; }

.gradient-text {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.btn-primary {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

.btn-primary:hover {
    background: var(--black);
    border-color: var(--black);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

.btn-white {
    background: var(--white);
    color: var(--gray-900);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

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

.btn-icon { transition: transform var(--duration) var(--ease); }
.btn:hover .btn-icon { transform: translateX(3px); }

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ========================================
   SECTIONS
   ======================================== */
.services-preview,
.why-us,
.testimonials,
.pricing-section,
.contact-section,
.services-details,
.team-section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.section-title { margin-bottom: 12px; }

.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content > .btn,
.card-content > a.btn {
    margin-top: auto;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 16px;
    transition: all var(--duration) var(--ease);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 12px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-900);
    font-size: 13px;
    font-weight: 500;
}

.card-link:hover { color: var(--primary); }
.card-link i { font-size: 10px; }

.services-cta { text-align: center; }

/* ========================================
   WHY US
   ======================================== */
.why-us {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background-image: url('Assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content .section-tag { margin-bottom: 12px; }
.why-us-content .section-title { text-align: left; margin-bottom: 16px; }

.section-text {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
}

.feature-item:hover {
    border-color: var(--gray-300);
    background: var(--white);
}

.feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 14px;
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 12px;
    color: var(--gray-500);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: url('Assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.trust-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
}

.trust-badges .badge i {
    color: var(--primary);
    font-size: 12px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background-image: url('Assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.testimonial-card:hover {
    border-color: var(--gray-300);
}

.quote-icon {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: var(--white);
}

.author-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.author-info span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 32px;
    background: var(--gray-900);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-brand .logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

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

.footer-brand p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 6px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: var(--gray-800);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 13px;
    transition: all var(--duration) var(--ease);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4, .footer-contact h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-links ul, .footer-contact ul { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--gray-400);
    font-size: 13px;
    transition: color var(--duration) var(--ease);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-contact li i { color: var(--primary); width: 12px; }
.footer-contact a { color: var(--gray-400); }
.footer-contact a:hover { color: var(--primary); }

.footer-contact a.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 16px;
    background: var(--white);
    color: var(--gray-900);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--duration) var(--ease);
}

.footer-contact a.footer-cta:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-contact a.footer-cta i {
    color: var(--primary);
    transition: color var(--duration) var(--ease);
}

.footer-contact a.footer-cta:hover i {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 12px;
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
    color: var(--gray-500);
    font-size: 12px;
}

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

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    padding: 120px 24px 48px;
    text-align: center;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    background-image: url('Assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}

.page-hero .section-tag,
.page-hero .section-title,
.page-hero .section-subtitle {
    position: relative;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background-image: url('Assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
}

.team-category { margin-bottom: 48px; }
.team-category:last-child { margin-bottom: 0; }

.team-category-header { margin-bottom: 20px; }
.team-category-header .section-tag { margin-bottom: 0; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.team-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.team-photo {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--gray-100);
}

.team-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.team-card:hover .team-avatar {
    background: var(--primary);
}

.team-info { padding: 20px; }

.team-role {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.team-info h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 14px;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.team-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-500);
    padding: 8px 10px;
    background: var(--gray-50);
    border-radius: 6px;
    transition: all var(--duration) var(--ease);
}

.team-contact a:hover {
    background: var(--gray-900);
    color: var(--white);
}

.team-contact a i {
    width: 12px;
    color: var(--primary);
}

.team-contact a:hover i { color: var(--white); }

/* ========================================
   LEGAL SERVICES
   ======================================== */
.legal-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.legal-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
}

.legal-service-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.legal-service-card > .btn,
.legal-service-card > a.btn {
    margin-top: auto;
}

.legal-service-card .service-icon { margin-bottom: 16px; }

.legal-service-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.legal-service-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-service-card ul {
    list-style: none;
    margin-bottom: 16px;
}

.legal-service-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-500);
    padding: 4px 0;
}

.legal-service-card li i {
    color: var(--primary);
    font-size: 8px;
}

.legal-service-card .btn {
    width: 100%;
    padding: 10px 16px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    gap: 12px;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

.contact-info-item .text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-info-item .text span,
.contact-info-item .text a {
    color: var(--gray-500);
    font-size: 13px;
}

.contact-info-item .text a:hover { color: var(--primary); }

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-form h3 {
    font-size: 18px;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group { margin-bottom: 12px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all var(--duration) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gray-400);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

.form-submit {
    width: 100%;
    padding: 12px 20px;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.form-submit:hover { background: var(--black); }

/* ========================================
   ABOUT - FOUNDER SECTION
   ======================================== */
.founder-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: center;
}

.founder-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--gray-100);
    box-shadow: var(--shadow-lg);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.founder-photo-empty {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    border: 1px dashed var(--gray-300);
    box-shadow: none;
}

.founder-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 80px;
}

/* Behind the work banner */
.about-banner {
    padding: 0;
    background: var(--gray-50);
}

.about-banner-image {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.about-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: var(--radius);
    filter: saturate(0.95);
}

@media (max-width: 768px) {
    .about-banner-image { height: 220px; padding: 0 16px; }
    .founder-photo-placeholder { font-size: 56px; }
}

.founder-photo-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 6px;
    color: var(--white);
}

.founder-photo-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.founder-photo-role {
    display: block;
    font-size: 12px;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.founder-content .section-tag {
    margin-bottom: 12px;
}

.founder-content h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    margin-bottom: 20px;
    text-align: left;
}

.founder-lead {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.founder-content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 14px;
}

.founder-cta {
    margin-top: 24px;
}

/* About stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}

.about-stat {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.about-stat:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
    line-height: 1;
}

.about-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
        margin: 0 auto;
    }

    .founder-content h2 { text-align: left; }

    .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-stat-value { font-size: 26px; }
    .founder-photo-tag { padding: 10px 12px; }
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    background-image: url('Assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 11px;
    transition: all var(--duration) var(--ease);
}

.faq-item[open] .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    animation: faqOpen 0.3s var(--ease);
}

.faq-answer p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
    padding-top: 4px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CUSTOM PRICING
   ======================================== */
.custom-pricing {
    max-width: 880px;
    margin: 0 auto;
}

.custom-pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.custom-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.custom-pricing-col h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.custom-pricing-col ul {
    list-style: none;
}

.custom-pricing-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.custom-pricing-col li i {
    color: var(--primary);
    font-size: 11px;
    margin-top: 5px;
    flex-shrink: 0;
}

.custom-pricing-cta {
    text-align: center;
}

.custom-pricing-cta p {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.custom-pricing-cta .cta-buttons {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .custom-pricing-card { padding: 24px; }

    .custom-pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
}

/* ========================================
   PRICING
   ======================================== */
.pricing-section { background: var(--gray-50); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--primary);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.pricing-card .price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
}

.pricing-card .description {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
    color: var(--primary);
    font-size: 10px;
}

.pricing-card .btn { width: 100%; }

/* ========================================
   SERVICES DETAILS
   ======================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
}

.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail-content .section-tag { margin-bottom: 12px; }

.service-detail-content h2 {
    font-size: clamp(24px, 3vw, 30px);
    margin-bottom: 12px;
}

.service-detail-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detail-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--gray-600);
    font-size: 14px;
}

.service-detail-content li i {
    color: var(--primary);
    font-size: 10px;
}

.service-visual-card {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.service-visual-card .icon {
    width: 64px;
    height: 64px;
    background: var(--gray-900);
    border-radius: var(--radius);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.service-visual-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.service-visual-card p {
    color: var(--gray-500);
    font-size: 13px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .services-grid,
    .legal-services-grid,
    .pricing-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid { grid-template-columns: repeat(2, 1fr); }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .hero-stats { gap: 40px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px; }

    .hero::before,
    .page-hero::before,
    .why-us::before,
    .testimonials::before,
    .team-section::before,
    .faq-section::before,
    .cta-section::before {
        display: none;
    }

    .hero {
        background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: right 0.3s var(--ease);
        gap: 0;
        z-index: 1001;
        margin-left: 0;
    }

    .nav-phone {
        margin-left: auto;
        padding: 8px;
        gap: 0;
    }

    .nav-phone span {
        display: none;
    }

    .nav-phone i {
        font-size: 18px;
    }

    .nav-menu.active { right: 0; }
    .nav-toggle { display: flex; }

    .nav-link {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        margin: 20px 0 0;
        width: 100%;
        justify-content: center;
    }

    .hero { padding: 80px 0 48px; min-height: auto; }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        padding: 0 8px;
    }

    .stat-item { flex: 1; min-width: 0; }

    .stat-number { font-size: 24px; letter-spacing: -0.03em; }
    .stat-suffix { font-size: 16px; }
    .stat-label { font-size: 11px; margin-top: 2px; }

    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }

    .services-grid,
    .legal-services-grid,
    .testimonials-slider,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .team-grid { grid-template-columns: repeat(2, 1fr); }

    .features-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }

    .service-detail,
    .service-detail:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 24px;
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .page-hero { padding: 100px 24px 40px; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
