:root {
    --navy: #1B3A5C;
    --navy-dark: #132A44;
    --navy-light: #2A5080;
    --gold: #C9A84C;
    --gold-light: #D4BC72;
    --gold-dark: #A88B3A;
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --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;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.05);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 45px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
    color: var(--navy);
}

.logo-tagline {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 500;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 30%, var(--navy-light) 60%, var(--navy) 100%);
    background-size: 300% 300%;
    animation: bgGradientShift 12s ease-in-out infinite;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 168, 76, 0.08) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 80%; animation-duration: 18s; animation-delay: 0s; width: 3px; height: 3px; }
.particle:nth-child(2) { left: 30%; top: 90%; animation-duration: 22s; animation-delay: 2s; width: 5px; height: 5px; }
.particle:nth-child(3) { left: 55%; top: 85%; animation-duration: 16s; animation-delay: 4s; }
.particle:nth-child(4) { left: 75%; top: 95%; animation-duration: 24s; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(5) { left: 90%; top: 88%; animation-duration: 20s; animation-delay: 3s; width: 6px; height: 6px; }

@keyframes particleFloat {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    50% { opacity: 0.3; }
    90% { opacity: 0.5; }
    100% { transform: translate3d(-100px, -800px, 0) rotate(720deg); opacity: 0; }
}

.hero-inner-wrap {
    position: relative;
    z-index: 2;
}

.hero-top {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 48px;
}

.hero-logo {
    flex-shrink: 0;
}

.hero-logo img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.35));
}

.hero-content {
    max-width: 620px;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

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

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

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.services {
    padding: 100px 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.08), rgba(201, 168, 76, 0.08));
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--navy);
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.cta-banner {
    padding: 0;
    position: relative;
}

.cta-inner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.about {
    padding: 140px 0 100px;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
}

.about-feature svg {
    color: var(--gold);
    flex-shrink: 0;
}

.about-image-card {
    position: relative;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
}

.about-accent-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
}

.accent-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
}

.accent-text {
    font-size: 13px;
    color: var(--navy-dark);
    font-weight: 500;
    line-height: 1.3;
}

.process {
    padding: 100px 0;
    background: var(--off-white);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 260px;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-300);
    margin-top: 28px;
    flex-shrink: 0;
}

.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--gray-700);
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-method:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border-radius: var(--radius-sm);
    color: var(--gold);
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-method span {
    font-size: 14px;
    color: var(--gray-500);
}

.contact-form-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

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

.form-note {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 12px;
}

.service-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.service-page-hero {
    background: var(--navy);
    padding: 140px 0 60px;
    color: var(--white);
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
}

.service-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-page-intro {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    line-height: 1.7;
}

.service-page-content {
    padding: 80px 0;
}

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.service-page-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--navy);
    margin: 40px 0 16px;
}

.service-page-main h2:first-child {
    margin-top: 0;
}

.service-page-main h3 {
    font-size: 20px;
    color: var(--navy);
    margin: 24px 0 12px;
}

.service-page-main p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-page-main ul,
.service-page-main ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.service-page-main li {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}

.service-page-main a {
    color: var(--gold-dark);
    font-weight: 600;
}

.sidebar-cta {
    background: var(--navy);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.sidebar-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
}

