:root {
    --primary: #0f1419;
    --primary-soft: #1a202c;
    --accent: #00bcd4;
    --accent-alt: #ff6b9d;
    --bg: #f8f9fa;
    --surface: #ffffff;
    --text: #2d3748;
    --muted: #718096;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 25, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.window-loader {
    position: relative;
    width: 86px;
    height: 72px;
    border: 4px solid rgba(210, 225, 240, 0.92);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(60, 75, 92, 0.36) 0%, rgba(26, 40, 52, 0.46) 100%);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.window-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    background: rgba(215, 228, 240, 0.78);
}

.window-pane {
    position: absolute;
    top: 8px;
    bottom: 8px;
    width: 33px;
    border: 2px solid rgba(212, 226, 239, 0.82);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(130, 206, 228, 0.32) 0%, rgba(130, 206, 228, 0.16) 100%);
}

.pane-left {
    left: 8px;
    transform-origin: left center;
    animation: openPaneLeft 1.3s ease-in-out infinite;
}

.pane-right {
    right: 8px;
    transform-origin: right center;
    animation: openPaneRight 1.3s ease-in-out infinite;
}

.window-track {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 5px;
    height: 3px;
    border-radius: 999px;
    background: rgba(210, 225, 240, 0.55);
}

.window-shine {
    position: absolute;
    top: -30%;
    left: -55%;
    width: 44%;
    height: 160%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 52%, rgba(255, 255, 255, 0) 100%);
    animation: windowShine 1.3s ease-in-out infinite;
}

.loader-text {
    color: #ffffff;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes openPaneLeft {
    0%, 100% {
        transform: perspective(160px) rotateY(0deg);
    }
    50% {
        transform: perspective(160px) rotateY(-38deg);
    }
}

@keyframes openPaneRight {
    0%, 100% {
        transform: perspective(160px) rotateY(0deg);
    }
    50% {
        transform: perspective(160px) rotateY(38deg);
    }
}

@keyframes windowShine {
    0% {
        left: -55%;
        opacity: 0.2;
    }
    35% {
        opacity: 0.7;
    }
    100% {
        left: 115%;
        opacity: 0.2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pane-left,
    .pane-right,
    .window-shine {
        animation-duration: 2.2s;
    }
}

h1, h2, h3 {
    margin: 0 0 12px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
}

.card h3 {
    font-size: 1rem;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--muted);
}

p {
    margin: 0 0 14px;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: 74px 0;
}

/* Before/After Slider */
.before-after-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.before-after-img {
    display: block;
    width: 100%;
    height: auto;
}

.img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-before img {
    width: 100%;
    height: 100%;
    display: block;
}

.img-after {
    width: 100%;
    height: 100%;
}

.img-after img {
    width: 100%;
    height: 100%;
    display: block;
}

.img-slider {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    background: white;
    cursor: col-resize;
    transform: translateX(-2px);
}

.img-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #00bcd4;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.3);
}

.section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
    transform: translateY(0);
    transition: transform 0.28s ease;
    will-change: transform;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 74px;
    gap: 20px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #fff;
}

.brand-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.brand-tagline {
    font-size: 0.75rem;
    opacity: 0.85;
}

.site-nav {
    display: flex;
    gap: 16px;
}

.site-nav a {
    color: #fff;
    transition: 0.2s ease;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
    border-bottom-color: var(--accent);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    border: 0;
    background: transparent;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(15, 20, 25, 0.85) 0%, rgba(26, 32, 44, 0.78) 100%),
        url('../images/hero/hero.png') center / cover no-repeat;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero p {
    color: white;
}

.eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.hero h1.hero-title-compact {
    font-size: clamp(2rem, 4.2vw, 2.95rem);
    line-height: 1.14;
    max-width: 16ch;
    text-wrap: balance;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    max-width: 30ch;
}

.hero-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 62ch;
    margin-bottom: 12px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.contact-strip {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.contact-strip p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-strip a {
    color: var(--accent);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #00a3c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.3);
}

.btn-light {
    background: white;
    color: var(--primary);
    border: 1px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-head {
    display: flex;
    flex-direction: column;
}

.section-head h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-head p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
}

.about-hero {
    background:
        linear-gradient(135deg, rgba(15, 20, 25, 0.84) 0%, rgba(31, 45, 63, 0.78) 100%),
        url('../images/hero/hero.png') center / cover no-repeat;
    color: #ffffff;
}

.about-hero .eyebrow {
    color: var(--accent);
}

.about-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 16px;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 30px;
    align-items: stretch;
}

