*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg: #03080F;
    --bg2: #060E1A;
    --bg3: #0A1525;
    --card: #080F1C;
    --gold: #D4A017;
    --amber: #F0A500;
    --teal: #0EC5A4;
    --purple: #7C5CFF;
    --text: #EEF2FF;
    --text2: #7A90B8;
    --text3: #3A4A66;
    --border: rgba(255,255,255,0.05);
    --border-gold: rgba(212,160,23,0.2);
}
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
    animation: pageLoad 0.6s ease-in;
}
@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Custom Cursor */
.cursor {
    width: 10px; height: 10px;
    background: var(--amber);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.1s;
}
.cursor-ring {
    width: 34px; height: 34px;
    border: 1.5px solid rgba(240,165,0,0.45);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: width 0.25s, height 0.25s;
}
/* Nav */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 22px 64px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.35s;
}
nav.scrolled {
    background: rgba(3,8,15,0.88);
    backdrop-filter: blur(24px);
    padding: 14px 64px;
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; letter-spacing: 3px;
    color: var(--text); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
}
.logo-ai { color: var(--amber); }
.live-dot {
    width: 7px; height: 7px;
    background: var(--teal); border-radius: 50%;
    animation: blink 1.8s infinite;
    margin-left: 4px;
}
@keyframes blink {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(14,197,164,0.5); }
    50% { opacity: 0.5; box-shadow: 0 0 0 5px rgba(14,197,164,0); }
}
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
    color: var(--text2); text-decoration: none;
    font-size: 13.5px; font-weight: 500; letter-spacing: 0.3px;
    transition: color 0.2s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 1.5px; background: var(--amber);
    transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-btn {
    background: var(--amber); color: #000;
    padding: 9px 22px; border-radius: 7px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.4px;
    text-decoration: none; transition: all 0.25s;
}
.nav-btn:hover {
    background: #FFBA1A;
    box-shadow: 0 8px 28px rgba(240,165,0,0.35);
    transform: translateY(-1px);
}
/* Mobile Menu */
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0;
    z-index: 1001;
}
.mobile-menu-btn span {
    width: 24px; height: 2px; background: var(--text);
    transition: all 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.mobile-menu {
    display: none; position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(3,8,15,0.95); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border); padding: 20px;
    flex-direction: column; gap: 14px; z-index: 999;
    max-height: calc(100vh - 60px); overflow-y: auto;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a {
    color: var(--text2); text-decoration: none; padding: 12px 16px;
    border-radius: 8px; transition: all 0.2s; font-weight: 500;
    display: block;
}
.mobile-menu a:hover {
    color: var(--text); background: rgba(255,255,255,0.05);
}
.mobile-book-btn {
    background: var(--amber) !important; color: #000 !important;
    text-align: center; margin-top: 8px; font-weight: 700 !important;
}
.mobile-book-btn:hover {
    background: #FFBA1A !important;
}
/* Hero */
.hero {
    min-height: auto; position: relative;
    display: flex; flex-direction: row; justify-content: space-between; align-items: center;
    padding: 130px 64px 80px; overflow: hidden; gap: 60px;
}
#hero-canvas { position: absolute; inset: 0; opacity: 0.35; }
.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(14,197,164,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,197,164,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
}
.hero-glow1 {
    position: absolute; width: 700px; height: 700px;
    top: -200px; right: -150px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero-glow2 {
    position: absolute; width: 500px; height: 500px;
    bottom: -100px; left: 15%; border-radius: 50%;
    background: radial-gradient(circle, rgba(14,197,164,0.05) 0%, transparent 65%);
    pointer-events: none;
}
.hero-image {
    position: static; transform: none;
    width: 400px; height: 480px;
    border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(212,160,23,0.2);
    box-shadow: 0 24px 64px rgba(212,160,23,0.15);
    z-index: 1; flex-shrink: 0;
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.95;
}
.hero-content { position: relative; z-index: 2; max-width: 560px; flex: 1; }
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(14,197,164,0.08);
    border: 1px solid rgba(14,197,164,0.22);
    padding: 5px 14px; border-radius: 100px;
    font-size: 11px; font-weight: 700;
    color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 28px;
}
.badge-dot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; animation: blink 1.8s infinite; }
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 9vw, 118px);
    line-height: 0.92; letter-spacing: 2px; margin-bottom: 26px;
}
.hero-title .highlight {
    background: linear-gradient(130deg, var(--amber) 0%, #FF9800 60%, #FF6B00 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
    font-size: 18px; line-height: 1.75; color: var(--text2);
    max-width: 560px; margin-bottom: 42px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, var(--amber), #FF9400);
    color: #000; padding: 14px 30px; border-radius: 8px;
    font-size: 14.5px; font-weight: 800; letter-spacing: 0.3px;
    text-decoration: none; position: relative; overflow: hidden; transition: all 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(240,165,0,0.38); }
.btn-ghost {
    color: var(--text); padding: 13px 28px; border-radius: 8px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    border: 1px solid var(--border-gold); transition: all 0.25s;
    display: flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--amber); background: rgba(240,165,0,0.06); }
.hero-cards {
    position: absolute; bottom: 80px; right: 64px;
    display: flex; flex-direction: column; gap: 16px;
    width: fit-content;
}
.h-card {
    background: rgba(8,15,28,0.85);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 18px 26px;
    backdrop-filter: blur(16px); min-width: 200px;
}
.h-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px; line-height: 1;
}
.h-card-lbl { font-size: 11.5px; color: var(--text2); margin-top: 3px; }
.h-card:nth-child(1) { border-left: 2.5px solid var(--amber); animation: float1 5s ease-in-out infinite; }
.h-card:nth-child(2) { border-left: 2.5px solid var(--teal); animation: float1 5s ease-in-out 1.7s infinite; }
.h-card:nth-child(3) { border-left: 2.5px solid var(--purple); animation: float1 5s ease-in-out 3s infinite; }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

