@import url('./variables.css');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* -------------------------------------------------------------
   UTILITIES & TYPOGRAPHY HELPERS
------------------------------------------------------------- */
.text-orange {
    color: var(--color-primary) !important;
}

.text-orange-italic {
    color: var(--color-primary) !important;
    font-style: italic;
}

.text-green {
    color: #10B981 !important;
}

.text-muted {
    color: var(--color-text-muted) !important;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.container-fluid {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.container-narrow {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section {
    padding: 5.5rem 0;
    position: relative;
    width: 100%;
}

.section-sm {
    padding: 3.5rem 0;
}

.section-lg {
    padding: 7rem 0;
}

.section-hero {
    padding: 4.5rem 0 5rem 0;
}

.section-eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-primary);
    margin-bottom: 0.85rem;
}

.section-title-large {
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

/* -------------------------------------------------------------
   BUTTONS - STANDARDIZED SIZES, PADDING & VARIANTS
------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    border: 1.5px solid transparent;
    padding: 0.65rem 1.5rem;
    font-size: 0.9375rem;
    min-height: 44px;
    user-select: none;
    -webkit-user-select: none;
    transition: all var(--transition-fast);
}

.btn svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.btn:active {
    transform: translateY(0) scale(0.98) !important;
}

/* Button Sizes & Padding */
.btn-xs {
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    min-height: 30px;
    gap: 0.3rem;
}

.btn-sm {
    padding: 0.45rem 1.15rem;
    font-size: 0.8125rem;
    min-height: 36px;
    gap: 0.35rem;
}

.btn-md {
    padding: 0.65rem 1.5rem;
    font-size: 0.9375rem;
    min-height: 44px;
    gap: 0.5rem;
}

.btn-lg {
    padding: 0.85rem 1.95rem;
    font-size: 1.025rem;
    min-height: 52px;
    gap: 0.6rem;
}

.btn-xl {
    padding: 1.05rem 2.4rem;
    font-size: 1.125rem;
    min-height: 58px;
    gap: 0.75rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* Button Color Variants */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 87, 34, 0.42);
}

.btn-dark {
    background-color: #0B0D12;
    border-color: #0B0D12;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(11, 13, 18, 0.15);
}

.btn-dark:hover {
    background-color: #1A1E29;
    border-color: #1A1E29;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(11, 13, 18, 0.25);
}

.btn-outline {
    background-color: #FFFFFF;
    border-color: var(--border-color);
    color: var(--color-text-primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: #FFF7ED;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.15);
}

.btn-outline-dark {
    background-color: transparent;
    border-color: #0B0D12;
    color: #0B0D12;
}

.btn-outline-dark:hover {
    background-color: #0B0D12;
    border-color: #0B0D12;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-white {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #0B0D12;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
    background-color: #F8FAFC;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon.btn-sm {
    width: 36px;
    height: 36px;
}

.btn-icon.btn-lg {
    width: 52px;
    height: 52px;
}

/* -------------------------------------------------------------
   FILTER BUTTONS & PILLS (GLOBAL)
------------------------------------------------------------- */
.filter-btn, .filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-secondary);
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    min-height: 38px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    user-select: none;
    -webkit-user-select: none;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-pill:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: #FFF7ED;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.12);
}

.filter-btn.active, .filter-pill.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.32);
    transform: translateY(-1px);
}

