/* 63 Soft premium light theme */
:root {
    --bg: #f4f7fc;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.06);
    --accent: #06b6d4;
    --text: #1e293b;
    --text-muted: #475569;
    --border: rgba(0, 0, 0, 0.06);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --container: min(1200px, 92vw);
    --nav-h: 76px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
body::before { content: ''; position: fixed; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37,99,235,0.06), transparent), radial-gradient(circle at 10% 20%, rgba(6,182,212,0.04), transparent 40%), radial-gradient(circle at 90% 80%, rgba(37,99,235,0.03), transparent 40%); pointer-events: none; z-index: 0; }
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; color: #0f172a; font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.section { padding: 5rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-header .eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); background: rgba(37, 99, 235, 0.08); padding: 0.35rem 0.85rem; border-radius: 50px; margin-bottom: 0.75rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; color: #0f172a; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.text-highlight { color: var(--primary); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.75rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: 0 4px 24px var(--primary-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(0, 0, 0, 0.15); }
.btn-outline:hover { border-color: var(--primary-light); background: rgba(37,99,235,0.05); color: var(--primary); }
.site-header { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.site-header .inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; background: linear-gradient(90deg, #0f172a, var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.site-main { padding-top: var(--nav-h); position: relative; z-index: 1; min-height: 100vh; }
.hero { padding: 4rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-content h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 1.25rem; line-height: 1.15; color: #0f172a; }
.hero-content p { color: var(--text-muted); font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-visual img { width: 100%; border-radius: var(--radius); box-shadow: 0 24px 80px rgba(37,99,235,0.08); }
.trusted-by { padding-top: 2rem; border-top: 1px solid var(--border); }
.trusted-by p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.trusted-logos { display: flex; flex-wrap: wrap; gap: 2rem; opacity: 0.7; }
.trusted-logos span { font-weight: 700; color: var(--text-muted); }
.glass-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), 0 2px 8px rgba(15, 23, 42, 0.01); }
.glass-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,0.15); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06), 0 2px 10px rgba(15, 23, 42, 0.02); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg,rgba(37,99,235,0.08),rgba(6,182,212,0.08)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; color: var(--primary); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: #0f172a; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }
.project-card { padding: 0; overflow: hidden; }
.project-thumb { height: 200px; background: linear-gradient(135deg,#e0ebff,#f4f7fc); overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-body { padding: 1.5rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { font-size: 0.75rem; padding: 0.25rem 0.65rem; border-radius: 50px; background: rgba(37,99,235,0.06); color: var(--primary); border: 1px solid rgba(37,99,235,0.12); }
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; padding: 2.5rem; background: linear-gradient(135deg,#ffffff 0%,#f4f7fc 100%); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02); }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Outfit',sans-serif; font-size: 2.25rem; font-weight: 800; color: var(--primary); display: block; }
.stat-item .lbl { font-size: 0.9rem; color: var(--text-muted); }
.process-steps { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }
.process-step { text-align: center; padding: 1.5rem 1rem; }
.process-step .step-num { font-family: 'Outfit',sans-serif; font-size: 2rem; font-weight: 800; color: rgba(37,99,235,0.2); margin-bottom: 0.75rem; display: block; }
.process-step h4 { font-size: 0.95rem; margin-bottom: 0.35rem; color: #0f172a; }
.process-step p { font-size: 0.8rem; color: var(--text-muted); }
.tech-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.tech-pill { padding: 0.75rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; transition: all 0.25s; box-shadow: 0 4px 10px rgba(0,0,0,0.01); }
.tech-pill:hover { border-color: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.03); }
.pricing-card { text-align: center; position: relative; }
.pricing-card.popular { border-color: var(--primary-light); box-shadow: 0 8px 30px rgba(37,99,235,0.08); }
.pricing-card .badge-pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.35rem 1rem; border-radius: 50px; }
.pricing-card .price { font-family: 'Outfit',sans-serif; font-size: 2.5rem; font-weight: 800; margin: 1rem 0; color: #0f172a; }
.pricing-features { list-style: none; text-align: left; margin: 1.5rem 0; }
.pricing-features li { padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.pricing-features li::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* Redesigned Team Cards (Exactly like the light-theme screenshot) */
.team-card { 
    text-align: center; 
    padding: 2.5rem 1.5rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius-lg) !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.01) !important;
    position: relative;
    overflow: visible !important; /* Allow the offset bubble to peek outside */
}
.team-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(37, 99, 235, 0.12) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06), 0 2px 12px rgba(15, 23, 42, 0.02) !important;
}
.team-avatar { 
    position: relative;
    width: 180px; 
    height: 180px; 
    border-radius: 50%; 
    margin: 0 auto 1.75rem; 
    background: #f1f5f9; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 4rem; 
    font-weight: 800; 
    color: var(--primary); 
    border: 4px solid #ffffff; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 2;
    overflow: hidden; /* Guarantee exactly one perfect sharp circular bounds */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-avatar img { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%; 
    object-fit: cover; 
    background: #f1f5f9;
    z-index: 3;
    transition: transform 0.5s ease;
}
.team-card:hover .team-avatar {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}
.team-card:hover .team-avatar img {
    transform: scale(1.04);
}
.team-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
    transition: color 0.3s;
}
.team-card:hover h3 {
    color: var(--primary);
}
.team-card p.role { 
    font-size: 0.82rem; 
    color: var(--primary); 
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}
.team-card p.bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 240px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: auto;
}
.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.25);
}