section { padding: 100px 64px; }
.sec-tag {
    display: flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--teal); letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 16px;
}
.sec-tag::before { content: ''; display: block; width: 22px; height: 1px; background: var(--teal); }
.sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 66px); line-height: 0.96; letter-spacing: 1.5px;
    margin-bottom: 18px;
}
.sec-sub { font-size: 16px; color: var(--text2); line-height: 1.75; max-width: 540px; }

/* Problems */
.problem-bg { background: var(--bg2); }
.problem-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.problem-header .sec-tag { justify-content: center; }
.problem-header .sec-sub { max-width: 100%; }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1160px; margin: 0 auto; }
.p-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 18px; padding: 38px 30px; transition: all 0.4s; position: relative; overflow: hidden;
}
.p-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0; transition: opacity 0.35s;
}
.p-card:hover::before { opacity: 1; }
.p-card:hover { transform: translateY(-7px); border-color: var(--border-gold); box-shadow: 0 22px 55px rgba(0,0,0,0.5); }
.p-icon { font-size: 34px; margin-bottom: 22px; display: block; }
.p-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.p-card p { color: var(--text2); font-size: 14px; line-height: 1.72; }

/* Workflow flow */
.wf-header { text-align: center; max-width: 580px; margin: 0 auto 80px; }
.wf-header .sec-tag { justify-content: center; }
.wf-flow {
    display: flex; align-items: center; justify-content: center;
    gap: 0; max-width: 1100px; margin: 0 auto;
}
.wf-node { flex: 1; max-width: 290px; text-align: center; }
.wf-inner {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 20px; padding: 42px 24px; transition: all 0.4s;
}
.wf-inner:hover {
    border-color: var(--border-gold);
    box-shadow: 0 0 40px rgba(212,160,23,0.1);
    transform: translateY(-8px);
}
.wf-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px; color: rgba(255,255,255,0.05); line-height: 1; margin-bottom: 4px;
}
.wf-icon {
    width: 58px; height: 58px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    margin: 0 auto 20px;
}
.wf-node h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.wf-node p { font-size: 13px; color: var(--text2); line-height: 1.65; }
.wf-arrow {
    flex-shrink: 0; display: flex; align-items: center; padding: 0 18px;
}
.arrow-line {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.a-bar {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--teal));
    position: relative; overflow: hidden;
}
.a-bar::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%; background: rgba(255,255,255,0.8);
    animation: anim-bar 2s linear infinite;
}
@keyframes anim-bar { to { left: 200%; } }
.a-tip { color: var(--teal); font-size: 14px; margin-left: -4px; }
.a-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; color: var(--text3); letter-spacing: 1px; text-transform: uppercase;
}

/* Stats */
.stats-wrap { max-width: 1000px; margin: 0 auto; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.st-item { background: var(--bg); padding: 52px 36px; text-align: center; }
.st-val {
    font-family: 'Bebas Neue', sans-serif; font-size: 68px;
    line-height: 1; letter-spacing: 2px;
    background: linear-gradient(135deg, var(--amber), #FF9400);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.st-lbl { font-size: 13px; color: var(--text2); margin-top: 8px; font-weight: 500; }

/* CTA */
.cta-wrap { position: relative; text-align: center; overflow: hidden; padding: 120px 64px; border-bottom: 1px solid var(--border); }
.cta-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(212,160,23,0.07) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 6.5vw, 84px); letter-spacing: 2px; line-height: 0.95;
    margin-bottom: 24px;
}
.cta-title .g { background: linear-gradient(130deg, var(--amber), #FF9400); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-sub { color: var(--text2); font-size: 16.5px; line-height: 1.75; margin-bottom: 40px; }

/* Footer */
footer {
    background: var(--bg2); border-top: 1px solid var(--border);
    padding: 64px 64px 40px;
}
.ft-top { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 56px; flex-wrap: wrap; }
.ft-brand { max-width: 280px; }
.ft-brand p { color: var(--text2); font-size: 13.5px; line-height: 1.75; margin-top: 14px; }
.ft-col h4 {
    font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--text3);
    margin-bottom: 20px;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-col a { color: var(--text2); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.ft-col a:hover { color: var(--amber); }
.ft-bottom {
    border-top: 1px solid var(--border); padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.ft-bottom p { color: var(--text3); font-size: 12.5px; }
.ft-bottom a { color: var(--amber); text-decoration: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

/* Chatbot Widget */
.chatbot-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1000; }
.chatbot-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), #FF9400);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #000; transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(240,165,0,0.3);
    font-size: 24px;
}
.chatbot-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(240,165,0,0.4); }
.chatbot-btn svg { stroke: currentColor; }

.chatbot-popup {
    position: fixed; bottom: 100px; right: 24px;
    width: 380px; max-height: calc(100vh - 150px);
    background: var(--card); border: 1px solid var(--border);
    border-radius: 20px; display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.3s;
}
.chatbot-popup.open {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.chatbot-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(14,197,164,0.1));
    gap: 12px;
}
.header-left {
    display: flex; align-items: center; gap: 12px; flex: 1;
}
.header-logo {
    width: 40px; height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--amber);
    display: flex; align-items: center; justify-content: center;
    background: rgba(14,197,164,0.1);
    flex-shrink: 0;
}
.header-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.header-info {
    display: flex; flex-direction: column; gap: 2px;
}
.chatbot-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px; letter-spacing: 0.5px; margin: 0;
    color: var(--text); font-weight: 700;
}
.chatbot-header p {
    font-size: 12px; color: var(--teal); margin: 0;
    font-weight: 500;
}
.chatbot-close {
    background: none; border: none; color: var(--text2);
    font-size: 28px; cursor: pointer; padding: 0;
    transition: color 0.2s; flex-shrink: 0;
}
.chatbot-close:hover { color: var(--amber); }

