/* =====================================================
 @font-face — Glacial Indifference (local)
    ===================================================== */
@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =====================================================
 DESIGN TOKENS
    ===================================================== */
:root {
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-grey: #F2F2F2;
    --mid-grey: #E0E0E0;
    --text-dark: #0A0A0A;
    --text-mid: #333333;
    --text-soft: #666666;
    --text-faint: #999999;
    --blue: #02afef;
    --blue-dark: #0099d4;
    --blue-10: rgba(2, 175, 239, 0.08);
    --blue-20: rgba(2, 175, 239, 0.15);
    --blue-30: rgba(2, 175, 239, 0.25);
    --red: #E8001E;
    --red-soft: rgba(232, 0, 30, 0.12);
    --font: 'Glacial Indifference', 'Inter', sans-serif;
    --nav-h: 100px;
    --px: clamp(20px, 5vw, 80px);
    --r-sm: 4px;
    --r-md: 10px;
    --r-lg: 20px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t: 0.3s var(--ease);
}

/* =====================================================
 RESET & BASE
    ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

ul {
    list-style: none;
}

/* =====================================================
 LAYOUT
    ===================================================== */
.wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.section {
    padding: 120px 0;
}

.section-sm {
    padding: 80px 0;
}

/* =====================================================
 TYPOGRAPHY SCALE
    ===================================================== */
.t-label {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
}

.t-xl {
    font-family: var(--font);
    font-size: clamp(52px, 8.5vw, 130px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -3px;
    color: var(--text-dark);
}

.t-lg {
    font-family: var(--font);
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -2px;
    color: var(--text-dark);
}

.t-md {
    font-family: var(--font);
    font-size: clamp(26px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.t-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-soft);
}

/* =====================================================
 FADE ANIMATIONS
    ===================================================== */
.fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade.in {
    opacity: 1;
    transform: none;
}

.fade.d1 {
    transition-delay: .1s;
}

.fade.d2 {
    transition-delay: .2s;
}

.fade.d3 {
    transition-delay: .3s;
}

.fade.d4 {
    transition-delay: .4s;
}

.fade.d5 {
    transition-delay: .5s;
}

.fade.d6 {
    transition-delay: .6s;
}

/* =====================================================
 BUTTONS
    ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--t);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: transform var(--t);
    flex-shrink: 0;
}

/* Primary Blue Button */
.btn-primary {
    background: var(--blue);
    color: #fff;
    border: 2px solid var(--blue);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.45s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(2, 175, 239, 0.35);
    border-color: var(--blue-dark);
    background: var(--blue-dark);
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary>* {
    position: relative;
    z-index: 1;
}

.btn-primary .btn-arrow {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Ghost / Outline Button */
.btn-ghost {
    border: 1.5px solid var(--mid-grey);
    color: var(--text-dark);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-10);
    transform: translateY(-2px);
}

/* =====================================================
 NAVIGATION
    ===================================================== */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: background 0.35s var(--ease), backdrop-filter 0.35s, box-shadow 0.35s;
    background: transparent;
}

#nav.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    gap: 24px;
}

.nav-logo {
    position: absolute;
    left: var(--px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 84px;
    width: auto;
    transition: filter var(--t);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--t);
}

/* Red dot indicator instead of underline */
.nav-links a::after {
    content: '•';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: var(--red);
    opacity: 0;
    transition: opacity var(--t), transform var(--t);
    line-height: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    opacity: 1;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-links a.active {
    color: var(--text-dark);
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Social icons */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--mid-grey);
    color: var(--text-soft);
    transition: var(--t);
}

.nav-icon:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Hamburger */
.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
}

.ham span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--t);
}

.ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mob-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 32px var(--px) 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    z-index: 999;
    border-bottom: 1px solid var(--mid-grey);
}

.mob-menu.open {
    transform: none;
    opacity: 1;
}

.mob-menu a {
    font-family: var(--font);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--text-dark);
    transition: color var(--t);
}

.mob-menu a:hover {
    color: var(--blue);
}

/* =====================================================
 HERO — Editorial Magazine Cover
    ===================================================== */
#home {
    position: relative;
    min-height: 100vh;
    background: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Subtle grid texture */
.hero-texture {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* Founder image on right — large, bleeds to edge */
.hero-founder-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 52%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-founder-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
}

/* Blue graphic accent behind founder */
.hero-blue-accent {
    position: absolute;
    right: 0;
    top: 10%;
    width: 45%;
    height: 80%;
    background: linear-gradient(135deg, var(--blue) 0%, #0099d4 100%);
    opacity: 0.07;
    border-radius: 40% 0 0 40%;
    z-index: 0;
}

/* Text content — left side, overlapping the image with z-index */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 80px;
}

.hero-inner {
    max-width: 65%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-red 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-red {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(232, 0, 30, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(232, 0, 30, 0);
    }
}

.hero-eyebrow-txt {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-soft);
}

