/* ===================== RESET & BASE ===================== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
    --blue:#1A73E8;
    --blue-dark:#0D47A1;
    --blue-light:#4BA3F5;
    --blue-pale:#E8F0FE;
    --blue-glow:rgba(26,115,232,0.18);
    --white:#FFFFFF;
    --grey-50:#FAFBFC;
    --grey-100:#F4F6F8;
    --grey-200:#E9ECEF;
    --grey-300:#DEE2E6;
    --grey-400:#ADB5BD;
    --grey-500:#6C757D;
    --grey-600:#495057;
    --grey-700:#343A40;
    --grey-800:#212529;
    --radius:16px;
    --radius-sm:10px;
    --radius-lg:24px;
    --shadow:0 2px 16px rgba(0,0,0,0.05);
    --shadow-lg:0 12px 40px rgba(0,0,0,0.08);
    --shadow-blue:0 8px 32px rgba(26,115,232,0.12);
    --transition:0.3s cubic-bezier(0.4,0,0.2,1);
}
html{scroll-behavior:smooth;font-size:16px}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:var(--grey-100)}
::-webkit-scrollbar-thumb{background:linear-gradient(180deg,var(--blue-light),var(--blue));border-radius:10px;border:2px solid var(--grey-100)}
::-webkit-scrollbar-thumb:hover{background:linear-gradient(180deg,var(--blue),var(--blue-dark))}
*{scrollbar-width:thin;scrollbar-color:var(--blue-light) var(--grey-100)}
body{font-family:'Inter',system-ui,sans-serif;background:var(--white);color:var(--grey-700);overflow-x:hidden;line-height:1.6}

/* ===================== PARTICLES ===================== */
#particles{position:fixed;top:0;left:0;width:100%;height:100%;z-index:0;pointer-events:none}

/* ===================== NAV ===================== */
#navbar{position:fixed;top:0;left:0;right:0;z-index:1000;padding:14px 40px;transition:var(--transition)}
#navbar.scrolled{background:rgba(255,255,255,0.92);backdrop-filter:blur(20px);border-bottom:1px solid var(--grey-200);box-shadow:0 1px 12px rgba(0,0,0,0.04)}
.nav-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;align-items:center;gap:8px;text-decoration:none}
.logo-img{height:52px;width:auto}
.nav-links{display:flex;gap:32px}
.nav-links a{color:var(--grey-600);text-decoration:none;font-size:14px;font-weight:500;transition:var(--transition)}
.nav-links a:hover{color:var(--blue)}
.nav-actions{display:flex;gap:12px;align-items:center}
.btn-ghost{color:var(--grey-600);text-decoration:none;font-size:14px;font-weight:500;padding:8px 16px;border-radius:var(--radius-sm);transition:var(--transition)}
.btn-ghost:hover{color:var(--blue);background:var(--blue-pale)}
.btn-primary{display:inline-flex;align-items:center;gap:6px;background:var(--blue);color:var(--white);text-decoration:none;font-size:14px;font-weight:600;padding:10px 22px;border-radius:var(--radius-sm);transition:var(--transition);border:none;cursor:pointer}
.btn-primary:hover{background:var(--blue-dark);box-shadow:var(--shadow-blue);transform:translateY(-1px)}
.btn-outline{display:inline-flex;align-items:center;gap:6px;color:var(--grey-700);text-decoration:none;font-size:14px;font-weight:600;padding:10px 22px;border-radius:var(--radius-sm);border:1.5px solid var(--grey-300);transition:var(--transition);background:var(--white);cursor:pointer}
.btn-outline:hover{border-color:var(--blue);color:var(--blue);background:var(--blue-pale)}
.btn-lg{padding:14px 32px;font-size:16px;border-radius:var(--radius)}
.btn-full{width:100%;justify-content:center;padding:14px 0}
.hamburger{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px}
.hamburger span{display:block;width:24px;height:2px;background:var(--grey-600);border-radius:2px;transition:var(--transition)}

