    :root {
        --bg-primary: #0f172a;
        --bg-secondary: #1e293b;
        --bg-card: #1e293b;
        --bg-card-hover: #334155;
        --teal: #0d9488;
        --teal-light: #14b8a6;
        --teal-dark: #0f766e;
        --gold: #f59e0b;
        --gold-light: #fbbf24;
        --text-primary: #f8fafc;
        --text-secondary: #94a3b8;
        --text-muted: #64748b;
        --border: #334155;
        --border-light: #475569;
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
        --radius: 12px;
        --radius-lg: 16px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background-color: var(--bg-primary);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4 {
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 600;
        line-height: 1.2;
    }

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

    /* Navigation */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        transition: all 0.3s ease;
    }

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

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

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--text-primary);
        font-weight: 600;
        font-size: 1.1rem;
    }

    .nav-logo-icon {
        flex-shrink: 0;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 32px;
        list-style: none;
    }

    .nav-menu a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-menu a:hover {
        color: var(--teal-light);
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--teal);
        transition: width 0.3s ease;
    }

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

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

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
    }

    .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 Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
    }

    .hero-bg-pattern {
        position: absolute;
        inset: 0;
        background-image: 
            radial-gradient(ellipse at 20% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 60% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

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

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(13, 148, 136, 0.15);
        border: 1px solid rgba(13, 148, 136, 0.3);
        border-radius: 100px;
        color: var(--teal-light);
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: 24px;
        color: var(--text-primary);
    }

    .text-gradient {
        background: linear-gradient(135deg, var(--teal-light), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        color: var(--text-secondary);
        margin-bottom: 36px;
        max-width: 500px;
        line-height: 1.7;
    }

    .hero-cta {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

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

    .btn-primary {
        background: linear-gradient(135deg, var(--teal), var(--teal-dark));
        color: white;
        box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 1px solid var(--border-light);
    }

    .btn-secondary:hover {
        border-color: var(--teal);
        color: var(--teal-light);
        background: rgba(13, 148, 136, 0.1);
    }

    .btn-outline {
        background: transparent;
        color: var(--text-primary);
        border: 1px solid var(--border-light);
    }

    .btn-outline:hover {
        border-color: var(--teal);
        color: var(--teal-light);
    }

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

    /* Stats */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 24px;
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        border-color: var(--teal);
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2);
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(13, 148, 136, 0.15);
        border-radius: var(--radius);
        color: var(--teal-light);
        margin-bottom: 12px;
    }

    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    /* Section Styles */
    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .section-tag {
        display: inline-block;
        padding: 6px 14px;
        background: rgba(13, 148, 136, 0.15);
        border: 1px solid rgba(13, 148, 136, 0.3);
        border-radius: 100px;
        color: var(--teal-light);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 2.75rem);
        margin-bottom: 16px;
        color: var(--text-primary);
    }

    .section-subtitle {
        font-size: 1.05rem;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    /* Services */
    .services {
        padding: 100px 0;
    }

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

    .service-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 32px;
        transition: all 0.3s ease;
    }

    .service-card:hover {
        border-color: var(--teal);
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(13, 148, 136, 0.15);
    }

    .service-icon {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(13, 148, 136, 0.1));
        border: 1px solid rgba(13, 148, 136, 0.3);
        border-radius: var(--radius);
        color: var(--teal-light);
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
        color: var(--text-primary);
    }

    .service-card p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    /* About */
    .about {
        padding: 100px 0;
    }

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

    .about-image {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: var(--radius-lg);
        display: block;
    }

    .about-image-badge {
        position: absolute;
        bottom: 24px;
        right: 24px;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .about-image-badge span {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--gold);
    }

    .about-image-badge small {
        font-size: 0.75rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .about-content .section-tag {
        margin-bottom: 16px;
    }

    .about-content .section-title {
        text-align: left;
        margin-bottom: 24px;
    }

    .about-content p {
        color: var(--text-secondary);
        margin-bottom: 16px;
        line-height: 1.8;
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .about-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

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

    /* Why Us */
    .why-us {
        padding: 100px 0;
        background: var(--bg-secondary);
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .why-card {
        background: var(--bg-primary);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 32px;
        transition: all 0.3s ease;
    }

    .why-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(245, 158, 11, 0.1);
    }

    .why-number {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 700;
        color: rgba(13, 148, 136, 0.2);
        margin-bottom: 12px;
        line-height: 1;
    }

    .why-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: var(--text-primary);
    }

    .why-card p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    /* CTA */
    .cta {
        padding: 100px 0;
        background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(245, 158, 11, 0.05));
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

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

    .cta-title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 1.05rem;
        color: var(--text-secondary);
        margin-bottom: 36px;
        line-height: 1.7;
    }

    .cta-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Contact */
    .contact {
        padding: 100px 0;
    }

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

    .contact-info .section-title {
        text-align: left;
        margin-bottom: 16px;
    }

    .contact-description {
        color: var(--text-secondary);
        margin-bottom: 36px;
        line-height: 1.7;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

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

    .contact-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(13, 148, 136, 0.15);
        border: 1px solid rgba(13, 148, 136, 0.3);
        border-radius: var(--radius);
        color: var(--teal-light);
        flex-shrink: 0;
    }

    .contact-item strong {
        display: block;
        color: var(--text-primary);
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .contact-item p,
    .contact-item a {
        color: var(--text-secondary);
        font-size: 0.9rem;
        text-decoration: none;
        line-height: 1.6;
    }

    .contact-item a:hover {
        color: var(--teal-light);
    }

    /* Form */
    .contact-form-wrapper {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 36px;
    }

    .contact-form-wrapper h3 {
        font-size: 1.5rem;
        margin-bottom: 24px;
        color: var(--text-primary);
    }

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

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-secondary);
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        background: var(--bg-primary);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        color: var(--text-primary);
        font-size: 0.95rem;
        font-family: inherit;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
    }

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

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='2 4 6 8 10 4'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }

    .form-group select option {
        background: var(--bg-secondary);
    }

    .form-success {
        display: none;
        text-align: center;
        padding: 40px 20px;
    }

    .form-success.show {
        display: block;
    }

    .form-success h4 {
        font-size: 1.5rem;
        margin: 16px 0 8px;
        color: var(--text-primary);
    }

    .form-success p {
        color: var(--text-secondary);
    }

    /* Footer */
    .footer {
        background: var(--bg-secondary);
        border-top: 1px solid var(--border);
        padding: 60px 0 0;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 48px;
        padding-bottom: 48px;
    }

    .footer-brand p {
        color: var(--text-muted);
        margin-top: 16px;
        font-size: 0.9rem;
        line-height: 1.7;
    }

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

    .footer-col h4 {
        font-size: 0.95rem;
        color: var(--text-primary);
        margin-bottom: 16px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
    }

    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.3s ease;
    }

    .footer-col a:hover {
        color: var(--teal-light);
    }

    .footer-bottom {
        border-top: 1px solid var(--border);
        padding: 24px 0;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-bottom p {
        color: var(--text-muted);
        font-size: 0.8rem;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-container,
        .about-container,
        .contact-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-stats {
            order: -1;
        }

        .about-image {
            max-width: 500px;
        }

        .footer-container {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .nav-menu {
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(12px);
            flex-direction: column;
            padding: 24px;
            gap: 20px;
            border-bottom: 1px solid var(--border);
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .nav-toggle {
            display: flex;
        }

        .hero {
            padding: 100px 0 60px;
        }

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

        .about-features {
            grid-template-columns: 1fr;
        }

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

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

        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }
    }

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

        .hero-cta {
            flex-direction: column;
        }

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

        .cta-actions {
            flex-direction: column;
        }

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