.hero-headline {
    font-family: var(--font);
    font-size: clamp(36px, 5.8vw, 88px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text-dark);
    margin-bottom: 36px;
}

.hero-headline .accent-word {
    color: var(--blue);
    font-style: italic;
    display: inline;
}

.hero-sub {
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 420px;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: var(--px);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-scroll-line {
    width: 48px;
    height: 1px;
    background: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    background: var(--blue);
    animation: slideRight 1.8s ease-in-out infinite;
}

@keyframes slideRight {
    to {
        left: 100%;
    }
}

.hero-scroll-txt {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* Issue/Year badge on bottom right */
.hero-badge {
    position: absolute;
    bottom: 36px;
    right: var(--px);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.hero-badge-year {
    font-family: var(--font);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: rgba(0, 0, 0, 0.07);
    letter-spacing: -2px;
}

/* =====================================================
 STATS SECTION — Full-width dark/dramatic
    ===================================================== */
#stats {
    background: #0A0A0A;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.stat-cell {
    padding: 72px 32px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}

.stat-cell.in::before {
    transform: scaleX(1);
}

.stat-n {
    font-family: var(--font);
    font-size: clamp(48px, 5.5vw, 80px);
    font-weight: 400;
    letter-spacing: -3px;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
}

.stat-n .acc {
    color: var(--blue);
    font-size: 0.55em;
    margin-bottom: 6px;
}

.stat-l {
    font-family: var(--font);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 12px;
}

/* =====================================================
 ABOUT SECTION
    ===================================================== */
#about {
    background: var(--white);
    padding: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 100px;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--r-md);
    filter: grayscale(20%);
}