/* ===================== HERO ===================== */
#hero{min-height:100vh;display:flex;align-items:center;justify-content:center;gap:60px;padding:120px 40px 80px;max-width:1200px;margin:0 auto;position:relative;z-index:1}
.hero-content{flex:1;max-width:560px}
.hero-badge{display:inline-block;padding:6px 16px;border-radius:50px;background:var(--blue-pale);border:1px solid rgba(26,115,232,0.2);color:var(--blue);font-size:13px;font-weight:600;margin-bottom:24px}
#hero h1{font-size:clamp(2.2rem,4.5vw,3.6rem);font-weight:800;line-height:1.1;color:var(--grey-800);margin-bottom:24px;letter-spacing:-1px}
.gradient-text{background:linear-gradient(135deg,var(--blue),var(--blue-dark));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-sub{font-size:17px;color:var(--grey-500);line-height:1.7;margin-bottom:32px;max-width:480px}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:48px}
.hero-stats{display:flex;gap:32px;align-items:center}
.stat{text-align:center}
.stat-num{font-size:2rem;font-weight:800;color:var(--grey-800)}
.stat-plus{font-size:1.2rem;font-weight:700;color:var(--blue)}
.stat p{font-size:13px;color:var(--grey-500);margin-top:2px}
.stat-divider{width:1px;height:40px;background:var(--grey-300)}
.arrow{transition:var(--transition);display:inline-block}
.btn-primary:hover .arrow{transform:translateX(4px)}

/* ===================== PHONE MOCKUP ===================== */
.hero-visual{flex:1;display:flex;justify-content:center;position:relative}
.phone-mockup{width:300px;height:580px;background:var(--white);border-radius:40px;border:2px solid var(--grey-200);position:relative;overflow:hidden;box-shadow:0 40px 80px rgba(0,0,0,0.1),0 0 0 1px rgba(0,0,0,0.03);transition:transform 0.15s ease-out;will-change:transform}
.phone-notch{width:120px;height:28px;background:var(--grey-100);border-radius:0 0 16px 16px;position:absolute;top:0;left:50%;transform:translateX(-50%);z-index:2}
.phone-screen{padding:40px 16px 16px;height:100%;display:flex;flex-direction:column;background:var(--grey-50)}
.chat-header-mock{display:flex;align-items:center;gap:10px;padding-bottom:12px;border-bottom:1px solid var(--grey-200);background:var(--white);margin:-40px -16px 0;padding:44px 16px 12px;border-radius:40px 40px 0 0}
.chat-avatar-mock{width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,var(--blue),var(--blue-light))}
.chat-name-mock{font-size:14px;font-weight:600;color:var(--grey-800)}
.chat-status-mock{font-size:11px;color:#4CAF50}
.chat-messages-mock{flex:1;overflow-y:auto;padding:12px 0;display:flex;flex-direction:column;gap:8px}
.msg-bot,.msg-user{padding:10px 14px;border-radius:16px;font-size:12.5px;line-height:1.5;max-width:85%;animation:msgIn 0.4s ease}
.msg-bot{background:var(--white);color:var(--grey-700);align-self:flex-start;border-bottom-left-radius:4px;border:1px solid var(--grey-200)}
.msg-user{background:var(--blue);color:var(--white);align-self:flex-end;border-bottom-right-radius:4px}
@keyframes msgIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.typing-indicator{display:flex;gap:4px;padding:10px 14px;align-self:flex-start}
.typing-indicator span{width:6px;height:6px;background:var(--grey-400);border-radius:50%;animation:typeDot 1.4s infinite}
.typing-indicator span:nth-child(2){animation-delay:0.2s}
.typing-indicator span:nth-child(3){animation-delay:0.4s}
@keyframes typeDot{0%,60%,100%{transform:translateY(0);opacity:0.4}30%{transform:translateY(-6px);opacity:1}}

/* Floating Cards */
.floating-card{position:absolute;padding:12px 18px;background:var(--white);backdrop-filter:blur(16px);border:1px solid var(--grey-200);border-radius:var(--radius);display:flex;align-items:center;gap:10px;animation:floatCard 6s ease-in-out infinite;box-shadow:var(--shadow-lg)}
.fc-icon{font-size:20px}
.fc-text{font-size:13px;font-weight:600;color:var(--grey-800)}
.fc-1{top:15%;right:-30px;animation-delay:0s}
.fc-2{bottom:25%;left:-40px;animation-delay:2s}
.fc-3{top:50%;right:-50px;animation-delay:4s}
@keyframes floatCard{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}

/* ===================== TRUSTED BY MARQUEE ===================== */
#trusted-by{padding:40px 0;background:var(--grey-50);overflow:hidden;border-top:1px solid var(--grey-200);border-bottom:1px solid var(--grey-200)}
.trusted-label{text-align:center;font-size:13px;font-weight:600;color:var(--grey-400);text-transform:uppercase;letter-spacing:1.5px;margin-bottom:20px}
.marquee-wrap{overflow:hidden;position:relative}
.marquee-wrap::before,.marquee-wrap::after{content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2}
.marquee-wrap::before{left:0;background:linear-gradient(90deg,var(--grey-50),transparent)}
.marquee-wrap::after{right:0;background:linear-gradient(270deg,var(--grey-50),transparent)}
.marquee-track{display:flex;gap:40px;animation:marqueeScroll 25s linear infinite;width:max-content}
.marquee-track span{font-size:16px;font-weight:600;color:var(--grey-500);white-space:nowrap}
.marquee-track span:nth-child(even){color:var(--blue-light);font-size:8px;display:flex;align-items:center}
@keyframes marqueeScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ===================== SECTIONS COMMON ===================== */
section{padding:100px 40px;position:relative;z-index:1}
.section-header{text-align:center;max-width:600px;margin:0 auto 64px}
.section-tag{display:inline-block;padding:6px 16px;border-radius:50px;background:var(--blue-pale);border:1px solid rgba(26,115,232,0.15);color:var(--blue);font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px}
.section-header h2{font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:800;color:var(--grey-800);line-height:1.15;margin-bottom:16px;letter-spacing:-0.5px}
.section-header p{color:var(--grey-500);font-size:16px}

/* ===================== FEATURES ===================== */
#features{background:var(--grey-50)}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1100px;margin:0 auto}
.feature-card{background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius-lg);padding:36px;transition:all 0.2s ease-out;position:relative;overflow:hidden;will-change:transform}
.feature-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--blue),var(--blue-light));opacity:0;transition:var(--transition)}
.feature-card:hover{border-color:var(--blue-light);box-shadow:var(--shadow-blue);transform:translateY(-4px)}
.feature-card:hover::before{opacity:1}
.feature-icon{width:52px;height:52px;border-radius:14px;background:var(--blue-pale);display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--blue)}
.feature-icon svg{width:24px;height:24px}
.feature-card h3{font-size:18px;font-weight:700;color:var(--grey-800);margin-bottom:10px}
.feature-card p{font-size:14px;color:var(--grey-500);line-height:1.7}