.about-hero-copy {
    max-width: 720px;
}

.about-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-hero-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.about-hero-panel h2 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.about-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.about-meta-list li {
    display: grid;
    gap: 5px;
    margin: 0;
}

.about-meta-list strong {
    color: #ffffff;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-meta-list span,
.about-meta-list a {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    font-size: 0.96rem;
}

.about-label {
    margin: 0 0 10px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--accent);
}

.about-story {
    background: linear-gradient(140deg, #f6fbff 0%, #eef6fb 100%);
}

.about-story .container {
    border: 1px solid rgba(0, 188, 212, 0.16);
    border-radius: 24px;
    padding: 34px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 20, 25, 0.07);
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
}

.about-story-card {
    background: linear-gradient(175deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 10px 24px rgba(15, 20, 25, 0.05);
    position: relative;
    overflow: hidden;
}

.about-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00bcd4, #3ba9ff 55%, #ff6b9d);
}

.about-story-points-card {
    background: linear-gradient(170deg, rgba(0, 188, 212, 0.11) 0%, rgba(0, 188, 212, 0.03) 100%);
}

.about-story-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-story-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.75;
}

.about-story-card p:last-child {
    margin-bottom: 0;
}

.about-story-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    counter-reset: storySteps;
    position: relative;
}

.about-story-points::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 188, 212, 0.35), rgba(0, 188, 212, 0.12));
}

.about-story-points li {
    margin: 0;
    color: var(--text);
    border: 1px solid rgba(0, 188, 212, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    padding: 13px 14px 13px 54px;
    position: relative;
    line-height: 1.55;
    box-shadow: 0 4px 12px rgba(15, 20, 25, 0.04);
}

.about-story-points li::before {
    counter-increment: storySteps;
    content: counter(storySteps);
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4, #3ba9ff);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-direction-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.about-direction-card {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 16px;
    padding: 30px 28px;
}

.about-direction-card h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.about-direction-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.about-mission-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.about-mission-list li {
    margin: 0;
    padding-left: 24px;
    position: relative;
    color: var(--text);
}

.about-mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4, #3ba9ff);
}

.about-head-center {
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
}

.about-head-center h2 {
    margin-bottom: 10px;
}

.about-strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-strength-card {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 14px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(15, 20, 25, 0.05);
}

.about-strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, #00bcd4, #ff6b9d);
}

.about-strength-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.about-strength-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.94rem;
}

.about-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-roadmap-item {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-roadmap-item span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.about-roadmap-item p {
    margin: 4px 0 0;
    color: var(--text);
}

.about-cta-strip {
    margin-top: 26px;
    padding: 24px;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about-cta-strip h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.about-cta-strip p {
    margin: 0;
    color: var(--muted);
}

.services-hero {
    background:
        linear-gradient(135deg, rgba(15, 20, 25, 0.85) 0%, rgba(22, 38, 59, 0.78) 100%),
        url('../images/hero/hero.png') center / cover no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.2) 0%, rgba(0, 188, 212, 0) 70%);
}

.services-hero .eyebrow {
    color: var(--accent);
}

.services-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 16px;
}

.services-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.services-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.services-hero-copy {
    max-width: 760px;
}

.services-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.services-hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 28px rgba(8, 20, 36, 0.3);
}

.services-hero-panel h2 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.services-hero-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.services-hero-panel li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.services-hero-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4, #3ba9ff);
}

.services-section {
    position: relative;
}

.services-section .container {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 188, 212, 0.12);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 20, 25, 0.05);
}

.services-section.section-alt .container {
    background: linear-gradient(135deg, #f9fbfd 0%, #f4f8fb 100%);
}

.services-section-head {
    max-width: 840px;
    margin-bottom: 26px;
}

.services-label {
    margin: 0 0 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 188, 212, 0.22);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 188, 212, 0.08);
}

.services-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4, #3ba9ff);
}

.services-section-head h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.services-section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.services-grid {
    display: grid;
    gap: 18px;
}

.services-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(15, 20, 25, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #ff6b9d);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 14px 34px rgba(0, 188, 212, 0.16);
}

.service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: #f0f4f8;
    transition: transform 0.35s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 20px;
}

.service-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.12rem;
}

.service-card-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.94rem;
}

.services-head-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-application-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.services-application-card {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 14px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 20, 25, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, #00bcd4, #ff6b9d);
}

.services-application-card h3 {
    margin: 0 0 10px;
    font-size: 1.14rem;
}

.services-application-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 188, 212, 0.14);
}

