/* =============================================
   HANVIRA — Complete Responsive Stylesheet
   Mobile-first, premium, startup-grade
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --bg-dark: #070B14;
    --bg-card: rgba(13, 27, 42, 0.4);
    --bg-card-hover: rgba(13, 27, 42, 0.7);
    --accent-blue: #1B6CA8;
    --accent-blue-glow: rgba(27, 108, 168, 0.6);
    --accent-cyan: #00F0FF;
    --accent-cyan-glow: rgba(0, 240, 255, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --success-green: #10B981;
    --danger-red: #EF4444;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --nav-height: 68px;
    --sp: clamp(56px, 8vw, 100px);
    --pad: clamp(16px, 4vw, 24px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

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

button {
    font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--pad);
    width: 100%;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-green { color: var(--success-green); }
.text-red { color: var(--danger-red); }

/* ===== BACKGROUND BLOBS ===== */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.35;
    pointer-events: none;
    animation: blobFloat 12s infinite alternate ease-in-out;
}
.blob-1 {
    top: -5%;
    left: -8%;
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    background: radial-gradient(circle, var(--accent-blue-glow), transparent 70%);
}
.blob-2 {
    top: 40%;
    right: -8%;
    width: clamp(250px, 40vw, 500px);
    height: clamp(250px, 40vw, 500px);
    background: radial-gradient(circle, var(--accent-cyan-glow), transparent 70%);
    animation-delay: -6s;
}
@keyframes blobFloat {
    0%   { transform: translateY(0) scale(1); }
    100% { transform: translateY(-24px) scale(1.04); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}
.btn i { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #0f4a7a);
    color: #fff;
    box-shadow: 0 4px 14px var(--accent-blue-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-blue-glow);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
}
.btn-lg { padding: 14px 28px; font-size: 0.975rem; }
.btn-block { display: flex; width: 100%; }

/* ===== GLASSMORPHISM ===== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.navbar.scrolled {
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}
.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}
.logo-img-footer {
    height: 64px;
    width: auto;
    margin-bottom: 14px;
    object-fit: contain;
    mix-blend-mode: screen;
}
/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.875rem;
    letter-spacing: 0.2px;
    padding: 4px 0;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; gap: 10px; align-items: center; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 9px 10px;
    width: 42px;
    height: 38px;
    z-index: 1001;
    transition: background 0.2s, border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.nav-hamburger:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}
.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Drawer */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(7, 11, 20, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px var(--pad) 28px;
    flex-direction: column;
    gap: 4px;
    z-index: 998;
    animation: menuDown 0.25s ease forwards;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
@keyframes menuDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile-menu a {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.18s;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
    border-color: var(--glass-border);
}
.nav-mobile-cta {
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}
.nav-mobile-cta .btn { width: 100%; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    padding-top: var(--nav-height);
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 65% 45%, rgba(27,108,168,0.13) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(0,240,255,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(60px, 10vw, 100px) var(--pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { position: relative; z-index: 1; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,240,255,0.08);
    border: 1px solid rgba(0,240,255,0.2);
    color: var(--accent-cyan);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 22px;
}
.badge i { width: 14px; height: 14px; flex-shrink: 0; }
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
}
.highlight {
    background: linear-gradient(135deg, #fff 30%, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    transform: perspective(700px) rotateY(-14deg) rotateX(4deg);
    width: 100%;
    max-width: 360px;
}
.hex-cell {
    aspect-ratio: 1;
    background: rgba(27,108,168,0.08);
    border: 1px solid rgba(0,240,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 2.2vw, 22px);
    animation: hexflicker var(--d, 4s) var(--delay, 0s) infinite;
}
@keyframes hexflicker {
    0%, 88%, 100% { background: rgba(27,108,168,0.08); border-color: rgba(0,240,255,0.1); }
    90%, 97%      { background: rgba(27,108,168,0.28); border-color: rgba(0,240,255,0.5); }
}

/* =============================================
   TICKER
   ============================================= */
.ticker {
    background: rgba(27,108,168,0.07);
    border-top: 1px solid rgba(0,240,255,0.08);
    border-bottom: 1px solid rgba(0,240,255,0.08);
    padding: 12px 0;
    overflow: hidden;
    width: 100%;
}
.ticker-inner {
    display: flex;
    gap: 60px;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
    width: max-content;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ticker-item {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.ticker-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-cyan-glow);
    flex-shrink: 0;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.stats-section    { padding: var(--sp) 0; border-top: 1px solid var(--glass-border); }
.services-section { padding: var(--sp) 0; }
.clients-section  { padding: var(--sp) 0; background: rgba(0,0,0,0.18); }
.cta-section      { padding: var(--sp) 0; }
.founder-section  { padding: var(--sp) 0; background: rgba(13,27,42,0.25); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }

.section-header { margin-bottom: 48px; }
.section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 12px;
    font-weight: 700;
}
.section-header p {
    color: var(--text-secondary);
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    line-height: 1.7;
    max-width: 580px;
}
.text-center.section-header p { margin-left: auto; margin-right: auto; }

/* =============================================
   STATS
   ============================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.stat-card {
    padding: clamp(24px, 4vw, 40px);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 16px;
}
.stat-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
}
.stat-number {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    padding: clamp(22px, 4vw, 36px);
    position: relative;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    border-radius: 16px;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(27,108,168,0.6);
    box-shadow: 0 12px 40px rgba(27,108,168,0.15);
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(27,108,168,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent-cyan);
}
.service-icon i { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p  { color: var(--text-secondary); margin-bottom: 24px; font-size: 0.9rem; line-height: 1.65; }
.service-link {
    color: var(--accent-cyan);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
}
.service-link i { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .service-link i { transform: translateX(4px); }
.price-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-weight: 600;
    color: var(--accent-cyan);
    font-size: 0.875rem;
}

/* =============================================
   CLIENTS
   ============================================= */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.client-card {
    padding: clamp(20px, 3.5vw, 32px) 18px;
    text-align: center;
    transition: transform 0.28s ease, border-color 0.28s ease;
    position: relative;
    border-radius: 14px;
}
.client-card:hover { transform: translateY(-4px); border-color: rgba(27,108,168,0.5); }
.client-icon { width: 44px; height: 44px; margin: 0 auto 14px; }
.client-card h3 { font-size: 1rem; margin-bottom: 10px; }
.client-card p   { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.55; }
.featured {
    border-color: rgba(0,240,255,0.25);
    background: linear-gradient(180deg, rgba(13,27,42,0.6) 0%, rgba(27,108,168,0.1) 100%);
}
.featured-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--bg-dark);
    padding: 3px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

/* =============================================
   CTA / CONTACT SECTION
   ============================================= */
.cta-container {
    padding: clamp(32px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, rgba(27,108,168,0.1), rgba(0,240,255,0.04));
    border-radius: 18px;
    border: 1px solid var(--glass-border);
}
.cta-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.75rem); margin-bottom: 12px; }
.cta-content p  { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input {
    padding: 13px 16px;
    border-radius: 8px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0,240,255,0.08);
}
.contact-form input::placeholder { color: var(--text-secondary); }

/* =============================================
   FOOTER
   ============================================= */
footer {
    border-top: 1px solid var(--glass-border);
    padding-top: clamp(40px, 6vw, 64px);
    background: rgba(0,0,0,0.2);
}
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 48px;
    margin-bottom: clamp(40px, 6vw, 60px);
    align-items: start;
}
.footer-brand p      { color: var(--text-secondary); margin-top: 10px; font-size: 0.875rem; line-height: 1.6; }
.footer-brand .location { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); margin-top: 16px; font-size: 0.875rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.link-column h4  { margin-bottom: 18px; font-size: 0.95rem; color: var(--text-primary); }
.link-column a   { display: block; color: var(--text-secondary); margin-bottom: 10px; font-size: 0.85rem; transition: color 0.2s; }
.link-column a:hover { color: var(--accent-cyan); }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

