:root {
    --bg: #08111f;
    --bg-soft: #0f1d33;
    --surface: rgba(12, 24, 45, 0.72);
    --surface-strong: #11233f;
    --surface-light: #f5efe4;
    --surface-white: rgba(255, 255, 255, 0.88);
    --text: #f8f4eb;
    --text-dark: #111827;
    --muted: rgba(232, 226, 213, 0.72);
    --muted-dark: #5d6778;
    --line: rgba(255, 255, 255, 0.12);
    --line-dark: rgba(12, 24, 45, 0.1);
    --accent: #ff8f3c;
    --accent-2: #ffd166;
    --accent-3: #5eead4;
    --success: #97f0c2;
    --shadow: 0 24px 80px rgba(3, 9, 20, 0.32);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --font-sans: 'Manrope', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --section-padding: clamp(72px, 9vh, 110px);
    --transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(94, 234, 212, 0.18), transparent 22%),
        radial-gradient(circle at top right, rgba(255, 143, 60, 0.18), transparent 20%),
        linear-gradient(180deg, #f9f4ea 0%, #f2ebde 28%, #fffdf8 100%);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 34, 63, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 34, 63, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.1;
}

p {
    margin: 0 0 1rem;
}

.container {
    max-width: 1240px;
}

.navbar {
    padding: 0.55rem 0;
    transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition), backdrop-filter var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(7, 17, 31, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
    padding: 0.45rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

.nav-link {
    position: relative;
    padding: 0.65rem 1rem !important;
    color: rgba(248, 244, 235, 0.8) !important;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.35rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.btn-nav-cta {
    margin-left: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6a3d 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(255, 106, 61, 0.24);
}

.btn-nav-cta::after {
    display: none;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: clamp(104px, 12vh, 120px) 0 clamp(44px, 6vh, 70px);
    background:
        radial-gradient(circle at 16% 18%, rgba(94, 234, 212, 0.22), transparent 24%),
        radial-gradient(circle at 84% 20%, rgba(255, 209, 102, 0.24), transparent 18%),
        linear-gradient(135deg, #07111f 0%, #0a1930 45%, #102748 100%);
    color: var(--text);
    overflow: hidden;
}

.hero-row {
    min-height: calc(100svh - 148px);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.65;
    pointer-events: none;
}

.hero::before {
    width: 380px;
    height: 380px;
    top: -100px;
    right: -80px;
    background: rgba(255, 143, 60, 0.18);
}

.hero::after {
    width: 320px;
    height: 320px;
    bottom: -120px;
    left: -100px;
    background: rgba(94, 234, 212, 0.18);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, transparent 30%, rgba(255, 255, 255, 0.06) 100%);
    pointer-events: none;
}

.hero .container,
.hero .row,
.hero .col-lg-7,
.hero .col-lg-5 {
    position: relative;
    z-index: 1;
}

.hero-label,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-label {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(248, 244, 235, 0.84);
    margin-bottom: 1.5rem;
}

.hero-title {
    max-width: 760px;
    font-family: var(--font-serif);
    font-size: clamp(2.9rem, 5.8vw, 5.4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-slogan {
    color: var(--accent-2);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    max-width: 640px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.6rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-cta-primary,
.btn-cta-secondary,
.btn-submit {
    padding: 0.95rem 1.7rem !important;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.btn-cta-primary {
    border: none;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6a3d 100%) !important;
    color: #fff !important;
    box-shadow: 0 16px 38px rgba(255, 106, 61, 0.24);
}

.btn-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--text) !important;
}

.btn-cta-primary:hover,
.btn-cta-secondary:hover,
.btn-submit:hover {
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.hero-trust-item {
    min-width: 150px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-trust-item strong {
    display: block;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.hero-trust-item span {
    color: rgba(248, 244, 235, 0.72);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    width: min(100%, 450px);
    margin-left: auto;
    min-height: 460px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%);
    pointer-events: none;
}

.hero-card-primary {
    padding: 1.7rem;
    background: linear-gradient(145deg, rgba(16, 39, 72, 0.95) 0%, rgba(23, 55, 97, 0.9) 45%, rgba(255, 143, 60, 0.58) 120%);
    animation: floatA 8s ease-in-out infinite;
}

.hero-card-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-2);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-card-primary h4 {
    font-size: 1.7rem;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

.hero-card-primary p,
.hero-metric-label {
    color: rgba(248, 244, 235, 0.72);
}

.hero-card-secondary,
.hero-card-tertiary {
    position: absolute;
    padding: 0.9rem 1rem;
    width: 210px;
    background: rgba(7, 17, 31, 0.72);
}

.hero-card-secondary {
    top: auto;
    bottom: 96px;
    right: -16px;
    animation: floatB 9s ease-in-out infinite;
}

.hero-card-tertiary {
    bottom: 24px;
    left: -32px;
    animation: floatC 10s ease-in-out infinite;
}

.hero-metric-label {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.hero-metric-value {
    font-size: 1.08rem;
    font-weight: 800;
    color: #fff;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.9;
}

.hero-orb-one {
    width: 90px;
    height: 90px;
    right: 22px;
    bottom: 120px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.96) 0%, rgba(255, 209, 102, 0.12) 70%, transparent 72%);
}

.hero-orb-two {
    width: 120px;
    height: 120px;
    left: 10px;
    top: 120px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.9) 0%, rgba(94, 234, 212, 0.12) 70%, transparent 72%);
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.6s ease-in-out infinite;
}

.scroll-indicator {
    color: rgba(248, 244, 235, 0.68);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.section {
    position: relative;
    padding: var(--section-padding) 0;
}

.section-label {
    color: #bd6f37;
    margin-bottom: 1.1rem;
}

.section-title {
    max-width: 760px;
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #131b2c;
    margin-bottom: 1rem;
}

.section-text {
    max-width: 680px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted-dark);
}

@media (min-width: 992px) {
    .text-single-line-lg {
        white-space: nowrap;
    }
}

.about-section,
.tech-section,
.industries-section,
.testimonials-section {
    background: transparent;
}

.services-section,
.leadership-section,
.contact-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.68) 100%);
}

