/* ============================================================
   SIPHONIC INNOVATIONS — styles.css
   Brand: Dark Industrial-Luxury | Poppins + Inter
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --bg: #05080D;
    --surface: #0B1220;
    --surface-2: #111D2E;
    --primary: #00C8F0;
    --primary-dim: rgba(0, 200, 240, 0.12);
    --primary-glow: rgba(0, 200, 240, 0.25);
    --gold: #E8A020;
    --white: #F2F7FF;
    --muted: #7A94B0;
    --border: rgba(0, 200, 240, 0.18);
    --danger: #FF4D6A;
    --linkedin: #0A66C2;
    --radius: 12px;
    --radius-sm: 6px;
    --transition: 0.3s ease;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #05080D;
    color: #F2F7FF;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- UTILITIES ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-primary {
    color: #00C8F0;
}

.text-gold {
    color: #E8A020;
}

.text-muted {
    color: #7A94B0;
}

.text-mono {
    font-family: 'Poppins', sans-serif;
}

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

.section-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background: #00C8F0;
    color: #05080D;
}

.btn-primary:hover {
    box-shadow: 0 0 24px rgba(0, 200, 240, 0.25);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    border: 1.5px solid #00C8F0;
    color: #00C8F0;
}

.btn-ghost:hover {
    background: rgba(0, 200, 240, 0.12);
    box-shadow: 0 0 20px rgba(0, 200, 240, 0.25);
    transform: translateY(-2px);
}

.btn-linkedin {
    background: #0A66C2;
    color: #fff;
    box-shadow: 0 4px 14px rgba(10, 102, 194, 0.3);
}

.btn-linkedin:hover {
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.5);
    transform: translateY(-2px);
}

/* ---------- GLASS CARD ---------- */
.glass-card {
    background: #0B1220;
    border: 1px solid rgba(0, 200, 240, 0.18);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 24px rgba(0, 200, 240, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 0 28px rgba(0, 200, 240, 0.25);
    border-color: #00C8F0;
    transform: translateY(-4px);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim.visible {
    opacity: 1;
    transform: none;
}

/* ---------- NOISE OVERLAY ---------- */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(5, 8, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 200, 240, 0.18);
    padding: 14px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    line-height: 1.1;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00C8F0;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger rect {
    fill: #F2F7FF;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 13, 0.98);
    z-index: 998;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 900px) {
    .mobile-menu {
        display: flex;
    }

    .mobile-menu.open {
        opacity: 1;
    }
}

.mobile-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #00C8F0;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
    padding-bottom: 40px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    opacity: 0.7;
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 8, 13, 0.55) 0%,
            rgba(5, 8, 13, 0.35) 50%,
            rgba(5, 8, 13, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 24px;
    min-height: 85vh;
    justify-content: center;
    width: 100%;
}

.hero-center .hero-content {
    max-width: 1100px;
    width: 100%;
}

.hero-center .hero-ctas {
    justify-content: center;
}

.hero-blob {
    position: absolute;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(0, 200, 240, 0.14) 0%, transparent 70%);
    filter: blur(80px);
    top: 5%;
    left: -5%;
    animation: blob 14s infinite alternate ease-in-out;
    pointer-events: none;
}

.hero-blob-2 {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 80, 180, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    bottom: 10%;
    right: 0;
    animation: blob 10s infinite alternate-reverse ease-in-out;
    pointer-events: none;
}

@keyframes blob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(6%, 8%) scale(1.12);
    }
}

.hero-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 200, 240, 0.12);
    border: 1px solid rgba(0, 200, 240, 0.18);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #00C8F0;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    line-height: 1.08;
    margin-bottom: 16px;
    white-space: nowrap;
}

.h1-line1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.h1-line2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    white-space: nowrap;
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: #00C8F0;
    margin-bottom: 24px;
}

.hero-content h3 {
    font-size: 1.05rem;
    color: #7A94B0;
    max-width: 560px;
    margin: 0 auto 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-side-caption-left {
    position: absolute;
    left: 0;
    top: 38%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 16px;
    z-index: 3;
    pointer-events: none;
    padding-left: 6px;
}

.hero-side-caption-left span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .hero-content h1 {
        white-space: normal;
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    .h1-line1,
    .h1-line2 {
        white-space: normal;
    }

    .hero-side-caption {
        display: none;
    }

    .hero-center .hero-content {
        max-width: 100%;
    }
}

/* LinkedIn hero strip */
.li-hero-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(10, 102, 194, 0.15);
    border: 1px solid rgba(10, 102, 194, 0.4);
    border-radius: 40px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    text-decoration: none;
}

