/* ================================================
   FAVOR & FORTUNE - Professional Design System
   ================================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Financial Palette */
    --primary: #0a1628;
    --primary-light: #1e2836;
    --primary-lighter: #2d3f54;
    --charcoal: #1e2836;
    --slate: #334155;
    --slate-light: #475569;
    
    /* Premium Accents */
    --accent: #c5a147;
    --accent-dark: #a68520;
    --accent-light: #d4af37;
    --emerald: #10b981;
    --emerald-light: #34d399;
    
    /* Sophisticated Neutrals */
    --white: #ffffff;
    --warm-white: #fdfcfa;
    --ivory: #f8f6f3;
    --cream: #f5f3ef;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Premium Shadows */
    --shadow-subtle: 0 1px 3px rgba(10, 22, 40, 0.06);
    --shadow-sm: 0 2px 4px rgba(10, 22, 40, 0.08);
    --shadow: 0 4px 12px rgba(10, 22, 40, 0.10);
    --shadow-md: 0 8px 20px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 12px 28px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 20px 40px rgba(10, 22, 40, 0.20);
    --shadow-2xl: 0 24px 48px rgba(10, 22, 40, 0.25);
    
    /* Premium Glows */
    --glow-gold: 0 0 24px rgba(197, 161, 71, 0.15);
    --glow-emerald: 0 0 20px rgba(16, 185, 129, 0.12);
    
    /* Border Radius */
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-2xl: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-light);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== PAGE SWITCHING ==================== */
section, .hero {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

section.active-page, .hero.active-page {
    display: block;
    animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 { 
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

/* Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.125rem;
    transition: transform 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--charcoal) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--ivory);
    color: var(--primary);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
    background: var(--cream);
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--gray-300);
    box-shadow: var(--shadow-subtle);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--warm-white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* Section Styling */
.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: linear-gradient(135deg, var(--ivory), var(--cream));
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(197, 161, 71, 0.2);
    box-shadow: var(--shadow-subtle), var(--glow-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: var(--gray-300);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(197, 161, 71, 0.1);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(10, 22, 40, 0.03);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-lighter));
    color: var(--accent-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-sm), 0 0 0 1px rgba(197, 161, 71, 0.2) inset;
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3125rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--ivory);
}

.nav-link:hover::after {
    transform: scaleX(1);
    background: var(--gray-50);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
    background: var(--ivory);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO ==================== */
.hero {
    padding: 140px 0 120px;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--warm-white) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 161, 71, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(10, 22, 40, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--white), var(--ivory));
    border: 1px solid rgba(197, 161, 71, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
    box-shadow: var(--shadow-md), var(--glow-gold);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--emerald);
    font-size: 1.125rem;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
}

.hero h1 {
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary), var(--charcoal), var(--primary-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.1875rem;
    color: var(--slate-light);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 24px 0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--slate-light);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, var(--gray-300), transparent);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: linear-gradient(135deg, var(--white), var(--warm-white));
    padding: 20px 26px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(197, 161, 71, 0.15);
    backdrop-filter: blur(12px);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.375rem;
    box-shadow: var(--shadow-sm), var(--glow-gold);
}

.card-title {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9375rem;
}

.card-subtitle {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ==================== PRODUCTS ==================== */
.products {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.product-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(201,162,39,0.03) 0%, var(--white) 100%);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.product-card.featured .product-icon {
    background: linear-gradient(135deg, rgba(201,162,39,0.15) 0%, rgba(201,162,39,0.05) 100%);
    color: var(--accent-dark);
}

.product-content {
    flex: 1;
}

.product-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-content > p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: var(--accent);
    font-size: 1.125rem;
    margin-top: 2px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ==================== ABOUT ==================== */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 161, 71, 0.2), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--white), var(--ivory));
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg), var(--glow-emerald);
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
}

.about-badge i {
    color: var(--emerald);
    font-size: 1.125rem;
}

.about-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.1875rem;
    font-weight: 400;
    color: var(--slate);
    margin-bottom: 24px;
    line-height: 1.75;
}

.about-content > p {
    margin-bottom: 20px;
    line-height: 1.75;
    color: var(--slate-light);
    font-size: 1rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(197, 161, 71, 0.15);
    margin-bottom: 32px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--white), var(--ivory));
    border: 1px solid rgba(197, 161, 71, 0.15);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.credential i {
    font-size: 1.25rem;
    color: var(--accent);
}

.credential span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

.cred-title {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9375rem;
}

.cred-desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 100px 0;
    background: var(--primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-card > p {
    font-size: 1rem;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.875rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9375rem;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* ==================== CONTACT ==================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-content h2 {
    margin-bottom: 16px;
}

.contact-content > p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    max-width: 480px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.method-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    box-shadow: var(--shadow);
}

.method-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.method-value {
    font-weight: 600;
    color: var(--primary);
}

.cta-card {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary) 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.3);
}

.cta-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--gray-400);
    margin-bottom: 28px;
}

.cta-card .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
}

.cta-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(180deg, var(--primary), var(--charcoal));
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 161, 71, 0.3), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: 1px solid rgba(197, 161, 71, 0.3);
    box-shadow: var(--glow-gold);
}

.footer-logo .logo-text {
    color: var(--warm-white);
    font-weight: 600;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--accent-light);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