/* =============================================
   WHY HANVIRA
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
}
.why-points { display: flex; flex-direction: column; gap: 14px; }
.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: border-color 0.2s;
}
.why-point:hover { border-color: rgba(0,240,255,0.3); }
.why-num { font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 700; color: var(--accent-blue); opacity: 0.55; line-height: 1; min-width: 32px; flex-shrink: 0; }
.why-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.why-text p  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.shield-box {
    background: rgba(13,27,42,0.75);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: clamp(24px, 4vw, 40px);
    text-align: center;
}
.shield-icon { display: flex; justify-content: center; margin-bottom: 20px; color: var(--accent-cyan); }
.shield-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.shield-stat { background: rgba(27,108,168,0.08); border: 1px solid rgba(0,240,255,0.12); border-radius: 8px; padding: 14px; text-align: center; }
.shield-stat-num   { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; color: var(--accent-cyan); }
.shield-stat-label { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 14%;
    right: 14%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,240,255,0.3), transparent);
    z-index: 0;
    pointer-events: none;
}
.process-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.step-circle {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 1px solid rgba(0,240,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    box-shadow: 0 0 14px rgba(0,240,255,0.08);
}
.step-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.step-desc  { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

/* =============================================
   FOUNDER
   ============================================= */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}
.founder-avatar-img {
    width: min(160px, 42vw);
    height: min(160px, 42vw);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: block;
    object-fit: cover;
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 18px rgba(0,240,255,0.14);
}
.founder-name   { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; }
.founder-role   { font-size: 12px; color: var(--accent-cyan); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.founder-tags   { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.tag { font-size: 11px; padding: 4px 11px; background: rgba(27,108,168,0.18); border: 1px solid rgba(0,240,255,0.18); color: var(--accent-cyan); border-radius: 4px; }
.founder-content h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; margin-bottom: 12px; line-height: 1.2; font-family: 'Rajdhani', sans-serif; }
.founder-content h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
.founder-content p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }
.founder-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.cred-item  { background: rgba(27,108,168,0.07); border: 1px solid rgba(0,240,255,0.1); border-radius: 8px; padding: 14px; }
.cred-title { font-size: 13px; font-weight: 600; color: var(--accent-cyan); margin-bottom: 3px; }
.cred-sub   { font-size: 12px; color: var(--text-secondary); }