.li-hero-strip:hover {
    background: rgba(10, 102, 194, 0.28);
    border-color: rgba(10, 102, 194, 0.7);
}

.li-strip-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0A66C2;
    flex-shrink: 0;
}

.li-strip-name {
    font-weight: 700;
    font-size: 0.82rem;
    color: #F2F7FF;
    line-height: 1.2;
}

.li-strip-sub {
    font-size: 0.68rem;
    color: #7A94B0;
}

.li-strip-cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0A66C2;
    margin-left: 6px;
    white-space: nowrap;
}

.page-bg-img {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url('images/Maldives.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.04;
    pointer-events: none;
    filter: grayscale(60%) blur(2px);
}

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 14px;
}

.section-header p {
    color: #7A94B0;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
    padding-top: 60px;
}

.services-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .services-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #00C8F0;
    transition: width 0.35s ease;
}

.service-card:hover::after {
    width: 100%;
}

.maint-card-inline::after {
    background: #E8A020 !important;
}

.svc-img-wrap {
    position: relative;
    height: 130px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
}

.svc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(1.1);
    transition: transform 0.5s ease;
}

.service-card:hover .svc-img-wrap img {
    transform: scale(1.06);
}

.svc-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(5, 8, 13, 0.7), transparent);
}

.svc-type-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: #00C8F0;
    color: #05080D;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.svc-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    padding: 20px 22px 22px;
}

.svc-icon-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.svc-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin: 0;
    flex-shrink: 0;
}

.svc-icon-row h3 {
    font-size: 1.05rem;
    margin-bottom: 3px;
    line-height: 1.2;
}

.svc-icon-row .sub-title,
.service-card .sub-title {
    font-weight: 600;
    color: #00C8F0;
    font-size: 0.78rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.kw-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.kw-pill {
    font-size: 0.72rem;
    padding: 4px 9px;
    background: rgba(0, 200, 240, 0.12);
    border: 1px solid rgba(0, 200, 240, 0.25);
    border-radius: 14px;
    color: #00C8F0;
    font-family: 'Poppins', sans-serif;
}

.kw-pill-dim {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 200, 240, 0.18);
    color: #7A94B0;
}

.svc-body .tick-list {
    border-top: 1px solid rgba(0, 200, 240, 0.18);
    padding-top: 10px;
    margin-top: auto;
    font-size: 0.83rem;
}

.svc-body .tick-list li {
    display: flex;
    gap: 7px;
    margin-bottom: 5px;
    align-items: flex-start;
    color: #7A94B0;
}

.svc-body .tick-list .tick {
    color: #00C8F0;
    flex-shrink: 0;
}

.maint-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
    flex: 1;
}

.maint-2x2-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 160, 32, 0.2);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.maint-2x2-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.maint-2x2-item strong {
    font-size: 0.75rem;
    color: #E8A020;
    display: block;
    margin-bottom: 5px;
}

.maint-kw-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    justify-content: center;
}

.maint-kw-pills span {
    font-size: 0.62rem;
    padding: 2px 6px;
    background: rgba(232, 160, 32, 0.1);
    border: 1px solid rgba(232, 160, 32, 0.2);
    border-radius: 10px;
    color: #7A94B0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

.svc-label-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.svc-label-pill {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.svc-label-blue {
    background: rgba(0, 200, 240, 0.12);
    border: 1px solid rgba(0, 200, 240, 0.18);
    color: #00C8F0;
}

.svc-label-gold {
    background: rgba(232, 160, 32, 0.1);
    border: 1px solid rgba(232, 160, 32, 0.3);
    color: #E8A020;
}

.svc-label-divider {
    color: #7A94B0;
    font-size: 1.2rem;
}

.one-partner {
    text-align: center;
    margin-top: 52px;
}

.one-partner h3 {
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.one-partner p {
    color: #7A94B0;
    max-width: 780px;
    margin: 0 auto;
}

/* ============================================================
   DRAINSMART
   ============================================================ */
#drainsmart {
    background: #0B1220;
    border-top: 1px solid rgba(0, 200, 240, 0.18);
    border-bottom: 1px solid rgba(0, 200, 240, 0.18);
    position: relative;
    overflow: hidden;
}

.blueprint-bg {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(0, 200, 240, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 240, 0.6) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
    z-index: 0;
}

.ds-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ds-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}

.ds-text .lead {
    color: #7A94B0;
    margin-bottom: 20px;
}

.ds-text .body {
    margin-bottom: 32px;
}

.feature-box {
    background: #05080D;
    border: 1px solid rgba(0, 200, 240, 0.18);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 0 40px rgba(0, 200, 240, 0.04);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item .tick {
    color: #00C8F0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   PROJECT GALLERY
   ============================================================ */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
    filter: brightness(0.85) saturate(1.15);
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px 18px;
    background: linear-gradient(to top, rgba(5, 8, 13, 0.92), transparent);
    pointer-events: none;
}

.project-title-bar h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.project-title-bar .loc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #00C8F0;
}

/* ============================================================
   ACCOLADES
   ============================================================ */
#accolades {
    padding: 60px 0;
}

