/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --tech-red: #d91b1b;
    --deep-black: #0b0c10;
    --slate-black: #16171d;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
}

body {
    background-color: var(--pure-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease-in-out;
}

/* ===== HEADER / NAVIGATION ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 3%;
    background-color: var(--pure-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--deep-black);
    text-transform: uppercase;
}

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

.logo-sub {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 1px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul li a {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--tech-red);
}

nav ul li a.active {
    border-bottom: 2px solid var(--tech-red);
    padding-bottom: 2px;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--deep-black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

header.nav-open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

header.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
}

header.nav-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

.nav-cta {
    display: none;
}

/* ===== BUTTONS ===== */
.cta-btn-red {
    background: linear-gradient(135deg, #d91b1b, #b01212);
    color: var(--pure-white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-btn-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b01212, #8f0e0e);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 27, 27, 0.45);
}

.cta-btn-red:hover::before {
    opacity: 1;
}

.cta-btn-red:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(217, 27, 27, 0.3);
}

.cta-btn {
    background: var(--tech-red);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
}

.cta-btn:hover {
    background: #b01212;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(217, 27, 27, 0.2);
}

.hero-cta {
    padding: 16px 36px !important;
    font-size: 14px !important;
}

/* ===== HERO SECTIONS ===== */
.hero {
    padding: 50px 3% 60px;
    text-align: center;
    background-color: var(--deep-black);
    color: var(--pure-white);
    position: relative;
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--tech-red);
}

.hero p {
    font-size: 19px;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 35px;
}

.page-hero {
    background: var(--deep-black);
    color: white;
    text-align: center;
    padding: 60px 3% 50px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero h1 span {
    color: var(--tech-red);
}

.page-hero p {
    color: #94a3b8;
    max-width: 700px;
    margin: auto;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--deep-black);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: var(--tech-red);
}

/* ===== TRUSTED ECOSYSTEM (INDEX) ===== */
.trusted-ecosystem {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-title {
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.trusted-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.ecosystem-item {
    font-size: 18px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: -0.5px;
    transition: color 0.2s;
}

.ecosystem-item:hover {
    color: var(--pure-white);
}

/* ===== SERVICES SECTION (INDEX) ===== */
.services {
    padding: 50px 3%;
    background-color: var(--pure-white);
}

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

.card {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    padding: 50px 35px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--tech-red);
    box-shadow: 0 20px 40px rgba(217, 27, 27, 0.12);
}

.card:hover h3 {
    color: var(--tech-red);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--deep-black);
}

.card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
}

.card ul {
    list-style: none;
    margin-bottom: 32px;
    border-top: 1px solid var(--off-white);
    padding-top: 20px;
}

.card ul li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.card ul li::before {
    content: "\2713";
    color: var(--tech-red);
    font-weight: 900;
}

/* ===== SCALE / CTA BOX (INDEX) ===== */
.scale {
    padding: 100px 3%;
    background-color: var(--off-white);
}

.scale-box {
    background: var(--deep-black);
    color: var(--pure-white);
    padding: 80px 40px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border-left: 6px solid var(--tech-red);
}

