/* Reset & Root Variables */
:root {
    --bg-primary: #040712;
    --bg-secondary: #080d22;
    --bg-card: rgba(13, 22, 50, 0.5);
    --bg-card-hover: rgba(18, 30, 68, 0.65);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-card-active: rgba(0, 132, 255, 0.4);
    
    --text-primary: #f3f4f6;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --primary: #0084ff;
    --primary-rgb: 0, 132, 255;
    --secondary: #00c2ff;
    --secondary-rgb: 0, 194, 255;
    --accent: #00a854;
    --accent-rgb: 0, 168, 84;
    --accent-light: #00ff7f;
    
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --container-width: 1240px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    position: relative;
    line-height: 1.6;
    min-height: 100vh;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 132, 255, 0.4);
}

/* Grid & Layout Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Background Glow Blobs (Elite Ambient Lighting) */
.bg-glow {
    position: fixed;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    transition: var(--transition-smooth);
}

.bg-glow-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.8) 0%, rgba(4, 7, 18, 0) 70%);
}

.bg-glow-2 {
    bottom: 20%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 168, 84, 0.6) 0%, rgba(4, 7, 18, 0) 70%);
}

.bg-glow-3 {
    top: 40%;
    right: 15%;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.7) 0%, rgba(4, 7, 18, 0) 70%);
}

/* Typography & Accent Text */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

.highlight {
    color: var(--accent);
}

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

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

.gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-wrapper {
    margin-bottom: 56px;
}

.section-title-wrapper.align-center {
    text-align: center;
}

.subtitle-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Interactive Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-bounce);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #006adc 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 132, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 132, 255, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: var(--border-card);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 132, 255, 0.1);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Glassmorphism Panel styles */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

/* Header Navigation Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(4, 7, 18, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-card);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(4, 7, 18, 0.85);
    border-bottom: 1px solid rgba(0, 132, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-area:hover {
    opacity: 0.9;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: #0066cc; /* Matches logo blue color */
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Burger Mobile Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Mobile Dropdown Panel */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-primary);
    border-top: 1px solid var(--border-card);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-card);
    transition: var(--transition-smooth);
}

.mobile-link:hover {
    color: var(--secondary);
    padding-left: 8px;
}

/* Hero Section Styling */
.hero-section {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badge-elite {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 132, 255, 0.12);
    border: 1px solid rgba(0, 132, 255, 0.25);
    color: var(--secondary);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-card);
    padding-top: 24px;
    margin-bottom: 28px;
}

.metric-card {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Glass Dashboard Mockup inside Hero */
.hero-dashboard-wrapper {
    position: relative;
    z-index: 10;
}

.hero-dashboard-wrapper::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.glass-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.glass-dashboard:hover {
    transform: translateY(-4px) rotate(0.5deg);
    border-color: var(--border-card-active);
    box-shadow: 0 30px 60px rgba(0, 132, 255, 0.1);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

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

.dash-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots .dot.red { background: #ff5f56; }
.dash-dots .dot.yellow { background: #ffbd2e; }
.dash-dots .dot.green { background: #27c93f; }

.dash-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.dash-sync {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dash-sync i {
    width: 12px;
    height: 12px;
}

.spin {
    animation: rotation 4s infinite linear;
}

@keyframes rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(359deg); }
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.chart-mockup-canvas {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    height: 180px;
    position: relative;
    padding: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.kpi-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.kpi-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.kpi-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.3;
    font-weight: 500;
}

.chart-mockup {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    height: 140px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    margin-bottom: 20px;
    overflow: hidden;
}

.mockup-bar-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.bar-col {
    background: rgba(0, 194, 255, 0.15);
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 4px 4px 0 0;
    width: 100%;
    height: var(--val);
    animation: growBar 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.bar-col.highlight-col {
    background: rgba(0, 168, 84, 0.25);
    border-color: rgba(0, 168, 84, 0.5);
}

@keyframes growBar {
    from { height: 0; }
}

.chart-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-transform: uppercase;
    pointer-events: none;
}

.dash-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(0, 168, 84, 0.7);
    animation: pulsing 1.6s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulsing {
    to { box-shadow: 0 0 0 10px rgba(0, 168, 84, 0); }
}

/* Founder Profile Section Styling */
.founder-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: start;
    margin-top: 0;
}

.founder-media-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 24px;
}

.photo-glow-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
    border: 1px solid var(--border-card);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.photo-glow-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--secondary) 0%, transparent 40%, var(--accent) 100%);
    z-index: -1;
    opacity: 0.4;
}

.founder-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Trust badges floating on founder photo */
.trust-floating-badge {
    position: absolute;
    background: rgba(9, 14, 34, 0.85);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 50;
    transition: var(--transition-smooth);
}