.about-badge {
    position: absolute;
    bottom: 32px;
    left: -20px;
    background: var(--blue);
    color: #fff;
    padding: 18px 26px;
    border-radius: var(--r-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 16px 48px rgba(2, 175, 239, 0.35);
}

.about-badge-n {
    font-family: var(--font);
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
}

.about-badge-l {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 24px;
}

.about-name {
    font-family: var(--font);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 0.96;
    color: var(--text-dark);
}

.about-role {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-body p {
    font-size: 17px;
    line-height: 1.82;
    color: var(--text-soft);
}

.about-body p+p {
    margin-top: 18px;
}

/* Drop cap */
.about-body p:first-child::first-letter {
    float: left;
    font-family: var(--font);
    font-size: 4.5em;
    font-weight: 400;
    line-height: 0.75;
    margin-right: 10px;
    margin-top: 6px;
    color: var(--blue);
}

.about-body p strong {
    color: var(--text-dark);
    font-weight: 400;
}

/* Journey sub-section */
.journey {
    background: var(--off-white);
    border-top: 1px solid var(--mid-grey);
    border-bottom: 1px solid var(--mid-grey);
    padding: 100px 0;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    align-items: start;
}

.journey-sticky {
    position: sticky;
    top: calc(var(--nav-h) + 40px);
}

.journey-body p {
    font-size: 17px;
    line-height: 1.82;
    color: var(--text-soft);
    margin-bottom: 22px;
}

.journey-body p strong {
    color: var(--text-dark);
    font-weight: 400;
}

.journey-body p em {
    color: var(--blue);
    font-style: italic;
}

.journey-body p:first-child::first-letter {
    float: left;
    font-family: var(--font);
    font-size: 4.5em;
    font-weight: 400;
    line-height: 0.75;
    margin-right: 10px;
    margin-top: 6px;
    color: var(--blue);
}

/* Services ATM Card Stack Redesign */
.services {
    border-top: 1px solid var(--mid-grey);
    padding: 100px 0;
    overflow: hidden;
}

.cards-stack-wrap {
    width: 100%;
    padding: 30px 0 0;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.cards-stack {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    width: 100%;
    max-width: 1200px;
}

.atm-card {
    position: relative;
    width: 250px;
    height: 360px;
    background: #fbfbfb url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='30' viewBox='0 0 80 30'><path d='M 0 15 Q 20 5, 40 15 T 80 15' fill='none' stroke='%23f2f2f2' stroke-width='1.2'/><path d='M 0 25 Q 20 15, 40 25 T 80 25' fill='none' stroke='%23f2f2f2' stroke-width='1.2'/><path d='M 0 5 Q 20 -5, 40 5 T 80 5' fill='none' stroke='%23f2f2f2' stroke-width='1.2'/></svg>") repeat;
    border: 1.5px solid var(--mid-grey);
    border-radius: var(--r-md);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: -14px 0 35px rgba(0, 0, 0, 0.08), 0 8px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.12s cubic-bezier(0.25, 1, 0.5, 1),
        margin-left 0.12s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.12s var(--ease),
        border-color 0.12s var(--ease);
    cursor: pointer;
    flex-shrink: 0;
    overflow: hidden;
}

.atm-card+.atm-card {
    margin-left: -100px;
}

/* Smooth gradient overlay using pseudo-element to synchronize with movement */
.atm-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(270deg, #e0f2fe, #fef2f2, #eef2ff, #f0fdf4);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.12s var(--ease);
    z-index: 1;
    pointer-events: none;
}

.atm-card:hover::after {
    opacity: 1;
    animation: card-glow-motion 3.5s ease infinite;
}

/* Elegant google material icons top-left */
.card-logo {
    position: absolute;
    top: 28px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-logo .material-icons {
    font-size: 32px;
    color: var(--text-soft);
    opacity: 0.65;
    transition: color var(--t), transform var(--t);
}

/* Thin vertical service title in resting stack state */
.card-vertical-title {
    position: absolute;
    bottom: 40px;
    left: 34px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-soft);
    opacity: 0.65;
    transition: opacity 0.1s var(--ease), transform 0.12s var(--ease);
    white-space: nowrap;
    z-index: 2;
}

.card-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.12s var(--ease), transform 0.12s var(--ease), color 0.12s var(--ease);
}

/* HOVER ANIMATIONS */
.atm-card:hover {
    transform: translateY(-24px) rotate(2deg) scale(1.05);
    box-shadow: -15px 20px 48px rgba(2, 175, 239, 0.15), 0 0 0 2px var(--blue);
    border-color: var(--blue);
    z-index: 10;
}

.atm-card:hover .card-logo .material-icons {
    color: var(--blue);
    opacity: 0.95;
    transform: scale(1.1);
}

.atm-card:hover .card-vertical-title {
    opacity: 0;
    transform: rotate(180deg) translateY(-10px);
}

.atm-card:hover .card-title {
    color: var(--blue);
    opacity: 1;
    transform: translateY(0);
}

.atm-card:hover+.atm-card {
    margin-left: -10px;
}

/* Intro fanning deck visual preview animation (only on desktop) */
@media (min-width: 901px) {
    .cards-stack.fan-out .atm-card+.atm-card {
        animation: deck-fan-preview 2.2s cubic-bezier(0.25, 1, 0.5, 1);
    }
}

@keyframes deck-fan-preview {
    0% {
        margin-left: -100px;
    }

    35% {
        margin-left: -70px;
    }

    65% {
        margin-left: -70px;
    }

    100% {
        margin-left: -100px;
    }
}

@keyframes card-glow-motion {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive ATM stack on tablet & mobile */
/* Responsive ATM stack on tablet & mobile - Premium Vertical Sticky Overlapping Deck */
@media (max-width: 900px) {
    .services {
        overflow: visible !important;
        padding: 50px 0 !important;
    }

    .cards-stack-wrap {
        overflow: visible !important;
        width: 100% !important;
        margin-left: 0 !important;
        padding: 15px 0 0 !important;
        display: block !important;
    }

    .cards-stack {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        padding: 0 16px !important;
        position: relative !important;
        gap: 16px !important;
        /* Premium clean spacing between cards */
    }

    .atm-card {
        position: relative !important;
        top: auto !important;
        z-index: 1 !important;
        width: 100% !important;
        height: auto !important;
        min-height: 84px !important;
        margin-left: 0 !important;
        margin-bottom: 0 !important;
        /* Managed by grid gap above */
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 18px 24px !important;
        border-radius: 16px !important;
        background: #ffffff url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='30' viewBox='0 0 80 30'><path d='M 0 15 Q 20 5, 40 15 T 80 15' fill='none' stroke='%23f6f6f6' stroke-width='1.2'/></svg>") repeat !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03), 0 0 0 1.5px rgba(0, 0, 0, 0.04) !important;
        opacity: 0;
        transform: translateY(24px) !important;
        transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease) !important;
    }

    .atm-card.in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Shimmering holographic overlay always-active on mobile */
    .atm-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(135deg, rgba(224, 242, 254, 0.45), rgba(254, 242, 242, 0.45), rgba(238, 242, 255, 0.45), rgba(240, 253, 244, 0.45)) !important;
        background-size: 300% 300% !important;
        opacity: 0.85 !important;
        animation: card-glow-motion 6s ease infinite !important;
        z-index: 1 !important;
        pointer-events: none !important;
        transition: opacity 0.3s var(--ease) !important;
    }

    .atm-card .card-logo {
        position: static !important;
        margin-right: 20px !important;
        z-index: 2 !important;
    }

    .atm-card .card-logo .material-icons {
        font-size: 34px !important;
        color: var(--blue) !important;
        opacity: 0.95 !important;
        transform: none !important;
    }

    .atm-card .card-vertical-title {
        display: none !important;
    }

    .atm-card .card-info {
        position: relative !important;
        z-index: 2 !important;
        margin-top: 0 !important;
        text-align: left !important;
    }

    .atm-card .card-title {
        opacity: 1 !important;
        transform: none !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        color: var(--text-dark) !important;
        letter-spacing: -0.3px !important;
    }

    /* Subtle interactive stick hover/tap visual highlight */
    .atm-card:hover,
    .atm-card:active {
        transform: scale(calc(1 - (12 - var(--card-index)) * 0.005)) translateY(-4px) !important;
        box-shadow: 0 12px 30px rgba(2, 175, 239, 0.12), 0 0 0 2px var(--blue) !important;
        border-color: var(--blue) !important;
    }
}

/* =====================================================
 CREDENTIALS — Recognised By / Featured In
    ===================================================== */
#credentials {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--mid-grey);
}