.scale-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.scale-box p {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero + section {
    padding-top: 35px;
}

/* ===== INNER PAGE CONTENT UNIFORMITY ===== */
.page-hero + section p,
.split-text p,
.feature-box p,
.benefit-item p,
.talent-card p,
.benefits-text p,
.service-content p {
    font-size: 15px;
}

.page-hero + section h2,
.split-text h2,
.dark-section h2,
.benefits-section h2,
.talent-header h2,
.timeline h2,
.benefits-text h2 {
    font-size: 26px;
}

.service-content h3,
.feature-box h3,
.benefit-item h3,
.talent-card h3 {
    font-size: 22px;
}

/* ===== SERVICES PAGE ===== */
.services-section {
    padding: 100px 3%;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-row {
    display: flex;
    gap: 40px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.service-row:hover h3 {
    color: var(--tech-red);
}

.service-img {
    width: 40%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.service-content {
    width: 60%;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 800;
}

.service-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== OUTSOURCING PAGE ===== */
.split-section {
    padding: 100px 3%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.split-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.split-text ul {
    list-style: none;
    margin-top: 20px;
}

.split-text li {
    margin-bottom: 10px;
    font-weight: 500;
}

.split-text li::before {
    content: "\2713";
    color: var(--tech-red);
    margin-right: 10px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.dark-section {
    background: var(--deep-black);
    color: white;
    padding: 25px 3%;
    text-align: center;
}

.dark-section h2 {
    font-size: 32px;
}

.dark-section .section-header h2 {
    color: var(--pure-white);
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: var(--slate-black);
    padding: 30px;
    border-radius: 8px;
    width: 260px;
}

.feature-box h3 {
    margin-bottom: 10px;
}

.feature-box p {
    color: #94a3b8;
}

.benefits-section {
    padding: 25px 3%;
    text-align: center;
}

.benefits-section h2 {
    font-size: 34px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    max-width: 250px;
}

.benefit-icon {
    font-size: 40px;
    color: var(--tech-red);
}

.benefit-item h3 {
    margin-bottom: 8px;
}

.benefit-item p {
    color: #94a3b8;
}

/* ===== AUGMENTATION PAGE ===== */
.talent-section {
    padding: 50px 3%;
}

.talent-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.talent-card {
    border: 1px solid var(--border-light);
    padding: 35px 30px;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    background: var(--pure-white);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    border-left: 4px solid var(--border-light);
}

.talent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--tech-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.talent-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 27, 27, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.talent-card:hover {
    transform: translateY(-6px);
    border-color: var(--tech-red);
    box-shadow: 0 20px 40px rgba(217, 27, 27, 0.08);
}

.talent-card:hover::before {
    transform: scaleY(1);
}

.talent-card:hover::after {
    opacity: 1;
}

.talent-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.talent-card:hover h3 {
    color: var(--tech-red);
}

.talent-card p {
    color: var(--text-muted);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.timeline {
    padding: 30px 3%;
    background: var(--slate-black);
    position: relative;
}

.timeline h2 {
    text-align: center;
    color: var(--pure-white);
}

.timeline-row {
    display: flex;
    position: relative;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    flex: 1;
    min-width: 180px;
    max-width: 225px;
    text-align: center;
    position: relative;
    padding: 60px 20px 25px;
}

.timeline-step::before {
    content: attr(data-step);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.timeline-step::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.timeline-step:first-child::after { left: 50%; }
.timeline-step:last-child::after { right: 50%; }

.circle {
    width: 56px;
    height: 56px;
    background: var(--tech-red);
    color: white;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid var(--slate-black);
    outline: 2px solid rgba(217, 27, 27, 0.2);
}

.timeline-step:hover .circle {
    transform: scale(1.2);
    background: var(--pure-white);
    color: var(--tech-red);
    outline-color: rgba(217, 27, 27, 0.5);
}

.timeline-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    position: relative;
}

.timeline-step:hover h4 {
    color: var(--tech-red);
}

.benefits {
    padding: 50px 3%;
    display: flex;
    gap: 30px;
    align-items: center;
}

.benefits-text {
    flex: 1;
    text-align:left !important;
}

.benefits-text h2 {
    margin-bottom: 20px;
    text-align:left !important;
}

.benefits-text h2 span {
    color: var(--tech-red);
}

.benefits-text p {
    color: var(--text-muted);
}

.benefits-text ul {
    margin-top: 20px;
    list-style: none;
}

.benefits-text li {
    margin-bottom: 10px;
}

.benefits-text li::before {
    content: "\2713";
    color: var(--tech-red);
    margin-right: 8px;
}

.stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--deep-black);
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
}

.stat-box h2 {
    color: var(--tech-red);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--slate-black);
    padding: 20px 3% 20px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    color: var(--pure-white);
}

.footer-brand p {
    margin-top: 16px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #2d3139;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* ===== MISC ===== */
.footer-contact {
    color: #fff;
    font-weight: 600;
}

/* ===== PROPOSAL FORM SLIDE-IN ===== */
.proposal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.proposal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.proposal-panel {
    position: fixed;
    top: 0;
    right: -480px;
    width: 460px;
    max-width: 100vw;
    height: 100%;
    background: var(--pure-white);
    z-index: 10000;
    padding: 50px 40px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.proposal-panel.active {
    right: 0;
}

.proposal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.proposal-close:hover {
    background: var(--off-white);
    color: var(--tech-red);
}

.proposal-panel h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--deep-black);
    margin-bottom: 8px;
}

.proposal-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.proposal-form input,
.proposal-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--off-white);
    margin-bottom: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.proposal-form input:focus,
.proposal-form textarea:focus {
    border-color: var(--tech-red);
    box-shadow: 0 0 0 3px rgba(217, 27, 27, 0.1);
}

.field-group {
    margin-bottom: 14px;
}

.field-group input,
.field-group textarea {
    margin-bottom: 0 !important;
}

.field-error {
    display: block;
    font-size: 12px;
    color: var(--tech-red);
    margin-top: 4px;
    min-height: 0;
    line-height: 1.3;
}

.field-group.error input,
.field-group.error textarea {
    border-color: var(--tech-red);
    box-shadow: 0 0 0 3px rgba(217, 27, 27, 0.08);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .field-group {
    flex: 1;
    margin-bottom: 0;
}

.proposal-form textarea {
    resize: vertical;
    min-height: 70px;
}

.form-submit {
    width: 100%;
    text-align: center;
    padding: 16px !important;
    font-size: 14px !important;
    cursor: pointer;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    text-align: center;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    animation: formMsgIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.form-message::before {
    font-size: 22px;
    flex-shrink: 0;
}

.form-message.success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    border: 1px solid #6ee7b7;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.12);
}

.form-message.success::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.form-message.error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #991b1b;
    border: 1px solid #fca5a5;
    box-shadow: 0 4px 16px rgba(217, 27, 27, 0.1);
}

.form-message.error::before {
    content: "!";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #d91b1b, #b01212);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

@keyframes formMsgIn {
    from { opacity: 0; transform: translateY(8px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== LEGAL PAGES (PRIVACY / TERMS) ===== */
.legal-content {
    padding: 60px 3%;
    background: var(--pure-white);
}

.legal-container {
    max-width: 800px;
}

.legal-container h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--deep-black);
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container a {
    color: var(--tech-red);
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-date {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-top: 40px;
}

footer a {
    color: #94a3b8;
    transition: color 0.25s ease;
}

footer a:hover {
    color: var(--pure-white);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header > .cta-btn-red {
        display: none;
    }

    header {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 12px 5%;
        gap: 0;
    }

    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    header.nav-open nav {
        max-height: 450px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
    }

    nav ul li a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
    }

    nav ul li a.active {
        border-bottom: 2px solid var(--tech-red);
    }

    .nav-cta {
        display: block;
        padding-top: 8px;
    }

    .nav-cta a {
        display: inline-block !important;
        background: linear-gradient(135deg, #d91b1b, #b01212);
        color: var(--pure-white) !important;
        padding: 12px 24px !important;
        border-radius: 50px;
        font-size: 14px !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        text-align: center;
        border-bottom: none !important;
    }

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

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

    .page-hero {
        padding: 50px 5% 40px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

    .trusted-grid {
        gap: 25px;
    }

    .ecosystem-item {
        font-size: 15px;
    }

    .services {
        padding: 60px 5%;
    }

    .card {
        padding: 35px 25px;
    }

    .scale-box {
        padding: 50px 25px;
    }

    .scale-box h2 {
        font-size: 32px;
    }

    .footer-wrap {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-row {
        flex-direction: column;
    }

    .service-img,
    .service-content {
        width: 100%;
    }

    .service-img {
        height: 200px;
    }

    .services-section {
        padding: 60px 5%;
    }

    .split-section {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .timeline-row {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-step {
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .timeline-step::after {
        display: none;
    }

    .timeline-step:first-child::after,
    .timeline-step:last-child::after {
        display: none;
    }

    .benefits {
        flex-direction: column;
        padding: 40px 5%;
    }

    .stats {
        width: 100%;
    }

    .proposal-panel {
        padding: 40px 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 5%;
    }

    .logo {
        font-size: 20px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }

    .hero {
        padding: 40px 5% 50px;
    }

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

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

    .page-hero h1 {
        font-size: 26px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header {
        margin-bottom: 15px;
    }

    .trusted-grid {
        gap: 18px;
    }

    .ecosystem-item {
        font-size: 13px;
    }

    .services {
        padding: 40px 5%;
    }

    .services-grid {
        gap: 20px;
    }

    .card {
        padding: 25px 20px;
    }

    .card h3 {
        font-size: 20px;
    }

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

    .scale {
        padding: 60px 5%;
    }

    .scale-box {
        padding: 30px 18px;
    }

    .scale-box h2 {
        font-size: 24px;
    }

    .scale-box p {
        font-size: 15px;
    }

    .service-img {
        height: 160px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .services-section {
        padding: 40px 5%;
    }

    .split-section {
        padding: 40px 5%;
        gap: 30px;
    }

    .split-text h2 {
        font-size: 24px;
    }

    .feature-box {
        width: 100%;
        max-width: 300px;
    }

    .benefits-section {
        padding: 15px 5%;
    }

    .benefits-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .benefits-grid {
        gap: 25px;
    }

    .benefit-item {
        max-width: 100%;
    }

    .talent-section {
        padding: 30px 5%;
    }

    .talent-grid {
        gap: 20px;
    }

    .talent-card {
        padding: 25px 20px;
    }

    .talent-card h3 {
        font-size: 18px;
    }

    .timeline {
        padding: 20px 5%;
    }

    .timeline-step {
        padding: 40px 15px 20px;
    }

    .timeline-step::before {
        font-size: 60px;
    }

    .circle {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .timeline-step h4 {
        font-size: 14px;
    }

    .benefits {
        padding: 30px 5%;
        gap: 25px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-box {
        padding: 18px;
    }

    .stat-box h2 {
        font-size: 28px;
    }

    .benefits-text ul {
        margin-top: 15px;
    }

    .benefits-text li {
        font-size: 14px;
    }

    footer {
        padding: 15px 5% 15px;
        font-size: 13px;
    }

    .footer-wrap {
        gap: 20px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .proposal-panel {
        padding: 30px 18px;
    }

    .proposal-panel h2 {
        font-size: 22px;
    }

    .proposal-form input,
    .proposal-form textarea {
        font-size: 16px;
        padding: 12px 14px;
    }

    .dark-section {
        padding: 15px 5%;
    }

    .dark-section .section-header {
        margin-bottom: 10px;
    }
}