.chatbot-messages {
    flex: 1; overflow-y: auto; padding: 20px;
    display: flex; flex-direction: column; gap: 12px;
}
.chat-msg { display: flex; align-items: flex-end; gap: 8px; }
.msg-text {
    max-width: 70%; padding: 10px 14px; border-radius: 12px;
    font-size: 13px; line-height: 1.5;
}
.bot-msg .msg-text {
    background: rgba(14,197,164,0.12); color: var(--text);
    border-left: 2px solid var(--teal);
}
.user-msg {
    justify-content: flex-end;
}
.user-msg .msg-text {
    background: var(--amber); color: #000;
    border-right: 2px solid var(--amber); font-weight: 600;
}

.chatbot-faqs {
    display: flex; flex-direction: column; gap: 8px;
    padding: 12px 20px; border-bottom: 1px solid var(--border);
    max-height: 200px; overflow-y: auto;
}
.faq-btn {
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    color: var(--text); padding: 10px 14px; border-radius: 8px;
    font-size: 12px; font-weight: 600; cursor: pointer;
    transition: all 0.2s; text-align: left;
}
.faq-btn:hover {
    border-color: var(--border-gold); background: rgba(212,160,23,0.06);
    color: var(--amber);
}

.chatbot-input-area {
    display: flex; gap: 8px; padding: 16px;
    border-top: 1px solid var(--border);
}
#chat-input {
    flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    color: var(--text); padding: 10px 12px; border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px;
}
#chat-input::placeholder { color: var(--text3); }
#chat-input:focus { outline: none; border-color: var(--amber); background: rgba(212,160,23,0.04); }
.chat-send-btn {
    background: var(--amber); color: #000; border: none;
    padding: 10px 16px; border-radius: 8px; font-weight: 700;
    cursor: pointer; transition: all 0.2s; font-size: 12px;
}
.chat-send-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(240,165,0,0.3); }

@media (max-width: 960px) {
    .chatbot-popup { width: 340px; height: 520px; bottom: 70px; }
}

/* Page hero (About/Services) */
.page-hero { padding: 160px 64px 100px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); display: flex; flex-direction: row; align-items: center; justify-content: space-between; min-height: auto; gap: 80px; }
.ph-bg { position: absolute; inset: 0; background: linear-gradient(rgba(14,197,164,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(14,197,164,0.02) 1px, transparent 1px); background-size: 64px 64px; }
.ph-glow1 { position: absolute; width: 600px; height: 600px; top: -150px; right: -150px; border-radius: 50%; background: radial-gradient(circle, rgba(212,160,23,0.07) 0%, transparent 70%); }
.ph-glow2 { position: absolute; width: 400px; height: 400px; bottom: -100px; left: 5%; border-radius: 50%; background: radial-gradient(circle, rgba(14,197,164,0.05) 0%, transparent 70%); }
.ph-inner { position: relative; z-index: 2; flex: 1; min-width: 0; }
.ph-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 9vw, 110px); line-height: .92; letter-spacing: 2px; margin-bottom: 22px; }
.ph-title span { background: linear-gradient(130deg, var(--amber), #FF9400 60%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ph-sub { font-size: 17px; color: var(--text2); line-height: 1.75; max-width: 520px; }
.hero-image { position: static !important; transform: none !important; width: 420px; height: 520px; border: 1px solid rgba(212,160,23,0.2); border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(212,160,23,0.15); flex-shrink: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* About Section */
.about-section { padding: 100px 64px; }
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; }
.avatar-wrap { position: relative; }
.avatar-box {
    width: 100%; aspect-ratio: 3/4; background: var(--card);
    border: 1px solid var(--border); border-radius: 28px; overflow: hidden;
    position: relative;
}
.avatar-img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
}
.avatar-initials { font-family: 'Bebas Neue', sans-serif; font-size: 90px; letter-spacing: 4px; color: rgba(212,160,23,0.2); }
.avatar-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(212,160,23,0.05) 0%, transparent 70%); }
.avatar-ring1 { position: absolute; width: 200px; height: 200px; border: 1px solid rgba(212,160,23,0.08); border-radius: 50%; top: 30%; left: 50%; transform: translate(-50%,-50%); animation: spin1 20s linear infinite; }
.avatar-ring2 { position: absolute; width: 280px; height: 280px; border: 1px solid rgba(14,197,164,0.06); border-radius: 50%; top: 30%; left: 50%; transform: translate(-50%,-50%); animation: spin1 30s linear reverse infinite; }
@keyframes spin1 { to { transform: translate(-50%,-50%) rotate(360deg); } }
.corner-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: rgba(3,8,15,0.9); backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold); border-radius: 14px;
    padding: 14px 20px;
}
.cb-name { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.cb-role { font-size: 11.5px; color: var(--amber); font-family: 'JetBrains Mono', monospace; letter-spacing: 1px; }
.experience-badge { position: absolute; top: -20px; right: -20px; background: var(--amber); color: #000; width: 80px; height: 80px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; animation: float2 4s ease-in-out infinite; }
.exp-num { font-size: 30px; line-height: 1; }
.exp-lbl { font-size: 9px; letter-spacing: 1px; }
@keyframes float2 { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-10px) rotate(-6deg); } }

/* Bio */
.bio-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--teal); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.bio-tag::before { content: ''; display: block; width: 22px; height: 1px; background: var(--teal); }
.bio-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 72px); line-height: .94; letter-spacing: 1.5px; margin-bottom: 8px; }
.bio-role { font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 3vw, 34px); letter-spacing: 1px; margin-bottom: 28px; }
.bio-role span { background: linear-gradient(130deg, var(--amber), #FF9400); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bio-text { font-size: 15.5px; color: var(--text2); line-height: 1.8; margin-bottom: 36px; }
.bio-text strong { color: var(--text); font-weight: 600; }
.bio-text p + p { margin-top: 16px; }

/* Skills */
.skills-wrap { margin-bottom: 36px; }
.skills-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.skills-list { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-pill { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 7px 16px; border-radius: 100px; font-size: 12.5px; font-weight: 600; color: var(--text2); display: flex; align-items: center; gap: 7px; transition: all .25s; }
.skill-pill:hover { border-color: var(--border-gold); color: var(--text); background: rgba(212,160,23,0.05); }
.skill-icon { font-size: 15px; }

/* Mission */
.mission-section { padding: 0 64px 100px; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; }
.m-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px; transition: all .4s; position: relative; overflow: hidden; }
.m-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--amber), transparent); opacity: 0; transition: opacity .3s; }
.m-card:hover::before { opacity: 1; }
.m-card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: 0 22px 55px rgba(0,0,0,.4); }
.m-icon { font-size: 34px; margin-bottom: 20px; }
.m-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.m-card p { font-size: 14px; color: var(--text2); line-height: 1.72; }