.cred-columns {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 48px;
}

.cred-col-title {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 24px;
    border-bottom: 1.5px solid var(--mid-grey);
    padding-bottom: 12px;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--mid-grey);
}

.cred-grid.featured {
    grid-template-columns: repeat(6, 1fr);
}

.cred-logo-item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    transition: var(--t);
    cursor: default;
}

.cred-logo-item:hover {
    background: var(--off-white);
}

.cred-logo-item img {
    max-width: 75%;
    max-height: 38px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform var(--t);
}

.cred-logo-item img[src*="unnamed"],
.cred-logo-item img[src*="adgully"],
.cred-logo-item img[src*="MediaNews4U"],
.cred-logo-item img[src*="Economic_Times"] {
    max-height: 58px;
    max-width: 90%;
}

.cred-logo-item img[src*="Branding-in-Asia"] {
    max-height: 58px;
    max-width: 90%;
    transform: scale(1.6);
}

.cred-logo-item:hover img {
    transform: scale(1.06);
}

.cred-logo-item:hover img[src*="Branding-in-Asia"] {
    transform: scale(1.7);
}

/* =====================================================
 CLIENTS / CLIENTELE CAROUSEL
    ===================================================== */
.clients-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 0 0 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

/* Elegant gradients on the sides to mask transition */
.clients-slider-container::before,
.clients-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 5;
    pointer-events: none;
}

.clients-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-slider-container::after {
    right: 0;
    background: linear-gradient(270deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    min-width: 100%;
}

.logo-item {
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--white);
    border: none;
    border-radius: var(--r-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform var(--t), box-shadow var(--t);
    cursor: default;
}

.logo-item:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.logo-item img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    filter: none;
    opacity: 0.95;
    transition: opacity var(--t), transform var(--t);
}

.logo-item:hover img {
    opacity: 1;
}

/* Infinite loop animations */
.marquee-left .logo-marquee-track {
    animation: scroll-left 75s linear infinite;
}

.marquee-right .logo-marquee-track {
    animation: scroll-right 75s linear infinite;
}

/* Pause animation on hover for interactive feel */
.logo-marquee-row:hover .logo-marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* =====================================================
 PORTFOLIO
    ===================================================== */
#portfolio {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--mid-grey);
}

.port-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 20px;
    flex-wrap: wrap;
}

/* Asymmetric grid */
.port-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.port-card {
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--mid-grey);
}

.port-card.wide {
    grid-column: 1;
    grid-row: 1 / 3;
}

.port-card-img-wrap {
    height: 100%;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.port-card.wide .port-card-img-wrap {
    min-height: 520px;
}

.pcimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.port-card:hover .pcimg {
    transform: scale(1.05);
}

.port-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.7) 70%, rgba(10, 10, 10, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    transition: var(--t);
}

.port-cat {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.port-title {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: #fff;
    margin-bottom: 6px;
}

.port-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease);
    opacity: 0;
}

.port-card:hover .port-desc {
    max-height: 80px;
    opacity: 1;
}

.port-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.3s, transform 0.3s;
}

.port-card:hover .port-arrow {
    opacity: 1;
    transform: scale(1);
}