/* -------------------------------------------------------------
   SITE HEADER & NAVIGATION (FROZEN / FIXED HEADER)
------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 76px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
    z-index: 9999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.brand-logo-link:hover {
    opacity: 0.9;
}

.site-header-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.site-footer-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand-logo-text {
    font-size: 1.65rem;
    font-weight: 900;
    color: #0B0D12;
    letter-spacing: -0.04em;
}

.logo-dot {
    color: var(--color-primary);
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.4rem 0.2rem;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link.active {
    color: #0B0D12;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-connect {
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-primary);
    padding: 0.25rem;
}

.mobile-nav-cta-row {
    display: none;
}

/* -------------------------------------------------------------
   LEFT FLOATING SOCIAL PILL
------------------------------------------------------------- */
.hero-left-social-pill {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    padding: 1.35rem 0.85rem;
    z-index: 900;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.hero-soc-ig { color: #E1306C; }
.hero-soc-fb { color: #1877F2; }
.hero-soc-li { color: #0A66C2; }
.hero-soc-wa { color: #25D366; }
.hero-soc-mail { color: #0B0D12; }

.hero-social-link:hover {
    transform: scale(1.25);
}

/* -------------------------------------------------------------
   HERO SECTION (Single-Screen Proportions from Screenshot)
------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 2rem 0 1.25rem 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFFFFF;
    overflow: hidden;
}

.hero-container-custom {
    max-width: 1260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-three-cols-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.08fr;
    gap: 1.75rem;
    align-items: center;
}

/* Col 1: Left Text & CTAs */
.hero-eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.hero-tag-text {
    font-family: var(--font-mono);
    font-size: 0.785rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

.hero-tag-plus {
    color: var(--color-primary);
    font-size: 0.8rem;
}

.hero-name-pill {
    background: #FFF7ED;
    color: var(--color-primary);
    border: 1px solid #FFEDD5;
    padding: 0.18rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
}

.hero-big-title {
    font-size: 2.95rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: #0B0D12;
    margin-bottom: 0.85rem;
}

.animated-gradient-text {
    background: linear-gradient(135deg, #FF5722 0%, #FFA000 35%, #FF3D00 70%, #FF5722 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description-lead {
    font-size: 0.96rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.4rem;
    max-width: 440px;
}

.hero-button-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-cta-btn {
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    animation: btnGleam 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes btnGleam {
    0%, 65% { left: -120%; }
    100% { left: 220%; }
}

.hero-talk-btn,
.hero-cv-btn {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-talk-btn:hover,
.hero-cv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 87, 34, 0.5);
}

/* Staggered Initial Load Animations */
.hero-text-col {
    animation: heroFadeSlideLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-center-visual-col {
    animation: heroCenterScaleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-four-cards-grid .hero-stat-card:nth-child(1) {
    animation: heroCardSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-four-cards-grid .hero-stat-card:nth-child(2) {
    animation: heroCardSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-four-cards-grid .hero-stat-card:nth-child(3) {
    animation: heroCardSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-four-cards-grid .hero-stat-card:nth-child(4) {
    animation: heroCardSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero-growth-chart-card {
    animation: heroCardSlideIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@keyframes heroFadeSlideLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes heroCenterScaleIn {
    0% { opacity: 0; transform: scale(0.92) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes heroCardSlideIn {
    0% { opacity: 0; transform: translateX(35px) translateY(10px); }
    100% { opacity: 1; transform: translateX(0) translateY(0); }
}

/* SVG Chart Drawing Path Animation */
.animated-chart-path {
    stroke-dasharray: 450;
    stroke-dashoffset: 450;
    animation: drawTrendline 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@keyframes drawTrendline {
    to { stroke-dashoffset: 0; }
}

/* Col 2: Center Visual Graphic (Single-Screen Sized with Single Growth Pill) */
.hero-center-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.hero-dot-matrix {
    position: absolute;
    bottom: 40px;
    left: 15px;
    width: 90px;
    height: 70px;
    background-image: radial-gradient(#CBD5E1 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.85;
    z-index: 0;
}

/* Live Status Radar Pill */
.hero-live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #15803D;
    padding: 0.28rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.12);
}

.hero-live-dot-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
}

.hero-live-dot {
    width: 8px;
    height: 8px;
    background: #16A34A;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.hero-live-radar {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.4);
    animation: liveRadarPulse 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes liveRadarPulse {
    0% { transform: scale(0.5); opacity: 0.9; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-doodle-dart {
    position: absolute;
    top: 15px;
    left: 0px;
    z-index: 4;
    animation: floatDart 4.5s ease-in-out infinite alternate;
}

@keyframes floatDart {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(6deg); }
}

.hero-doodle-orbit {
    position: absolute;
    top: 25px;
    right: 15px;
    z-index: 4;
}

.hero-doodle-orbit svg {
    animation: spinOrbit 22s linear infinite;
}

@keyframes spinOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-doodle-megaphone {
    position: absolute;
    top: 135px;
    right: -15px;
    z-index: 4;
    animation: pulseMegaphone 4.5s ease-in-out infinite alternate;
}

@keyframes pulseMegaphone {
    0% { transform: scale(1) rotate(8deg); }
    50% { transform: scale(1.12) rotate(14deg); }
    100% { transform: scale(1) rotate(8deg); }
}

.hero-doodle-arrow {
    position: absolute;
    bottom: 120px;
    left: -20px;
    z-index: 4;
    animation: floatSlow 5s ease-in-out infinite alternate;
}

/* Ambient Pulsing Glow Aura behind Circle */
.hero-ambient-glow {
    position: absolute;
    bottom: 10px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.45) 0%, rgba(255, 87, 34, 0.1) 60%, transparent 80%);
    filter: blur(24px);
    z-index: 0;
    animation: heroGlowAura 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlowAura {
    0% { transform: scale(0.92); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0.95; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* Floating ROI & AI Badges */
.hero-floating-roi-pill {
    position: absolute;
    top: 45px;
    left: -25px;
    background: #FFFFFF;
    border: 1.5px solid #FED7AA;
    border-radius: 12px;
    padding: 0.45rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.15);
    z-index: 5;
    animation: floatRoi 5s ease-in-out infinite alternate;
}

.h-roi-icon {
    font-size: 1.1rem;
}

.h-roi-text {
    display: flex;
    flex-direction: column;
}

.h-roi-num {
    font-size: 0.875rem;
    font-weight: 900;
    color: #FF5722;
    line-height: 1.1;
}

.h-roi-lbl {
    font-size: 0.65rem;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-floating-ai-pill {
    position: absolute;
    top: 55px;
    right: -25px;
    background: #FFFFFF;
    border: 1.5px solid #E0E7FF;
    border-radius: 12px;
    padding: 0.45rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.15);
    z-index: 5;
    animation: floatAi 5.5s ease-in-out infinite alternate;
}

.h-ai-icon {
    font-size: 1.1rem;
}

.h-ai-text {
    display: flex;
    flex-direction: column;
}

.h-ai-main {
    font-size: 0.8125rem;
    font-weight: 900;
    color: #4F46E5;
    line-height: 1.1;
}

.h-ai-sub {
    font-size: 0.65rem;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes floatRoi {
    0% { transform: translateY(0px) rotate(-1deg); }
    100% { transform: translateY(-10px) rotate(1.5deg); }
}

@keyframes floatAi {
    0% { transform: translateY(0px) rotate(1deg); }
    100% { transform: translateY(-12px) rotate(-1.5deg); }
}

.hero-orange-arch-wrap {
    position: relative;
    width: 330px;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}

.hero-orange-circle-bg {
    position: absolute;
    bottom: 20px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6842 0%, #FF5722 50%, #F44336 100%);
    box-shadow: 0 16px 50px rgba(255, 87, 34, 0.38), 0 0 35px rgba(255, 87, 34, 0.2);
    z-index: 1;
}

.hero-orange-outer-ring {
    position: absolute;
    bottom: 8px;
    width: 325px;
    height: 325px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 87, 34, 0.35);
    pointer-events: none;
    z-index: 1;
    animation: ringPulse 4s ease-in-out infinite alternate;
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.04); opacity: 1; border-color: rgba(255, 87, 34, 0.6); }
}

.hero-person-photo {
    position: relative;
    z-index: 3;
    height: 100%;
    max-height: 410px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
    transition: transform var(--transition-normal);
}

.hero-person-photo:hover {
    transform: scale(1.02);
}

.hero-floating-growth-pill {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0B0D12;
    color: #FFFFFF;
    padding: 0.65rem 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    z-index: 10;
    white-space: nowrap;
    animation: heroFloatBadge 4.8s ease-in-out infinite alternate;
}

@keyframes heroFloatBadge {
    0% { transform: translateX(-50%) translateY(0); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); }
    100% { transform: translateX(-50%) translateY(-7px); box-shadow: 0 18px 40px rgba(255, 87, 34, 0.28); }
}

.growth-pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 87, 34, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gp-sub {
    font-size: 0.6875rem;
    color: #94A3B8;
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-weight: 700;
}

.gp-main {
    font-size: 0.9375rem;
    font-weight: 900;
    color: #FFFFFF;
}

.hero-chart-pulse-ring {
    animation: chartRadarPulse 2.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    transform-origin: 330px 12px;
}

@keyframes chartRadarPulse {
    0% { transform: scale(0.6); opacity: 0.9; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-stat-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.12);
    border-color: #FF5722;
}

/* Col 3: Right Hero Analytics Dashboard (4 Cards + Growth Overview Chart) */
.hero-dashboard-col {
    display: flex;
    justify-content: flex-end;
}

.hero-metrics-dashboard-wrap {
    width: 100%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-four-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hero-stat-card {
    background: #FFFFFF;
    border: 1.5px solid #F1F5F9;
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-color: #E2E8F0;
}

.hsc-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.hsc-icon-wrap {
    color: #FF5722;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsc-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748B;
    line-height: 1.2;
}

.hsc-num {
    font-size: 1.65rem;
    font-weight: 900;
    color: #0B0D12;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.hsc-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
}

.badge-green {
    color: #10B981;
}

.hsc-subtext {
    font-size: 0.6875rem;
    color: #94A3B8;
    font-weight: 600;
}

.hero-growth-chart-card {
    background: #FFFFFF;
    border: 1.5px solid #F1F5F9;
    border-radius: 14px;
    padding: 0.85rem 1.15rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.hgc-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.hgc-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.hgc-title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0B0D12;
}

.hgc-sub {
    font-size: 0.7rem;
    color: #94A3B8;
    font-weight: 600;
}

.hgc-badge-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: #FFF7ED;
    color: #FF5722;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
}

.hgc-chart-container {
    width: 100%;
    margin-top: 0.15rem;
}

/* -------------------------------------------------------------
   HERO INTEGRATED BRAND TRUST BAR (Directly Underneath Photo)
------------------------------------------------------------- */
.hero-integrated-brand-bar {
    width: 100%;
    background: #FAFAFA;
    border: 1.5px solid #F1F5F9;
    border-radius: 16px;
    padding: 0.9rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    margin-top: 0.25rem;
}

.hero-brand-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-brand-title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-brand-title::before {
    content: "✦";
    color: var(--color-primary);
    font-size: 0.75rem;
}

.hero-brand-logos-row {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    flex-wrap: wrap;
}

.hero-brand-logo-item {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hero-brand-logo-item:hover {
    transform: translateY(-2px);
}

.brand-trust-logo-img {
    height: 28px;
    width: auto;
    max-width: 145px;
    object-fit: contain;
    filter: grayscale(15%) opacity(90%);
    transition: all var(--transition-fast);
}

.brand-trust-logo-img:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.06);
}

/* Standalone Brand Trust Bar (if used on other pages) */
.brands-trust-bar-section {
    padding: 2.5rem 0;
    background: #FAFAFA;
    border-top: 1px solid var(--border-color-subtle);
    border-bottom: 1px solid var(--border-color-subtle);
}

.brands-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-text {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--color-text-primary);
}

.trust-logos-row {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.brand-logo-item {
    display: flex;
    align-items: center;
}

.b-logo-graphic {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.b-logo-text {
    display: flex;
    flex-direction: column;
}

.b-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0B0D12;
    line-height: 1.1;
}

.b-sub {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}

.b-sub-bold {
    font-size: 0.875rem;
    font-weight: 900;
    color: #0284C7;
}

.tc-badge-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0284C7;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -------------------------------------------------------------
   ABOUT ME SECTION (2-Column with Illustration & Progress Bars)
------------------------------------------------------------- */
.about-showcase-section {
    background: #FFFFFF;
    padding-top: 3rem !important;
    padding-bottom: 4.5rem !important;
}

.about-two-cols-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-main-heading {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

.about-laptop-mockup-card {
    position: relative;
    background: #F8FAFC;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.laptop-floating-roi-pill {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    z-index: 10;
}

.roi-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.roi-val {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #10B981;
}

.laptop-screen-frame {
    width: 100%;
    max-width: 360px;
    min-height: 125px;
    height: auto;
    background: #0B0D12;
    border-radius: 10px 10px 0 0;
    padding: 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.screen-top-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
}

.s-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.screen-title-bar {
    font-size: 0.6875rem;
    font-family: var(--font-mono);
    color: #94A3B8;
    margin-left: 0.5rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 230px;
}

.screen-content-preview {
    flex-grow: 1;
    background: #151922;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    width: 100%;
}

.automation-nodes-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    flex-wrap: wrap;
}

.auto-node {
    background: #0B0D12;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    padding: 0.35rem 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.auto-node.node-ai {
    border-color: #FF5722;
    background: rgba(255, 87, 34, 0.16);
}

.an-icon {
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
}

.an-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-mono);
    white-space: nowrap;
}

.auto-node-arrow {
    color: #FF5722;
    font-weight: 900;
    font-size: 0.85rem;
}

.laptop-base-stand {
    width: 100%;
    max-width: 400px;
    height: 10px;
    background: #CBD5E1;
    border-radius: 0 0 10px 10px;
}

.about-bio-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

/* 4 Strategic Pillars Grid */
.about-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-pillar-card {
    background: #FAFAFA;
    border: 1.5px solid #F1F5F9;
    border-radius: 14px;
    padding: 1.1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    transition: all var(--transition-fast);
}

.about-pillar-card:hover {
    background: #FFFFFF;
    border-color: #FED7AA;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.08);
}

.pillar-icon {
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pillar-content h4 {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0B0D12;
    margin-bottom: 0.25rem;
}

.pillar-content p {
    font-size: 0.775rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

.about-cta-action-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* 4 Clean Stats Grid Tiles */
.about-four-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
    margin-bottom: 2rem;
}

.stat-clean-box {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.35rem 1rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.stat-clean-box:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.08);
}

.stat-clean-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-clean-num {
    font-size: 1.65rem;
    font-weight: 900;
    color: #0B0D12;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-clean-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-text-secondary);
}

/* Expertise Progress Bars */
.about-expertise-wrap {
    background: #FFFFFF;
    border: 1.5px solid #F1F5F9;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    margin-bottom: 1.5rem;
}

.expertise-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.35rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0B0D12;
    margin: 0;
}

.expertise-tag-pill {
    background: #FFF7ED;
    color: #FF5722;
    border: 1px solid #FFEDD5;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    font-family: var(--font-mono);
}

.skills-bars-container {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.skill-bar-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sb-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.sb-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1E293B;
    display: flex;
    align-items: center;
    flex: 1;
    word-break: break-word;
}

.sb-icon {
    font-size: 0.95rem;
    margin-right: 0.4rem;
}

.sb-percent {
    font-size: 0.8125rem;
    font-family: var(--font-mono);
    font-weight: 800;
    color: var(--color-text-primary);
}

.highlight-orange {
    color: #FF5722 !important;
    font-weight: 900;
}

.sb-track {
    width: 100%;
    height: 7px;
    background: #F1F5F9;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.sb-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: width 1s ease-in-out;
}

.sb-fill-gradient {
    background: linear-gradient(90deg, #FF6B4A 0%, #FF5722 100%);
}

/* Modern AI & Tech Stack Pills Card */
.about-tech-stack-card {
    background: #FAFAFA;
    border: 1.5px solid #F1F5F9;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.tech-stack-card-title {
    font-size: 0.785rem;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-mono);
    margin-bottom: 0.85rem;
}

.tech-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #334155;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-mono);
    transition: all var(--transition-fast);
}

.tech-tag:hover {
    border-color: #FF5722;
    color: #FF5722;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.12);
}

.tech-tag.tag-primary {
    background: #FFF7ED;
    border-color: #FED7AA;
    color: #EA580C;
}

/* -------------------------------------------------------------
   SERVICES SECTION (5 Deliverable Cards + Monitor Graphic)
------------------------------------------------------------- */
.services-showcase-section {
    background: #FAFAFA;
}

.section-left-header {
    margin-bottom: 3rem;
}

.services-main-title {
    font-size: 2.15rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.services-clean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.srv-clean-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
}

.srv-clean-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: var(--color-primary);
}

.srv-clean-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.srv-icon-blue { background: #EFF6FF; }
.srv-icon-orange { background: #FFF7ED; }
.srv-icon-cyan { background: #F0F9FF; }
.srv-icon-amber { background: #FEF3C7; }
.srv-icon-coral { background: #FFF1F2; }
.srv-icon-purple { background: #F5F3FF; }

.ad-icon-text {
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--color-primary);
}

.srv-clean-title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.45rem;
}

.srv-clean-desc {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-bottom: 0.85rem;
    flex-grow: 1;
}

.srv-clean-arrow {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
    align-self: flex-start;
    transition: transform var(--transition-fast);
}

.srv-clean-card:hover .srv-clean-arrow {
    transform: translateX(4px);
}

/* 6th Card: Graphic Monitor */
.srv-graphic-card {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-monitor-illustration {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.monitor-floating-icons {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    display: flex;
    justify-content: space-between;
}

.m-soc-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 800;
    color: #FFFFFF;
}

.m-fb { background: #1877F2; }
.m-google { background: #EA4335; }
.m-ig { background: #E1306C; font-size: 0.6rem; }

.monitor-screen {
    width: 110px;
    height: 75px;
    background: #0B0D12;
    border-radius: 6px;
    padding: 0.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.m-screen-bar {
    height: 4px;
    background: #334155;
    border-radius: 2px;
    width: 60%;
}

.m-screen-chart-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 35px;
}

.m-bar-item {
    width: 6px;
    background: #38BDF8;
    border-radius: 2px;
}

.monitor-stand {
    width: 24px;
    height: 12px;
    background: #CBD5E1;
    margin-top: 2px;
    border-radius: 0 0 4px 4px;
}

/* -------------------------------------------------------------
   FEATURED WORK / CAMPAIGNS CAROUSEL & CARDS
------------------------------------------------------------- */
/* -------------------------------------------------------------
   FEATURED WORK & SYSTEMS (Mockup Design)
------------------------------------------------------------- */
.featured-work-section {
    background: #FFFFFF;
    padding: 5.5rem 0 4.5rem 0;
    position: relative;
}

/* Header Top Grid */
.projects-header-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.75rem;
}

.projects-hero-text-col .section-eyebrow-tag {
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.projects-main-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: #0B0D12;
    margin-bottom: 1rem;
}

.text-impact-highlight {
    position: relative;
    color: var(--color-primary);
    display: inline-block;
}

.text-impact-highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q50,12 100,5' stroke='%23FF5722' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: 100% 100%;
}

.projects-sub-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    max-width: 540px;
}

/* Header Right Visual Graphic Banner */
.projects-header-visual-banner {
    position: relative;
    background: #F8FAFC;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.p-vis-target {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.p-vis-cards-cluster {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
    margin: 0 1.25rem;
}

.p-vis-cards-row {
    display: flex;
    gap: 0.75rem;
}

.p-vis-mini-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    flex: 1;
}

.p-vis-card-label {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.p-vis-card-value {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0B0D12;
    margin-top: 0.15rem;
}

.p-vis-val-green { color: #10B981; }
.p-vis-val-orange { color: #FF5722; }
.p-vis-val-blue { color: #0284C7; }

.p-vis-channels-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
}

.p-chan-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.7rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.p-chan-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.p-chan-gads { background: #4285F4; }
.p-chan-fb { background: #1877F2; }
.p-chan-li { background: #0A66C2; }

.p-vis-megaphone {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    transform: rotate(-10deg);
}

/* Control Bar: Filter Tabs (Left) + Metric Badges (Right) */
.projects-control-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}

.projects-filter-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.p-filter-btn {
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: #FFFFFF;
    color: var(--color-text-secondary);
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.p-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.p-filter-btn.active {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
}

.projects-metric-badges-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.p-top-metric-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    color: #0B0D12;
}

.p-top-metric-chip strong {
    font-weight: 800;
}

.p-top-metric-chip span {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

/* 6-Card Projects Grid */
.ps-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Individual Project Card Component */
.ps-project-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.ps-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(255, 87, 34, 0.08);
    border-color: rgba(255, 87, 34, 0.35);
}

.ps-card-inner-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    height: 100%;
}

/* Card Left Thumbnail Box */
.ps-card-thumb-col {
    position: relative;
    overflow: hidden;
    background: #0B0D12;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-card-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.ps-floating-cta-square {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 5;
    transition: transform 0.25s ease;
}

.ps-btn-orange { background: #FF5722; }
.ps-btn-blue { background: #0284C7; }
.ps-btn-purple { background: #8B5CF6; }
.ps-btn-pink { background: #EC4899; }

.ps-project-card:hover .ps-floating-cta-square {
    transform: scale(1.12);
}

/* Card Right Content Col */
.ps-card-content-col {
    padding: 1.25rem 1.25rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FFFFFF;
}

.ps-category-pill {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.ps-cat-business { background: #FFF7ED; color: #EA580C; }
.ps-cat-automation { background: #EFF6FF; color: #0284C7; }
.ps-cat-marketing { background: #FAF5FF; color: #7C3AED; }
.ps-cat-web { background: #ECFDF5; color: #059669; }

.ps-card-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0B0D12;
    margin-bottom: 0.4rem;
}

.ps-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ps-card-title a:hover {
    color: var(--color-primary);
}

.ps-card-desc {
    font-size: 0.775rem;
    line-height: 1.45;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ps-tech-stack-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.ps-tech-pill {
    background: #F1F5F9;
    color: #475569;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    font-family: var(--font-mono);
}

/* 2 Tinted Metric Badges in Grid */
.ps-metrics-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.ps-metric-mini-badge {
    background: #F8FAFC;
    border: 1px solid var(--border-color-subtle);
    border-radius: 6px;
    padding: 0.35rem 0.45rem;
    display: flex;
    flex-direction: column;
}

.ps-metric-mini-val {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0B0D12;
    line-height: 1.2;
}

.ps-metric-mini-lbl {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    line-height: 1.2;
    margin-top: 0.1rem;
}

.ps-card-link-bottom {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.2s ease, opacity 0.2s ease;
    margin-top: auto;
}

.ps-card-link-bottom:hover {
    gap: 0.55rem;
    opacity: 0.9;
}

/* Bottom Peach Callout Banner */
.projects-cta-callout-banner {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFF1EE 100%);
    border: 1px solid #FFEDD5;
    border-radius: var(--radius-2xl);
    padding: 2.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.05);
}

.p-cta-rocket-col {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
}

.p-cta-text-col {
    flex-grow: 1;
}

.p-cta-heading {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0B0D12;
    margin-bottom: 0.35rem;
}

.p-cta-heading .p-cta-text-highlight {
    color: var(--color-primary);
}

.p-cta-sub {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.p-cta-buttons-col {
    display: flex;
    gap: 0.85rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.p-cta-btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.p-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.p-cta-btn-secondary {
    background: #FFFFFF;
    color: #0B0D12;
    border: 1px solid var(--border-color);
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.25s ease;
}

.p-cta-btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.p-cta-target-col {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

/* 5 Value Proposition Pillars Strip Tiles */
.projects-pillars-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color-subtle);
}

.p-pillar-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.1rem 1.25rem;
    min-height: 80px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.p-pillar-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 87, 34, 0.35);
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.08);
}

.p-pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #FFF7ED;
    border: 1px solid rgba(255, 87, 34, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
}

.p-pillar-content strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0B0D12;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.p-pillar-content p {
    font-size: 0.72rem;
    color: var(--color-text-secondary);
    line-height: 1.35;
    margin: 0;
}

/* Responsive Breakpoints for Projects Mockup */
@media (max-width: 1100px) {
    .projects-header-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ps-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-pillars-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .projects-cta-callout-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .p-cta-buttons-col {
        justify-content: center;
    }
    .p-cta-target-col {
        display: none;
    }
    .projects-control-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .ps-projects-grid {
        grid-template-columns: 1fr;
    }
    .ps-card-inner-split {
        grid-template-columns: 1fr;
    }
    .ps-card-thumb-col {
        min-height: 180px;
    }
    .projects-pillars-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .projects-pillars-row {
        grid-template-columns: 1fr;
    }
}

    transition: all var(--transition-fast);
}

.carousel-arrow-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.carousel-dots-wrap {
    display: flex;
    gap: 6px;
}

.c-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #CBD5E1;
    transition: all var(--transition-fast);
}

.c-dot.active {
    width: 18px;
    border-radius: 4px;
    background: var(--color-primary);
}

/* -------------------------------------------------------------
   LATEST INSIGHTS & QUICK CONTACT
------------------------------------------------------------- */
.insights-contact-section {
    background: #FAFAFA;
}

.insights-contact-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 3.5rem;
}

.insights-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.insights-main-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
}

.insights-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.insight-mini-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast);
}

.insight-mini-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.imc-thumb-wrap {
    position: relative;
    height: 110px;
    width: 100%;
}

.imc-thumb-bg {
    width: 100%;
    height: 100%;
}

.imc-bg-1 { background: linear-gradient(135deg, #1E293B 0%, #334155 100%); }
.imc-bg-2 { background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%); }
.imc-bg-3 { background: linear-gradient(135deg, #31103F 0%, #581C87 100%); }

.imc-cat-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(11, 13, 18, 0.85);
    color: var(--color-primary);
    font-size: 0.625rem;
    font-weight: 800;
    font-family: var(--font-mono);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.imc-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.imc-title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.imc-title a:hover {
    color: var(--color-primary);
}

.imc-date {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

/* Quick Contact Card */
.contact-quick-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 2.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-card-heading {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.q-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.q-form-input, .q-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #FAFAFA;
    font-size: 0.875rem;
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.q-form-input:focus, .q-form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px var(--color-primary-subtle);
}

/* -------------------------------------------------------------
   READY TO GROW CTA BANNER
------------------------------------------------------------- */
.ready-grow-banner-section {
    padding: 3rem 0;
    background: #FFFFFF;
}

.ready-grow-banner-card {
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    border-radius: var(--radius-2xl);
    padding: 2.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.rgb-title {
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 0.25rem;
}

.rgb-sub {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.rgb-talk-btn {
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
}

/* -------------------------------------------------------------
   MINIMAL FOOTER
------------------------------------------------------------- */
.site-bottom-bar {
    background: #FFFFFF;
    border-top: 1px solid var(--border-color-subtle);
    padding: 2rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 1.5rem;
}

.footer-copyright-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-right-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-social-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.f-soc-btn {
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.f-soc-btn:hover {
    color: var(--color-primary);
}

.back-to-top-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.back-to-top-btn:hover {
    transform: translateY(-2px);
    background: var(--color-primary-hover);
}

/* Keyframes */
@keyframes floatSlow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* -------------------------------------------------------------
   BLOG ARCHIVE & ARTICLE READER TYPOGRAPHY (PERFECT SIZE & JUSTIFIED CONTENT)
------------------------------------------------------------- */
.blog-perfect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

.blog-card-box {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.blog-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.blog-card-thumb-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    background: #F8FAFC;
    overflow: hidden;
}

.blog-card-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card-box:hover .blog-card-thumb-img {
    transform: scale(1.05);
}

.blog-card-thumb-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    color: var(--color-primary);
}

.blog-thumb-icon {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
}

.blog-thumb-category {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-floating-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    z-index: 2;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.blog-meta-date, .blog-meta-read {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 0.65rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2rem;
}

.blog-card-title a {
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--color-primary);
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.2rem;
    flex-grow: 1;
}

.blog-card-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color-subtle);
    margin-top: auto;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.blog-read-link:hover {
    color: var(--color-primary-hover);
    gap: 0.6rem;
}

/* -------------------------------------------------------------
   ARTICLE READER - JUSTIFIED DESCRIPTION & ADVANCED TYPOGRAPHY
------------------------------------------------------------- */
.article-content {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #334155;
}

.article-content h1 {
    font-size: 2.15rem;
    font-weight: 900;
    color: #0B0D12;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin: 2.75rem 0 1.25rem 0;
    text-align: left;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0B0D12;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #FFF7ED;
    text-align: left;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0B0D12;
    line-height: 1.35;
    letter-spacing: -0.015em;
    margin: 2rem 0 0.85rem 0;
    text-align: left;
}

.article-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1E293B;
    margin: 1.75rem 0 0.6rem 0;
    text-align: left;
}

.article-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    margin: 1.5rem 0 0.5rem 0;
    text-align: left;
}

.article-content h6 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1.25rem 0 0.5rem 0;
    text-align: left;
}

/* JUSTIFIED TEXT FOR ALL ARTICLE BODY PARAGRAPHS & DESCRIPTIONS */
.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #334155;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: normal;
}

.article-content strong, .article-content b {
    font-weight: 800;
    color: #0B0D12;
}

.article-content em, .article-content i {
    font-style: italic;
}

.article-content a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.article-content a:hover {
    color: var(--color-primary-hover);
}

.article-content blockquote {
    background: #FFF7ED;
    border-left: 4px solid var(--color-primary);
    padding: 1.25rem 1.75rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 2rem 0;
    font-style: italic;
    color: #431407;
}

.article-content blockquote p {
    margin-bottom: 0;
    color: inherit;
    font-size: 1.05rem;
    text-align: justify;
    text-justify: inter-word;
}

.article-content ul, .article-content ol {
    padding-left: 1.75rem;
    margin-bottom: 1.75rem;
    color: #334155;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;
}

.article-content pre {
    background: #0B0D12;
    color: #F8FAFC;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin: 2rem 0;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.65;
    border: 1px solid #1E293B;
    text-align: left;
}

.article-content code {
    font-family: var(--font-mono);
    background: #FFF7ED;
    color: var(--color-primary);
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    font-size: 0.875em;
    font-weight: 600;
}

.article-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: inherit;
    font-weight: 400;
}

.article-content hr {
    border: none;
    height: 1px;
    background: var(--border-color-subtle);
    margin: 3rem 0;
}

.article-content img {
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------------------------------
   MODERN ANIMATION SYSTEM & KEYFRAMES
------------------------------------------------------------- */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 87, 34, 0);
    }
}

@keyframes barPulse {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.25);
    }
}

@keyframes arrowShift {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Hero Animations */
.hero-doodle-dart {
    animation: floatSlow 4s ease-in-out infinite;
}

.hero-doodle-megaphone {
    animation: floatSlow 5s ease-in-out infinite 0.5s;
}

.hero-doodle-arrow {
    animation: floatGentle 3.5s ease-in-out infinite alternate;
}

.hero-floating-growth-pill {
    animation: floatGentle 4s ease-in-out infinite 0.75s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-floating-growth-pill:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-floating-mini-chart {
    animation: floatSlow 4.5s ease-in-out infinite 1s;
    transition: transform 0.3s ease;
}

.hero-floating-mini-chart:hover {
    transform: translateY(-4px) scale(1.04);
}

.mc-bar:nth-child(1) { animation: barPulse 2.5s ease-in-out infinite 0.2s; transform-origin: bottom; }
.mc-bar:nth-child(2) { animation: barPulse 2.5s ease-in-out infinite 0.4s; transform-origin: bottom; }
.mc-bar:nth-child(3) { animation: barPulse 2.5s ease-in-out infinite 0.6s; transform-origin: bottom; }
.mc-bar:nth-child(4) { animation: barPulse 2.5s ease-in-out infinite 0.8s; transform-origin: bottom; }

/* Interactive Hover Animations */
.srv-clean-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.srv-clean-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.09);
    border-color: var(--color-primary);
}

.srv-clean-card:hover .srv-clean-arrow {
    transform: translateX(6px);
    transition: transform 0.25s ease;
}

.campaign-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.campaign-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.campaign-card:hover .c-card-circle-arrow {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.c-card-circle-arrow {
    transition: all 0.3s ease;
}

.insight-mini-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.insight-mini-card:hover .imc-thumb-bg {
    transform: scale(1.08);
}

.imc-thumb-bg {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-clean-box {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-clean-box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.1);
    border-color: var(--color-primary);
}

.stat-clean-box:hover .stat-clean-icon svg {
    transform: scale(1.15) rotate(-5deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-clean-icon svg {
    transition: transform 0.3s ease;
}

/* Button & Link Hover Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary svg, .btn-outline svg, .btn-connect svg {
    transition: transform 0.25s ease;
}

.btn-primary:hover svg, .btn-connect:hover svg {
    transform: translate(3px, -2px);
}

.btn-outline:hover svg {
    transform: translate(3px, -2px);
}

/* Sticky Header on Scroll Animation */
.site-header {
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.site-header.header-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Back to Top Smooth Appearance */
.back-to-top-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease, background 0.25s ease;
}

.back-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
}

/* -------------------------------------------------------------
   WORK EXPERIENCE SECTION (Exact Mockup Design: Alternating Zig-Zag Timeline)
------------------------------------------------------------- */
.experience-showcase-section {
    background: #FAFAFA;
    border-top: 1px solid var(--border-color-subtle);
    padding: 5.5rem 0;
    position: relative;
}

.exp-mockup-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3.75rem;
    flex-wrap: wrap;
}

.exp-mockup-header-left {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.exp-mockup-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.15;
    color: #0B0D12;
    margin: 0.5rem 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.exp-mockup-subtitle {
    font-size: 1.05rem;
    color: #475569;
    max-width: 620px;
    line-height: 1.65;
    margin: 0;
}

/* Glassmorphic 4-Metric Strip in Header Right */
.exp-mockup-metrics-capsule {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 22px;
    padding: 0.85rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.emm-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.emm-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emm-icon-orange {
    background: #FFF7ED;
    color: #EA580C;
}

.emm-icon-purple {
    background: #FAF5FF;
    color: #9333EA;
}

.emm-icon-green {
    background: #F0FDF4;
    color: #16A34A;
}

.emm-icon-pink {
    background: #FDF2F8;
    color: #DB2777;
}

.emm-info {
    display: flex;
    flex-direction: column;
}

.emm-info strong {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0B0D12;
    line-height: 1.1;
}

.emm-info span {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748B;
    font-family: var(--font-mono);
}

.emm-divider {
    width: 1px;
    height: 28px;
    background: #E2E8F0;
    margin: 0 1.25rem;
}

/* Staggered 2-Column Timeline Container (Continuous Zero-Gap Flow) */
.exp-staggered-timeline-container {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 0;
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
}

.exp-timeline-spine-track {
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 2px;
    transform: translateX(-50%);
    background-image: linear-gradient(to bottom, #CBD5E1 50%, transparent 50%);
    background-size: 2px 12px;
    z-index: 1;
}

.exp-timeline-col-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.exp-spine-spacer-col {
    width: 50px;
    height: 100%;
}

.exp-timeline-col-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    margin-top: 140px;
}

.exp-staggered-item {
    position: relative;
    width: 100%;
}

/* Connector Anchors to Central Spine */
.exp-connector-anchor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: transparent !important;
    z-index: 4;
}

.exp-connector-anchor.anchor-right {
    right: -42px;
}

.exp-connector-anchor.anchor-left {
    left: -42px;
}

.exp-arm-line {
    width: 18px;
    height: 2px;
    background-image: linear-gradient(to right, #CBD5E1 50%, transparent 50%);
    background-size: 6px 2px;
}

.exp-node-ring {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.exp-node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.theme-node-orange .exp-node-ring {
    border: 3px solid #FED7AA;
}
.theme-node-orange .exp-node-dot {
    background: #EA580C !important;
}

.theme-node-purple .exp-node-ring {
    border: 3px solid #E9D5FF;
}
.theme-node-purple .exp-node-dot {
    background: #9333EA !important;
}

.theme-node-blue .exp-node-ring {
    border: 3px solid #BFDBFE;
}
.theme-node-blue .exp-node-dot {
    background: #2563EB !important;
}

.theme-node-green .exp-node-ring {
    border: 3px solid #BBF7D0;
}
.theme-node-green .exp-node-dot {
    background: #16A34A !important;
}

/* Individual Experience Card Styling */
.exp-zz-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 20px;
    padding: 1.85rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
}

.exp-zz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.card-theme-orange:hover {
    border-color: #FDBA74;
}
.card-theme-purple:hover {
    border-color: #C084FC;
}
.card-theme-blue:hover {
    border-color: #93C5FD;
}
.card-theme-green:hover {
    border-color: #86EFAC;
}

.exp-zz-card-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.15rem;
    align-items: flex-start;
    margin-bottom: 1.15rem;
}

.exp-zz-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-orange-soft {
    background: #FFF7ED;
}
.bg-purple-soft {
    background: #FAF5FF;
}
.bg-blue-soft {
    background: #EFF6FF;
}
.bg-green-soft {
    background: #F0FDF4;
}

.exp-zz-badge-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.exp-zz-type-badge {
    font-size: 0.72rem;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}

.tag-orange {
    color: #EA580C;
}
.tag-purple {
    color: #7C3AED;
}
.tag-blue {
    color: #2563EB;
}
.tag-green {
    color: #16A34A;
}

.exp-zz-pulse-pill {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 800;
    font-family: var(--font-mono);
}

.exp-zz-role-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0B0D12;
    line-height: 1.25;
    margin: 0 0 0.35rem 0;
}

.exp-zz-company-line {
    font-size: 0.9125rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.company-orange {
    color: #EA580C;
    font-weight: 700;
}
.company-purple {
    color: #7C3AED;
    font-weight: 700;
}
.company-blue {
    color: #2563EB;
    font-weight: 700;
}
.company-green {
    color: #16A34A;
    font-weight: 700;
}

.exp-zz-loc {
    color: #64748B;
    font-weight: 500;
    font-size: 0.85rem;
}

.exp-zz-date-badge {
    border-radius: 12px;
    padding: 0.4rem 0.85rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-mono);
    line-height: 1.35;
    flex-shrink: 0;
}

.date-orange {
    background: #FFF7ED;
    color: #C2410C;
    border: 1px solid #FFEDD5;
}
.date-purple {
    background: #FAF5FF;
    color: #6D28D9;
    border: 1px solid #F3E8FF;
}
.date-blue {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #DBEAFE;
}
.date-green {
    background: #F0FDF4;
    color: #15803D;
    border: 1px solid #DCFCE7;
}

.exp-zz-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exp-zz-bullets li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

.exp-zz-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #94A3B8;
    font-size: 1.1rem;
}

.exp-zz-skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding-top: 1rem;
    border-top: 1px solid #F1F5F9;
}

.exp-zz-skill-pill {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #475569;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

.exp-zz-skill-pill.pill-more {
    background: #F1F5F9;
    color: #64748B;
}

/* Bottom Mountain Callout Banner */
.exp-mountain-callout-card {
    background: #FFF8F3;
    border: 1.5px solid #FFEDD5;
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    height: 100%;
}

.emc-graphic-col {
    width: 120px;
    flex-shrink: 0;
}

.mountain-vector-art {
    width: 100%;
    height: auto;
    display: block;
}

.emc-text-col {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.emc-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0B0D12;
    margin: 0;
    line-height: 1.3;
}

.emc-desc {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

.emc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFFFFF;
    border: 1.5px solid #FDBA74;
    color: #EA580C;
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.2s ease;
    margin-top: 0.25rem;
}

.emc-download-btn:hover {
    background: #EA580C;
    color: #FFFFFF;
    border-color: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

/* -------------------------------------------------------------
   CREDENTIALS (EDUCATION & CERTIFICATIONS) - MOCKUP REDESIGN
------------------------------------------------------------- */
.credentials-showcase-section {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color-subtle);
    border-bottom: 1px solid var(--border-color-subtle);
    padding: 4.75rem 0 5rem 0;
    position: relative;
}

.credentials-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.credentials-hero-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: #0B0D12;
    margin-bottom: 0.5rem;
}

.credentials-sub-lead {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 580px;
    line-height: 1.6;
}

/* Header Right: Filter Pills & 3D Cap Graphic */
.credentials-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.credentials-filter-tabs {
    display: flex;
    background: #F8FAFC;
    padding: 0.35rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    gap: 0.35rem;
}

.cred-tab-btn {
    border: none;
    background: transparent;
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.cred-tab-btn:hover {
    color: var(--color-primary);
}

.cred-tab-btn.active {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.3);
}

.cred-tab-badge {
    font-size: 0.72rem;
    font-weight: 800;
    opacity: 0.85;
}

.credentials-header-graphic {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cred-cap-icon-3d {
    width: 68px;
    height: 52px;
}

.cred-shield-badge-3d {
    width: 38px;
    height: 44px;
}

/* 3-Column Key Metrics Strip */
.credentials-metrics-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.c-metric-item {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.15rem 1.35rem;
    min-height: 82px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.c-metric-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.08);
    border-color: rgba(255, 87, 34, 0.35);
}

.c-metric-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.c-icon-purple { background: #FAF5FF; color: #8B5CF6; }
.c-icon-orange { background: #FFF7ED; color: #FF5722; }
.c-icon-green { background: #ECFDF5; color: #10B981; }
.c-icon-blue { background: #EFF6FF; color: #0284C7; }

.c-metric-info strong {
    font-size: 1.15rem;
    font-weight: 900;
    color: #0B0D12;
    display: block;
    line-height: 1.15;
    word-break: break-word;
}

.c-metric-info span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    display: block;
    line-height: 1.3;
    margin-top: 0.15rem;
}

/* Section Sub-Headers */
.cred-sub-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cred-sub-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0B0D12;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cred-sub-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s ease;
}

.cred-sub-link:hover {
    gap: 0.55rem;
}

/* 2-Column Degrees Grid */
.education-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.edu-card-item {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 1.85rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.edu-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(255, 87, 34, 0.08);
    border-color: rgba(255, 87, 34, 0.35);
}

.edu-card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.15rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.edu-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #FFF7ED;
    color: #EA580C;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.edu-status-date-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.edu-status-pill {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
}

.edu-status-ongoing { background: #ECFDF5; color: #059669; }
.edu-status-completed { background: #FAF5FF; color: #7C3AED; }

.edu-date-text {
    font-size: 0.775rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.edu-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0B0D12;
    margin-bottom: 0.35rem;
}

.edu-institution-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.edu-card-desc {
    font-size: 0.825rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.edu-skills-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.edu-skill-pill {
    background: #F8FAFC;
    border: 1px solid var(--border-color);
    color: #475569;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.edu-card-bottom-strip {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.edu-score-text {
    font-size: 0.8125rem;
    color: #D97706;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.edu-view-cert-btn {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #0B0D12;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    min-height: 30px;
    line-height: 1.2;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.edu-view-cert-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #FFF7ED;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.15);
}

.edu-verified-check {
    font-size: 0.72rem;
    color: #10B981;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    margin-left: auto;
}

/* 6-Card Certifications Grid (3 cols) */
.certifications-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.cert-card-box {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 1.5rem 1.65rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.cert-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(255, 87, 34, 0.08);
    border-color: rgba(255, 87, 34, 0.35);
}

.cert-card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-issuer-pill {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.22rem 0.55rem;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.c-iss-pink { background: #FDF2F8; color: #DB2777; }
.c-iss-blue { background: #EFF6FF; color: #2563EB; }
.c-iss-purple { background: #FAF5FF; color: #7C3AED; }
.c-iss-cyan { background: #ECFEFF; color: #0891B2; }
.c-iss-magenta { background: #FDF4FF; color: #C026D3; }
.c-iss-emerald { background: #ECFDF5; color: #059669; }

.cert-date-text {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.cert-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0B0D12;
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.cert-org-name {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.cert-card-desc {
    font-size: 0.775rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 0.85rem;
}

.cert-skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.15rem;
}

.cert-skill-pill {
    background: #F8FAFC;
    border: 1px solid var(--border-color);
    color: #475569;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.18rem 0.5rem;
    border-radius: var(--radius-full);
}

.cert-card-bottom-strip {
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-color-subtle);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    width: 100%;
}

/* Bottom Peach Callout Banner */
.credentials-bottom-callout-banner {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFF1EE 100%);
    border: 1px solid #FFEDD5;
    border-radius: var(--radius-2xl);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.05);
}

.cred-banner-left-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.cred-banner-text-col {
    flex-grow: 1;
}

.cred-banner-heading {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0B0D12;
    margin-bottom: 0.25rem;
}

.cred-banner-sub {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.cred-banner-buttons {
    display: flex;
    gap: 0.85rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* -------------------------------------------------------------
   INTERACTIVE CERTIFICATE PREVIEW MODAL POPUP
------------------------------------------------------------- */
.cert-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 13, 18, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-modal-backdrop.is-active {
    display: flex;
    opacity: 1;
}

.cert-modal-dialog {
    background: #FFFFFF;
    border-radius: var(--radius-2xl);
    max-width: 680px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cert-modal-backdrop.is-active .cert-modal-dialog {
    transform: scale(1) translateY(0);
}

/* Modal Header Bar */
.cert-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: #FFFFFF;
}

.cert-modal-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0B0D12;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cert-modal-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #FFFFFF;
    color: #64748B;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cert-modal-close-btn:hover {
    background: #FEF2F2;
    color: #EF4444;
    border-color: #FECACA;
}

/* High-Grade Ornate Certificate Canvas Container */
.cert-modal-body {
    padding: 1.5rem;
    background: #F1F5F9;
    display: flex;
    justify-content: center;
}

.cert-parchment-frame {
    background: #FFFDF9;
    border: 8px solid #C59B27;
    outline: 2px solid #E6CA65;
    outline-offset: -5px;
    border-radius: 4px;
    padding: 2.25rem 2.5rem;
    text-align: center;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cert-parchment-frame::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px dashed rgba(197, 155, 39, 0.4);
    pointer-events: none;
}

.cert-frame-crest {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem auto;
}

.cert-frame-issuer {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #451A03;
    margin-bottom: 0.35rem;
}

.cert-frame-title {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1E293B;
    margin-bottom: 0.25rem;
}

.cert-frame-spec {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cert-frame-certify-lead {
    font-size: 0.8125rem;
    font-style: italic;
    color: #78716C;
    margin-bottom: 0.5rem;
}

.cert-frame-recipient {
    font-size: 2.15rem;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    color: #D97706;
    margin: 0.25rem 0 0.75rem 0;
    letter-spacing: 0.02em;
}

.cert-frame-statement {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #57534E;
    max-width: 480px;
    margin: 0 auto 1.5rem auto;
}

.cert-frame-footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
}

.cert-foot-side {
    text-align: center;
    width: 140px;
}

.cert-foot-label {
    font-size: 0.6875rem;
    color: #78716C;
    border-top: 1px solid #D6D3D1;
    padding-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-signature-draw {
    font-family: 'Brush Script MT', cursive, serif;
    font-size: 1.4rem;
    color: #0F172A;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.cert-gold-seal-medallion {
    width: 58px;
    height: 58px;
    background: radial-gradient(circle, #FDE68A 0%, #D97706 70%, #92400E 100%);
    border-radius: 50%;
    border: 3px solid #FEF3C7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #78350F;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
    position: relative;
}

.cert-gold-seal-medallion::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 24px;
    height: 14px;
    background: #B45309;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 50% 70%, 20% 100%);
}

/* Uploaded Image Mode in Modal */
.cert-modal-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0B0D12;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cert-modal-image-preview {
    max-width: 100%;
    max-height: 68vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.cert-modal-image-preview:hover {
    transform: scale(1.02);
}

/* Modal Verification Button */
.cert-modal-btn-verify {
    background: #10B981;
    color: #FFFFFF;
    border: 1.5px solid #10B981;
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    line-height: 1.2;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cert-modal-btn-verify:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    color: #FFFFFF;
}

/* Card Strip Action Buttons & Verification Link */
.cert-card-actions-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.edu-verify-external-btn {
    background: #ECFDF5;
    color: #059669;
    border: 1.5px solid #A7F3D0;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-height: 30px;
    line-height: 1.2;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.edu-verify-external-btn:hover {
    background: #10B981;
    color: #FFFFFF;
    border-color: #10B981;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* Modal Actions Footer */
.cert-modal-footer {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: #FFFFFF;
    flex-wrap: wrap;
}

.cert-modal-btn-close {
    background: var(--color-primary);
    color: #FFFFFF;
    border: 1.5px solid var(--color-primary);
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    line-height: 1.2;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cert-modal-btn-close:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
    color: #FFFFFF;
}

/* Responsive Rules for Credentials */
@media (max-width: 1024px) {
    .credentials-metrics-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .certifications-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .credentials-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .credentials-header-right {
        width: 100%;
        justify-content: space-between;
    }
    .education-cards-grid {
        grid-template-columns: 1fr;
    }
    .certifications-cards-grid {
        grid-template-columns: 1fr;
    }
    .credentials-bottom-callout-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .cred-banner-buttons {
        justify-content: center;
    }
    .cert-parchment-frame {
        padding: 1.5rem 1rem;
    }
    .cert-frame-recipient {
        font-size: 1.6rem;
    }
}


/* -------------------------------------------------------------
   LATEST INSIGHTS & CONTACT SECTION
------------------------------------------------------------- */
.insights-contact-section {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color-subtle);
    border-bottom: 1px solid var(--border-color-subtle);
    padding: 5.5rem 0;
    position: relative;
}

.insights-contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
}

.insights-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.insights-main-title {
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0B0D12;
}

.insights-cards-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.insight-mini-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.25rem;
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 0.85rem 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    align-items: center;
}

.insight-mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 87, 34, 0.35);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.08);
}

.imc-thumb-wrap {
    position: relative;
    width: 140px;
    height: 95px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0B0D12;
    flex-shrink: 0;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.imc-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.insight-mini-card:hover .imc-thumb-img {
    transform: scale(1.08);
}

.imc-thumb-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
}

.imc-bg-1 { background: linear-gradient(135deg, #FF5722 0%, #EA580C 100%); }
.imc-bg-2 { background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%); }
.imc-bg-3 { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }

.imc-fallback-icon {
    font-size: 1.75rem;
    opacity: 0.85;
}

.imc-cat-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 800;
    color: #FFFFFF;
    background: rgba(11, 13, 18, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.imc-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.imc-title {
    font-size: 1.025rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.35rem;
    color: #0B0D12;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.imc-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.imc-title a:hover {
    color: var(--color-primary);
}

.imc-date {
    font-size: 0.785rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* -------------------------------------------------------------
   ENHANCED CONTACT FORM & FIELDS
------------------------------------------------------------- */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 3.5rem;
    margin-bottom: 4.5rem;
}

.contact-quick-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 2.25rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contact-live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: #059669;
    background: #ECFDF5;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    border: 1px solid #A7F3D0;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDotGlow 2s infinite;
}

@keyframes pulseDotGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.contact-card-heading {
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.25;
    color: #0B0D12;
    margin-bottom: 0.5rem;
}

.contact-card-sub {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.q-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.q-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.q-form-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1E293B;
}

.q-form-input, .q-form-textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-color);
    font-size: 0.875rem;
    background: #F8FAFC;
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
    outline: none;
    font-family: inherit;
}

.q-form-input:focus, .q-form-textarea:focus {
    background: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3.5px rgba(255, 87, 34, 0.12);
}

.q-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 1.1em;
    padding-right: 2.5rem;
}

.contact-feedback-alert {
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.45;
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-danger, .alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.contact-trust-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-color-subtle);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* -------------------------------------------------------------
   NEWSLETTER SUBSCRIPTION COMPONENT (Compact Single-Line CTA)
------------------------------------------------------------- */
.newsletter-subscription-box {
    border-radius: var(--radius-xl);
    padding: 1.25rem 2.25rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: all var(--transition-normal);
}

.newsletter-light-theme {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F5 100%);
    border: 1.5px solid #FFEDD5;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.05);
}

.newsletter-dark-theme {
    background: linear-gradient(135deg, #11141A 0%, #1A1E29 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

.newsletter-standout-theme {
    background: linear-gradient(135deg, #FFFDFB 0%, #FFF5EB 45%, #FFEFE2 100%);
    border: 1.5px solid #FDBA74;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25), 0 0 25px rgba(255, 87, 34, 0.12);
    color: #0B0D12;
}

.newsletter-standout-theme .newsletter-headline {
    color: #0B0D12;
}

.newsletter-standout-theme .newsletter-email-input {
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    color: #0B0D12;
}

.newsletter-box-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.newsletter-headline {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
}

.newsletter-dark-theme .newsletter-headline {
    color: #FFFFFF;
}

.newsletter-light-theme .newsletter-headline {
    color: #0B0D12;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
}

.newsletter-input-wrapper {
    position: relative;
    flex-grow: 1;
}

.newsletter-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.newsletter-email-input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.4rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    font-size: 0.85rem;
    background: #FFFFFF;
    color: #0B0D12;
    transition: all var(--transition-fast);
    outline: none;
    min-height: 42px;
    font-family: inherit;
}

.newsletter-email-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.newsletter-submit-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    min-height: 42px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.newsletter-feedback-alert {
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 992px) {
    .newsletter-box-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    .newsletter-input-group {
        flex-direction: column;
    }
    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Multi-Column Rich Footer */
.site-main-footer {
    background: #0B0C0E;
    color: #A0A6B5;
    padding: 4.5rem 0 2rem 0;
    border-top: 1px solid #1A1D26;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand-col p {
    font-size: 0.925rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: #8C93A4;
    max-width: 320px;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: #8C93A4;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links-list a:hover {
    color: var(--color-primary);
    transform: translateX(3px);
}

.footer-badge-pill {
    font-size: 0.65rem;
    font-weight: 800;
    background: var(--color-primary);
    color: #FFFFFF;
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.footer-divider-line {
    height: 1px;
    background: #1A1D26;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 575px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .education-cards-grid,
    .certifications-cards-grid {
        grid-template-columns: 1fr;
    }
    .credentials-filter-tabs {
        width: 100%;
        justify-content: center;
    }
}

/* -------------------------------------------------------------
   SCROLL-TRIGGERED REVEAL SYSTEM
------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.is-revealed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* -------------------------------------------------------------
   ULTRA-CLEAN MODERN TECH STUDIO CARDS & PROJECTS SHOWCASE
------------------------------------------------------------- */
.studio-projects-section {
    background: #FAFAFA;
}

.studio-showcase-header {
    margin-bottom: 2.25rem;
}

.studio-header-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 800px;
    line-height: 1.7;
    margin-top: 0.5rem;
}

/* Interactive Controls Bar: Filter Pills + Search Box */
.studio-controls-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.studio-filter-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.studio-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFFFFF;
    color: #475569;
    border: 1px solid #E2E8F0;
    padding: 0.55rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.studio-filter-btn:hover {
    background: #F8FAFC;
    color: #0F172A;
    border-color: #CBD5E1;
    transform: translateY(-1px);
}

.studio-filter-btn.active {
    background: #0B0D13;
    color: #FFFFFF;
    border-color: #0B0D13;
    box-shadow: 0 4px 14px rgba(11, 13, 19, 0.2);
}

.studio-filter-count {
    background: #F1F5F9;
    color: #64748B;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.studio-filter-btn.active .studio-filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* Real-Time Search Box */
.studio-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 280px;
    flex-grow: 1;
    max-width: 380px;
}

.studio-search-icon {
    position: absolute;
    left: 14px;
    color: #94A3B8;
    pointer-events: none;
}

.studio-search-input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 9999px;
    padding: 0.6rem 2.4rem 0.6rem 2.6rem;
    font-size: 0.88rem;
    color: #0F172A;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.studio-search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.12);
}

.studio-search-clear {
    position: absolute;
    right: 12px;
    background: #E2E8F0;
    color: #64748B;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.studio-search-clear:hover {
    background: #CBD5E1;
    color: #0F172A;
}

/* Results Counter */
.studio-results-counter {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 2rem;
}

.studio-results-counter strong {
    color: #0F172A;
}

/* Studio Projects 3-Column Grid */
.studio-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4.5rem;
}

@media (max-width: 1100px) {
    .studio-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 680px) {
    .studio-projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .studio-search-wrap {
        max-width: 100%;
    }
}

/* -------------------------------------------------------------
   STUDIO PROJECT CARD ARCHITECTURE
------------------------------------------------------------- */
.studio-project-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
    position: relative;
}

.studio-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 25px rgba(255, 87, 34, 0.08);
    border-color: rgba(255, 87, 34, 0.4);
}

/* Edge-to-Edge Media Canvas */
.studio-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #0B0D13;
    overflow: hidden;
}

.studio-media-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.studio-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.studio-project-card:hover .studio-media-img {
    transform: scale(1.08);
}

/* Hover Dark Scrim & Action Button */
.studio-media-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 13, 19, 0.2) 0%, rgba(11, 13, 19, 0.75) 100%);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.studio-project-card:hover .studio-media-scrim {
    opacity: 1;
}

.studio-media-btn {
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.5);
    transform: translateY(12px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-project-card:hover .studio-media-btn {
    transform: translateY(0);
}

/* Floating Glassmorphic Top Badges */
.studio-media-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.studio-badge-category {
    background: rgba(11, 13, 19, 0.78);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #FF7043;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.studio-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF5722;
    display: inline-block;
}

.studio-badge-live {
    pointer-events: auto;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.studio-badge-live:hover {
    background: #059669;
    transform: scale(1.05);
}

/* Floating Date Chip */
.studio-date-chip {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(11, 13, 19, 0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #CBD5E1;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    z-index: 3;
}

/* Studio Card Body Content */
.studio-card-body {
    padding: 1.6rem 1.6rem 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.studio-client-row {
    margin-bottom: 0.7rem;
}

.studio-client-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #F8FAFC;
    color: #64748B;
    border: 1px solid #E2E8F0;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

.studio-card-title {
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 0.65rem 0;
}

.studio-card-title a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.studio-card-title a:hover {
    color: var(--color-primary);
}

.studio-card-desc {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    flex-grow: 1;
}

/* Modern Tech Stack Pills */
.studio-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.4rem;
}

.studio-tech-pill {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    background: #F1F5F9;
    color: #334155;
    padding: 0.22rem 0.55rem;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
}

.studio-tech-pill-more {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(255, 87, 34, 0.08);
    padding: 0.22rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

/* Card Action Footer */
.studio-card-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #F1F5F9;
}

.studio-btn-primary {
    flex-grow: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: #0B0D13;
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.studio-btn-primary:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.studio-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #F8FAFC;
    color: #475569;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.studio-btn-icon:hover {
    background: #0B0D13;
    color: #FFFFFF;
    border-color: #0B0D13;
    transform: translateY(-1px);
}

/* Empty Search State */
.studio-empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    background: #FFFFFF;
    border: 1px dashed #CBD5E1;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.studio-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.studio-empty-state h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.studio-empty-state p {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 1.5rem;
}

.proj-category-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-primary);
    background: var(--color-primary-subtle);
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.proj-client-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #F8FAFC;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
}

/* Detail Page Banner Frame */
.project-detail-banner-frame {
    background: #0B0D12;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-dark);
}

.project-banner-img-wrap {
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    background: #11141A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-banner-img-wrap:hover .project-banner-img {
    transform: scale(1.02);
}

.proj-zoom-hint-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(11, 13, 18, 0.8);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
}

.project-banner-img-wrap:hover .proj-zoom-hint-badge {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

/* Lightbox Modal */
.image-lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 15, 0.94);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img-content {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox-modal.active .lightbox-img-content {
    transform: scale(1);
}

.lightbox-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

/* -------------------------------------------------------------
   BRAND LOGO ANIMATION STRIPE (TRUST SIGNAL MARQUEE)
------------------------------------------------------------- */
.brand-marquee-section {
    padding: 1.5rem 0 1.5rem 0;
    background: #FFFFFF;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    position: relative;
    overflow: hidden;
}

.brand-marquee-container {
    max-width: 1480px !important;
    width: 100%;
}

.brand-marquee-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 0.85rem auto;
}

.brand-marquee-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    color: #FF5722;
    padding: 0.25rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.brand-marquee-tag .bm-star {
    color: #FF5722;
    font-size: 0.8rem;
}

.brand-marquee-lead {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.45;
    margin: 0;
}

.brand-marquee-lead strong {
    color: #0B0D12;
    font-weight: 800;
}

.brand-marquee-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.bm-gradient-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.bm-grad-left {
    left: 0;
    background: linear-gradient(to right, #FFFFFF, transparent);
}

.bm-grad-right {
    right: 0;
    background: linear-gradient(to left, #FFFFFF, transparent);
}

.brand-marquee-slider {
    display: flex;
    width: max-content;
    animation: brandMarqueeScroll 32s linear infinite;
    will-change: transform;
}

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

.brand-marquee-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-right: 1.25rem;
    flex-shrink: 0;
}

/* Free Auto-Fit Logo Frame: Automatically hugs each logo's shape (square or rectangle) */
.brand-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: unset;
    max-width: unset;
    height: 70px;
    padding: 10px 24px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    user-select: none;
    flex-shrink: 0;
}

.brand-logo-frame:hover {
    border-color: #FF5722;
    background: #FFFBF9;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.12);
}

.bm-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    text-decoration: none;
}

.bm-pure-logo-img {
    height: 48px;
    max-height: 50px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
    filter: grayscale(85%) opacity(0.85);
    transition: all 0.25s ease;
}

.brand-logo-frame:hover .bm-pure-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.03);
}

@keyframes brandMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* -------------------------------------------------------------
   SCROLL EFFECTS & PROGRESS TRACKER
------------------------------------------------------------- */
.scroll-progress-track {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: transparent;
    z-index: 1500;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF5722 0%, #FF8A00 50%, #FF3D00 100%);
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.8), 0 0 4px rgba(255, 87, 34, 0.5);
    transition: width 0.08s linear;
}

/* Global Scroll Reveal Animations */
.reveal-init {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-init.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-init:nth-child(2) { transition-delay: 0.08s; }
.reveal-init:nth-child(3) { transition-delay: 0.16s; }
.reveal-init:nth-child(4) { transition-delay: 0.24s; }
.reveal-init:nth-child(5) { transition-delay: 0.32s; }
.reveal-init:nth-child(6) { transition-delay: 0.40s; }

/* -------------------------------------------------------------
   DIGITAL MARKETING BADGES & CHANNELS TICKER STRIP
------------------------------------------------------------- */
.srv-card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
}

.srv-marketing-badge {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.22rem 0.65rem;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.srv-marketing-badge.badge-blue {
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
}

.srv-marketing-badge.badge-orange {
    background: #FFF7ED;
    color: #EA580C;
    border: 1px solid #FFEDD5;
}

.srv-marketing-badge.badge-cyan {
    background: #F0F9FF;
    color: #0284C7;
    border: 1px solid #BAE6FD;
}

.srv-marketing-badge.badge-amber {
    background: #FFFBEB;
    color: #D97706;
    border: 1px solid #FDE68A;
}

.srv-marketing-badge.badge-coral {
    background: #FFF1F2;
    color: #E11D48;
    border: 1px solid #FECDD3;
}

.srv-marketing-badge.badge-purple {
    background: #F5F3FF;
    color: #7C3AED;
    border: 1px solid #DDD6FE;
}

/* Digital Marketing Skills Ticker Strip */
.marketing-skills-strip {
    margin-top: 2.75rem;
    padding: 1rem 0;
    background: #0B0D12;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marketing-skills-slider {
    display: flex;
    width: max-content;
    animation: marketingTickerScroll 28s linear infinite;
}

.marketing-skills-slider:hover {
    animation-play-state: paused;
}

.marketing-skills-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-right: 1.25rem;
    flex-shrink: 0;
}

.m-skill-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: #F8FAFC;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.m-skill-chip:hover {
    background: rgba(255, 87, 34, 0.25);
    border-color: #FF5722;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.m-chip-icon {
    font-size: 0.95rem;
}

@keyframes marketingTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* -------------------------------------------------------------
/* -------------------------------------------------------------
   REDESIGNED CONTACT PAGE STYLES (REFINED TEXT WEIGHTS & TILE SIZES)
------------------------------------------------------------- */
.contact-page-wrapper {
    background: #FAFAFB;
    padding-bottom: 2.5rem;
}

/* 1. Contact Hero */
.contact-hero-section {
    padding: 3.5rem 0 2.5rem 0;
    background: #FFFFFF;
    border-bottom: 1px solid #F1F5F9;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.75rem;
    align-items: center;
}

.contact-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-mono, monospace);
    font-size: 0.72rem;
    font-weight: 600;
    color: #EA580C;
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.cp-plane-icon {
    color: #EA580C;
}

.contact-hero-title {
    font-size: 2.65rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0B0D12;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.contact-hero-lead {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 1.65rem;
    font-weight: 400;
}

.contact-value-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.c-val-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #475569;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.c-val-badge:hover {
    border-color: #FF5722;
    color: #0F172A;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.08);
}

/* Hero Right Mockup */
.contact-mockup-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    padding: 1rem 0.5rem;
}

.c-mockup-floating-pill {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.pill-top-growth {
    top: -5px;
    right: -5px;
}

.pill-bottom-leads {
    bottom: 20px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

.mf-label {
    font-size: 0.68rem;
    color: #64748B;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.mf-val-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.mf-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B0D12;
}

.mf-leads-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #FFF7ED;
    color: #EA580C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.mf-leads-info .mf-val {
    font-size: 1rem;
}

/* Decorative Circles */
.c-doodle-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.doodle-c1 {
    width: 24px;
    height: 24px;
    border: 2px solid #CBD5E1;
    top: 15px;
    left: 15px;
}

.doodle-c2 {
    width: 14px;
    height: 14px;
    background: #EA580C;
    opacity: 0.15;
    bottom: 10px;
    right: 20px;
}

.c-doodle-ring {
    position: absolute;
    width: 190px;
    height: 190px;
    border: 1px dashed rgba(255, 87, 34, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Laptop Mockup Frame */
.c-laptop-screen {
    background: #0B0D12;
    border-radius: 14px 14px 4px 4px;
    padding: 7px 7px 10px 7px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    position: relative;
    border: 1.5px solid #1E293B;
}

.c-screen-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 6px 6px 6px;
}

.cs-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cs-dot.dot-red { background: #EF4444; }
.cs-dot.dot-yellow { background: #F59E0B; }
.cs-dot.dot-green { background: #10B981; }

.cs-title {
    font-size: 0.62rem;
    color: #64748B;
    margin-left: 6px;
    font-family: var(--font-mono, monospace);
    font-weight: 500;
}

.c-screen-body {
    background: #0F172A;
    border-radius: 7px;
    padding: 0.85rem;
}

.c-dash-grid {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0.65rem;
}

.c-dash-sidebar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid rgba(255,255,255,0.06);
    padding-right: 5px;
}

.c-dash-logo {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: #FF5722;
    color: #FFFFFF;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.c-dash-nav-line {
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

.c-dash-nav-line.short {
    width: 60%;
}

.c-dash-stats-row {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.c-mini-stat {
    flex: 1;
    height: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    padding: 2px;
    display: flex;
    align-items: center;
}

.cms-bar {
    height: 3px;
    width: 70%;
    background: #FF5722;
    border-radius: 2px;
}

.cms-bar.b2 { background: #3B82F6; width: 50%; }
.cms-bar.b3 { background: #10B981; width: 85%; }

.c-dash-chart-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 75px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    padding: 6px;
}

.c-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 100%;
    flex: 1;
}

.c-chart-bars span {
    flex: 1;
    background: linear-gradient(180deg, #FF5722 0%, rgba(255, 87, 34, 0.2) 100%);
    border-radius: 2px 2px 0 0;
}

.c-dash-donut {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.donut-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 4px solid #FF5722;
    border-top-color: #3B82F6;
    border-left-color: #10B981;
}

.c-laptop-base {
    height: 8px;
    background: #334155;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    width: 106%;
    margin-left: -3%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* 2. Main Contact Form & Sidebar Section */
.contact-main-section {
    padding: 2.5rem 0;
}

.contact-two-cols-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.75rem;
    align-items: start;
}

/* Left Form Card */
.contact-form-container-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.75rem 1.65rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.cf-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.cf-header-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #FFF7ED;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B0D12;
    margin-bottom: 0.2rem;
    letter-spacing: -0.015em;
}

.cf-subtitle {
    font-size: 0.84rem;
    color: #64748B;
    margin: 0;
    font-weight: 400;
}

.contact-feedback-alert {
    padding: 0.85rem 1.15rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.84rem;
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-danger {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.cf-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cf-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    position: relative;
}

.cf-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

.required-star {
    color: #EA580C;
    font-weight: 700;
}

.cf-input,
.cf-select,
.cf-textarea {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.84rem;
    color: #0F172A;
    font-family: inherit;
    font-weight: 400;
    transition: all 0.2s ease;
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
    background: #FFFFFF;
    border-color: #FF5722;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.cf-select-wrap {
    position: relative;
    width: 100%;
}

.cf-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 2.2rem;
}

.cf-select-arrow {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    color: #94A3B8;
    pointer-events: none;
}

.cf-textarea {
    resize: vertical;
    min-height: 95px;
}

.cf-char-count-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    color: #94A3B8;
    font-family: var(--font-mono, monospace);
    font-weight: 500;
}

.cf-submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.22);
    transition: all 0.25s ease;
    margin-top: 0.35rem;
}

.cf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 87, 34, 0.32);
    background: linear-gradient(135deg, #F4511E 0%, #FF5722 100%);
}

.cf-trust-guarantees {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cf-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: #64748B;
}

/* Right Sidebar */
.contact-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Direct Reach Card */
.direct-reach-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.65rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.dr-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B0D12;
    margin-bottom: 0.2rem;
    letter-spacing: -0.015em;
}

.dr-subtitle {
    font-size: 0.82rem;
    color: #64748B;
    margin-bottom: 1.15rem;
    font-weight: 400;
}

.dr-channels-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dr-channel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.dr-channel-item:hover {
    background: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.dr-ch-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dr-ch-icon-wrap.icon-orange { background: #FFF7ED; }
.dr-ch-icon-wrap.icon-amber { background: #FEF3C7; }
.dr-ch-icon-wrap.icon-blue { background: #EFF6FF; }
.dr-ch-icon-wrap.icon-socials { background: #FFF7ED; }

.dr-social-icons-group {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.2rem;
    flex-wrap: wrap;
}

.dr-soc-pill-btn {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #64748B;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dr-soc-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.dr-soc-pill-btn.soc-linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    color: #FFFFFF;
}

.dr-soc-pill-btn.soc-instagram:hover {
    background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
    border-color: #E1306C;
    color: #FFFFFF;
}

.dr-soc-pill-btn.soc-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #FFFFFF;
}

.dr-soc-pill-btn.soc-github:hover {
    background: #0F172A;
    border-color: #0F172A;
    color: #FFFFFF;
}

.dr-soc-pill-btn.soc-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #FFFFFF;
}

.dr-ch-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dr-ch-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.1rem;
}

.dr-ch-val {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1E293B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dr-ch-val:hover {
    color: #FF5722;
}

.dr-ch-val.link-blue {
    color: #2563EB;
}

.dr-copy-btn,
.dr-link-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dr-copy-btn:hover,
.dr-link-btn:hover {
    border-color: #FF5722;
    color: #FF5722;
    background: #FFF7ED;
}

.copy-tooltip {
    position: absolute;
    top: -26px;
    right: 0;
    background: #0B0D12;
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

.copy-tooltip.show-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-2px);
}

/* What Happens Next? Dark Card */
.next-steps-dark-card {
    background: #0B0D12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.65rem 1.5rem;
    color: #FFFFFF;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ns-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.ns-star {
    font-size: 1.05rem;
}

.ns-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.01em;
}

.ns-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.ns-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ns-num-pill {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FF5722;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.ns-step-text {
    font-size: 0.82rem;
    color: #CBD5E1;
    line-height: 1.5;
    font-weight: 400;
}

.ns-signature-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ns-hand-signature {
    font-family: 'Brush Script MT', 'Caveat', cursive;
    font-size: 1.65rem;
    color: #FF5722;
    letter-spacing: 0.03em;
}

/* 3. Credibility & Growth Metrics Showcase Banner */
.contact-credibility-section {
    padding: 1rem 0 2rem 0;
}

.contact-credibility-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.35rem 1.75rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.ccc-left-col {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ccc-megaphone-graphic {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #FFF7ED;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ccc-mega-icon {
    font-size: 1.65rem;
}

.ccc-floating-socials {
    position: absolute;
    top: -6px;
    right: -8px;
    display: flex;
    gap: 3px;
}

.c-soc-pill {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #FFFFFF;
}

.soc-fb { background: #1877F2; }
.soc-google { background: #EA4335; }
.soc-ig { background: #E1306C; font-size: 0.5rem; }

.ccc-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0B0D12;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.015em;
}

.ccc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.ccc-stat-box {
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-radius: 10px;
    padding: 0.75rem 0.65rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}

.ccc-stat-box:hover {
    background: #FFFFFF;
    border-color: #FF5722;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.08);
}

.ccc-stat-icon {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.ccc-stat-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B0D12;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.ccc-stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748B;
}

/* -------------------------------------------------------------
   TESTIMONIALS & CLIENT IMPACT SECTION (EXACT DESIGN)
------------------------------------------------------------- */
.testimonials-section {
    background: #FAFAFC;
    padding: 5.5rem 0;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1360px;
    margin: 0 auto;
}

/* Top Header with Title & 4 Quick Stats */
.testimonials-top-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 3.25rem;
    flex-wrap: wrap;
}

.testimonials-title-col {
    max-width: 580px;
}

.testimonials-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.18;
    margin: 0.65rem 0 0.85rem 0;
    letter-spacing: -0.03em;
}

.testimonials-sub-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    max-width: 480px;
}

.testimonials-plane-doodle {
    flex-shrink: 0;
    margin-top: 2px;
}

.testimonials-subtext {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* Right Stats Row */
.testimonials-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.t-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    min-width: 85px;
}

.t-stat-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFF7ED;
    border: 1.5px solid #FFEDD5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.08);
    transition: transform 0.2s ease;
}

.t-stat-pill:hover .t-stat-icon-wrap {
    transform: translateY(-2px);
}

.t-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
    display: block;
}

.t-stat-label {
    font-size: 0.72rem;
    color: #64748B;
    font-weight: 600;
    line-height: 1.2;
}

/* Carousel Container & Cards Grid */
.testimonials-carousel-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.testimonials-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1.5px solid #F1F5F9;
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 87, 34, 0.25);
}

.t-card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

/* Brand Badges */
.t-brand-logo-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    color: #FFFFFF;
    height: 36px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.brand-resonance {
    background: #0B1E3F !important;
}

.brand-talking-crooks {
    background: #0284C7 !important;
}

.brand-sparkle {
    background: #701A75 !important;
}

.brand-adriti {
    background: #4C1D95 !important;
}

.t-brand-icon {
    flex-shrink: 0;
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

.t-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.t-b-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.t-b-sub {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.t-brand-uploaded-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    padding: 4px 10px;
    height: 36px;
    max-width: 130px;
    overflow: hidden;
}

.t-brand-img {
    max-height: 26px;
    max-width: 100%;
    object-fit: contain;
}

.t-stars-row {
    color: #EA580C;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.t-quote-mark {
    font-size: 2.75rem;
    line-height: 1;
    color: #FFD8C2;
    font-family: Georgia, serif;
    margin: 0.65rem 0 0.35rem 0;
}

.t-quote-text {
    font-size: 0.925rem;
    color: #334155;
    line-height: 1.65;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    font-weight: 500;
}

.t-author-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid #F8FAFC;
}

.t-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.t-author-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 0.15rem 0;
}

.t-author-role {
    font-size: 0.76rem;
    color: #64748B;
    margin: 0;
    line-height: 1.3;
}

.t-company-hl {
    color: #EA580C;
    font-weight: 600;
}

/* Carousel Buttons */
.t-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.t-arrow-prev {
    left: -21px;
}

.t-arrow-next {
    right: -21px;
}

.t-carousel-arrow:hover {
    background: #FFF7ED;
    border-color: #FF5722;
    transform: translateY(-50%) scale(1.08);
}

.t-carousel-arrow:hover svg {
    stroke: #FF5722;
}

/* Pagination Dots */
.testimonials-pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 3.5rem;
}

.t-dot {
    width: 9px;
    height: 9px;
    border-radius: 9999px;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.t-dot.active {
    width: 24px;
    background: #EA580C;
}

/* -------------------------------------------------------------
   BOTTOM IMPACT SHOWCASE BANNER (THE IMPACT WE CREATE)
------------------------------------------------------------- */
.testimonials-impact-banner {
    background: linear-gradient(135deg, #EA580C 0%, #FF5722 55%, #F97316 100%);
    border-radius: 20px;
    padding: 2.75rem 3rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.22);
}

.impact-arrow-watermark {
    position: absolute;
    right: -10px;
    bottom: -15px;
    opacity: 0.25;
    pointer-events: none;
}

.impact-left-content {
    max-width: 420px;
    position: relative;
    z-index: 2;
}

.impact-tag-badge {
    display: inline-block;
    background: #0B0D12;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    font-family: var(--font-mono, monospace);
}

.impact-title {
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 0.85rem 0;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.impact-title-highlight {
    color: #FFE082;
}

.impact-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.92;
    margin: 0;
    color: #FFFFFF;
}

/* Rising Chart Graphic */
.impact-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 28px;
    margin-top: 1.25rem;
    opacity: 0.8;
}

.impact-mini-chart .bar {
    width: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.impact-mini-chart .bar-1 { height: 8px; }
.impact-mini-chart .bar-2 { height: 14px; }
.impact-mini-chart .bar-3 { height: 20px; }
.impact-mini-chart .bar-4 { height: 24px; }
.impact-mini-chart .bar-5 { height: 28px; background: #FFE082; }

/* Right Metrics Grid */
.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.impact-metric-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding-left: 1.35rem;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.impact-metric-col:first-child {
    border-left: none;
    padding-left: 0;
}

.impact-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
}

.impact-num {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.impact-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.25;
}

.impact-caption {
    font-size: 0.72rem;
    opacity: 0.85;
    line-height: 1.2;
    color: #FFFFFF;
}

.impact-avatar-stack {
    display: flex;
    align-items: center;
    margin-top: 0.4rem;
}

.i-stack-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #FF5722;
    margin-left: -6px;
}

.i-stack-avatar:first-child {
    margin-left: 0;
}

.i-stack-plus {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0B0D12;
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -4px;
    border: 1.5px solid #FF5722;
}

/* -------------------------------------------------------------
   AI GROWTH ASSISTANT CHATBOT WIDGET
------------------------------------------------------------- */
.chatbot-widget-container {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    font-family: var(--font-sans, 'Inter', sans-serif);
}

/* Teaser Notification Bubble */
.chatbot-teaser-bubble {
    position: absolute;
    bottom: 74px;
    right: 0;
    width: 270px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    cursor: pointer;
}

.chatbot-teaser-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cb-teaser-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #94A3B8;
    cursor: pointer;
    line-height: 1;
    padding: 2px 4px;
}

