    <style>
/* Modern XCS Stock CSS - Performance Optimized */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-light: rgba(0,0,0,0.08);
    --shadow-medium: rgba(0,0,0,0.12);
    --shadow-heavy: rgba(0,0,0,0.16);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Header */
header {
    background: var(--dark-gradient);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    position: relative;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0;
    background: linear-gradient(45deg, #fff, #e8f4fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 0.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Modern Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

nav a:hover,
nav a:focus {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

/* Stunning Hero Section */
.hero {
    background: var(--primary-gradient);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    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.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, #e8f4fd, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% center; }
    50% { background-position: 200% center; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Enhanced CTA Button */
.cta-button {
    display: inline-block;
    background: var(--secondary-gradient);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(241, 83, 108, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(241, 83, 108, 0.4);
}

/* Modern Main Content */
main {
    padding-top: 0;
    padding-bottom: 5rem;
}
.stock-focus {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 4rem 0;
    margin-bottom: 2rem;
    border-top: 4px solid transparent;
    border-image: var(--secondary-gradient) 1;
    position: relative;
    overflow: hidden;
}

.stock-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.02'%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 15s ease-in-out infinite;
}

.stock-focus-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 35px var(--shadow-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.stock-focus-image {
    position: relative;
}

.focus-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 4px solid transparent;
    background: var(--secondary-gradient);
    background-clip: padding-box;
    box-shadow: 0 10px 25px var(--shadow-medium);
    transition: var(--transition);
}

.focus-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px var(--shadow-heavy);
}

.stock-focus-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
}

.stock-focus-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

.stock-focus-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.stock-focus-text strong {
    color: var(--text-dark);
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.focus-cta {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.focus-cta::before {
    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;
}

.focus-cta:hover::before {
    left: 100%;
}

.focus-cta:hover,
.focus-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Responsive Design for Stock Focus */
@media (max-width: 768px) {
    .stock-focus-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }
    
    .focus-image {
        height: 250px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stock-focus-text h2 {
        font-size: 1.8rem;
    }
    
    .stock-focus-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stock-focus-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stock-focus {
        padding: 3rem 0;
    }
    
    .stock-focus-content {
        padding: 1.5rem;
    }
    
    .focus-image {
        height: 200px;
        max-width: 250px;
    }
    
    .stock-focus-text h2 {
        font-size: 1.6rem;
    }
}

.section {
    margin-bottom: 6rem;
}

.section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 300;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

/* Enhanced Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.service-card p {
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Enhanced About Section */
.about {
    background: var(--white);
    padding: 5rem 0;
    margin: 5rem 0;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 40px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.05;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.8rem;
    color: var(--text-light);
}

/* Enhanced Statistics */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.8rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Modern Contact Section */
.contact {
    background: var(--dark-gradient);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v20h20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact h2 {
    color: white;
    margin-bottom: 2rem;
}

.contact h2::after {
    background: linear-gradient(45deg, #fff, #e8f4fd);
}

.contact > p {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 2rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item a {
    color: #ecf0f1;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-item a:hover,
.contact-item a:focus {
    color: #74b9ff;
    text-decoration: underline;
}

/* Enhanced Footer */
footer {
    background: #1a252f;
    color: #bdc3c7;
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer a {
    color: #74b9ff;
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover,
footer a:focus {
    text-decoration: underline;
    color: #0984e3;
}

.trading-name {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
        padding: 1rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .section h2 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    main {
        padding: 3rem 0;
    }

    .service-card {
        padding: 2rem;
    }

    .about {
        margin: 3rem 0;
        padding: 3rem 0;
    }

    .service-icon {
        font-size: 3rem;
    }
}

/* Performance and Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

@media (prefers-contrast: high) {
    .service-card {
        border: 2px solid #000;
    }
    
    .cta-button {
        border: 2px solid #fff;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-light: #1a1a1a;
        --text-dark: #e0e0e0;
        --white: #2d2d2d;
    }
    
    body {
        background-color: var(--bg-light);
        color: var(--text-dark);
    }
    
    .service-card {
        background: var(--white);
        color: var(--text-dark);
    }
    
    .about {
        background: var(--white);
    }
}
    </style>