.sidebar-cta p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-services {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.sidebar-services h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.sidebar-services a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.sidebar-services a:last-child {
    border-bottom: none;
}

.sidebar-services a:hover {
    color: var(--gold-dark);
    padding-left: 8px;
}

.areas {
    padding: 100px 0;
    background: var(--white);
}

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

.area-group {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.area-group h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
    padding-left: 20px;
    position: relative;
}

.area-group li:last-child {
    border-bottom: none;
}

.area-group li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.faq {
    padding: 100px 0;
    background: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item[open] .faq-question::after {
    content: '\2212';
}

.faq-question:hover {
    color: var(--navy-light);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    padding-left: 24px;
    margin: 8px 0;
}

.faq-answer li {
    padding: 4px 0;
    font-size: 14px;
}

.faq-answer a {
    color: var(--gold-dark);
    font-weight: 600;
}

.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

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

.footer-links a,
.footer-contact a,
.footer-contact span {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 30px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translate3d(-40px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translate3d(40px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translate3d(0, 40px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes heroLogoFloat {
    from { opacity: 0; transform: scale(0.8) rotate(-5deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(201, 168, 76, 0.15); }
}

@keyframes counterPop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes accentSlide {
    from { opacity: 0; transform: translate(20px, 20px) scale(0.9); }
    to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes labelReveal {
    from { opacity: 0; letter-spacing: 6px; }
    to { opacity: 1; letter-spacing: 2px; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes bgGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.anim-fade-up {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.anim-slide-right {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.anim-slide-left {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.anim-scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.anim-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

.hero-animate {
    animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-logo-animate {
    animation: heroLogoFloat 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.hero-logo-animate img {
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-stats-animate {
    animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.counter-animate {
    animation: counterPop 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.accent-animate {
    animation: accentSlide 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.anim-label {
    animation: labelReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-badge {
    animation: heroFadeIn 0.6s ease 0.2s both;
}

.service-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.3s ease;
}

.service-card:hover .service-icon {
    animation: float 2s ease-in-out infinite;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.cta-inner {
    animation: pulseGlow 4s ease-in-out infinite;
}

.about-accent-card {
    opacity: 0;
}

.faq-item {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    transform: translateX(4px);
}

.area-group {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.area-group:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

@media (prefers-reduced-motion: reduce) {
    .anim-fade-up,
    .anim-slide-right,
    .anim-slide-left,
    .anim-scale-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-animate,
    .hero-logo-animate,
    .hero-stats-animate,
    .counter-animate,
    .accent-animate,
    .anim-label,
    .hero-badge {
        animation: none;
    }

    .service-card:hover .service-icon {
        animation: none;
    }

    .cta-inner {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }

    .cta-content p {
        margin: 0 auto;
    }

    .about-grid {
        gap: 48px;
    }

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

    .service-page-grid {
        grid-template-columns: 1fr 280px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: var(--transition);
        opacity: 0;
        overflow-y: auto;
        z-index: 999;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--gray-100);
        display: block;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
        padding: 14px 20px;
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .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 {
        min-height: auto;
        padding: 100px 0 48px;
    }

    .hero-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-logo img {
        width: 140px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .hero-tagline {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--gold);
        padding-top: 12px;
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-actions {
        justify-content: center;
        margin-bottom: 36px;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        height: 32px;
    }

    .trust-bar {
        padding: 16px 0;
    }

    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-item {
        font-size: 12px;
        gap: 6px;
    }

    .trust-item svg {
        width: 16px;
        height: 16px;
    }

    .trust-item span {
        font-size: 12px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 14px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-desc {
        font-size: 13px;
    }

    .cta-inner {
        margin: -24px 0 0;
        border-radius: var(--radius);
        padding: 36px 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .about {
        padding: 80px 0 60px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-feature {
        font-size: 14px;
    }

    .about-image-placeholder {
        height: 280px;
    }

    .about-accent-card {
        right: 16px;
        bottom: -16px;
        padding: 16px 20px;
    }

    .accent-number {
        font-size: 28px;
    }

    .accent-text {
        font-size: 12px;
    }

    .process {
        padding: 60px 0;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .process-step {
        max-width: 100%;
        padding: 0;
    }

    .step-number {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .process-step h3 {
        font-size: 16px;
    }

    .process-step p {
        font-size: 13px;
    }

    .process-connector {
        width: 2px;
        height: 24px;
        margin: 8px 0;
    }

    .areas {
        padding: 60px 0;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .area-group {
        padding: 24px;
    }

    .area-group h3 {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .area-group li {
        font-size: 13px;
        padding: 6px 0 6px 18px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px 16px;
        gap: 12px;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 13px;
        line-height: 1.7;
    }

    .faq-answer ul {
        padding-left: 16px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-grid {
        gap: 32px;
    }

    .contact-info p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .contact-method {
        padding: 12px 16px;
    }

    .contact-method-icon {
        width: 40px;
        height: 40px;
    }

    .contact-method-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-method strong {
        font-size: 13px;
    }

    .contact-method span {
        font-size: 13px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 16px;
    }

    .form-group label {
        font-size: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .footer {
        padding: 48px 0 0;
    }

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

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .service-page-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-page-hero {
        padding: 100px 0 36px;
    }

    .service-page-hero h1 {
        font-size: 26px;
    }

    .service-page-intro {
        font-size: 14px;
    }

    .service-page-content {
        padding: 48px 0;
    }

    .service-page-main h2 {
        font-size: 22px;
        margin: 28px 0 12px;
    }

    .service-page-main h3 {
        font-size: 18px;
    }

    .service-page-main p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-page-main li {
        font-size: 14px;
        line-height: 1.7;
    }

    .breadcrumb {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .breadcrumb span {
        margin: 0 4px;
    }

    .sidebar-cta {
        padding: 24px;
    }

    .sidebar-cta h3 {
        font-size: 20px;
    }

    .sidebar-services {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        height: 64px;
    }

    .logo-img {
        height: 44px;
    }

    .nav {
        top: 64px;
    }

    .hero {
        padding: 88px 0 40px;
    }

    .hero-logo img {
        width: 120px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

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

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 20px;
    }

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

    .cta-actions .btn {
        justify-content: center;
    }

    .cta-inner {
        padding: 28px 20px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .about-image-placeholder {
        height: 220px;
    }

    .contact-methods {
        gap: 12px;
    }

    .service-page-hero {
        padding: 84px 0 28px;
    }

    .service-page-hero h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .footer-logo-img {
        height: 36px;
    }

    .section-title {
        font-size: 22px;
    }
}