.why-section,
.value-section {
    background: linear-gradient(135deg, #0b172b 0%, #142a4a 100%);
    color: var(--text);
}

.why-section .section-title,
.why-section .section-label,
.value-section .section-title,
.value-section .section-label {
    color: var(--text);
}

.why-section .section-label,
.value-section .section-label {
    color: var(--accent-2);
}

.about-stats,
.value-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.stat-item,
.value-stat {
    padding: 1.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 34, 63, 0.08);
    box-shadow: 0 20px 45px rgba(17, 34, 63, 0.08);
}

.stat-number,
.stat-suffix,
.value-stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1;
    color: #131b2c;
}

.stat-label,
.value-stat-label {
    display: block;
    margin-top: 0.6rem;
    color: var(--muted-dark);
    font-weight: 700;
}

.service-card,
.why-card,
.leadership-card,
.industry-card,
.testimonial-card,
.contact-form {
    height: 100%;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.service-card,
.leadership-card,
.industry-card,
.testimonial-card,
.contact-form {
    padding: 1.7rem;
    background: var(--surface-white);
    border: 1px solid rgba(17, 34, 63, 0.08);
    box-shadow: 0 20px 48px rgba(17, 34, 63, 0.08);
    backdrop-filter: blur(16px);
}

.service-card:hover,
.leadership-card:hover,
.industry-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(17, 34, 63, 0.14);
}

.service-icon,
.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 143, 60, 0.16), rgba(255, 209, 102, 0.36));
    color: #bb5a20;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.service-card h3,
.leadership-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #162033;
    margin-bottom: 0.8rem;
}

.service-card p,
.why-card p,
.leadership-bio,
.industry-name,
.testimonial-text,
.contact-value,
.footer-tagline,
.footer p {
    color: var(--muted-dark);
    line-height: 1.8;
}

.why-card {
    padding: 1.55rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 209, 102, 0.42);
}