/* Contact */
.contact-section { padding: 100px 64px; background: var(--bg2); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; }
.contact-info h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 70px); line-height: .94; letter-spacing: 1.5px; margin-bottom: 18px; }
.contact-info h2 span { background: linear-gradient(130deg, var(--amber), #FF9400); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contact-info p { font-size: 15.5px; color: var(--text2); line-height: 1.8; margin-bottom: 40px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.c-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; transition: all .3s; text-decoration: none; }
.c-card:hover { border-color: var(--border-gold); transform: translateX(5px); background: rgba(212,160,23,0.03); }
.c-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.c-text h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.c-text p { font-size: 12.5px; color: var(--text2); }

/* Contact Form */
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 44px 40px; }
.form-title { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text2); letter-spacing: 0.5px; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 10px; padding: 13px 16px; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; transition: border-color .25s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); background: rgba(212,160,23,0.04); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #080F1C; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
    width: 100%; background: linear-gradient(135deg, var(--amber), #FF9400); color: #000;
    padding: 15px 30px; border-radius: 10px; font-size: 15px; font-weight: 800;
    border: none; cursor: pointer; transition: all .3s; position: relative; overflow: hidden;
}
.btn-submit::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent); transition: left .45s; }
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(240,165,0,.38); }
.form-note { font-size: 12px; color: var(--text3); text-align: center; margin-top: 14px; }
.success-msg { display: none; background: rgba(14,197,164,0.1); border: 1px solid rgba(14,197,164,0.3); border-radius: 10px; padding: 16px 20px; color: var(--teal); font-size: 14px; text-align: center; margin-top: 16px; }

/* Services Page Workflow Banner */
.wf-banner { padding: 80px 64px; border-bottom: 1px solid var(--border); }
.wf-banner-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap;
}
.wf-step {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px 28px;
    display: flex; align-items: center; gap: 16px;
    min-width: 280px; transition: all 0.4s;
    border-left: 3px solid var(--amber);
}
.wf-step:nth-child(3) { border-left-color: var(--teal); }
.wf-step:nth-child(5) { border-left-color: var(--purple); }
.wf-step:hover { transform: translateY(-4px); border-color: var(--border-gold); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.wf-step-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 36px; font-weight: 700;
    color: var(--amber); min-width: 50px;
}
.wf-step:nth-child(3) .wf-step-num { color: var(--teal); }
.wf-step:nth-child(5) .wf-step-num { color: var(--purple); }
.wf-step-text h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.wf-step-text p { font-size: 12px; color: var(--text2); }
.wf-arrow-big {
    font-size: 32px; color: var(--text3); font-weight: 700;
    transform: scaleX(2);
}

/* Service Blocks */
.svc-block { padding: 120px 64px; border-bottom: 1px solid var(--border); }
.svc-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; max-width: 1350px; margin: 0 auto; align-items: center;
}
.svc-layout.reverse { direction: rtl; }
.svc-layout > div { direction: ltr; }
.svc-label {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--amber); letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.svc-label::before { content: ''; width: 20px; height: 1px; background: var(--amber); }
.svc-h {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 64px); line-height: 0.94;
    letter-spacing: 1.5px; margin-bottom: 20px;
}
.svc-h span { background: linear-gradient(130deg, var(--amber), #FF9400); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.svc-desc {
    font-size: 15.5px; color: var(--text2); line-height: 1.8;
    margin-bottom: 32px; max-width: 520px;
}

/* Features List */
.feat-list { margin-bottom: 32px; }
.feat-item {
    display: flex; gap: 16px; margin-bottom: 16px;
}
.feat-check {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 16px; font-weight: 700;
    color: var(--amber);
}
.feat-item:nth-child(2) .feat-check { background: rgba(14,197,164,0.12); color: var(--teal); }
.feat-item:nth-child(3) .feat-check { background: rgba(124,92,255,0.12); color: var(--purple); }
.feat-item:nth-child(4) .feat-check { background: rgba(212,160,23,0.12); color: var(--amber); }
.feat-item p {
    font-size: 14px; color: var(--text2); line-height: 1.6;
}
.feat-item p strong { color: var(--text); font-weight: 600; }

/* Tools Row */
.tools-row {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.tool-pill {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    padding: 8px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 600; color: var(--text2);
    display: flex; align-items: center; gap: 8px; transition: all 0.25s;
}
.tool-pill:hover { border-color: var(--border-gold); color: var(--text); background: rgba(212,160,23,0.05); }
.t-icon { font-size: 14px; }

/* Service Visual */
.svc-visual {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 20px; padding: 40px 36px;
    transition: all 0.4s;
}
.svc-visual:hover { border-color: var(--border-gold); box-shadow: 0 22px 55px rgba(0,0,0,0.4); }
.vis-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; color: var(--text3); letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 24px;
}

/* Flow Diagram */
.flow-diagram { display: flex; flex-direction: column; gap: 0; }
.fd-row {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 0;
}
.fd-icon {
    font-size: 24px; flex-shrink: 0; min-width: 32px;
}
.fd-box {
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    border-radius: 10px; padding: 14px 16px;
    font-size: 13px; color: var(--text); font-weight: 600;
    flex: 1;
}
.fd-box.active { background: rgba(212,160,23,0.1); border-color: rgba(212,160,23,0.3); color: var(--amber); }
.fd-box.teal { background: rgba(14,197,164,0.1); border-color: rgba(14,197,164,0.3); color: var(--teal); }
.fd-box.purple { background: rgba(124,92,255,0.1); border-color: rgba(124,92,255,0.3); color: var(--purple); }
.fd-line {
    width: 2px; height: 16px; background: linear-gradient(180deg, var(--border), transparent);
    margin: 4px 0 4px 15px;
}
.fd-arr {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--amber); flex-shrink: 0;
}

