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

html {
    width: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #00c853;
    --primary-dark: #00a040;
    --primary-light: #1de9b6;
    --secondary: #1a1a1a;
    --secondary-light: #2d2d2d;
    --accent: #00ff6b;
    --accent-orange: #00e676;
    --dark-bg: #0d0d0d;
    --dark-card: #1a1a1a;
    --dark-border: #2d2d2d;
    --gray-50: #f0fff3;
    --gray-100: #e8f5e9;
    --gray-200: #c8e6c9;
    --gray-300: #a5d6a7;
    --gray-600: #66bb6a;
    --gray-800: #43a047;
    --gray-900: #1b5e20;
    --white: #ffffff;
    --success: #00ff6b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 0%, rgba(29, 233, 182, 0.05) 0%, transparent 40%);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path fill="%2300c853" stroke="%231a1a1a" stroke-width="1.5" d="M2 2 L2 24 L8 18 L12 28 L14 27 L10 17 L18 17 Z"/></svg>') 1 1, auto;
}

a, button, .btn, [onclick] {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path fill="%2300ff6b" stroke="%231a1a1a" stroke-width="1.5" d="M2 2 L2 24 L8 18 L12 28 L14 27 L10 17 L18 17 Z"/></svg>') 1 1, pointer;
}

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

/* Navigation */
.navbar {
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid rgba(0, 200, 83, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.15);
    backdrop-filter: blur(10px);
    width: 100%;
    left: 0;
    right: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 140px;
    padding: 0;
    margin-top: 10px;
    transition: all 0.3s;
}

.logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 200, 83, 0.5));
    transition: all 0.3s;
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 255, 107, 0.7));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    margin-left: 60px;
}

.nav-menu a {
    color: #b0b5ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00c853, #00ff6b);
    transition: width 0.3s;
}

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

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

.nav-cta {
    margin-left: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #00c853, #00ff6b);
    color: #000;
    font-weight: 700;
    border: 1px solid #00c853;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.7), 0 0 40px rgba(0, 255, 107, 0.4);
}

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

.btn-secondary {
    background-color: transparent;
    color: #00c853;
    border: 2px solid #00c853;
    position: relative;
}

.btn-secondary:hover {
    background-color: rgba(0, 200, 83, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.5);
    border-color: #00ff6b;
    color: #00ff6b;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(26, 31, 58, 0.8) 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: slide 20s linear infinite;
    z-index: 0;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-accent {
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.hero-accent::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.2;
    background: linear-gradient(135deg, #00c853 0%, #00ff6b 50%, #1de9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: #c0c0e0;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

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

/* Hero Fibre Section */
.fibre {
    padding: 80px 20px;
    background: var(--dark-bg);
    position: relative;
}

.fibre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00c853, transparent);
}

.fibre-card {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(26, 26, 26, 0.6));
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.fibre-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 107, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fibre-badge {
    display: inline-block;
    background: rgba(0, 200, 83, 0.15);
    color: #00ff6b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 200, 83, 0.3);
    margin-bottom: 20px;
}

.fibre-info h2 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.fibre-price {
    background: linear-gradient(135deg, #00c853, #00ff6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fibre-price small {
    font-size: 22px;
    font-weight: 700;
}

.fibre-tagline {
    font-size: 20px;
    color: #c0c0e0;
    margin-bottom: 25px;
}

.fibre-features {
    list-style: none;
    margin-bottom: 25px;
}

.fibre-features li {
    color: #c0c0e0;
    font-size: 16px;
    padding: 8px 0 8px 32px;
    position: relative;
}

.fibre-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff6b;
    font-weight: 900;
    background: rgba(0, 200, 83, 0.12);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.fibre-apply {
    color: #a0a0c0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

.fibre-apply a {
    color: #00ff6b;
    text-decoration: none;
    font-weight: 600;
}

.fibre-apply a:hover {
    text-decoration: underline;
}

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

.fibre-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.fibre-speed {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.15), rgba(13, 13, 13, 0.8));
    border: 2px solid rgba(0, 200, 83, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 200, 83, 0.2), inset 0 0 40px rgba(0, 200, 83, 0.05);
    animation: pulse 3s ease-in-out infinite;
}

.fibre-speed-num {
    font-size: 90px;
    font-weight: 900;
    background: linear-gradient(135deg, #00c853, #00ff6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.fibre-speed-label {
    font-size: 18px;
    color: #00ff6b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .fibre-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 25px;
        text-align: center;
    }
    .fibre-info h2 { font-size: 34px; }
    .fibre-features { display: inline-block; text-align: left; }
    .fibre-apply { margin-left: auto; margin-right: auto; }
    .fibre-cta { justify-content: center; }
    .fibre-visual { order: -1; }
    .fibre-speed { width: 170px; height: 170px; }
    .fibre-speed-num { font-size: 70px; }
}

/* Support Agreements / SLA Section */
.sla {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, var(--dark-bg) 100%);
    position: relative;
}

.sla::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00c853, transparent);
}

.sla h2 {
    font-size: 52px;
    background: linear-gradient(135deg, #00c853, #00ff6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 900;
}

.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.sla-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 12px;
    padding: 35px 28px;
    transition: all 0.3s;
    text-align: center;
}

.sla-card:hover {
    border-color: #00c853;
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.2);
    transform: translateY(-5px);
}

.sla-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.sla-card h3 {
    color: #00ff6b;
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 700;
}

.sla-card p {
    color: #c0c0e0;
    font-size: 15px;
    line-height: 1.6;
}

.sla-cta {
    text-align: center;
}

.sla-cta p {
    color: #c0c0e0;
    font-size: 18px;
    margin-bottom: 25px;
}