.testimonial-card .quote { font-style: italic; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.testimonial-card .stars { color: #fbbf24; margin-bottom: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.75rem; overflow: hidden; background: var(--bg-card); box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01); }
.faq-question { width: 100%; padding: 1.25rem 1.5rem; background: none; border: none; color: var(--text); font-family: 'Outfit',sans-serif; font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; }
.faq-question::after { content: '+'; color: var(--primary); }
.faq-item.open .faq-question::after { content: '×'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 280px; }
.blog-card { padding: 0; overflow: hidden; }
.blog-thumb { height: 160px; background: linear-gradient(135deg,#e0ebff,#f4f7fc); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1.25rem; }
.blog-body .date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.blog-body a.read { color: var(--primary); font-weight: 600; }
.cta-banner { padding: 4rem 2rem; text-align: center; background: linear-gradient(135deg,rgba(37,99,235,0.06),rgba(6,182,212,0.03)); border: 1px solid rgba(37,99,235,0.1); border-radius: var(--radius); }
.cta-banner h2 { font-size: clamp(1.5rem,3vw,2.25rem); margin-bottom: 0.75rem; color: #0f172a; }
.cta-banner p { color: var(--text-muted); margin-bottom: 1.5rem; }
.cta-banner .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.page-hero { padding: 4rem 0 3rem; text-align: center; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37,99,235,0.04), transparent); }
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; color: #0f172a; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* Keep dark theme for Footer to give premium corporate visual grounding */
.site-footer { background: #0b1120; border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 4rem 0 2rem; margin-top: 4rem; position: relative; z-index: 1; color: rgba(255, 255, 255, 0.6); }
.site-footer h4 { color: #ffffff !important; }
.site-footer a { color: rgba(255, 255, 255, 0.6) !important; }
.site-footer a:hover { color: var(--primary-light) !important; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.4); font-size: 0.9rem; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-col a:hover { color: var(--primary-light); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: #ffffff; transition: all 0.3s; }
.social-links a:hover { background: linear-gradient(135deg, var(--primary), var(--accent)); border-color: transparent; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05) !important; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.4) !important; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm); border: 1px solid rgba(0, 0, 0, 0.1); background: #ffffff; color: var(--text); font-family: inherit; transition: all 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.form-group textarea { min-height: 140px; resize: vertical; }
.text-center { text-align: center; }
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-btns, .trusted-logos { justify-content: center; }
    .hero-visual { max-width: 560px; margin: 0 auto; }
    .grid-3, .grid-4, .process-steps, .stats-bar { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta .btn-primary { display: none; }
    .menu-toggle { display: block; }
    .site-header.nav-open .nav-links { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #ffffff; padding: 1.5rem; border-bottom: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    .grid-2, .grid-3, .grid-4, .stats-bar, .contact-grid, .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(37,99,235, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(37,99,235, 0); } 100% { box-shadow: 0 0 0 0 rgba(37,99,235, 0); } }