/* Vis Badge */
.vis-badge {
    display: flex; align-items: center; gap: 10px;
    background: rgba(212,160,23,0.08); border: 1px solid rgba(212,160,23,0.3);
    border-radius: 12px; padding: 12px 16px; margin-top: 24px;
    font-size: 12px; font-weight: 600; color: var(--amber);
}

/* Integrations Section */
.integrations-section { padding: 120px 64px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.int-header {
    text-align: center; max-width: 620px; margin: 0 auto 80px;
}
.int-header .sec-tag {
    justify-content: center;
}
.int-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5.5vw, 72px); line-height: 0.94;
    letter-spacing: 1.5px; margin-bottom: 18px;
}
.int-sub {
    font-size: 16px; color: var(--text2); line-height: 1.75;
}
.int-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px; max-width: 1100px; margin: 0 auto;
}
.int-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 24px;
    text-align: center; transition: all 0.35s;
    cursor: pointer; position: relative; overflow: hidden;
}
.int-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.int-card:hover::before { opacity: 1; }
.int-card:hover {
    transform: translateY(-8px); border-color: var(--border-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4); background: rgba(212,160,23,0.03);
}
.int-icon {
    font-size: 48px; margin-bottom: 16px; display: block;
}
.int-name {
    font-size: 15px; font-weight: 700; color: var(--text);
    margin-bottom: 6px;
}
.int-cat {
    font-size: 11px; color: var(--text3); font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px; text-transform: uppercase;
}