.accolades-marquee {
    overflow: hidden;
    padding: 32px 0;
}

.marquee-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    width: 220px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.logo-card:hover {
    border-color: #E8A020;
    transform: scale(1.04);
}

.logo-card img {
    max-height: 130px;
    max-width: 190px;
    object-fit: contain;
    filter: none;
}

.accolade-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.tag-pill {
    background: #0B1220;
    border: 1px solid rgba(0, 200, 240, 0.18);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 64px;
    align-items: center;
}

.founder-wrap {
    border-radius: 12px;
    outline: 3px solid #00C8F0;
    outline-offset: 10px;
    overflow: hidden;
}

.founder-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    filter: brightness(0.9) saturate(1.05);
}

.founder-name {
    margin-top: 24px;
}

.founder-name h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.founder-name p {
    font-size: 0.88rem;
    color: #7A94B0;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 14px;
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

/* ============================================================
   LINKEDIN / UPDATES
   ============================================================ */
#updates {
    background: #0B1220;
    border-top: 1px solid rgba(0, 200, 240, 0.18);
    border-bottom: 1px solid rgba(0, 200, 240, 0.18);
}

.li-follow-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(90deg, rgba(10, 102, 194, 0.12), transparent);
    border-left: 4px solid #0A66C2;
    border-radius: 12px;
    border: 1px solid rgba(10, 102, 194, 0.25);
    margin-top: 28px;
}

.li-follow-banner p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
    padding: 100px 0;
}

.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #0B1220;
    border: 1px solid rgba(0, 200, 240, 0.18);
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open {
    border-left: 3px solid #00C8F0;
}

.faq-q {
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 0.98rem;
    gap: 12px;
}