/* =============================================
   PRICING
   ============================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.pricing-card { background: var(--bg-card); padding: clamp(24px, 4vw, 40px); position: relative; border-radius: 14px; border: 1px solid var(--glass-border); display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--accent-cyan); background: linear-gradient(180deg, rgba(27,108,168,0.2), rgba(13,27,42,0.6)); box-shadow: 0 0 28px rgba(0,240,255,0.08); }
.pricing-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan)); color: var(--bg-dark); padding: 3px 18px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 4px; white-space: nowrap; }
.pricing-name   { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.pricing-price  { font-family: 'Rajdhani', sans-serif; font-size: 44px; font-weight: 700; color: var(--accent-cyan); line-height: 1; }
.pricing-period { font-size: 13px; color: var(--text-secondary); }
.pricing-desc   { font-size: 13px; color: var(--text-secondary); margin: 12px 0 18px; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; padding: 0; flex-grow: 1; }
.pricing-features li { font-size: 13px; display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--accent-cyan); font-weight: 700; min-width: 14px; flex-shrink: 0; }
.btn-pricing { display: block; padding: 12px 20px; border-radius: 6px; font-weight: 600; text-align: center; transition: all 0.25s; margin-top: auto; border: 1px solid var(--glass-border); color: var(--text-primary); background: transparent; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.875rem; }
.btn-pricing:hover { border-color: var(--accent-cyan); }
.btn-pricing.featured { background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan)); color: var(--bg-dark); border: none; font-weight: 700; }
.btn-pricing.featured:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0,240,255,0.25); }

/* =============================================
   PAGE HEADERS (inner pages)
   ============================================= */