@media (max-width: 960px) {
    nav { padding: 16px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links, .nav-btn { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 110px 24px 60px; }
    .hero-cards { display: none; }
    section { padding: 70px 24px; }
    .problems-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .p-card { padding: 28px 22px; }
    .p-card h3 { font-size: 16px; }
    .p-card p { font-size: 13px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .st-item { padding: 32px 24px; }
    .st-val { font-size: 48px; }
    .wf-flow { flex-direction: column; align-items: center; gap: 16px; }
    .wf-arrow { transform: rotate(90deg); padding: 0; }
    .wf-node { max-width: 100%; }
    .wf-banner { padding: 60px 24px; }
    .wf-banner-inner { gap: 12px; }
    .wf-step { min-width: 240px; padding: 18px 20px; }
    .wf-arrow-big { display: none; }
    .svc-block { padding: 80px 24px; }
    .svc-layout { grid-template-columns: 1fr; gap: 48px; }
    .svc-layout.reverse { direction: ltr; }
    .integrations-section { padding: 80px 24px; }
    .int-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .int-card { padding: 24px 16px; }
    .int-icon { font-size: 36px; }
    .int-name { font-size: 12px; }
    .cta-wrap { padding: 80px 24px; }
    footer { padding: 48px 24px 32px; }
    .ft-top { flex-direction: column; }
    .page-hero, .about-section, .mission-section, .contact-section { padding: 80px 24px; }
    .page-hero { padding-top: 120px; flex-direction: row; gap: 50px; align-items: center; }
    .ph-inner { flex: 1; }
    .hero-image { width: 340px; height: 410px; flex-shrink: 0; }
    .mission-section { padding-top: 0; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .mission-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* Tablet & Medium Devices (768px - 960px) */
@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    nav { padding: 14px 20px; }
    nav.scrolled { padding: 10px 20px; }
    .nav-logo { font-size: 22px; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 100px 20px 40px; flex-direction: column; align-items: center; gap: 30px; }
    .hero-image { width: 300px; height: 360px; }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: clamp(40px, 8vw, 70px); }
    .hero-sub { font-size: 15px; }
    .page-hero { padding: 100px 20px 60px; gap: 30px; flex-direction: column; align-items: flex-start; }
    .hero-image { width: 280px; height: 340px; margin: 20px auto 0; }
    .ph-title { font-size: clamp(40px, 8vw, 80px); }
    .ph-sub { font-size: 15px; }
    .about-section { padding: 60px 20px; }
    .about-grid { gap: 40px; }
    .bio-name { font-size: clamp(36px, 5vw, 60px); }
    .bio-role { font-size: clamp(18px, 2.5vw, 28px); }
    .problems-grid { grid-template-columns: 1fr; gap: 16px; }
    .p-card { padding: 24px 20px; }
    .p-card h3 { font-size: 15px; }
    .p-card p { font-size: 12px; }
    .p-icon { font-size: 30px; }
    .mission-grid { gap: 16px; }
    .m-card { padding: 24px 20px; }
    .m-card h3 { font-size: 16px; }
    .m-card p { font-size: 13px; }
    .m-icon { font-size: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .st-item { padding: 32px 20px; }
    .st-val { font-size: 40px; }
    .st-lbl { font-size: 12px; }
    .contact-section { padding: 60px 20px; }
    .contact-cards { gap: 10px; }
    .c-card { padding: 14px 16px; gap: 12px; }
    .contact-form { padding: 32px 24px; }
    .svc-block { padding: 60px 20px; }
    .svc-h { font-size: clamp(32px, 4.5vw, 48px); }
    .svc-desc { font-size: 14px; }
    .wf-banner { padding: 50px 20px; }
    .wf-node { max-width: 280px; padding: 20px; }
    .wf-inner { padding: 32px 20px; }
    .wf-step { min-width: 180px; padding: 16px 14px; font-size: 12px; }
    .wf-step-num { font-size: 28px; }
    .integrations-section { padding: 60px 20px; }
    .int-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .int-card { padding: 20px 12px; }
    .int-icon { font-size: 36px; margin-bottom: 12px; }
    .int-name { font-size: 12px; }
    .int-cat { font-size: 9px; }
}
    .c-icon { width: 36px; height: 36px; font-size: 16px; }
    .c-text h4 { font-size: 12px; }
    .c-text p { font-size: 11px; }
    .skills-list { gap: 8px; }
    .skill-pill { padding: 6px 12px; font-size: 11px; }
    .chatbot-popup { width: 95vw; max-width: 320px; height: auto; max-height: 500px; }


/* Small Devices & Phones (480px - 768px) */
@media (max-width: 640px) {
    nav { padding: 12px 16px; }
    nav.scrolled { padding: 8px 16px; }
    .nav-logo { font-size: 18px; letter-spacing: 2px; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { top: 50px; padding: 16px; gap: 12px; }
    .hero { padding: 80px 16px 30px; gap: 20px; }
    .hero-image { width: 100%; max-width: 280px; height: 320px; margin: 20px auto 0; position: static !important; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 11px 20px; font-size: 13px; }
    .badge { font-size: 10px; padding: 4px 12px; }
    .hero-title { font-size: clamp(36px, 7vw, 54px); line-height: 1.1; margin-bottom: 14px; }
    .hero-sub { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
    .h-cards { flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 16px; }
    .h-card { flex: 1 1 calc(50% - 6px); min-width: 140px; padding: 16px 12px; }
    .h-card h4 { font-size: 12px; margin-bottom: 6px; }
    .h-card p { font-size: 10px; }
    .page-hero { padding: 80px 16px 40px; gap: 25px; flex-direction: column; align-items: flex-start; }
    .hero-image { width: 100%; max-width: 260px; height: 300px; margin: 20px auto 0; }
    .ph-title { font-size: clamp(32px, 7vw, 56px); line-height: 1; margin-bottom: 16px; }
    .ph-sub { font-size: 14px; line-height: 1.6; }
    .about-section { padding: 50px 16px; }
    .about-grid { gap: 30px; margin: 0 auto; }
    .avatar-box { aspect-ratio: 1/1; border-radius: 16px; }
    .avatar-initials { font-size: 60px; letter-spacing: 2px; }
    .corner-badge { bottom: 16px; left: 16px; padding: 10px 14px; }
    .cb-name { font-size: 14px; }
    .cb-role { font-size: 10px; }
    .experience-badge { width: 60px; height: 60px; bottom: -15px; right: -15px; }
    .exp-num { font-size: 22px; }
    .exp-lbl { font-size: 8px; }
    .bio-name { font-size: clamp(28px, 5vw, 44px); }
    .bio-role { font-size: clamp(16px, 2.5vw, 22px); }
    .bio-text { font-size: 14px; }
    .bio-skills { gap: 8px; }
    .skill-pill { padding: 6px 12px; font-size: 11px; }
    .problems-section { padding: 50px 16px; }
    .problems-grid { grid-template-columns: 1fr; gap: 14px; }
    .p-card { padding: 20px 16px; }
    .p-card h3 { font-size: 14px; margin-bottom: 8px; }
    .p-card p { font-size: 12px; }
    .p-icon { font-size: 28px; margin-bottom: 10px; }
    .mission-section { padding: 50px 16px; }
    .mission-grid { grid-template-columns: 1fr; gap: 14px; }
    .m-card { padding: 20px 16px; }
    .m-icon { font-size: 28px; margin-bottom: 12px; }
    .m-card h3 { font-size: 16px; margin-bottom: 8px; }
    .m-card p { font-size: 13px; }
    .stats-section { padding: 50px 16px; }
    .stats-grid { grid-template-columns: 1fr; gap: 1px; }
    .st-item { padding: 24px 16px; }
    .st-val { font-size: 36px; margin-bottom: 6px; }
    .st-lbl { font-size: 11px; }
    .contact-section { padding: 50px 16px; }
    .contact-grid { gap: 30px; }
    .contact-form { padding: 24px 16px; border-radius: 16px; }
    .form-title { font-size: 18px; margin-bottom: 20px; }
    .form-group { margin-bottom: 16px; }
    .form-group label { font-size: 12px; }
    .form-group input, .form-group select, .form-group textarea { padding: 11px 14px; font-size: 13px; }
    .btn-submit { padding: 12px 20px; font-size: 14px; }
    .form-row { gap: 12px; }
    .svc-section { padding: 50px 16px; }
    .svc-block { padding: 50px 16px; }
    .svc-layout { gap: 40px; }
    .svc-label { font-size: 10px; margin-bottom: 10px; }
    .svc-h { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
    .svc-desc { font-size: 14px; margin-bottom: 24px; }
    .feat-item { gap: 12px; margin-bottom: 12px; }
    .feat-check { width: 28px; height: 28px; font-size: 14px; }
    .feat-item p { font-size: 13px; }
    .tools-row { gap: 8px; margin-bottom: 24px; }
    .tool-pill { padding: 6px 12px; font-size: 11px; }
    .svc-visual { padding: 28px 20px; border-radius: 16px; }
    .vis-label { font-size: 9px; margin-bottom: 16px; }
    .fd-row { padding: 12px 0; gap: 10px; }
    .fd-icon { font-size: 20px; min-width: 28px; }
    .fd-box { padding: 12px 12px; font-size: 12px; border-radius: 8px; }
    .wf-section { padding: 50px 16px; }
    .wf-banner { padding: 40px 16px; }
    .wf-banner-inner { gap: 10px; }
    .wf-flow { flex-direction: column; gap: 16px; }
    .wf-step { min-width: auto; width: 100%; padding: 14px 12px; font-size: 11px; }
    .wf-step-num { font-size: 24px; }
    .wf-step-text h4 { font-size: 13px; }
    .wf-step-text p { font-size: 11px; }
    .integrations-section { padding: 60px 16px; }
    .int-header { margin-bottom: 50px; }
    .int-title { font-size: clamp(32px, 5vw, 52px); margin-bottom: 14px; }
    .int-sub { font-size: 14px; }
    .int-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .int-card { padding: 18px 12px; border-radius: 12px; }
    .int-icon { font-size: 32px; margin-bottom: 12px; }
    .int-name { font-size: 13px; margin-bottom: 4px; }
    .int-cat { font-size: 10px; }
    .contact-cards { grid-template-columns: 1fr; gap: 10px; }
    .c-card { padding: 12px 12px; gap: 14px; }
    .c-icon { width: 36px; height: 36px; font-size: 16px; flex-shrink: 0; }
    .c-text h4 { font-size: 12px; margin-bottom: 3px; }
    .c-text p { font-size: 11px; }
    .skills-list { gap: 6px; }
    .skill-pill { padding: 5px 10px; font-size: 10px; }
    .skill-icon { font-size: 13px; }
    .sec-tag { font-size: 10px; margin-bottom: 14px; }
    .contact-info h2 { font-size: clamp(32px, 5vw, 48px); }
    .contact-info p { font-size: 14px; margin-bottom: 30px; }
    .calendly-inline-widget { min-width: 90vw !important; }
    .cta-section { padding: 50px 16px; }
    .cta-title { font-size: clamp(32px, 5vw, 56px); }
    .cta-sub { font-size: 14px; }
    footer { padding: 40px 16px 24px; }
    .ft-top { gap: 30px; margin-bottom: 20px; }
    .ft-col h4 { font-size: 14px; margin-bottom: 8px; }
    .ft-col ul { gap: 6px; }
    .ft-col a { font-size: 12px; }
    .chatbot-popup { width: 95vw; max-width: 300px; height: auto; bottom: 80px; right: 2.5vw; }
    .header-logo { width: 36px; height: 36px; }
    .chatbot-header h3 { font-size: 14px; }
    .chatbot-header p { font-size: 11px; }
}

/* Extra Small Devices (< 480px) */
@media (max-width: 480px) {
    body { font-size: 14px; }
    nav { padding: 10px 12px; flex-wrap: wrap; }
    .nav-logo { font-size: 16px; letter-spacing: 1px; }
    .mobile-menu-btn { display: flex; margin-left: auto; }
    .mobile-menu { top: 45px; padding: 14px; gap: 10px; }
    .hero { padding: 70px 12px 20px; gap: 20px; }
    .hero-image { width: 100%; max-width: 240px; height: 280px; margin: 0 auto; position: static !important; }
    .hero-title { font-size: clamp(28px, 6vw, 44px); line-height: 1.1; margin-bottom: 12px; }
    .hero-sub { font-size: 13px; line-height: 1.5; margin-bottom: 16px; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-ghost { width: 100%; padding: 10px 16px; font-size: 12px; }
    .h-cards { flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 12px; }
    .h-card { flex: 1 1 calc(50% - 5px); min-width: 130px; padding: 12px 10px; }
    .h-card h4 { font-size: 11px; margin-bottom: 5px; }
    .h-card p { font-size: 9px; }
    .page-hero { padding: 70px 12px 30px; gap: 20px; flex-direction: column; align-items: flex-start; }
    .hero-image { width: 100%; max-width: 220px; height: 260px; margin: 0 auto; }
    .ph-title { font-size: clamp(28px, 6vw, 48px); line-height: 1.05; margin-bottom: 12px; }
    .ph-sub { font-size: 13px; line-height: 1.5; }
    .about-section { padding: 40px 12px; }
    .about-grid { gap: 20px; }
    .avatar-box { border-radius: 14px; }
    .avatar-initials { font-size: 48px; letter-spacing: 1px; }
    .corner-badge { bottom: 12px; left: 12px; padding: 8px 12px; }
    .cb-name { font-size: 12px; }
    .cb-role { font-size: 9px; }
    .experience-badge { width: 50px; height: 50px; bottom: -20px; right: -20px; }
    .exp-num { font-size: 18px; }
    .exp-lbl { font-size: 7px; }
    .bio-tag { font-size: 9px; margin-bottom: 12px; }
    .bio-name { font-size: clamp(24px, 4.5vw, 36px); }
    .bio-role { font-size: clamp(14px, 2.2vw, 18px); margin-bottom: 16px; }
    .bio-text { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
    .skills-wrap { margin-bottom: 20px; }
    .skills-label { font-size: 9px; margin-bottom: 10px; }
    .skills-list { gap: 5px; }
    .skill-pill { padding: 4px 8px; font-size: 9px; }
    .problems-section { padding: 40px 12px; }
    .problems-grid { grid-template-columns: 1fr; gap: 12px; }
    .p-card { padding: 16px 12px; }
    .p-card h3 { font-size: 13px; margin-bottom: 6px; }
    .p-card p { font-size: 11px; }
    .p-icon { font-size: 26px; margin-bottom: 8px; }
    .mission-section { padding: 40px 12px; }
    .mission-grid { grid-template-columns: 1fr; gap: 12px; }
    .m-card { padding: 16px 12px; }
    .m-icon { font-size: 24px; margin-bottom: 12px; }
    .m-card h3 { font-size: 14px; margin-bottom: 8px; }
    .m-card p { font-size: 12px; }
    .stats-section { padding: 40px 12px; }
    .stats-grid { grid-template-columns: 1fr; gap: 1px; }
    .st-item { padding: 20px 12px; }
    .st-val { font-size: 32px; margin-bottom: 4px; }
    .st-lbl { font-size: 10px; }
    .contact-section { padding: 40px 12px; }
    .contact-grid { gap: 24px; }
    .contact-info h2 { font-size: clamp(28px, 5vw, 42px); margin-bottom: 12px; }
    .contact-info p { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
    .contact-form { padding: 20px 14px; }
    .form-title { font-size: 16px; margin-bottom: 16px; }
    .form-group { margin-bottom: 14px; }
    .form-group label { font-size: 11px; margin-bottom: 6px; }
    .form-group input, .form-group select, .form-group textarea { padding: 10px 12px; font-size: 12px; border-radius: 8px; }
    .form-group textarea { min-height: 90px; }
    .btn-submit { padding: 11px 18px; font-size: 13px; }
    .form-note { font-size: 11px; }
    .form-row { gap: 10px; }
    .svc-section { padding: 40px 12px; }
    .svc-block { padding: 40px 12px; }
    .svc-layout { gap: 30px; }
    .svc-label { font-size: 9px; margin-bottom: 8px; }
    .svc-h { font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 12px; }
    .svc-desc { font-size: 13px; line-height: 1.6; margin-bottom: 16px; max-width: 100%; }
    .feat-list { margin-bottom: 16px; }
    .feat-item { gap: 10px; margin-bottom: 10px; }
    .feat-check { width: 24px; height: 24px; font-size: 12px; }
    .feat-item p { font-size: 12px; }
    .tools-row { gap: 6px; margin-bottom: 16px; }
    .tool-pill { padding: 5px 10px; font-size: 10px; }
    .t-icon { font-size: 12px; }
    .svc-visual { padding: 20px 14px; border-radius: 12px; }
    .vis-label { font-size: 8px; margin-bottom: 12px; }
    .flow-diagram { gap: 0; }
    .fd-row { padding: 10px 0; gap: 8px; }
    .fd-icon { font-size: 18px; min-width: 24px; }
    .fd-box { padding: 10px 10px; font-size: 11px; border-radius: 6px; }
    .fd-line { margin: 2px 0 2px 12px; }
    .vis-badge { padding: 10px 12px; margin-top: 12px; font-size: 11px; }
    .wf-section { padding: 40px 12px; }
    .wf-banner { padding: 30px 12px; }
    .wf-banner-inner { gap: 8px; }
    .wf-flow { flex-direction: column; gap: 12px; }
    .wf-step { min-width: auto; width: 100%; padding: 12px 10px; font-size: 10px; }
    .wf-step-num { font-size: 20px; min-width: 40px; }
    .wf-step-text h4 { font-size: 12px; }
    .wf-step-text p { font-size: 10px; }
    .wf-node { max-width: 100%; padding: 12px; }
    .wf-inner { padding: 16px 12px; font-size: 12px; }
    .integrations-section { padding: 50px 12px; }
    .int-header { margin-bottom: 40px; }
    .int-title { font-size: clamp(28px, 4.5vw, 42px); margin-bottom: 10px; }
    .int-sub { font-size: 13px; }
    .int-grid { grid-template-columns: 1fr; gap: 8px; }
    .int-card { padding: 14px 10px; border-radius: 10px; }
    .int-icon { font-size: 28px; margin-bottom: 8px; }
    .int-name { font-size: 11px; margin-bottom: 3px; }
    .int-cat { font-size: 9px; }
    .contact-cards { grid-template-columns: 1fr; gap: 10px; flex-direction: column; }
    .c-card { padding: 11px 10px; gap: 10px; }
    .c-icon { width: 30px; height: 30px; font-size: 13px; flex-shrink: 0; }
    .c-text h4 { font-size: 10px; }
    .c-text p { font-size: 9px; line-height: 1.4; }
    .sec-tag { font-size: 9px; }
    .cta-section { padding: 40px 12px; }
    .cta-title { font-size: clamp(28px, 4vw, 44px); }
    .cta-sub { font-size: 13px; }
    .calendly-inline-widget { min-width: calc(100vw - 24px) !important; height: 500px !important; }
    footer { padding: 32px 12px 20px; }
    .ft-brand { margin-bottom: 20px; }
    .ft-brand .nav-logo { font-size: 14px; }
    .ft-brand p { font-size: 12px; }
    .ft-top { gap: 20px; }
    .ft-col { margin-bottom: 16px; }
    .ft-col h4 { font-size: 12px; margin-bottom: 6px; }
    .ft-col ul { gap: 4px; }
    .ft-col li { list-style: none; }
    .ft-col a { font-size: 11px; color: var(--text2); }
    .ft-col a:hover { color: var(--text); }
    .ft-bottom { border-top: 1px solid var(--border); padding-top: 12px; }
    .ft-bottom p { font-size: 11px; }
    .ft-bottom a { color: var(--amber); }
    .chatbot-popup { width: 90vw; max-width: 280px; height: auto; bottom: 70px; right: 5vw; }
    .header-logo { width: 32px; height: 32px; }
    .chatbot-header { padding: 12px 14px; }
    .chatbot-header h3 { font-size: 13px; }
    .chatbot-header p { font-size: 10px; }
    .chatbot-close { font-size: 24px; }
    .chatbot-messages { padding: 14px; gap: 10px; }
    .chat-msg { gap: 6px; }
    .msg-text { max-width: 85%; padding: 8px 12px; font-size: 12px; border-radius: 10px; }
    .chatbot-faqs { padding: 10px 14px; gap: 6px; max-height: 150px; }
    .faq-btn { padding: 8px 12px; font-size: 11px; }
    .chatbot-input-area { padding: 12px; gap: 6px; }
    #chat-input { padding: 9px 10px; font-size: 12px; }
    .chat-send-btn { padding: 9px 12px; font-size: 11px; }
}

/* Large Screens (> 1440px) */
@media (min-width: 1441px) {
    .hero, .page-hero { max-width: 1600px; margin: 0 auto; }
    .page-hero { gap: 100px; }
    .hero-image { width: 460px; height: 560px; }
    .hero-title { font-size: 90px; }
    .int-grid { grid-template-columns: repeat(5, 1fr); }
    .contact-grid { max-width: 1400px; }
}

/* CTA Buttons Centered */
.cta-content .hero-btns { justify-content: center; flex-wrap: wrap; gap: 16px; }