.cb-teaser-close:hover {
    color: #0F172A;
}

.cb-teaser-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF5722;
}

.cb-teaser-content {
    flex: 1;
}

.cb-teaser-heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.25;
}

.cb-teaser-sub {
    font-size: 0.72rem;
    color: #FF5722;
    font-weight: 600;
    margin: 2px 0 0 0;
}

/* Floating Launcher Button */
.chatbot-launcher-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF5722 0%, #EA580C 100%);
    border: 2.5px solid #FFFFFF;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
}

.chatbot-launcher-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(255, 87, 34, 0.55);
}

.cb-launcher-inner {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-launcher-icon-chat,
.cb-launcher-icon-close {
    position: absolute;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-launcher-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
}

.chatbot-launcher-btn.chat-open .cb-launcher-icon-chat {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
}

.chatbot-launcher-btn.chat-open .cb-launcher-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Radar Pulse Ring */
.cb-launcher-ping-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #FF5722;
    top: 0;
    left: 0;
    opacity: 0.7;
    animation: cbPing 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes cbPing {
    75%, 100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.cb-launcher-status-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 13px;
    height: 13px;
    background: #10B981;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

/* Tooltip */
.cb-launcher-tooltip {
    position: absolute;
    right: 70px;
    background: #0B0D12;
    color: #FFFFFF;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.chatbot-launcher-btn:hover .cb-launcher-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Modal Window */
.chatbot-modal-window {
    position: absolute;
    bottom: 74px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 36px);
    height: 570px;
    max-height: calc(100vh - 110px);
    background: #FFFFFF;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.94);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    transform-origin: bottom right;
}

.chatbot-modal-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Window Header */
.cb-window-header {
    background: linear-gradient(135deg, #0B0D12 0%, #1E293B 100%);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cb-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cb-header-avatar {
    position: relative;
    width: 38px;
    height: 38px;
}

.cb-header-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #FF5722;
}

.cb-online-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #10B981;
    border: 2px solid #0B0D12;
    border-radius: 50%;
}

.cb-header-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cb-badge-sparkle {
    font-size: 0.62rem;
    font-weight: 700;
    background: rgba(255, 87, 34, 0.25);
    color: #FF7043;
    border: 1px solid rgba(255, 87, 34, 0.4);
    padding: 1px 6px;
    border-radius: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.cb-header-status {
    font-size: 0.72rem;
    color: #94A3B8;
    margin: 2px 0 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cb-pulse-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
}

.cb-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cb-ctrl-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cb-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.cb-ctrl-btn.muted {
    color: #EF4444;
}

.cb-ctrl-close:hover {
    background: #EF4444;
    color: #FFFFFF;
}

/* Window Body */
.cb-window-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

/* Message Wrappers */
.cb-msg-wrap {
    display: flex;
    gap: 8px;
    max-width: 100%;
}

.cb-msg-bot {
    align-self: flex-start;
}

.cb-msg-user {
    align-self: flex-end;
    justify-content: flex-end;
}

.cb-msg-enter {
    animation: cbFadeUp 0.28s ease forwards;
}

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

.cb-avatar-small img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #FF5722;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Bubbles */
.cb-bubble {
    padding: 11px 14px;
    font-size: 0.86rem;
    line-height: 1.5;
    word-break: break-word;
}

.cb-bubble-bot {
    background: #FFFFFF;
    color: #1E293B;
    border-radius: 16px 16px 16px 4px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    max-width: 86%;
}

.cb-bubble-user {
    background: linear-gradient(135deg, #FF5722 0%, #EA580C 100%);
    color: #FFFFFF;
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 3px 10px rgba(255, 87, 34, 0.25);
    max-width: 82%;
}

.cb-intro-text {
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
}

/* Markdown Styling Inside Chatbot */
.cb-md-h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.35rem 0;
}

.cb-md-link {
    color: #EA580C;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cb-md-link:hover {
    color: #FF5722;
}

.cb-md-ul {
    margin: 0.4rem 0 0.4rem 1.1rem;
    padding: 0;
}

.cb-md-li {
    margin-bottom: 0.3rem;
}

.cb-md-gap {
    height: 8px;
}

/* Suggestion Chips */
.cb-quick-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    margin-left: 36px;
}

.cb-chip-btn {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 18px;
    padding: 5px 11px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #0F172A;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    line-height: 1.3;
}

.cb-chip-btn:hover {
    background: #FFF7ED;
    border-color: #FF5722;
    color: #EA580C;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(255, 87, 34, 0.15);
}

.cb-chip-wa {
    background: #ECFDF5;
    border-color: #A7F3D0;
    color: #059669;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cb-chip-wa:hover {
    background: #10B981;
    border-color: #10B981;
    color: #FFFFFF;
}

/* Typing Indicator Animation */
.cb-typing-bubble {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
}

.cb-dot {
    width: 6px;
    height: 6px;
    background: #94A3B8;
    border-radius: 50%;
    animation: cbBounce 1.4s infinite ease-in-out both;
}

.cb-dot:nth-child(1) { animation-delay: -0.32s; }
.cb-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes cbBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); background: #FF5722; }
}

