:root {
            --primary: #0a0a0a;
            --accent: #c9a16f;
            --text: #1f1f1f;
            --light: #f8f5f0;
            --gray: #666;
        }
        * { margin:0; padding:0; box-sizing:border-box; }
        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--light);
        }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header {
            background: rgba(248,245,240,0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img { height: 42px; }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--accent); }
        .nav-buttons {
            display: flex;
            gap: 15px;
        }
        .btn {
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        .btn-primary:hover { background: #222; transform: translateY(-2px); }
        .hero {
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(201,161,111,0.1) 0%, transparent 70%);
            animation: pulse 15s infinite ease-in-out;
        }
        .hero-content {
            max-width: 900px;
            padding: 0 20px;
            z-index: 2;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5.5rem);
            line-height: 1.05;
            margin-bottom: 24px;
            font-weight: 700;
        }
        .hero p {
            font-size: 1.35rem;
            max-width: 620px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-buttons .btn {
            font-size: 1.1rem;
            padding: 16px 40px;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin: 80px 0;
        }
        .data-card {
            background: white;
            padding: 32px 24px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
        }
        .data-card:hover { transform: translateY(-12px); }
        .data-card h3 { font-size: 2.2rem; color: var(--accent); margin-bottom: 8px; }
        .data-card p { color: var(--gray); font-size: 1rem; }
        .section {
            padding: 120px 0;
        }
        .section-title {
            font-size: 2.4rem;
            text-align: center;
            margin-bottom: 60px;
            color: var(--primary);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            transition: all 0.4s;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(201,161,111,0.15);
        }
        .service-card .icon {
            font-size: 3rem;
            padding: 30px 20px 0;
            color: var(--accent);
        }
        .service-card h3 {
            font-size: 1.35rem;
            padding: 0 20px 16px;
        }
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            margin: 80px 0;
        }
        .step {
            flex: 1;
            min-width: 280px;
            text-align: center;
        }
        .step-num {
            width: 68px;
            height: 68px;
            margin: 0 auto 24px;
            border: 3px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
        }
        .table-container {
            overflow-x: auto;
            margin: 80px 0;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            min-width: 800px;
        }
        th, td {
            padding: 18px 24px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th { background: var(--light); font-weight: 600; }
        .faq-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.04);
        }
        .faq-question {
            padding: 24px 30px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
        }
        .faq-question:hover { background: #f8f5f0; }
        .faq-answer {
            padding: 0 30px 24px;
            color: var(--gray);
            display: none;
        }
        .faq-answer.show { display: block; }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin: 80px 0;
        }
        .testimonial {
            background: white;
            padding: 36px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }
        .testimonial .quote { font-style: italic; margin-bottom: 20px; }
        .testimonial .author {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .case-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }
        .case-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .case-card .content {
            padding: 24px;
        }
        .case-card h4 { margin-bottom: 8px; }
        .case-card p { color: var(--gray); font-size: 0.95rem; }
        .form-section {
            background: white;
            padding: 80px 0;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        input, select, textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        .footer {
            background: #0a0a0a;
            color: white;
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        .footer a { color: #aaa; text-decoration: none; }
        .footer a:hover { color: var(--accent); }
        .floating {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent);
            color: white;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 10px 30px rgba(201,161,111,0.4);
            z-index: 9999;
            animation: float 3s infinite ease-in-out;
        }
        @keyframes pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
        @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero-buttons { flex-direction: column; align-items: center; }
        }