.trust-floating-badge:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.trust-floating-badge.top-right {
    top: 20px;
    right: -30px;
    border-left: 3px solid #14a800; /* Upwork Green */
}

.trust-floating-badge.bottom-left {
    bottom: 20px;
    left: -30px;
    border-left: 3px solid #1dbf73; /* Fiverr Green */
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.upwork-green { color: #14a800; }
.fiverr-green { color: #1dbf73; }

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.badge-highlight {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Profile details */
.founder-subtitle {
    font-size: 2rem;
    margin-bottom: 6px;
}

.founder-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.bio-paragraphs p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.platform-hire-row {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.founder-media-col .platform-hire-row {
    width: 100%;
    max-width: 420px;
    justify-content: center;
    margin-top: 0;
}

.founder-media-col .platform-card {
    flex: 0 1 auto;
    min-width: 165px;
    max-width: 175px;
    padding: 8px 12px;
    font-size: 0.8rem;
}

.founder-media-col .platform-card.upwork-card {
    border-color: rgba(20, 168, 0, 0.35);
    box-shadow: 0 0 15px rgba(20, 168, 0, 0.12), inset 0 0 8px rgba(20, 168, 0, 0.04);
    background: rgba(20, 168, 0, 0.02);
}

.founder-media-col .platform-card.upwork-card:hover {
    border-color: #14a800;
    box-shadow: 0 0 20px rgba(20, 168, 0, 0.35), inset 0 0 10px rgba(20, 168, 0, 0.08);
    background: rgba(20, 168, 0, 0.06);
}

.founder-media-col .platform-card.fiverr-card {
    border-color: rgba(29, 191, 115, 0.35);
    box-shadow: 0 0 15px rgba(29, 191, 115, 0.12), inset 0 0 8px rgba(29, 191, 115, 0.04);
    background: rgba(29, 191, 115, 0.02);
}

.founder-media-col .platform-card.fiverr-card:hover {
    border-color: #1dbf73;
    box-shadow: 0 0 20px rgba(29, 191, 115, 0.35), inset 0 0 10px rgba(29, 191, 115, 0.08);
    background: rgba(29, 191, 115, 0.06);
}

.platform-card span {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.platform-card {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-bounce);
}

.platform-card i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.platform-card.upwork-card:hover {
    border-color: #14a800;
    background: rgba(20, 168, 0, 0.08);
}

.platform-card.fiverr-card:hover {
    border-color: #1dbf73;
    background: rgba(29, 191, 115, 0.08);
}

.platform-card:hover i {
    transform: translate(2px, -2px);
    color: var(--text-primary);
}

/* Client Logos Showcase */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.client-logo-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 194, 255, 0.15);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: var(--transition-bounce);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
}

.client-logo-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(0, 194, 255, 0.18);
    background: var(--bg-card-hover);
}

.client-logo-vector {
    color: var(--text-muted);
    transition: var(--transition-smooth);
    width: 100%;
    display: flex;
    justify-content: center;
}

.client-logo-card:hover .client-logo-vector {
    color: var(--secondary);
}

.client-logo-img {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: opacity(0.4) grayscale(1) brightness(1.2);
    transition: var(--transition-smooth);
}

.client-logo-card:hover .client-logo-img {
    filter: opacity(1) grayscale(0) brightness(1);
}

.client-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.client-logo-card:hover .client-name {
    color: var(--text-primary);
}

/* Interactive Portfolio Section Styling */
.bi-sandbox-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    margin-top: 48px;
}

.bi-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bi-control-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-bounce);
    color: var(--text-primary);
}

.bi-control-btn i {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-smooth);
}

.bi-control-btn.active {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 132, 255, 0.12);
}

.bi-control-btn.active i {
    color: var(--secondary);
}

.btn-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.btn-meta strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}

.btn-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.bi-control-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

/* BI Visual Workspace Panel */
.bi-canvas-workspace {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.bi-workspace-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.bi-workspace-title {
    font-size: 1.35rem;
}

.bi-workspace-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bi-workspace-badge i {
    width: 14px;
    height: 14px;
}

.bi-data-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.bi-data-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.bi-card-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 6px;
}

.bi-card-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.bi-card-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.bi-chart-container {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 20px;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#activeBiChart {
    width: 100% !important;
    height: 100% !important;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.guarantee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 24px 20px;
    transition: var(--transition-bounce);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.guarantee-card:hover {
    transform: translateY(-8px);
}

.guarantee-card:hover .g-icon-box {
    transform: scale(1.1);
}

.g-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 132, 255, 0.08);
    color: var(--secondary);
    margin-bottom: 0;
    transition: var(--transition-bounce);
    flex-shrink: 0;
}

#g-revisions .g-icon-box {
    background: rgba(0, 194, 255, 0.08);
    color: var(--secondary);
}