.disclaimer {
    font-size: 0.8125rem;
    color: var(--gray-500);
    max-width: 600px;
}

/* ==================== COMPLIANCE & DISCLOSURES ==================== */
.compliance {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--ivory), var(--warm-white));
    border-top: 1px solid rgba(197, 161, 71, 0.15);
}

.compliance-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.compliance-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.compliance-content h3 i {
    font-size: 1.75rem;
    color: var(--accent);
}

.disclosure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.disclosure-item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(197, 161, 71, 0.1);
    box-shadow: var(--shadow-sm);
}

.disclosure-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.disclosure-item p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--slate-light);
    margin: 0;
}

.compliance-footer {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.7;
    padding: 24px;
    background: var(--ivory);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197, 161, 71, 0.15);
}

.compliance-footer a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.compliance-footer a:hover {
    color: var(--accent-dark);
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
    }
    
    .hero-image-wrapper img {
        height: 450px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-text {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper img {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-card {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-lead,
    .about-content > p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .credentials {
        justify-content: center;
        max-width: 500px;
        margin: 32px auto;
    }
    
    .about-badge {
        top: 16px;
        right: 16px;
        padding: 10px 16px;
    }
    
    .disclosure-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content > p {
        margin: 0 auto 32px;
    }
    
    .contact-methods {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-method {
        text-align: left;
    }
    
    .cta-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 640px) {
    .nav-container {
        height: 64px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 6px 14px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat {
        flex: 0 0 auto;
    }
    
    .hero-image-wrapper img {
        height: 300px;
    }
    
    .hero-card {
        padding: 12px 16px;
        bottom: -15px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .card-title {
        font-size: 0.875rem;
    }
    
    .card-subtitle {
        font-size: 0.75rem;
    }
    
    .products,
    .about,
    .testimonials,
    .contact {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .product-card {
        padding: 24px;
    }
    
    .product-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .product-price {
        align-items: center;
    }
    
    .product-footer .btn {
        width: 100%;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .about-credentials {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .credential {
        justify-content: center;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .cta-card {
        padding: 32px 24px;
    }
    
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-links .footer-col:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 400px) {
    .section-container {
        padding: 0 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-links .footer-col:last-child {
        grid-column: span 1;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 50%, var(--cream) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 161, 71, 0.2), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: linear-gradient(135deg, var(--white), var(--warm-white));
    padding: 44px 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(197, 161, 71, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(197, 161, 71, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--charcoal) 50%, var(--primary-lighter) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-light), transparent, var(--emerald));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 0.6;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--primary);
    font-weight: 600;
}

.service-card > p {
    color: var(--slate-light);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--slate);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.service-features li i {
    color: var(--emerald);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.2));
}

/* ==================== TRUST & CREDIBILITY ==================== */
.trust {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white), var(--warm-white));
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-badge-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-badge {
    background: linear-gradient(135deg, var(--white), var(--ivory));
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(197, 161, 71, 0.15);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.trust-badge.large {
    grid-column: 1 / -1;
    padding: 32px;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 161, 71, 0.3);
}

.badge-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm), var(--glow-emerald);
}

.trust-badge.large .badge-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: var(--shadow-md), var(--glow-gold);
}

.badge-icon i {
    font-size: 28px;
    color: var(--white);
}

.trust-badge.large .badge-icon i {
    font-size: 36px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.trust-badge.large .badge-label {
    font-size: 1.5rem;
}

.badge-desc {
    font-size: 0.875rem;
    color: var(--slate-light);
    font-weight: 500;
}

.trust-content {
    max-width: 540px;
}

.trust-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-light);
    margin-bottom: 36px;
}

.trust-principles {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.principle {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.principle i {
    font-size: 28px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.principle h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.principle p {
    font-size: 0.9375rem;
    color: var(--slate-light);
    line-height: 1.6;
    margin: 0;
}

.trust-disclosure {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.6;
    padding: 20px;
    background: var(--ivory);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
}

.trust-disclosure a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.trust-disclosure a:hover {
    color: var(--accent-dark);
}

/* ==================== ENHANCED CONTACT FORM ==================== */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 161, 71, 0.2), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-lead {
    color: var(--slate-light);
    font-size: 1.1875rem;
    margin-bottom: 40px;
    line-height: 1.75;
}

.contact-info > p {
    color: var(--slate-light);
    font-size: 1.125rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.consultation-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--charcoal));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-icon i {
    font-size: 24px;
    color: var(--accent-light);
}

.feature-content h4 {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-form-container {
    background: linear-gradient(135deg, var(--white), var(--warm-white));
    padding: 52px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(197, 161, 71, 0.15);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--emerald));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-family: "Inter", sans-serif;
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-subtle);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--shadow-sm), 0 0 0 3px rgba(197, 161, 71, 0.15);
    background: var(--warm-white);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.checkbox-label:hover {
    background: var(--gray-100);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label span {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.form-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: -8px;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon i {
    font-size: 48px;
    color: var(--white);
}

.form-success h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* ==================== MOBILE ENHANCEMENTS ==================== */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        position: static;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 60px 0;
    }

    .service-card {
        padding: 32px 24px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .consultation-features {
        gap: 20px;
    }

    .feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .contact-form-container {
        padding: 24px 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
}