/* ===================== 3D DASHBOARD PREVIEW ===================== */
#dashboard-preview{background:var(--white);perspective:1500px}
.browser-mockup-wrapper{max-width:1000px;margin:0 auto}
.browser-mockup{background:var(--white);border-radius:16px;border:1.5px solid var(--grey-200);overflow:hidden;box-shadow:0 30px 80px rgba(0,0,0,0.1),0 0 0 1px rgba(0,0,0,0.02);transform:perspective(1500px) rotateX(4deg) rotateY(-1deg);transition:transform 0.4s ease;will-change:transform}
.browser-mockup:hover{transform:perspective(1500px) rotateX(1deg) rotateY(0deg)}
.browser-bar{display:flex;align-items:center;gap:12px;padding:12px 16px;background:var(--grey-50);border-bottom:1px solid var(--grey-200)}
.browser-dots{display:flex;gap:6px}
.dot{width:12px;height:12px;border-radius:50%}
.dot.red{background:#FF5F57}
.dot.yellow{background:#FEBC2E}
.dot.green{background:#28C840}
.browser-url{flex:1;padding:6px 14px;background:var(--white);border-radius:6px;border:1px solid var(--grey-200);font-size:12px;color:var(--grey-500);font-family:'Inter',sans-serif}
.browser-content{display:flex;min-height:380px}
.dash-sidebar{width:160px;background:var(--grey-50);border-right:1px solid var(--grey-200);padding:12px 0}
.dash-nav-item{padding:10px 16px;font-size:12px;color:var(--grey-600);cursor:default;transition:var(--transition)}
.dash-nav-item.active{background:var(--blue-pale);color:var(--blue);font-weight:600;border-right:2px solid var(--blue)}
.dash-main{flex:1;display:flex}
.dash-contact-list{width:220px;border-right:1px solid var(--grey-200);overflow:hidden}
.dash-contact{display:flex;align-items:center;gap:10px;padding:14px 12px;border-bottom:1px solid var(--grey-100);cursor:default}
.dash-contact.active-contact{background:var(--blue-pale)}
.dash-avatar{width:32px;height:32px;border-radius:50%;background:var(--blue);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;flex-shrink:0}
.dash-avatar.bg2{background:#6C63FF}
.dash-avatar.bg3{background:#00BFA6}
.dash-avatar.bg4{background:#FF7043}
.dash-name{font-size:12px;font-weight:600;color:var(--grey-800)}
.dash-preview{font-size:11px;color:var(--grey-400);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:130px}
.dash-time{font-size:10px;color:var(--grey-400);margin-left:auto;flex-shrink:0}
.dash-chat{flex:1;display:flex;flex-direction:column}
.dash-chat-header{display:flex;align-items:center;gap:10px;padding:12px 16px;border-bottom:1px solid var(--grey-200);background:var(--white)}
.dash-chat-header strong{font-size:13px;color:var(--grey-800)}
.dash-chat-header small{font-size:11px;color:var(--grey-400)}
.dash-messages{flex:1;padding:16px;display:flex;flex-direction:column;gap:8px;background:var(--grey-50)}
.dash-msg{padding:8px 12px;border-radius:12px;font-size:11.5px;line-height:1.5;max-width:75%}
.dash-msg.bot{background:var(--white);border:1px solid var(--grey-200);align-self:flex-start;border-bottom-left-radius:3px;color:var(--grey-700)}
.dash-msg.user{background:var(--blue);color:var(--white);align-self:flex-end;border-bottom-right-radius:3px}

/* ===================== 3D TIMELINE ===================== */
#how-it-works{background:var(--grey-50)}
.timeline-3d{max-width:800px;margin:0 auto;position:relative;padding:20px 0}
.timeline-line{position:absolute;left:50%;top:0;bottom:0;width:3px;background:linear-gradient(180deg,var(--blue-pale),var(--blue),var(--blue-pale));transform:translateX(-50%);border-radius:3px}
.timeline-item{display:flex;align-items:flex-start;gap:32px;margin-bottom:48px;position:relative;width:48%;perspective:800px}
.timeline-item.right{margin-left:auto;flex-direction:row-reverse}
.timeline-node{position:absolute;left:calc(100% + 18px);top:16px;width:40px;height:40px;border-radius:50%;background:var(--blue);display:flex;align-items:center;justify-content:center;z-index:2;box-shadow:0 0 0 6px var(--blue-pale),var(--shadow-blue);animation:nodePulse 3s ease-in-out infinite}
.timeline-item.right .timeline-node{left:auto;right:calc(100% + 18px)}
.timeline-node span{color:var(--white);font-weight:800;font-size:16px}
.timeline-card{background:var(--white);border:1.5px solid var(--grey-200);border-radius:var(--radius-lg);padding:32px;transition:all 0.3s ease;transform-style:preserve-3d;will-change:transform}
.timeline-card:hover{transform:translateY(-6px) rotateY(3deg);box-shadow:var(--shadow-blue);border-color:var(--blue-light)}
.timeline-icon{font-size:32px;margin-bottom:12px}
.timeline-card h3{font-size:18px;font-weight:700;color:var(--grey-800);margin-bottom:8px}
.timeline-card p{font-size:14px;color:var(--grey-500);line-height:1.7}
@keyframes nodePulse{0%,100%{box-shadow:0 0 0 6px var(--blue-pale),0 0 20px rgba(26,115,232,0.1)}50%{box-shadow:0 0 0 10px var(--blue-pale),0 0 30px rgba(26,115,232,0.2)}}

/* ===================== INTEGRATIONS ===================== */
#integrations{background:var(--grey-50);perspective:1200px}
.integrations-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:800px;margin:0 auto}
.int-card{background:var(--white);border:1.5px solid var(--grey-200);border-radius:var(--radius-lg);padding:36px 24px;text-align:center;transition:all 0.4s cubic-bezier(0.4,0,0.2,1);cursor:default;position:relative;overflow:hidden;transform-style:preserve-3d}
.int-card::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(26,115,232,0.03),transparent 60%);opacity:0;transition:opacity 0.4s ease;border-radius:var(--radius-lg)}
.int-card:hover{transform:translateY(-8px) rotateX(4deg) rotateY(-2deg);box-shadow:0 20px 40px rgba(26,115,232,0.12),0 8px 16px rgba(0,0,0,0.06);border-color:var(--blue-light)}
.int-card:hover::before{opacity:1}
.int-card-icon{width:64px;height:64px;border-radius:18px;margin:0 auto 16px;display:flex;align-items:center;justify-content:center;font-size:28px;background:var(--blue-pale);box-shadow:0 6px 20px rgba(26,115,232,0.1);transition:var(--transition);transform:translateZ(20px)}
.int-card:hover .int-card-icon{transform:translateZ(30px) scale(1.08);box-shadow:0 10px 30px rgba(26,115,232,0.18)}
.int-card h4{font-size:16px;font-weight:700;color:var(--grey-800);margin-bottom:6px;transform:translateZ(10px)}
.int-card p{font-size:13px;color:var(--grey-500);line-height:1.5;transform:translateZ(5px)}
.int-center-label{text-align:center;margin-bottom:40px}
.int-center-label .int-logo-wrap{width:80px;height:80px;margin:0 auto 12px;border-radius:50%;background:var(--blue-pale);border:2px solid rgba(26,115,232,0.15);display:flex;align-items:center;justify-content:center;box-shadow:0 8px 32px rgba(26,115,232,0.1);animation:logoPulse 3s ease-in-out infinite}
.int-center-label p{font-size:14px;color:var(--grey-500)}
@keyframes logoPulse{0%,100%{box-shadow:0 8px 32px rgba(26,115,232,0.1)}50%{box-shadow:0 8px 48px rgba(26,115,232,0.2)}}

/* ===================== PRICING ===================== */
#pricing{background:var(--white)}

/* Region Toggle */
.region-toggle-wrap{display:flex;justify-content:center;gap:8px;margin-bottom:20px}
.region-btn{padding:10px 24px;border:1.5px solid var(--grey-200);border-radius:50px;background:var(--white);color:var(--grey-600);font-size:14px;font-weight:600;cursor:pointer;transition:all 0.3s ease;font-family:inherit}
.region-btn.active{background:var(--blue);color:var(--white);border-color:var(--blue);box-shadow:var(--shadow-blue)}
.region-btn:hover:not(.active){border-color:var(--blue-light);color:var(--blue)}

/* Billing Toggle */
.billing-toggle-wrap{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:48px}
.billing-label{font-size:14px;font-weight:600;color:var(--grey-500)}
.billing-switch{position:relative;width:52px;height:28px;display:inline-block}
.billing-switch input{opacity:0;width:0;height:0}
.billing-slider{position:absolute;cursor:pointer;inset:0;background:var(--grey-300);border-radius:28px;transition:var(--transition)}
.billing-slider::before{content:'';position:absolute;width:22px;height:22px;left:3px;bottom:3px;background:var(--white);border-radius:50%;transition:var(--transition);box-shadow:0 2px 4px rgba(0,0,0,0.1)}
.billing-switch input:checked+.billing-slider{background:var(--blue)}
.billing-switch input:checked+.billing-slider::before{transform:translateX(24px)}
.save-badge{display:inline-block;padding:2px 8px;background:var(--blue-pale);color:var(--blue);font-size:11px;font-weight:700;border-radius:50px;margin-left:4px}

.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1100px;margin:0 auto;align-items:stretch}
.price-card{background:var(--white);border:1.5px solid var(--grey-200);border-radius:var(--radius-lg);padding:40px 32px;text-align:center;transition:all 0.2s ease-out;position:relative;will-change:transform}
.price-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.price-card.popular{border-color:var(--blue);background:var(--white);box-shadow:var(--shadow-blue)}
.popular-badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);padding:6px 20px;background:var(--blue);color:var(--white);font-size:12px;font-weight:700;border-radius:50px}
.price-name{font-size:18px;font-weight:700;color:var(--grey-500);margin-bottom:16px}
.price-name small{font-size:12px;font-weight:500;color:var(--grey-400);display:block;margin-top:2px}
.price-amount{font-size:3rem;font-weight:900;color:var(--grey-800);margin-bottom:4px;line-height:1;display:flex;align-items:baseline;justify-content:center;gap:6px}
.currency{font-size:1rem;font-weight:600;color:var(--grey-500)}
.price-value{transition:all 0.3s ease}
.price-period{margin-bottom:24px}
.period-text{font-size:13px;font-weight:500;color:var(--grey-400)}
.price-features{list-style:none;margin:0 0 28px;text-align:left}
.price-features li{padding:10px 0;border-bottom:1px solid var(--grey-100);font-size:13px;color:var(--grey-600);display:flex;align-items:flex-start;gap:8px;line-height:1.5}
.price-features li::before{content:'✓';color:var(--blue);font-weight:700;font-size:13px;flex-shrink:0;margin-top:1px}

