@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Instrument+Serif:ital@0;1&display=swap');

:root {
    --navy: #0a1628;
    --navy-light: #142340;
    --slate: #334155;
    --slate-light: #64748b;
    --silver: #e2e8f0;
    --silver-light: #f1f5f9;
    --white: #ffffff;
    --gold: #b8860b;
    --gold-light: #daa520;
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --success: #059669;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 22, 40, 0.1), 0 2px 4px -2px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(10, 22, 40, 0.1), 0 4px 6px -4px rgba(10, 22, 40, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(10, 22, 40, 0.1), 0 8px 10px -6px rgba(10, 22, 40, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 17px; line-height: 1.7; color: var(--slate); background: var(--white); font-weight: 400; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); color: var(--navy); line-height: 1.2; font-weight: 400; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
p { margin-bottom: 1.5rem; color: var(--slate); }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 900px; }

header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(226, 232, 240, 0.8); transition: var(--transition); }
header.scrolled { box-shadow: var(--shadow-md); }
.header-top { background: var(--navy); padding: 0.5rem 0; font-size: 0.875rem; }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; color: var(--silver); }
.header-top a { color: var(--silver); }
.header-top a:hover { color: var(--gold-light); }
.header-main { padding: 1rem 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.5rem; font-weight: 700; }
.logo-text { font-family: var(--font-serif); font-size: 1.75rem; color: var(--navy); letter-spacing: -0.02em; }
.logo-text span { color: var(--gold); }
nav ul { display: flex; list-style: none; gap: 0.5rem; }
nav a { display: block; padding: 0.75rem 1.25rem; color: var(--slate); font-weight: 500; font-size: 0.95rem; border-radius: 6px; transition: var(--transition); }
nav a:hover { color: var(--navy); background: var(--silver-light); }
nav a.active { color: var(--accent); }
.nav-cta { background: var(--navy) !important; color: var(--white) !important; }
.nav-cta:hover { background: var(--navy-light) !important; color: var(--white) !important; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--navy); transition: var(--transition); }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a5f 100%); padding-top: 120px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); opacity: 0.5; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem; color: var(--gold-light); margin-bottom: 1.5rem; backdrop-filter: blur(10px); }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; font-size: clamp(2.75rem, 6vw, 4.5rem); }
.hero h1 span { color: var(--gold-light); }
.hero-text { font-size: 1.25rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 2.5rem; max-width: 600px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; font-size: 1rem; font-weight: 600; border-radius: 8px; border: none; cursor: pointer; transition: var(--transition); text-decoration: none; font-family: var(--font-sans); }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, 0.3); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.hero-stat { text-align: center; }
.hero-stat-number { font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold-light); display: block; margin-bottom: 0.25rem; }
.hero-stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.1em; }

section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--slate-light); }
.bg-light { background: var(--silver-light); }
.bg-navy { background: var(--navy); }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: var(--white); }
.bg-navy .section-label { color: var(--gold-light); }

.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.industry-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); position: relative; }
.industry-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.industry-card-image { height: 220px; background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%); position: relative; overflow: hidden; }
.industry-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.industry-card:hover .industry-card-image img { transform: scale(1.05); }
.industry-card-content { padding: 2rem; }
.industry-card h3 { margin-bottom: 0.75rem; font-size: 1.5rem; }
.industry-card p { font-size: 0.95rem; margin-bottom: 1.5rem; color: var(--slate-light); }
.industry-card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--accent); }
.industry-card-link::after { content: '→'; transition: var(--transition); }
.industry-card:hover .industry-card-link::after { transform: translateX(4px); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.service-card { background: var(--white); padding: 2.5rem; border-radius: 16px; text-align: center; box-shadow: var(--shadow-md); transition: var(--transition); position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: var(--gold); border-radius: 0 0 4px 4px; opacity: 0; transition: var(--transition); }
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; }
.service-card h3 { margin-bottom: 1rem; font-size: 1.35rem; }
.service-card p { font-size: 0.95rem; color: var(--slate-light); margin-bottom: 0; }