.faq-icon {
    color: #00C8F0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    padding: 0 24px;
    color: #7A94B0;
    font-size: 0.93rem;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 22px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-carousel {
    overflow: hidden;
    touch-action: pan-y;
    margin-top: 40px;
}

.testi-track {
    display: flex;
    gap: 24px;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card {
    width: 360px;
    flex-shrink: 0;
    padding: 32px;
    background: #0B1220;
    border: 1px solid rgba(0, 200, 240, 0.18);
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.quote-bg {
    position: absolute;
    top: 10px;
    left: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 88px;
    color: rgba(0, 200, 240, 0.12);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.testi-stars {
    color: #E8A020;
    font-size: 1.4rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    letter-spacing: 3px;
}

.testi-text {
    font-style: italic;
    font-weight: 300;
    flex: 1;
    position: relative;
    z-index: 1;
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.testi-name {
    font-weight: 700;
    font-size: 1rem;
    color: #00C8F0;
    margin-bottom: 4px;
}

.testi-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #7A94B0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0B1220;
    border: 1px solid rgba(0, 200, 240, 0.18);
    color: #00C8F0;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #00C8F0;
    color: #05080D;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.cinfo-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #0B1220;
    border: 1px solid rgba(0, 200, 240, 0.18);
    border-radius: 8px;
    font-size: 0.92rem;
}

.cinfo-card .icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: #05080D;
    border: 1px solid rgba(0, 200, 240, 0.18);
    border-radius: 6px;
    color: #F2F7FF;
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: #00C8F0;
    box-shadow: 0 0 0 2px rgba(0, 200, 240, 0.12);
}

.form-control option {
    background: #0B1220;
}

.form-success {
    display: none;
    text-align: center;
    padding: 28px;
    background: rgba(0, 255, 100, 0.08);
    border: 1px solid #00C864;
    border-radius: 12px;
    color: #00C864;
}

.form-success .check {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    border-top: 1px solid rgba(0, 200, 240, 0.18);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #7A94B0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00C8F0;
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    margin: 14px 0 20px;
    color: #7A94B0;
}

.footer-linkedin svg {
    width: 22px;
    height: 22px;
    fill: #7A94B0;
    transition: fill 0.3s ease;
}

.footer-linkedin:hover svg {
    fill: #00C8F0;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 200, 240, 0.18);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #7A94B0;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom span {
    font-family: 'Poppins', sans-serif;
}

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

/* Tablet (≤900px) */
@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .logo img {
        height: 40px;
    }

    .ds-layout,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    section {
        padding: 56px 0;
    }

    #services {
        padding-top: 36px;
    }

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

    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-header p {
        font-size: 0.93rem;
    }

    .hero-center {
        padding: 80px 20px 52px;
        min-height: 100svh;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(5, 8, 13, 0.75) 0%,
                rgba(5, 8, 13, 0.55) 50%,
                rgba(5, 8, 13, 0.90) 100%);
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 7.5vw, 2.6rem);
        line-height: 1.1;
    }

    .hero-content h3 {
        font-size: 0.88rem;
        max-width: 92%;
        margin-bottom: 28px;
    }

    .hero-badge {
        font-size: 0.68rem;
    }

    .hero-tagline {
        font-size: 0.72rem;
        letter-spacing: 3px;
    }

    .li-hero-strip {
        max-width: 92vw;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding: 9px 12px;
        text-align: center;
    }

    .li-strip-cta {
        margin-left: 0;
    }

    .services-grid-4 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .svc-img-wrap {
        height: 100px;
    }

    .svc-body {
        padding: 16px 18px 18px;
        gap: 10px;
    }

    .svc-label-bar {
        gap: 8px;
    }

    .svc-label-pill {
        font-size: 0.68rem;
        padding: 4px 10px;
    }

    .svc-type-tag {
        font-size: 0.65rem;
    }

    .kw-pill,
    .maint-kw-pills span {
        font-size: 0.68rem;
    }

    .maint-2x2 {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .maint-2x2-icon {
        font-size: 1.1rem;
    }

    .maint-2x2-item strong {
        font-size: 0.7rem;
    }

    .ds-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 14px;
    }

    .one-partner h3 {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .one-partner p {
        font-size: 0.88rem;
    }

    .founder-wrap {
        max-width: 200px;
        margin: 0 auto;
    }

    .founder-wrap img {
        aspect-ratio: 1/1;
    }

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

    .project-card {
        aspect-ratio: 16/9;
    }

    .project-title-bar h3 {
        font-size: 0.9rem;
    }

    .accolade-tags {
        gap: 7px;
    }

    .tag-pill {
        font-size: 0.72rem;
        padding: 4px 12px;
    }

    .testi-card {
        width: calc(88vw - 32px);
        padding: 24px 20px;
    }

    .quote-bg {
        font-size: 64px;
    }

    .testi-text {
        font-size: 0.87rem;
    }

    .faq-q {
        font-size: 0.9rem;
        padding: 18px 20px;
    }

    .faq-a {
        font-size: 0.87rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .li-follow-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .li-follow-banner p {
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    footer {
        padding: 56px 0 32px;
    }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .logo img {
        height: 32px;
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }

    .svc-img-wrap {
        height: 80px;
    }

    .svc-body {
        padding: 14px 16px 16px;
    }

    .maint-2x2-item {
        padding: 7px;
    }

    .maint-kw-pills span {
        font-size: 0.58rem;
    }

    .logo-card {
        width: 130px;
        height: 96px;
        padding: 8px;
    }

    .logo-card img {
        max-height: 70px;
        max-width: 110px;
    }

    .mobile-menu a {
        font-size: 1.2rem;
        gap: 20px;
    }

    .feature-item {
        font-size: 0.87rem;
        gap: 10px;
    }
}

/* ============================================================
   FAQ — TWO-COLUMN LAYOUT
   ============================================================ */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.faq-layout .faq-wrap {
    max-width: 100%;
    margin: 0;
}

.faq-model-wrap {
    position: sticky;
    top: 100px;
}

.faq-model-card {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

.faq-model-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #F2F7FF;
    padding: 20px 22px 14px;
    border-bottom: 1px solid rgba(0, 200, 240, 0.18);
    background: #111D2E;
}

.faq-model-img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    max-height: 400px;
    filter: brightness(0.95) saturate(1.05);
    transition: transform 0.5s ease;
}

.faq-model-card:hover .faq-model-img {
    transform: scale(1.03);
}

.faq-model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 16px 18px;
    background: #0B1220;
}

.faq-model-tags span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    color: #00C8F0;
    background: rgba(0, 200, 240, 0.12);
    border: 1px solid rgba(0, 200, 240, 0.18);
    border-radius: 20px;
    padding: 3px 10px;
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr 300px;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-model-wrap {
        position: static;
        order: -1;
    }

    .faq-model-img {
        max-height: 280px;
    }

    .faq-model-label {
        font-size: 0.95rem;
        padding: 14px 16px 10px;
    }
}