/* ===================== FAQ ===================== */
#faq{background:var(--grey-50)}
.faq-list{max-width:700px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{border:1.5px solid var(--grey-200);border-radius:var(--radius);overflow:hidden;transition:var(--transition);background:var(--white)}
.faq-item.active{border-color:var(--blue);box-shadow:0 4px 16px rgba(26,115,232,0.06)}
.faq-q{width:100%;padding:20px 24px;background:none;border:none;color:var(--grey-800);font-size:15px;font-weight:600;text-align:left;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-family:inherit;transition:var(--transition)}
.faq-q:hover{color:var(--blue)}
.faq-icon{font-size:20px;color:var(--blue);transition:var(--transition);font-weight:300}
.faq-item.active .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height 0.4s ease}
.faq-item.active .faq-a{max-height:200px}
.faq-a p{padding:0 24px 20px;color:var(--grey-500);font-size:14px;line-height:1.7}

/* ===================== CTA ===================== */
#cta{padding:60px 40px 100px;background:var(--white)}
.cta-card{max-width:800px;margin:0 auto;text-align:center;padding:64px 48px;background:linear-gradient(135deg,var(--blue-pale),rgba(26,115,232,0.04));border:1.5px solid rgba(26,115,232,0.15);border-radius:var(--radius-lg);position:relative;overflow:hidden}
.cta-card::before{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(26,115,232,0.04) 0%,transparent 60%);pointer-events:none}
.cta-card h2{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;color:var(--grey-800);margin-bottom:16px}
.cta-card p{color:var(--grey-500);font-size:16px;margin-bottom:32px;max-width:500px;margin-left:auto;margin-right:auto}