.port-arrow svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Placeholder gradient fills */
.pg1 {
    background: linear-gradient(140deg, #071729 0%, #0a2540 60%, #0d3357 100%);
}

.pg2 {
    background: linear-gradient(140deg, #0a0d1a 0%, #12183a 60%, #1a2454 100%);
}

.pg3 {
    background: linear-gradient(140deg, #071a07 0%, #0d2e0d 60%, #103810 100%);
}

.pg4 {
    background: linear-gradient(140deg, #1a0707 0%, #2e0d0d 60%, #3d1010 100%);
}

.pg5 {
    background: linear-gradient(140deg, #14071a 0%, #220d2e 60%, #2e103d 100%);
}

.pg6 {
    background: linear-gradient(140deg, #071a1a 0%, #0d2e2e 60%, #104040 100%);
}

.ph-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: inherit;
}

.ph-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ph-txt {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

/* PDF Download button area */
.port-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 48px;
    gap: 12px;
}

.port-note {
    font-size: 13px;
    color: var(--text-faint);
    margin-top: 0;
    max-width: 480px;
    line-height: 1.5;
}

.ig-promo-card {
    aspect-ratio: 9 / 16;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.4s var(--ease);
}

.ig-promo-card:hover {
    transform: scale(1.03);
    z-index: 2;
}

.ig-promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.ig-promo-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    box-sizing: border-box;
}

.ig-promo-logo {
    width: 44px;
    height: 44px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.ig-promo-tag {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    max-width: 220px;
}

.btn-ig-custom {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 12px 24px !important;
}

.btn-ig-custom:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000 !important;
    transform: translateY(-2px);
}

/* =====================================================
 CLIENTS / CLIENTELE SECTION
    ===================================================== */
#clients {
    background: var(--white);
    padding: 100px 0 50px;
    border-top: 1px solid var(--mid-grey);
}

.clients-head {
    margin-bottom: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clients-tagline {
    font-family: var(--font);
    font-size: 16.5px;
    color: var(--text-soft);
    max-width: 600px;
    margin: 14px auto 0;
    line-height: 1.6;
    font-weight: 400;
}

/* =====================================================
 REELS GRID — Instagram-style
    ===================================================== */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

/* Instagram Reels Profile Header */
.reels-insta-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0 28px;
    border-bottom: 1px solid var(--mid-grey);
    margin-bottom: 3px;
}

.reels-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
    overflow: hidden;
    flex-shrink: 0;
}

.reels-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reels-profile-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.reels-handle {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reels-verified {
    width: 18px;
    height: 18px;
    display: inline-flex;
}

.reels-stats {
    display: flex;
    gap: 28px;
}

.reels-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.reels-stat-n {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.reels-stat-l {
    font-size: 12px;
    color: var(--text-soft);
}

.reels-tab-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--mid-grey);
    margin-bottom: 3px;
}

.reels-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 32px;
    border-top: 2px solid transparent;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-faint);
    cursor: pointer;
    transition: var(--t);
}

.reels-tab.active {
    border-top-color: var(--text-dark);
    color: var(--text-dark);
}

.reels-tab svg {
    width: 16px;
    height: 16px;
}

/* Individual reel cell */
.ig-item {
    aspect-ratio: 9 / 16;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #0a0a0a;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.ig-item:hover {
    transform: scale(1.03);
    z-index: 5;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.ig-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease);
}

.ig-item:hover video {
    transform: scale(1.05);
}

/* Reel overlay: play icon + caption */
.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 65%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.ig-item:hover .reel-overlay {
    opacity: 1;
}

.reel-play-icon {
    display: none;
}

.reel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 12px 12px;
    font-size: 13.5px;
    font-weight: 700;
    font-family: var(--font);
    color: #fff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 65%, transparent 100%);
    z-index: 3;
}

/* Reel reel icon top-right */
.reel-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.reel-badge svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

/* Active (auto-playing) reel highlight */
.ig-item.reel-active {
    box-shadow: 0 0 0 3px var(--blue);
    z-index: 2;
}

/* Reel Lightbox / Modal */
#reels-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}

#reels-modal.open {
    opacity: 1;
    pointer-events: all;
}

.reels-modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reels-modal-inner {
    position: relative;
    width: 100%;
    max-width: 380px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Modal top bar */
.reels-modal-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.reels-modal-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reels-modal-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.reels-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reels-modal-name {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.reels-modal-close {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t);
}

.reels-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.reels-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

#reels-modal-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Modal bottom caption */
.reels-modal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    font-family: var(--font);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Modal prev/next */
.reels-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t);
}

.reels-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.reels-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#reels-prev {
    left: -56px;
}

#reels-next {
    right: -56px;
}

/* =====================================================
 CONTACT
    ===================================================== */
#contact {
    background: var(--white);
    padding: 50px 0 100px;
    border-top: 1px solid var(--mid-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

/* Map */
.contact-map {
    width: 100%;
    height: 280px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1.5px solid var(--mid-grey);
    box-shadow: 0 4px 24px rgba(2, 175, 239, 0.1);
    margin-top: 32px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Info list — Redesigned to look like an elegant details list, not form fields */
.c-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 32px 0;
}

.c-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border: none;
    border-bottom: 1.5px solid var(--mid-grey);
    background: transparent;
    transition: var(--t);
}

.c-info-item:last-child {
    border-bottom: none;
}

.c-info-item:hover {
    background: transparent;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(2, 175, 239, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.c-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.c-info-item:hover .c-icon {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.06);
}

.c-lbl {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 5px;
}

.c-val {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

.c-val a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t);
}

.c-info-item:hover .c-val a {
    color: var(--blue);
}

/* Social links — Changed red hover to brand blue */
.c-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.c-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--mid-grey);
    color: var(--text-soft);
    transition: var(--t);
}

.c-social a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.c-social svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Contact Form Card — Redesigned as a single cohesive card */
.contact-card-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1.5px solid var(--mid-grey);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.02), 0 4px 16px rgba(2, 175, 239, 0.01);
}

.c-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.c-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
}

.c-form-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.c-form-right {
    display: flex;
}

