:root {
    --primary: #0F172A;
    --accent: #06B6D4;
    --accent-dark: #0891B2;
    --text-main: #334155;
    --text-light: #94A3B8;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

/* Navbar */
.navbar {
    padding: 25px 0;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo span { color: var(--accent); }

.nav-contact .phone-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero p {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #1e293b;
}

.btn-cta {
    background-color: var(--accent);
    color: var(--white);
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 50px;
}

.btn-cta:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.3);
}

/* Social Proof */
.social-proof {
    padding: 100px 0;
    background-color: var(--white);
}

.social-proof h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.highlight { color: var(--accent); }

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 30px auto;
}

.lead {
    font-size: 22px;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.bio {
    font-size: 17px;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    font-style: italic;
}

/* Sectors */
.sectors {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 60px;
}

.sector-grid {
    display: grid;
    grid-template-columns: 1fr 1dfr;
    gap: 30px;
    margin-top: 40px;
}

.sector-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.sector-card:hover {
    transform: translateY(-10px);
}

.sector-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 25px;
}

.sector-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 5px;
}

.sector-card .subtitle {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sector-card p {
    color: var(--text-main);
    font-size: 15px;
    margin-bottom: 25px;
}

.badge {
    background-color: #ecfeff;
    color: var(--accent-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* CEO Value */
.ceo-value {
    padding: 120px 0;
}

.ceo-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.ceo-text { flex: 1.5; }
.ceo-quote { flex: 1; }

.value-item {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.value-icon {
    background: var(--bg-light);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
}

.value-item p {
    font-size: 15px;
    color: var(--text-light);
}

.quote-box {
    background-color: var(--primary);
    padding: 50px;
    border-radius: 24px;
    position: relative;
}

.quote-box p {
    color: var(--white);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 100px;
    color: rgba(255,255,255,0.1);
    font-family: serif;
}

/* CTA Final */
.cta-final {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
}

.cta-final h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
}

.cta-final p {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    color: var(--text-main);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
}

.contact-item i { color: var(--accent); }

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    color: var(--text-light);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 42px; }
    .sector-grid { grid-template-columns: 1fr; }
    .ceo-flex { flex-direction: column; gap: 40px; }
    .contact-details { flex-direction: column; gap: 20px; }
    .hero { padding-top: 120px; }
}