/* ===================== TESTIMONIALS ===================== */
#testimonials{background:var(--grey-50)}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1000px;margin:0 auto}
.testimonial-card{background:var(--white);border:1.5px solid var(--grey-200);border-radius:var(--radius-lg);padding:32px;transition:all 0.3s ease;will-change:transform;transform-style:preserve-3d}
.testimonial-card:hover{transform:translateY(-6px) rotateX(2deg);box-shadow:var(--shadow-lg)}
.testimonial-card.featured{border-color:var(--blue);box-shadow:var(--shadow-blue)}
.testimonial-card.featured:hover{box-shadow:0 16px 48px rgba(26,115,232,0.2)}
.testimonial-stars{color:#FFC107;font-size:16px;margin-bottom:16px;letter-spacing:2px}
.testimonial-text{font-size:14px;color:var(--grey-600);line-height:1.8;margin-bottom:24px;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:12px}
.testimonial-avatar{width:40px;height:40px;border-radius:50%;background:var(--blue);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700}
.testimonial-avatar.bg2{background:#6C63FF}
.testimonial-avatar.bg3{background:#00BFA6}
.testimonial-author strong{font-size:14px;color:var(--grey-800)}
.testimonial-author small{font-size:12px;color:var(--grey-400)}

/* ===================== FOOTER ===================== */
footer{padding:60px 40px 0;border-top:1px solid var(--grey-200);position:relative;z-index:1;background:var(--grey-50)}
.footer-inner{max-width:1100px;margin:0 auto;display:flex;justify-content:space-between;gap:48px;padding-bottom:40px}
.footer-brand{max-width:280px;display:flex;flex-direction:column;gap:8px}
.footer-name{font-size:18px;font-weight:700;color:var(--grey-800)}
.footer-brand p{font-size:13px;color:var(--grey-500);line-height:1.6}
.footer-links{display:flex;gap:64px}
.footer-col{display:flex;flex-direction:column;gap:10px}
.footer-col h4{font-size:13px;font-weight:700;color:var(--grey-700);text-transform:uppercase;letter-spacing:1px;margin-bottom:4px}
.footer-col a{color:var(--grey-500);text-decoration:none;font-size:13px;transition:var(--transition)}
.footer-col a:hover{color:var(--blue)}
.footer-bottom{max-width:1100px;margin:0 auto;padding:24px 0;border-top:1px solid var(--grey-200);text-align:center}
.footer-bottom p{font-size:12px;color:var(--grey-400)}

/* ===================== ANIMATIONS ===================== */
[data-anim]{opacity:0;transform:translateY(30px);transition:opacity 0.6s ease,transform 0.6s ease}
[data-anim].visible{opacity:1;transform:translateY(0)}

/* ===================== GRADIENT ORBS ===================== */
.gradient-orb{position:absolute;border-radius:50%;pointer-events:none;z-index:0;animation:orbFloat 8s ease-in-out infinite;filter:blur(40px)}
@keyframes orbFloat{0%,100%{transform:translate(0,0) scale(1)}25%{transform:translate(20px,-30px) scale(1.1)}50%{transform:translate(-15px,20px) scale(0.95)}75%{transform:translate(25px,10px) scale(1.05)}}

@media(max-width:1024px){
    .features-grid,.pricing-grid,.testimonials-grid{grid-template-columns:repeat(2,1fr)}
    #hero{flex-direction:column;text-align:center;padding-top:100px}
    .hero-content{max-width:100%;align-items:center;display:flex;flex-direction:column}
    .hero-sub{max-width:100%}
    .hero-stats{justify-content:center}
    .timeline-item,.timeline-item.right{width:100%;margin-left:0;flex-direction:row}
    .timeline-line{left:20px}
    .timeline-node{position:relative;left:auto;right:auto;flex-shrink:0}
    .timeline-item.right .timeline-node{left:auto;right:auto}
    .browser-content{flex-direction:column}
    .dash-sidebar{width:100%;border-right:none;border-bottom:1px solid var(--grey-200);display:flex;overflow-x:auto}
    .dash-main{flex-direction:column}
    .dash-contact-list{width:100%;border-right:none;border-bottom:1px solid var(--grey-200)}
}
@media(max-width:768px){
    .nav-links,.nav-actions{display:none}
    .hamburger{display:flex}
    .nav-links.open{display:flex;position:absolute;top:100%;left:0;right:0;flex-direction:column;background:rgba(255,255,255,0.97);backdrop-filter:blur(20px);padding:24px 40px;gap:16px;border-bottom:1px solid var(--grey-200)}
    .features-grid,.pricing-grid,.testimonials-grid,.integrations-grid{grid-template-columns:1fr}
    #hero{padding:100px 24px 60px;gap:40px}
    section{padding:60px 24px}
    .footer-inner{flex-direction:column;gap:32px}
    .footer-links{gap:40px;flex-wrap:wrap}
    .hero-stats{gap:20px}
    .floating-card{display:none}
    .phone-mockup{width:260px;height:500px}
    .browser-mockup{transform:none!important}
    .timeline-3d{padding-left:40px}
}