.f-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.f-label {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.f-input,
.f-ta {
    background: var(--white);
    border: 1.5px solid var(--mid-grey);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--t), box-shadow var(--t);
    width: 100%;
}

.f-input:focus,
.f-ta:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(2, 175, 239, 0.1);
}

.f-input::placeholder,
.f-ta::placeholder {
    color: var(--text-faint);
}

.f-ta {
    resize: none;
    flex: 1;
    min-height: 240px;
}

.c-form-submit {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.c-form-submit .btn {
    padding: 16px 48px;
    font-size: 15px;
}

/* Button States for Contact Form Feedback */
.btn.sending {
    position: relative;
    background: #0099d4 !important;
    /* Darker blue */
    border-color: #0099d4 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.sending::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background: var(--blue);
    z-index: 0;
    animation: btnProgress 2s ease-in-out forwards;
}

.btn.sent {
    background: #2ec4b6 !important;
    /* Success Teal/Green */
    border-color: #2ec4b6 !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(46, 196, 182, 0.25) !important;
    transform: none !important;
    cursor: default;
    pointer-events: none;
}

.btn.error {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(232, 0, 30, 0.25) !important;
    transform: none !important;
}

.btn-tick {
    display: none;
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--t);
    flex-shrink: 0;
}

.btn.sent .btn-tick {
    display: inline-block;
    animation: tickScale 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.btn.sending .btn-arrow,
.btn.sent .btn-arrow,
.btn.error .btn-arrow {
    display: none;
}

@keyframes btnProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 90%;
    }
}

@keyframes tickScale {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* =====================================================
   HIDE reCAPTCHA v3 FLOATING BADGE
   (Allowed per Google ToS when disclosure text is shown near the form)
===================================================== */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* reCAPTCHA disclosure text below form */
.recaptcha-notice {
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-faint);
    text-align: center;
    line-height: 1.5;
}

.recaptcha-notice a {
    color: var(--text-soft);
    text-decoration: underline;
}

.recaptcha-notice a:hover {
    color: var(--blue);
}

@media (max-width: 800px) {
    .contact-card-wrap {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .c-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .f-ta {
        min-height: 180px;
    }
}

/* =====================================================
 PREMIUM THICKER FOOTER
    ===================================================== */
footer {
    background: #fbfbfc;
    /* Soft premium off-white, extremely easy on the eyes */
    padding: 0 0 50px;
    /* 0px top, 50px bottom */
    color: var(--text-dark);
    border-top: none;
}

.foot-sep {
    display: flex;
    width: 100%;
    height: 3px;
    /* Sleek visual weight */
    margin-bottom: 100px;
    /* Exactly 100px after the separator */
    align-items: center;
}

.foot-sep-blue {
    width: 90%;
    height: 100%;
    background: var(--blue);
    border-radius: 2px;
}

.foot-sep-gap {
    width: 12px;
    /* Fine-tuned elegant micro-gap */
}

.foot-sep-red {
    flex: 1;
    height: 100%;
    background: var(--red);
    border-radius: 2px;
}

.foot-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Cleared generic flex gap to manage explicit margins */
}

.foot-main {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: start;
}

.foot-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.foot-logo-wrap {
    display: flex;
    align-items: center;
}

.foot-logo-img {
    height: 52px;
    opacity: 1;
    object-fit: contain;
    width: fit-content;
}

.foot-mission {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 380px;
}

.foot-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.foot-info-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.foot-info-title {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-soft);
    /* Softer gray for a luxurious look */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.foot-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.foot-detail-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-grey);
    /* Premium light gray resting bubble */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-soft);
    /* Subtle dark gray vector resting state */
    margin-top: 0;
    /* Centered perfectly */
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.foot-detail-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.foot-detail-item:hover .foot-detail-icon {
    background: var(--blue);
    /* Turns brand blue on hover */
    color: var(--white);
    /* Icon turns pure white */
    transform: scale(1.08);
}

.foot-info-val {
    font-family: var(--font);
    font-size: 14.5px;
    color: var(--text-dark);
    /* Solid black resting state for high readability */
    line-height: 1.6;
    font-weight: 400;
    transition: color var(--t);
    /* Smooth transition for hover color highlight */
}

.foot-link {
    color: var(--text-dark);
    /* Solid black resting links */
    text-decoration: none;
    transition: color var(--t);
}

.foot-detail-item:hover .foot-info-val,
.foot-detail-item:hover .foot-link {
    color: var(--blue);
    /* Both normal text and link text turn brand blue on hover */
}

.foot-map-wrap {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--mid-grey);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.foot-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(20%) opacity(0.9);
    transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}

.foot-map-wrap:hover iframe {
    filter: none;
    opacity: 1;
}

.foot-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
    margin-top: 100px;
    /* Exactly 100px spacing before copyright */
    border-top: 1px solid var(--mid-grey);
    flex-wrap: wrap;
    gap: 24px;
}

.foot-copy {
    font-family: var(--font);
    font-size: 13.5px;
    color: var(--text-faint);
}