.trust-section { background: linear-gradient(135deg, var(--silver-light) 0%, var(--white) 100%); }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3rem; align-items: center; justify-items: center; opacity: 0.6; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { padding: 2.5rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; transition: var(--transition); }
.feature-card:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); }
.feature-number { font-family: var(--font-serif); font-size: 3rem; color: var(--gold-light); line-height: 1; margin-bottom: 1rem; }
.feature-card h3 { color: var(--white); margin-bottom: 1rem; }
.feature-card p { color: rgba(255, 255, 255, 0.7); margin-bottom: 0; font-size: 0.95rem; }

.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%); border-radius: 50%; }
.cta-content { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255, 255, 255, 0.8); font-size: 1.25rem; margin-bottom: 2rem; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--white); padding: 2.5rem; border-radius: 16px; box-shadow: var(--shadow-md); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 1.5rem; left: 2rem; font-family: var(--font-serif); font-size: 5rem; color: var(--gold); opacity: 0.2; line-height: 1; }
.testimonial-text { font-size: 1.1rem; font-style: italic; color: var(--slate); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 600; }
.testimonial-info h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.testimonial-info p { font-size: 0.875rem; color: var(--slate-light); margin-bottom: 0; }
.stars { color: var(--gold); margin-bottom: 1rem; }

footer { background: var(--navy); color: var(--silver); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand p { color: rgba(255, 255, 255, 0.6); margin: 1.5rem 0; font-size: 0.95rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--silver); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-column h4 { color: var(--white); font-family: var(--font-sans); font-weight: 600; font-size: 1rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; transition: var(--transition); }
.footer-column a:hover { color: var(--gold-light); }
.footer-bottom { padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); }
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 12rem 0 6rem; text-align: center; position: relative; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255, 255, 255, 0.8); font-size: 1.25rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; font-size: 0.9rem; }
.breadcrumb a { color: rgba(255, 255, 255, 0.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

.content-section { padding: 5rem 0; }
.content-grid { display: grid; grid-template-columns: 1fr 350px; gap: 4rem; }
.content-main h2 { margin: 2.5rem 0 1rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main ul { margin: 1.5rem 0; padding-left: 1.5rem; }
.content-main li { margin-bottom: 0.75rem; }
.sidebar { position: sticky; top: 120px; height: fit-content; }
.sidebar-card { background: var(--silver-light); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; }
.sidebar-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.sidebar-nav ul { list-style: none; }
.sidebar-nav li { margin-bottom: 0.5rem; }
.sidebar-nav a { display: block; padding: 0.75rem 1rem; color: var(--slate); border-radius: 8px; transition: var(--transition); }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--white); color: var(--navy); }

.faq-section { padding: 5rem 0; background: var(--silver-light); }
.faq-grid { display: grid; gap: 1rem; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600; color: var(--navy); text-align: left; transition: var(--transition); }
.faq-question:hover { background: var(--silver-light); }
.faq-icon { font-size: 1.5rem; color: var(--gold); transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 2rem 1.5rem; color: var(--slate); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 50px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number { width: 100px; height: 100px; background: var(--white); border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold); }
.process-step h3 { margin-bottom: 0.75rem; }
.process-step p { font-size: 0.95rem; color: var(--slate-light); }

.contact-form { background: var(--white); padding: 3rem; border-radius: 16px; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem 1.25rem; border: 2px solid var(--silver); border-radius: 8px; font-family: var(--font-sans); font-size: 1rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 150px; resize: vertical; }

@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .process-grid::before { display: none; }
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}
@media (max-width: 768px) {
    .header-top { display: none; }
    nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem; box-shadow: var(--shadow-lg); }
    nav ul.active { display: flex; }
    .mobile-toggle { display: flex; }
    .hero { min-height: auto; padding: 10rem 0 5rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .industries-grid, .services-grid, .testimonials-grid, .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
    section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }
}