.services-application-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.services-application-card li {
    margin: 0;
    position: relative;
    padding-left: 20px;
    color: var(--text);
}

.services-application-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.services-process-steps {
    --step-dot-size: 28px;
    --step-top-padding: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    position: relative;
}

.services-process-steps::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--step-top-padding) + (var(--step-dot-size) / 2));
    height: 2px;
    background: rgba(0, 188, 212, 0.28);
    z-index: 0;
}

.services-step {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 12px;
    padding: var(--step-top-padding) 14px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(15, 20, 25, 0.04);
}

.services-step:not(:last-child)::after {
    content: none;
}

.services-step span {
    width: var(--step-dot-size);
    height: var(--step-dot-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 auto 10px;
}

.services-step p {
    margin: 0;
    color: var(--text);
    font-size: 0.92rem;
}

.services-cta-strip {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 22px rgba(15, 20, 25, 0.05);
}

.services-cta-strip h3 {
    margin: 0 0 8px;
    font-size: 1.24rem;
}

.services-cta-strip p {
    margin: 0;
    color: var(--muted);
}

.contact-hero {
    background:
        linear-gradient(135deg, rgba(15, 20, 25, 0.85) 0%, rgba(26, 45, 69, 0.78) 100%),
        url('../images/hero/hero.png') center / cover no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    left: -120px;
    bottom: -200px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.2) 0%, rgba(0, 188, 212, 0) 70%);
}

.contact-hero .eyebrow {
    color: var(--accent);
}

.contact-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.contact-hero-copy {
    max-width: 760px;
}

.contact-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-quick-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 28px rgba(8, 20, 36, 0.3);
}

.contact-quick-card h2 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.contact-quick-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.contact-quick-card li {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.contact-quick-card strong {
    color: #ffffff;
}

.contact-quick-card a {
    color: var(--accent);
    font-weight: 600;
}

.contact-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-overview-card {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 6px 18px rgba(15, 20, 25, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #ff6b9d);
}

.contact-overview-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.contact-overview-card p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.94rem;
}

.contact-overview-card a,
.contact-overview-card span {
    color: var(--primary-soft);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
    gap: 20px;
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 8px 22px rgba(15, 20, 25, 0.05);
}

.contact-label {
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 188, 212, 0.22);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 188, 212, 0.08);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4, #3ba9ff);
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.contact-detail-list {
    display: grid;
    gap: 18px;
}

.contact-detail-list h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--primary);
}

.contact-detail-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-detail-list a {
    color: var(--accent);
    font-weight: 600;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field-group {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.field-group label {
    font-weight: 600;
    color: var(--primary-soft);
    font-size: 0.92rem;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    border: 1px solid rgba(15, 20, 25, 0.16);
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
    color: var(--text);
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-group textarea {
    resize: vertical;
    min-height: 120px;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: rgba(0, 188, 212, 0.65);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}

.form-success,
.form-error {
    margin: 0 0 14px;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success {
    border: 1px solid rgba(21, 128, 61, 0.25);
    background: rgba(22, 163, 74, 0.08);
    color: #166534;
}

.form-error {
    border: 1px solid rgba(185, 28, 28, 0.25);
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
}

.contact-cta-strip {
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 22px rgba(15, 20, 25, 0.05);
}

.contact-cta-strip h3 {
    margin: 0 0 8px;
    font-size: 1.24rem;
}

.contact-cta-strip p {
    margin: 0;
    color: var(--muted);
}

.whyus-hero {
    background:
        linear-gradient(135deg, rgba(15, 20, 25, 0.85) 0%, rgba(31, 45, 63, 0.78) 100%),
        url('../images/hero/hero.png') center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.whyus-hero .eyebrow {
    color: var(--accent);
}

.whyus-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 18px;
}

.whyus-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.whyus-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 34px;
    align-items: stretch;
}

.whyus-hero-copy {
    max-width: 680px;
}

.whyus-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.whyus-hero-metrics {
    display: grid;
    gap: 14px;
}

.whyus-metric {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.whyus-metric h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.whyus-metric p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.whyus-head-center {
    text-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.whyus-head-center p {
    max-width: 760px;
    margin: 0;
}

.whyus-pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.whyus-pillar {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-soft);
    box-shadow: 0 4px 14px rgba(15, 20, 25, 0.05);
}

.whyus-commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.whyus-commitment-card {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 6px 18px rgba(15, 20, 25, 0.06);
}

.whyus-commitment-card span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4, #3ba9ff);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 14px;
}

.whyus-commitment-card h3 {
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.whyus-commitment-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.whyus-sector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.whyus-sector-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 188, 212, 0.12);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.whyus-sector-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #00bcd4, #ff6b9d);
}

.whyus-sector-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.whyus-sector-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.whyus-process {
    background: #ffffff;
}

.whyus-process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.whyus-step {
    border: 1px solid rgba(0, 188, 212, 0.14);
    border-radius: 12px;
    padding: 16px 14px;
    background: linear-gradient(160deg, rgba(0, 188, 212, 0.06) 0%, rgba(0, 188, 212, 0.01) 100%);
}

.whyus-step span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.whyus-step p {
    margin: 0;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.55;
}

.whyus-cta-strip {
    margin-top: 28px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 188, 212, 0.14);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.whyus-cta-strip h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.whyus-cta-strip p {
    margin: 0;
    color: var(--muted);
    max-width: 760px;
}

.vision-mission-split {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 188, 212, 0.14);
    box-shadow: 0 10px 32px rgba(16, 41, 75, 0.08);
}

.vision-pane,
.mission-pane {
    padding: 46px 44px;
}

.vision-pane {
    background: linear-gradient(160deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0.03) 100%);
    border-right: 1px solid rgba(0, 188, 212, 0.12);
}