.foot-soc-list {
    display: flex;
    gap: 12px;
}

.foot-soc-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.4);
    transition: var(--t);
}

.foot-soc-list a:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(255, 255, 255, 0.03);
    transform: scale(1.06);
}

.foot-soc-list svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.foot-inquiry-socials {
    margin-top: 20px;
}

@media (max-width: 600px) {
    .foot-inquiry-socials {
        justify-content: center;
    }
}

@media (max-width: 1100px) {
    .foot-main {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .foot-mission {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .foot-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 60px 0 30px;
    }

    .foot-info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .foot-detail-item {
        justify-content: center;
    }

    .foot-info-col {
        align-items: center;
        text-align: center;
    }

    .foot-bottom {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
}

/* Back to top */
#btt {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--t), transform var(--t), background var(--t);
    z-index: 900;
    box-shadow: 0 6px 24px rgba(2, 175, 239, 0.35);
}

#btt.vis {
    opacity: 1;
    transform: none;
}

#btt:hover {
    background: var(--blue-dark);
}

#btt svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =====================================================
 RESPONSIVE
    ===================================================== */
@media (max-width: 1100px) {

    .about-grid,
    .journey-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-badge {
        left: 20px;
    }

    .about-img-wrap img {
        height: 460px;
    }

    .journey-sticky {
        position: static;
    }

    .port-grid {
        grid-template-columns: 1fr 1fr;
    }

    .port-card.wide {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .port-card.wide .port-card-img-wrap {
        min-height: 340px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cell:nth-child(2) {
        border-right: none;
    }

    .stat-cell:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .stat-cell {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .stat-cell:nth-child(3),
    .stat-cell:nth-child(4) {
        border-bottom: none;
    }

    .hero-founder-wrap {
        width: 50%;
    }

    .hero-inner {
        max-width: 68%;
    }

    .cred-columns {
        gap: 40px;
    }
}

@media (max-width: 800px) {

    .nav-links,
    .nav-r {
        display: none;
    }

    .ham {
        display: flex;
        position: absolute;
        right: var(--px);
        top: 50%;
        transform: translateY(-50%);
    }

    .port-grid {
        grid-template-columns: 1fr;
    }

    .port-card.wide {
        grid-column: 1;
        grid-row: auto;
    }

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fix caption overflow on narrow mobile cards */
    .ig-item {
        isolation: isolate;
        contain: layout paint;
        clip-path: inset(0);
        -webkit-clip-path: inset(0);
    }

    /* Hide captions on mobile — cards are too small to show text cleanly */
    .reel-caption {
        display: none;
    }

    .port-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* ── Mobile Hero: Full-bleed image, text overlaid bottom-left ── */
    #home {
        display: block !important;
        min-height: 100svh !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* Image covers the entire hero section */
    .hero-founder-wrap {
        position: absolute !important;
        inset: 0 !important;
        right: auto !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 1 !important;
        z-index: 1 !important;
        overflow: visible !important;
    }

    .hero-founder-wrap img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: top center !important;
        filter: grayscale(100%) !important;
        z-index: 1 !important;
    }

    /* Dark gradient overlay — transparent top → dark bottom (for text legibility) */
    .hero-founder-wrap::after {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.82) 0%,
                rgba(0, 0, 0, 0.45) 35%,
                rgba(0, 0, 0, 0.05) 65%,
                transparent 100%) !important;
        z-index: 2 !important;
        pointer-events: none !important;
    }

    /* Blue accent — hide on mobile */
    .hero-blue-accent {
        display: none !important;
    }

    /* Text sits on top, pinned to bottom-left */
    .hero-content {
        position: absolute !important;
        inset: 0 !important;
        display: flex !important;
        align-items: flex-end !important;
        padding-top: 0 !important;
        padding-bottom: 80px !important;
        z-index: 5 !important;
    }

    .hero-inner {
        max-width: 100% !important;
    }

    .hero-eyebrow {
        margin-bottom: 14px !important;
    }

    /* White eyebrow text on dark image */
    .hero-eyebrow-txt {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .hero-pulse {
        background: #fff !important;
    }

    /* Large white headline */
    .hero-headline {
        font-size: clamp(36px, 10.5vw, 56px) !important;
        line-height: 1.06 !important;
        letter-spacing: -1.5px !important;
        margin-bottom: 14px !important;
        color: #ffffff !important;
    }

    .hero-headline .accent-word {
        color: var(--blue) !important;
    }

    /* White sub text */
    .hero-sub {
        font-size: 16px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin-bottom: 28px !important;
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .hero-actions .btn {
        padding: 10px 18px !important;
        font-size: 13px !important;
    }

    /* Scroll indicator — white on dark */
    .hero-scroll {
        bottom: 24px !important;
    }

    .hero-scroll-line {
        background: rgba(255, 255, 255, 0.4) !important;
    }

    .hero-scroll-txt {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    /* About Section Mobile Spacing & Layout Fixes */
    #about {
        padding: 0 !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        /* Resolves huge gap under portrait in Screenshot 1 */
        padding-bottom: 50px !important;
    }

    .about-img-wrap img {
        height: 320px !important;
        /* Clean, compact height on mobile */
        border-radius: 16px !important;
    }

    .about-badge {
        padding: 12px 20px !important;
        bottom: 20px !important;
        left: 16px !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 30px rgba(2, 175, 239, 0.2) !important;
    }

    .about-badge-n {
        font-size: 32px !important;
    }

    .about-badge-l {
        font-size: 11px !important;
    }

    .about-text {
        padding-top: 0 !important;
        gap: 14px !important;
    }

    .about-name {
        font-size: 32px !important;
        margin-bottom: 4px !important;
    }

    .about-role {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .about-body p {
        font-size: 15px !important;
        line-height: 1.62 !important;
    }

    .about-body p+p {
        margin-top: 12px !important;
    }

    /* Journey Section Mobile Spacing & Layout Fixes */
    .journey {
        padding: 50px 0 !important;
        /* Resolves giant white space in Screenshot 2 & 3 */
    }

    .journey-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .journey-sticky {
        position: static !important;
        margin-bottom: 0 !important;
    }

    .journey-sticky h3 {
        font-size: 24px !important;
        line-height: 1.22 !important;
        margin-top: 8px !important;
        margin-bottom: 16px !important;
    }

    .journey-body p {
        font-size: 15px !important;
        line-height: 1.62 !important;
        margin-bottom: 16px !important;
    }

    .journey-body p:last-child {
        margin-bottom: 0 !important;
    }

    /* Credentials Section Mobile Grid & Visibility Fixes */
    #credentials {
        padding: 50px 0 !important;
    }

    #portfolio {
        padding: 50px 0 !important;
    }

    #clients {
        padding: 50px 0 25px !important;
    }

    .clients-slider-container {
        padding: 0 0 25px !important;
    }

    #contact {
        padding: 25px 0 50px !important;
    }

    footer {
        padding: 0 0 50px !important;
        /* 0px top, 50px bottom on mobile */
    }

    .foot-sep {
        margin-bottom: 50px !important;
        /* Exactly 50px after separator on mobile */
    }

    .foot-bottom {
        margin-top: 50px !important;
        /* Exactly 50px before copyright on mobile */
        padding-top: 24px !important;
    }

    .cred-columns {
        display: flex !important;
        flex-direction: column !important;
        gap: 36px !important;
        /* Proper spacing between grids */
        margin-top: 28px !important;
    }

    .cred-column {
        opacity: 1 !important;
        /* Force visible on mobile to prevent transition delay bugs */
        transform: none !important;
    }

    .cred-col-title {
        font-size: 16px !important;
        margin-bottom: 16px !important;
        padding-bottom: 8px !important;
        color: var(--text-dark) !important;
    }

    .cred-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        /* Clean 2-column grid */
        gap: 12px !important;
        background: transparent !important;
        width: 100% !important;
    }

    .cred-logo-item {
        height: 72px !important;
        /* Compact logo cards on mobile */
        padding: 12px !important;
        background: var(--white) !important;
        border: 1px solid var(--mid-grey) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
        display: flex !important;
        /* Force display since inline error handler could hide them */
    }

    .cred-logo-item img {
        max-height: 38px !important;
        /* Clean proportion */
        object-fit: contain !important;
    }

    .c-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .hero-actions {
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .foot-inner {
        flex-direction: column;
        text-align: center;
    }

    .c-info-list {
        margin: 20px 0;
    }

    .cred-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        background: transparent !important;
        gap: 8px !important;
    }

    .cred-grid.featured {
        grid-template-columns: repeat(2, 1fr) !important;
        background: transparent !important;
        gap: 8px !important;
    }

    .cred-grid .cred-logo-item {
        background: var(--white) !important;
        border: 1px solid var(--mid-grey) !important;
        border-radius: 8px !important;
    }

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1.t-xl,
    .t-xl {
        font-size: clamp(48px, 12vw, 72px);
        letter-spacing: -2px;
    }

    p.t-body {
        font-size: 1rem;
    }
}

/* =====================================================
   REELS RESPONSIVE
===================================================== */
@media (max-width: 640px) {

    #reels-prev,
    #reels-next {
        display: none;
    }

    .reels-modal-wrapper {
        max-width: 100%;
    }

    .reels-modal-inner {
        max-width: 100%;
        border-radius: 0;
        height: 100dvh;
        max-height: 100dvh;
    }

    #reels-modal-video {
        aspect-ratio: auto;
        height: 100dvh;
        object-fit: cover;
    }

    .reels-insta-header {
        gap: 16px;
    }

    .reels-profile-avatar {
        width: 60px;
        height: 60px;
    }

    .reels-stats {
        gap: 16px;
    }
}