#g-support .g-icon-box {
    background: rgba(0, 168, 84, 0.08);
    color: var(--accent);
}

#g-escrow .g-icon-box {
    background: rgba(255, 215, 0, 0.06);
    color: #ffd700;
}

#g-nda .g-icon-box {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
}

/* Card Specific Border & Hover Glow Effects */
#g-nda {
    border-color: rgba(99, 102, 241, 0.3);
}
#g-nda:hover {
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
}

#g-escrow {
    border-color: rgba(255, 215, 0, 0.35);
    background: rgba(18, 30, 68, 0.45);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.08);
}
#g-escrow:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.25);
}

#g-delivery {
    border-color: rgba(0, 132, 255, 0.3);
}
#g-delivery:hover {
    border-color: #0084ff;
    box-shadow: 0 20px 40px rgba(0, 132, 255, 0.25);
}

#g-revisions {
    border-color: rgba(0, 194, 255, 0.3);
}
#g-revisions:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.25);
}

#g-support {
    border-color: rgba(0, 168, 84, 0.3);
}
#g-support:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 168, 84, 0.25);
}

#g-satisfaction {
    border-color: rgba(0, 132, 255, 0.3);
}
#g-satisfaction:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.25);
}

.g-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.g-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.g-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Payments Calculator Section Styling */
.payment-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 48px;
    align-items: start;
}

.payment-selection-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Service Category Toggle buttons */
.service-toggle-row {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
}

.service-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.service-toggle-btn i {
    width: 16px;
    height: 16px;
}

.service-toggle-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.service-toggle-btn.active {
    color: #fff;
    background: rgba(0, 194, 255, 0.15);
    border: 1px solid rgba(0, 194, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.1);
}

.plan-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px 24px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-bounce);
}

.plan-card.active {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.15);
}

.plan-badge {
    position: absolute;
    top: 16px;
    left: 20px;
    right: auto;
    background: rgba(0, 168, 84, 0.12);
    border: 1px solid rgba(0, 168, 84, 0.3);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
}

.plan-badge-star {
    position: absolute;
    top: 16px;
    left: 20px;
    right: auto;
    background: rgba(0, 132, 255, 0.12);
    border: 1px solid rgba(0, 132, 255, 0.3);
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-badge-star i {
    width: 10px;
    height: 10px;
}

#card-custom-quote .plan-badge-star {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.25);
    color: #ffd700;
}

.plan-tier-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.plan-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-bullets.expanded {
    max-height: 800px;
    opacity: 1;
    margin-top: 12px;
    margin-bottom: 4px;
}

.plan-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.plan-bullets li i {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.more-features-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 4px 0;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.more-features-btn:hover {
    color: var(--primary);
    transform: translateX(2px);
}

.more-features-btn i {
    width: 14px;
    height: 14px;
    transition: var(--transition-smooth);
}

/* Custom hours range slider design */
.custom-slider-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 24px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slider-header span {
    font-weight: 600;
}

.slider-value-display {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin-bottom: 12px;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 132, 255, 0.5);
    transition: var(--transition-smooth);
}

.custom-slider::-webkit-slider-thumb:hover {
    background: var(--secondary);
    transform: scale(1.15);
}

.slider-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Checkout Form Layout styling */
.payment-checkout-form {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.checkout-title {
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-title i {
    width: 14px;
    height: 14px;
    color: var(--secondary);
}

.secure-badge {
    font-size: 0.72rem;
    background: rgba(0, 168, 84, 0.1);
    color: var(--accent);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.invoice-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.invoice-row.divider {
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.invoice-row.total {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--text-primary);
    align-items: center;
}

.total-price {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--secondary);
}

/* Forms general inputs styling */
.checkout-billing-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.input-group input, .input-group select, .input-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    outline: none;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(0, 132, 255, 0.15);
}

.payment-methods-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 16px;
}

.method-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.method-tab.active {
    background: rgba(0, 132, 255, 0.08);
    border-color: var(--primary);
    color: var(--text-primary);
}

.card-input-wrapper {
    position: relative;
}

.card-input-wrapper input {
    width: 100%;
    padding-right: 44px;
}

.card-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

/* Wire Payment instructions design box */
.wire-instruction-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed var(--border-card);
    border-radius: 8px;
    padding: 16px;
    font-size: 0.85rem;
}

.wire-instruction-card p {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.wire-detail-row {
    margin-bottom: 6px;
    color: var(--text-primary);
}

.wire-note {
    font-size: 0.72rem !important;
    color: var(--text-muted) !important;
    margin-top: 12px;
}

.hidden {
    display: none !important;
}

/* Contact form & Info column styling */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: start;
}

.contact-header {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.info-link-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.info-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.info-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 132, 255, 0.08);
    color: var(--secondary);
}

.info-link-text {
    display: flex;
    flex-direction: column;
}