.mission-pane {
    background: white;
}

.pane-eyebrow {
    margin: 0 0 14px;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--accent);
}

.vision-pane h2,
.mission-pane h2 {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.vision-pane p,
.mission-pane p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
}

.mission-pane .simple-list {
    margin-top: 16px;
}

.mission-pane .simple-list li:last-child {
    margin-bottom: 0;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.strength-item {
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.12);
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    padding: 18px 18px;
    box-shadow: 0 4px 14px rgba(15, 20, 25, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.strength-step {
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #00bcd4, #3ba9ff);
}

.strength-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 188, 212, 0.14);
}

.strength-content {
    min-width: 0;
}

.strength-item h3 {
    margin: 1px 0 6px;
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 700;
}

.strength-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.97rem;
}

.future-growth-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.future-growth-list li {
    position: relative;
    padding: 16px 18px 16px 42px;
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.12);
    border-radius: 12px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
}

.future-growth-list li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00bcd4, #3ba9ff);
    box-shadow: 0 2px 6px rgba(0, 188, 212, 0.25);
}

.vision-mission-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 188, 212, 0.12);
    position: relative;
    transition: all 0.3s ease;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #ff6b9d);
    border-radius: 16px 16px 0 0;
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 188, 212, 0.15);
}

.vision-mission-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 8px;
}

.vision-mission-card p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

.simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-list li {
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
    color: var(--text);
    line-height: 1.7;
}

.simple-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #00bcd4, #00bcd4);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 188, 212, 0.2);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 188, 212, 0.12);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #ff6b9d);
    border-radius: 16px 16px 0 0;
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 188, 212, 0.18);
    border-color: #00bcd4;
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #00bcd4;
    font-family: 'Montserrat', sans-serif;
    display: inline;
    margin-right: 2px;
}

.stat-suffix {
    font-size: 1.6rem;
    color: #00bcd4;
    display: inline;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Card Grids */
.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid.asymmetric-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.card-grid.five-col {
    grid-template-columns: repeat(5, 1fr);
}

/* Cards */
.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.12);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #ff6b9d);
    z-index: 10;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f4f8;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.small-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.12);
    position: relative;
    overflow: hidden;
}

.small-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bcd4, #ff6b9d);
    border-radius: 12px 12px 0 0;
}

.small-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.12);
}

/* Testimonials */
.testimonials-section {
    background: var(--surface);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    padding: 28px;
    border-radius: var(--radius);
    border-left: 4px solid #00bcd4;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-content {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4, #ff6b9d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--primary);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 2px 0 0 0;
}

/* CTA Block */
.cta-block {
    text-align: center;
    padding: 60px 40px;
}

.cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-block p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0e1724 0%, #14263d 100%);
    color: white;
    padding: 52px 0 0;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 188, 212, 0.25);
}

.site-footer h3,
.site-footer p,
.site-footer a {
    color: white;
}

.site-footer h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.site-footer a {
    color: #00bcd4;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.75fr) minmax(240px, 1.1fr);
    gap: 28px;
    padding-bottom: 34px;
}

.footer-brand-block p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
    font-size: 0.95rem;
}