/* In-Chat Lead Capture Form */
.cb-lead-capture-box {
    margin-top: 10px;
    background: #FFF7ED;
    border: 1.5px solid #FFEDD5;
    border-radius: 12px;
    padding: 10px 12px;
}

.cb-lead-header {
    font-size: 0.78rem;
    font-weight: 700;
    color: #EA580C;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cb-inchat-lead-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cb-lead-input {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 0.78rem;
    background: #FFFFFF;
    color: #0F172A;
    outline: none;
    transition: border-color 0.2s ease;
}

.cb-lead-input:focus {
    border-color: #FF5722;
    box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.15);
}

.cb-lead-submit-btn {
    background: linear-gradient(135deg, #FF5722 0%, #EA580C 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.cb-lead-submit-btn:hover {
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.35);
    transform: translateY(-1px);
}

.cb-lead-success {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: #0F172A;
}

.cb-lead-wa-link {
    display: inline-block;
    margin-top: 6px;
    background: #25D366;
    color: #FFFFFF;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 6px;
    text-decoration: none;
}

/* Window Footer Input Bar */
.cb-window-footer {
    background: #FFFFFF;
    padding: 10px 14px 8px 14px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cb-input-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    border: 1.5px solid transparent;
    border-radius: 24px;
    padding: 4px 4px 4px 14px;
    transition: all 0.2s ease;
}

.cb-input-form:focus-within {
    background: #FFFFFF;
    border-color: #FF5722;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.12);
}

.cb-text-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.84rem;
    color: #0F172A;
    outline: none;
}

.cb-text-input::placeholder {
    color: #94A3B8;
}

.cb-send-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF5722 0%, #EA580C 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cb-send-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 3px 10px rgba(255, 87, 34, 0.35);
}

.cb-footer-tagline {
    font-size: 0.68rem;
    color: #94A3B8;
    text-align: center;
}

.cb-tagline-wa {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
}

.cb-tagline-wa:hover {
    text-decoration: underline;
}