.info-link-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.info-link-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a.info-link-value:hover {
    color: var(--secondary);
}

/* Quick FAQs Accordion Box */
.faq-accordion-box {
    border-top: 1px solid var(--border-card);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 16px;
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question-btn i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-question-btn:hover {
    color: var(--secondary);
}

.faq-question-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding-top: 12px;
    line-height: 1.6;
}

/* Contact Message form panel container styling */
.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 24px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-panel-title {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.form-panel-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.interactive-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Squeeze input fields and gaps inside contact panel */
.contact-form-panel .input-group {
    gap: 5px;
}

.contact-form-panel .input-group input,
.contact-form-panel .input-group textarea {
    padding: 10px 14px;
}

.contact-form-panel textarea#visitor-message {
    min-height: 120px;
    resize: vertical;
}

/* Form success overlay popup styling */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    z-index: 100;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 360px;
}

.success-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 168, 84, 0.1);
    color: var(--accent);
}

.success-icon-badge i {
    width: 36px;
    height: 36px;
}

.success-card h4 {
    font-size: 1.25rem;
}

.success-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.code-formatted-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 6px;
    padding: 12px;
    font-family: monospace;
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-align: left;
    white-space: pre-wrap;
    width: 100%;
    max-height: 100px;
    overflow-y: auto;
}

.success-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

.success-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
}

.btn-close-alert {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 8px;
}

.btn-close-alert:hover {
    color: var(--text-primary);
}

/* Footer Section Styling */
.footer {
    background: #02040a;
    border-top: 1px solid var(--border-card);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 0.9fr);
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    border: 1px solid var(--border-card);
    transition: var(--transition-bounce);
}

.social-row a:hover {
    background: rgba(0, 132, 255, 0.08);
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.footer-links-col ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-info-item {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info-item i {
    width: 14px;
    height: 14px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid var(--border-card);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    color: var(--text-primary);
}

/* Responsive Overrides (Mobile, Tablet, Cross-Platform UI styling) */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .header-ctas .nav-cta {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }

    .trust-floating-badge.top-right {
        right: 10px;
    }
    
    .trust-floating-badge.bottom-left {
        left: 10px;
    }

    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .founder-media-col {
        order: -1;
    }
    
    .bi-sandbox-wrapper {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo-card {
        background: rgba(13, 22, 50, 0.65);
        border-color: rgba(0, 194, 255, 0.3);
        box-shadow: 0 8px 24px rgba(0, 194, 255, 0.06);
    }
    
    .client-logo-img {
        filter: opacity(0.75) grayscale(0) brightness(1.1);
    }
    
    .client-name {
        color: var(--text-secondary);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .plan-cards-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 12px 16px;
    }
}

@media (max-width: 480px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .bi-data-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        white-space: normal;
        box-sizing: border-box;
    }
    
    .glass-dashboard {
        padding: 16px;
    }
    
    .chart-mockup-canvas {
        min-width: 0;
        width: 100%;
    }
    
    .platform-hire-row {
        flex-direction: column;
    }
}

/* Safari Hack for blurs */
@supports (-webkit-backdrop-filter: none) {
    .glass-panel, .header, .glass-dashboard, .bi-canvas-workspace, .guarantee-card, .plan-card, .payment-checkout-form, .info-link-card, .contact-form-panel {
        background: rgba(13, 22, 50, 0.4);
    }
}

/* Pricing Grid for 4 Cards */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 48px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 56px 20px 20px 20px;
    position: relative;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

/* Pricing Card Highlighted Borders & Glow Themes */
#card-bi-simple {
    border-color: rgba(0, 168, 84, 0.3);
}
#card-bi-simple:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 168, 84, 0.2);
}

#card-web-dev {
    border-color: rgba(0, 194, 255, 0.3);
}
#card-web-dev:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 194, 255, 0.2);
}

#card-bi-web {
    border-color: rgba(99, 102, 241, 0.3);
}
#card-bi-web:hover {
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

#card-custom-quote {
    border-color: rgba(255, 215, 0, 0.35);
    background: rgba(18, 30, 68, 0.45);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.06);
}
#card-custom-quote:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 54px;
}

.pricing-card:not(#card-bi-web):not(#card-web-dev) .plan-description {
    margin-bottom: 38px;
}

@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Founder Bio Cards */
.bio-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 12px;
}

.bio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition-bounce);
}

.bio-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.bio-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 132, 255, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bio-card-icon i {
    width: 20px;
    height: 20px;
}

.bio-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bio-card-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.bio-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 !important;
}

/* Multi-page First Section Spacing */
main > section:first-of-type:not(.hero-section) {
    padding-top: calc(var(--header-height) + 10px);
}

main > section:first-of-type:not(.hero-section) .section-title-wrapper {
    margin-bottom: 24px;
}
