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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --primary-gold: #d4af37;
    --primary-gold-light: #c9a961;
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --bg-light: #2a2a2a;
    --text-light: #e5e5e5;
    --text-muted: #b8b8b8;
    --success-green: #10b981;
    --error-red: #ef4444;
    --warning-orange: #f59e0b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #e5e5e5;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid #3d3d3d;
    color: #999999;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    text-transform: uppercase;
}

.lang-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.lang-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #1a1a1a;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #b8b8b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.2s;
}

.nav a:hover {
    color: #d4af37;
}

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

.nav a.active {
    color: #d4af37;
    font-weight: 600;
}

.nav a.active::after {
    width: 100%;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    border: none;
    padding: 0;
    border-radius: 16px;
    color: #1a1a1a;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    z-index: 1001;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle:hover {
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}

.mobile-menu-toggle .menu-icon {
    font-size: 28px;
    line-height: 1;
    display: block;
    color: #1a1a1a;
    font-weight: 700;
}

/* Desktop - Hide mobile menu button */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .nav-wrapper {
        display: flex !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: none !important;
        overflow: visible !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .header-content {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 12px;
        margin-top: 0.5rem;
        padding: 0;
        flex-direction: column;
        gap: 0.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
    }

    .nav-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 600px;
        padding: 1rem;
        overflow: visible;
    }

    .nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav a {
        padding: 0.875rem;
        width: 100%;
        text-align: center;
        background: rgba(42, 42, 42, 0.6);
        border-radius: 8px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.2s ease;
    }

    .nav a:hover {
        background: rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.5);
    }

    .language-switcher {
        width: 100%;
        justify-content: center;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .logo {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .container {
        padding: 2rem 1rem;
    }

    .page-hero {
        padding: 2.5rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .section-with-image,
    .contact-layout,
    .office-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sector-card {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr 1fr;
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-arrow {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .stats-banner {
        grid-template-columns: 1fr 1fr;
        padding: 2rem 1rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #e5e5e5;
    text-align: center;
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero p {
    font-size: 1.3rem;
    color: #b8b8b8;
    opacity: 0.95;
}

.content-page {
    background: #2d2d2d;
    border-radius: 16px;
    padding: 3rem;
    margin-top: -2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.content-page h2 {
    color: #d4af37;
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
}

.content-page h3 {
    color: #c9a961;
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem 0;
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-page li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.content-page a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.content-page a:hover {
    color: #c9a961;
    text-decoration: underline;
}

.content-section {
    margin: 3rem 0;
}

.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.section-with-image.reverse {
    direction: rtl;
}

.section-with-image.reverse > * {
    direction: ltr;
}

.section-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    padding: 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #d4af37;
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.value-card p {
    color: #b8b8b8;
    line-height: 1.8;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    border-radius: 16px;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-cards {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #d4af37;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #d4af37;
    margin: 1rem 0;
}

.service-features,
.service-steps {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li,
.service-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.feature-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    list-style-type: disc;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.pricing-section {
    margin: 4rem 0;
    text-align: center;
}

.pricing-section h2 {
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-item {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
}

.pricing-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.pricing-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.pricing-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.sectors-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.sector-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: #2d2d2d;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sector-image {
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

.sector-content {
    padding: 2rem;
}

.sector-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sector-content h3 {
    color: #d4af37;
    margin: 0.5rem 0 1rem 0;
}

.sector-content ul {
    margin-left: 1.5rem;
}

.sector-content li {
    margin-bottom: 0.5rem;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #b8b8b8;
}

.business-cta {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.business-cta-content h2 {
    color: #d4af37;
    margin-top: 0;
    font-size: 2rem;
}

.business-cta-content p {
    color: #e5e5e5;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0;
}

.business-cta-content ul {
    margin: 1.5rem 0 2rem 2rem;
    color: #b8b8b8;
}

.business-cta-content ul li {
    margin: 0.75rem 0;
    line-height: 1.6;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #b8b8b8;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-top: 0;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e5e5e5;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #3d3d3d;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

a:focus-visible,
button:focus-visible,
.nav a:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.submit-button:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.lang-btn:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

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

.submit-button {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.contact-card {
    display: flex;
    gap: 1rem;
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #d4af37;
}

.contact-card-icon {
    font-size: 2rem;
}

.contact-card-content h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.contact-card-content a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.contact-card-content p {
    font-size: 0.9rem;
    color: #b8b8b8;
    margin: 0.25rem 0 0 0;
}

.office-section {
    margin: 4rem 0;
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 16px;
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.office-info h2,
.office-info h3 {
    color: #d4af37;
}

.office-note {
    font-size: 0.9rem;
    color: #b8b8b8;
    font-style: italic;
}

.hours-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hours-item {
    background: #2d2d2d;
    padding: 1rem;
    border-radius: 8px;
}

.hours-item strong {
    display: block;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.office-image {
    border-radius: 12px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-box {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.warning-box {
    background: rgba(245, 158, 11, 0.15);
    border-left: 4px solid #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.warning-box h3 {
    color: #f59e0b;
    margin-top: 0;
}

.warning-box p {
    color: #e5e5e5;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    border-radius: 16px;
    color: white;
    margin: 4rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #2d2d2d;
    color: #d4af37;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.legal-page {
    max-width: 900px;
}

.legal-page h1 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.legal-date {
    color: #b8b8b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-box {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-box h3 {
    margin-top: 0;
    color: #d4af37;
}

.footer {
    background: #1a1a1a;
    color: #e5e5e5;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-links a.active {
    color: #d4af37;
}

.home-features {
    margin-top: 4rem;
}

.feature-section h2,
.sectors-preview h2,
.how-it-works h2,
.trust-section h2,
.cta-banner h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-box {
    background: #2d2d2d;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    border: 1px solid #3d3d3d;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-color: rgba(212, 175, 55, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #e5e5e5;
    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-box p {
    color: #999999;
    line-height: 1.7;
    font-size: 0.95rem;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.08) 100%);
    padding: 4rem 3rem;
    border-radius: 16px;
    margin: 5rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.stat-item .stat-text {
    font-size: 1.05rem;
    opacity: 0.95;
    font-weight: 500;
}

.sectors-preview {
    margin: 4rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
}

.sectors-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sector-preview-card {
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    border: 1px solid #3d3d3d;
}

.sector-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-color: rgba(212, 175, 55, 0.2);
}

.sector-preview-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sector-preview-content {
    padding: 1.5rem;
}

.sector-preview-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.sector-preview-card h3 {
    color: #e5e5e5;
    margin: 0.5rem 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.sector-preview-card p {
    color: #999999;
    line-height: 1.7;
    font-size: 0.95rem;
}

.cta-button-inline {
    display: inline-block;
    background: #2d2d2d;
    color: #d4af37;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255,255,255,0.2);
}

.cta-button-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,255,255,0.3);
    color: #c9a961;
}

.how-it-works {
    margin: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.step-card {
    background: #2d2d2d;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid #3d3d3d;
    transition: all 0.2s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.step-arrow {
    color: white;
    font-size: 2rem;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: #d4af37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-card h3 {
    color: #e5e5e5;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.step-card p {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.7;
}

.trust-section {
    margin: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.trust-item {
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid #3d3d3d;
    transition: all 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.trust-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trust-content {
    padding: 2rem;
}

.trust-content h3 {
    color: #e5e5e5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.trust-content p {
    color: #999999;
    line-height: 1.8;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.1) 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0 2rem 0;
    backdrop-filter: blur(10px);
}

.cta-banner h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-white {
    display: inline-block;
    background: #2d2d2d;
    color: #d4af37;
    padding: 1.15rem 3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
    background: #2d2d2d;
}