.footer-brand-note {
    margin-top: 10px;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links-block,
.footer-contact-block {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.footer-links-block h4,
.footer-contact-block h4 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.93rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact-block p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-contact-block p + p {
    margin-top: 10px;
}

.footer-contact-block strong {
    color: #00bcd4;
    font-weight: 600;
}

.footer-cta {
    margin-top: 14px;
    display: inline-block;
    width: auto;
    padding: 10px 18px;
    font-size: 0.9rem;
}

.site-footer .btn-primary.footer-cta {
    color: #ffffff;
    background: var(--accent);
}

.site-footer .btn-primary.footer-cta:hover {
    color: #ffffff;
    background: #00a3c0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
    text-align: center;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 4px 0;
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bcd4, #3ba9ff);
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 188, 212, 0.28);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #00a3c0, #2f8fff);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 84px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    z-index: 1100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 20px;
        bottom: 80px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .three-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-strengths-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-grid-3,
    .services-application-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-step:nth-child(2)::after {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: block;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.26);
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(4px);
        color: #ffffff;
        font-size: 1.35rem;
        font-weight: 700;
        line-height: 1;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    }

    .menu-toggle:hover {
        background: rgba(0, 188, 212, 0.2);
        border-color: rgba(0, 188, 212, 0.7);
    }

    .menu-toggle:active {
        transform: scale(0.96);
    }

    .menu-toggle:focus-visible {
        outline: 2px solid rgba(0, 188, 212, 0.9);
        outline-offset: 2px;
    }

    .menu-toggle[aria-expanded='true'] {
        background: rgba(0, 188, 212, 0.24);
        border-color: rgba(0, 188, 212, 0.8);
    }

    .site-nav {
        position: absolute;
        right: 4%;
        top: 74px;
        width: min(280px, 92vw);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 14px;
        background: #10294b;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 8px 0;
        border-bottom-width: 1px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links-block,
    .footer-contact-block {
        padding: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-mission-split {
        grid-template-columns: 1fr;
    }

    .vision-pane {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 188, 212, 0.12);
    }

    .about-hero-grid,
    .about-story-grid,
    .about-direction-grid {
        grid-template-columns: 1fr;
    }

    .about-roadmap-grid {
        grid-template-columns: 1fr;
    }

    .about-story .container {
        padding: 26px;
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid,
    .contact-overview-grid {
        grid-template-columns: 1fr;
    }

    .services-process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-process-steps::before {
        display: none;
    }

    .services-step::after {
        display: none;
    }

    .services-cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .whyus-hero-grid {
        grid-template-columns: 1fr;
    }

    .whyus-hero h1 {
        font-size: 2.5rem;
    }

    .whyus-commitment-grid,
    .whyus-sector-grid {
        grid-template-columns: 1fr;
    }

    .whyus-pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .whyus-process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .whyus-cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .future-growth-list {
        grid-template-columns: 1fr;
    }

    .card-grid.asymmetric-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid.five-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .section {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .whyus-hero h1 {
        font-size: 2rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .contact-strip {
        flex-direction: column;
        gap: 16px;
    }

    .three-col,
    .four-col,
    .five-col {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .stat-card {
        padding: 36px 24px;
        min-height: 220px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vision-pane,
    .mission-pane {
        padding: 34px 24px;
    }

    .about-hero-panel,
    .about-story-card,
    .about-direction-card {
        padding: 22px;
    }

    .about-story .container {
        padding: 18px;
    }

    .about-story-points::before {
        display: none;
    }

    .about-story-points li {
        padding: 12px 12px 12px 44px;
    }

    .vision-pane h2,
    .mission-pane h2 {
        font-size: 1.9rem;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .strength-item {
        padding: 20px 18px;
    }

    .about-strengths-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-3,
    .services-application-grid,
    .services-process-steps {
        grid-template-columns: 1fr;
    }

    .contact-hero-panel,
    .contact-overview-card,
    .contact-info-card,
    .contact-form-card,
    .contact-cta-strip {
        padding: 20px;
    }

    .services-section .container {
        padding: 22px;
    }

    .services-hero-panel,
    .services-cta-strip {
        padding: 20px;
    }

    .about-cta-strip {
        padding: 20px;
    }

    .whyus-process-steps {
        grid-template-columns: 1fr;
    }

    .whyus-pillars-grid {
        grid-template-columns: 1fr;
    }

    .whyus-cta-strip {
        padding: 20px;
    }

    .future-growth-list li {
        padding: 14px 16px 14px 38px;
    }

    .card-grid.asymmetric-3 {
        grid-template-columns: 1fr;
    }

    .card-grid.two-col {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-block h2 {
        font-size: 1.8rem;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        width: 100%;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}