.why-card h4,
.why-card p {
    color: var(--text);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.tech-category {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(17, 34, 63, 0.08);
    box-shadow: 0 18px 42px rgba(17, 34, 63, 0.06);
}

.tech-category h4 {
    margin-bottom: 1rem;
    color: #935128;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 34, 63, 0.08);
    color: #182237;
}

.tech-tag:hover {
    transform: translateY(-2px);
    background: #fff;
}

.tech-tag img {
    width: 24px;
    height: 24px;
}

.tech-tag img.tech-icon-lg {
    transform: scale(1.3);
}

.leadership-role {
    color: #b9662d;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.leadership-avatar {
    width: 72px;
    height: 72px;
    margin-bottom: 1.3rem;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #11233f 0%, #1a3a66 100%);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 2rem;
    box-shadow: 0 16px 36px rgba(17, 35, 63, 0.22);
}

.industry-card {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.industry-name {
    font-weight: 800;
    color: #162033;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}

.value-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(248, 244, 235, 0.84);
}

.value-list li::before {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 1.25rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.value-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.value-stat-number,
.value-stat-label {
    color: var(--text);
}

.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: rgba(255, 143, 60, 0.14);
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: normal;
    font-size: 1rem;
    margin-bottom: 1.3rem;
}

.testimonial-rating {
    position: relative;
    z-index: 1;
    margin-bottom: 0.8rem;
    color: #f2a531;
    font-size: 1.05rem;
    letter-spacing: 0.18rem;
}

.testimonial-project {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 143, 60, 0.12);
    color: #bb5a20;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-author strong {
    display: block;
    color: #162033;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: #7b8491;
    font-size: 0.92rem;
}

.contact-info {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(17, 34, 63, 0.08);
}

.contact-label {
    display: block;
    margin-bottom: 0.35rem;
    color: #a35a26;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-form .form-control {
    border-radius: 16px;
    border: 1px solid rgba(17, 34, 63, 0.1);
    background: rgba(255, 255, 255, 0.82);
    padding: 0.95rem 1rem;
    font-size: 0.96rem;
}

.contact-form .form-control:focus {
    border-color: rgba(255, 143, 60, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 143, 60, 0.12);
}

.btn-submit {
    border: none;
    background: linear-gradient(135deg, #11233f 0%, #1d4173 100%) !important;
    color: #fff !important;
    box-shadow: 0 16px 30px rgba(17, 35, 63, 0.2);
}

.form-message {
    font-weight: 700;
}

.footer {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(94, 234, 212, 0.16), transparent 18%),
        linear-gradient(135deg, #07111f 0%, #0a1930 55%, #102748 100%);
    color: rgba(248, 244, 235, 0.72);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.footer-tagline,
.footer ul a,
.footer p,
.footer-bottom p,
.footer-bottom a,
.social-links a {
    color: rgba(248, 244, 235, 0.72);
}

.footer h5 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.65rem;
}

.footer ul a,
.social-links a,
.footer-bottom a {
    transition: color var(--transition), opacity var(--transition);
}

.footer ul a:hover,
.social-links a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-in:nth-child(1) { animation-delay: 0.08s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.16s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.24s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.32s; }
.animate-fade-in:nth-child(5) { animation-delay: 0.4s; }
.animate-fade-in:nth-child(6) { animation-delay: 0.48s; }

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
    transform: translateY(34px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-scale {
    transform: translateY(24px) scale(0.96);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.25s; }
.reveal-delay-6 { transition-delay: 0.3s; }
.reveal-delay-7 { transition-delay: 0.35s; }
.reveal-delay-8 { transition-delay: 0.4s; }
.reveal-delay-9 { transition-delay: 0.45s; }
.reveal-delay-10 { transition-delay: 0.5s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatB {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 6px); }
}

@keyframes floatC {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@media (min-width: 992px) and (max-width: 1440px) {
    :root {
        --section-padding: 78px;
    }

    .navbar-logo {
        height: 34px;
    }

    .nav-link {
        padding: 0.55rem 0.7rem !important;
        font-size: 0.86rem;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 34px;
    }

    .hero-row {
        min-height: calc(100svh - 134px);
    }

    .hero-label {
        margin-bottom: 1rem;
    }

    .hero-slogan {
        margin-bottom: 0.9rem;
        letter-spacing: 0.22em;
    }

    .hero-trust-item {
        min-width: 132px;
    }

    .section-title {
        font-size: clamp(2.2rem, 3vw, 3.2rem);
    }

    .service-card h3,
    .leadership-card h3 {
        font-size: 1.2rem;
    }

    .service-card p,
    .why-card p,
    .leadership-bio,
    .testimonial-text {
        line-height: 1.65;
        font-size: 0.95rem;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 86px;
    }

    .navbar {
        background: rgba(7, 17, 31, 0.9);
        backdrop-filter: blur(18px);
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(8, 17, 31, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero {
        min-height: auto;
        padding-top: 124px;
        padding-bottom: 56px;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4.4rem);
    }

    .hero-trust,
    .about-stats,
    .value-stats {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-visual {
        margin: 2.2rem auto 0;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 72px;
    }

    .navbar-logo,
    .footer-logo {
        height: 36px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 13vw, 3.6rem);
    }

    .hero-subtitle,
    .section-text {
        font-size: 0.98rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn,
    .btn-submit {
        width: 100%;
    }

    .service-card,
    .why-card,
    .leadership-card,
    .industry-card,
    .testimonial-card,
    .contact-form,
    .tech-category {
        padding: 1.4rem;
    }

    .hero-card-secondary,
    .hero-card-tertiary {
        width: 196px;
    }

    .hero-card-secondary {
        right: 0;
    }

    .hero-card-tertiary {
        left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