/* Remote Support Section */
.remote {
    padding: 100px 20px;
    background: var(--dark-bg);
    position: relative;
}

.remote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff6b, transparent);
}

.remote-card {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(26, 26, 26, 0.6));
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: 20px;
    padding: 50px;
}

.remote-badge {
    display: inline-block;
    background: rgba(0, 200, 83, 0.15);
    color: #00ff6b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 200, 83, 0.3);
    margin-bottom: 20px;
}

.remote-info h2 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 15px;
}

.remote-info > p {
    font-size: 17px;
    color: #c0c0e0;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 560px;
}

.remote-steps {
    list-style: none;
    counter-reset: step;
    margin-bottom: 30px;
}

.remote-steps li {
    color: #c0c0e0;
    font-size: 16px;
    padding: 10px 0 10px 45px;
    position: relative;
    counter-increment: step;
}

.remote-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 8px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00c853, #00ff6b);
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.remote-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.remote-note {
    color: #8080a0;
    font-size: 13px;
}

.remote-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.remote-icon {
    font-size: 110px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remote-pulse {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(0, 200, 83, 0.4);
    border-radius: 50%;
    animation: remotePulse 2.5s ease-out infinite;
}

@keyframes remotePulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 768px) {
    .sla h2 { font-size: 36px; }
    .remote-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px 25px;
        text-align: center;
    }
    .remote-info h2 { font-size: 34px; }
    .remote-info > p { margin-left: auto; margin-right: auto; }
    .remote-steps { display: inline-block; text-align: left; }
    .remote-cta { justify-content: center; }
    .remote-visual { order: -1; }
    .remote-icon { font-size: 80px; }
    .remote-pulse { width: 130px; height: 130px; }
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 31, 58, 0.5) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00c853, transparent);
}

.services h2 {
    font-size: 52px;
    background: linear-gradient(135deg, #00c853, #00ff6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 900;
}

.section-subtitle {
    font-size: 18px;
    color: #a0a0e0;
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 83, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 255, 107, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: #00c853;
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.3), inset 0 0 30px rgba(0, 200, 83, 0.05);
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 255, 107, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(0, 200, 83, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-card h3 {
    font-size: 20px;
    color: #00ff6b;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: #c0c0e0;
    font-size: 16px;
    line-height: 1.6;
}

/* Trust Section */
.trust {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, var(--dark-bg) 100%);
    padding: 100px 20px;
    position: relative;
}

.trust::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00c853, transparent);
}

.trust h2 {
    font-size: 52px;
    background: linear-gradient(135deg, #00ff6b, #00c853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
}

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

.trust-item {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 12px;
    transition: all 0.3s;
}

.trust-item:hover {
    border-color: #00c853;
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
}

.trust-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #00c853, #00ff6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 16px;
    color: #c0c0e0;
}

/* Clients Section */
.clients-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 26, 26, 0.6) 100%);
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1de9b6, transparent);
}

.clients-section h2 {
    font-size: 52px;
    background: linear-gradient(135deg, #00ff6b, #00c853, #1de9b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 900;
}

.carousel-container {
    position: relative;
    margin-top: 60px;
    padding: 40px 0;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    align-items: center;
    min-height: 120px;
    width: fit-content;
}

.carousel-slide {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.4s;
    opacity: 0.8;
    position: relative;
    overflow: hidden;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05), rgba(0, 255, 107, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}

.carousel-slide:hover {
    opacity: 1;
    border-color: #00c853;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.4), inset 0 0 20px rgba(0, 200, 83, 0.05);
}

.carousel-slide:hover::before {
    opacity: 1;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.carousel-btn {
    display: none;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-note {
    text-align: center;
    color: #8080b0;
    margin-top: 30px;
    font-size: 14px;
}

.carousel-note code {
    background: rgba(0, 200, 83, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: #00c853;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

/* About Section */
.about {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, var(--dark-bg) 100%);
    padding: 100px 20px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00c853, transparent);
}

.about .container {
    text-align: center;
}

.about h2 {
    font-size: 52px;
    background: linear-gradient(135deg, #00c853, #00ff6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 900;
}

.about p {
    font-size: 18px;
    color: #c0c0e0;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 26, 26, 0.6) 100%);
    padding: 100px 20px;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff6b, transparent);
}

.contact h2 {
    font-size: 52px;
    background: linear-gradient(135deg, #00ff6b, #00c853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.contact-box {
    text-align: center;
    padding: 40px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 83, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00c853, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.contact-box:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: #00c853;
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.25);
}

.contact-box:hover::before {
    opacity: 1;
}

.contact-box h3 {
    font-size: 20px;
    color: #00c853;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-box p {
    color: #c0c0e0;
    font-size: 18px;
}

.contact-box a {
    color: #00ff6b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-box a:hover {
    color: #1de9b6;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(0, 200, 83, 0.1);
    color: #c0c0e0;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 10px 0;
}

.footer a {
    color: #00ff6b;
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:hover {
    color: #1de9b6;
    text-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        margin-left: 30px;
    }

    .hero {
        padding: 80px 20px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .services h2,
    .trust h2,
    .clients-section h2,
    .contact h2,
    .about h2 {
        font-size: 36px;
    }

    .trust-number {
        font-size: 40px;
    }

    .carousel-slide {
        width: 150px;
        height: 70px;
    }

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

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

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
    }

    .hero {
        padding: 60px 20px;
        min-height: 450px;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .hero-accent {
        width: 300px;
        height: 300px;
        top: -30%;
        right: -15%;
    }

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

    .carousel-slide {
        width: 120px;
        height: 60px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}