.page-header {
    padding: clamp(100px, 14vw, 140px) 0 clamp(56px, 7vw, 80px);
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}
.content-section { padding: var(--sp) 0; border-bottom: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.premium-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 16px; padding: clamp(22px, 4vw, 44px); position: relative; overflow: hidden; transition: all 0.28s ease; }
.premium-card:hover { border-color: rgba(0,240,255,0.25); transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,240,255,0.04); }
.card-icon { color: var(--accent-cyan); width: 34px; height: 34px; margin-bottom: 18px; }
.list-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.list-item i    { color: var(--accent-cyan); width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.list-item span { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }
.seo-footer { background: rgba(0,0,0,0.28); padding: 28px 0; text-align: center; border-top: 1px solid var(--glass-border); }
.seo-footer p { color: var(--text-secondary); font-size: 0.82rem; max-width: 800px; margin: 0 auto; line-height: 1.65; }

/* =============================================
   NAV LOGO (CSS)
   ============================================= */
.nav-logo      { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-hex  { width: 38px; height: 33px; background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan)); clip-path: polygon(25% 0%,75% 0%,100% 50%,75% 100%,25% 100%,0% 50%); display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 17px; color: white; }
.nav-logo-text { font-family: 'Rajdhani', sans-serif; font-size: 19px; font-weight: 700; letter-spacing: 3px; color: white; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in { opacity: 0; transition: opacity 0.75s ease-out; }
.fade-in.visible { opacity: 1; }
.slide-up { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease-out, transform 0.65s ease-out; }
.slide-up.visible { opacity: 1; transform: translateY(0); }

.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.35s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.45s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.55s; }
.clients-grid  .client-card:nth-child(1)  { transition-delay: 0.05s; }
.clients-grid  .client-card:nth-child(2)  { transition-delay: 0.15s; }
.clients-grid  .client-card:nth-child(3)  { transition-delay: 0.25s; }
.clients-grid  .client-card:nth-child(4)  { transition-delay: 0.35s; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes float { 0% { transform: translateY(0); } 100% { transform: translateY(-18px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,240,255,0.4); } 70% { box-shadow: 0 0 0 10px rgba(0,240,255,0); } 100% { box-shadow: 0 0 0 0 rgba(0,240,255,0); } }
@keyframes load  { 0% { width: 10%; } 100% { width: 90%; } }

.float-anim-1 { animation: float 4s ease-in-out infinite alternate; }
.float-anim-2 { animation: float 5s ease-in-out infinite alternate-reverse; }
.progress-bar  { height: 4px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; width: 60%; background: var(--accent-cyan); animation: load 2s ease-in-out infinite alternate; }

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .hero-container   { gap: 36px; }
    .services-grid    { grid-template-columns: repeat(2, 1fr); }
    .clients-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr; gap: 36px; }
    .footer-links     { grid-template-columns: repeat(3, 1fr); }
    .founder-grid     { gap: 36px; }
    .why-grid         { gap: 40px; }
    .stats-grid       { grid-template-columns: repeat(3, 1fr); }
    .grid-3           { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — TABLET PORTRAIT (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
    /* Nav */
    .nav-links, .nav-actions { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero { min-height: auto; padding-bottom: 20px; }
    .hero-container {
        grid-template-columns: 1fr;
        padding: 48px var(--pad) 36px;
        gap: 0;
        text-align: center;
    }
    .hero-visual { display: none; }
    .hero-content { text-align: center; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .badge { display: inline-flex; }

    /* Grids */
    .stats-grid    { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid  { grid-template-columns: repeat(2, 1fr); }
    .why-grid      { grid-template-columns: 1fr; gap: 28px; margin-top: 28px; }
    .founder-grid  { grid-template-columns: 1fr; gap: 28px; }
    .cta-container { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .grid-2        { grid-template-columns: 1fr; gap: 18px; }
    .grid-3        { grid-template-columns: 1fr 1fr; gap: 16px; }
    .founder-creds { grid-template-columns: 1fr 1fr; }

    /* Process */
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .process-steps::before { display: none; }

    /* Section header */
    .section-header { margin-bottom: 32px; }

    /* Footer */
    .footer-links { grid-template-columns: repeat(2, 1fr); }

    /* Buttons */
    .btn-lg { padding: 13px 22px; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    :root { --pad: 16px; }

    /* Hero */
    .hero-title { font-size: clamp(1.75rem, 7.5vw, 2.2rem); }
    .hero-cta { flex-direction: column; align-items: center; gap: 10px; }
    .hero-cta .btn { width: 100%; max-width: 300px; }

    /* Grids */
    .stats-grid    { grid-template-columns: 1fr; gap: 14px; }
    .services-grid { grid-template-columns: 1fr; }
    .clients-grid  { grid-template-columns: repeat(2, 1fr); }
    .grid-3        { grid-template-columns: 1fr; }

    /* Process */
    .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Founder */
    .founder-creds { grid-template-columns: 1fr; }

    /* CTA */
    .cta-container { padding: 24px 18px; }

    /* Footer */
    .footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }

    /* Shield */
    .shield-stats { grid-template-columns: 1fr 1fr; }

    /* Why point */
    .why-point { gap: 12px; }
    .why-num { font-size: 22px; min-width: 28px; }
}

/* =============================================
   RESPONSIVE — SMALL PHONES (≤ 360px)
   ============================================= */
@media (max-width: 360px) {
    .clients-grid  { grid-template-columns: 1fr; }
    .footer-links  { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .shield-stats  { grid-template-columns: 1fr; }
    .founder-creds { grid-template-columns: 1fr; }
    .hero-cta .btn { max-width: 100%; }
}

/* =============================================
   HELPER & RESPONSIVE LAYOUT CLASSES (REUSABLE)
   ============================================= */
.about-feature-card {
    padding: clamp(24px, 5vw, 40px);
}
.about-value-card {
    flex: 1 1 300px;
    padding: clamp(20px, 3.5vw, 32px);
    text-align: center;
}
.founder-card {
    padding: clamp(24px, 5vw, 60px);
    gap: clamp(24px, 5vw, 60px) !important;
}
.contact-info-card {
    padding: clamp(24px, 5vw, 40px);
    text-align: center;
}

/* Small adjustments to grids and flexboxes on mobile */
@media (max-width: 768px) {
    /* Prevent vertical overflow in hero container */
    .hero-container {
        padding-top: clamp(80px, 15vw, 120px) !important;
        padding-bottom: 40px !important;
    }
}
@media (max-width: 480px) {
    .founder-card {
        padding: 24px 16px !important;
        gap: 24px !important;
    }
}
