
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --bg:          #ffffff;
  --surface:     #f1f5f9;
  --surface2:    #e8f0fe;
  --border:      #e2e8f0;
  --border2:     #cbd5e1;

  --text:        #0f172a;
  --text2:       #334155;
  --muted:       #64748b;
  --muted2:      #94a3b8;

  --brand:       #1a56db;
  --brand-dark:  #1447c0;
  --brand-light: #3b82f6;
  --cyan:        #0ea5e9;
  --cyan-light:  #e0f2fe;
  --violet:      #7c3aed;
  --violet-light:#ede9fe;
  --green:       #059669;
  --green-light: #d1fae5;
  --orange:      #ea580c;
  --orange-light:#ffedd5;
  --red:         #dc2626;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-md:   0 8px 32px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
  --shadow-brand:0 8px 32px rgba(26,86,219,.25);

  --font-display:'Plus Jakarta Sans', sans-serif;
  --font-body:   'Inter', sans-serif;

  --nav-h:       72px;
  --max-w:       1200px;
}

/* ------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* -------------- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--text);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
}
.body-lg  { font-size: 1.1rem; line-height: 1.75; color: var(--text2); }
.body-md  { font-size: .95rem; line-height: 1.7;  color: var(--muted); }
.body-sm  { font-size: .85rem; line-height: 1.65; color: var(--muted); }
.label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand);
}

/* -------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .label { margin-bottom: .75rem; display: block; }
.section-header .display-lg { margin-bottom: 1rem; }
.section-header .body-lg { max-width: 580px; margin: 0 auto; }

/* --------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.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.5rem; }

/* ----------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  letter-spacing: .01em; padding: .8rem 1.6rem; border-radius: var(--radius-pill);
  transition: all .25s cubic-bezier(.4,0,.2,1); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,86,219,.35); }
.btn-secondary {
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border2); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent; color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-ghost:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.btn-cyan {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #fff; box-shadow: 0 8px 24px rgba(14,165,233,.3);
}
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(14,165,233,.45); }
.btn-lg { padding: 1rem 2rem; font-size: .95rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .8rem; }

/* ------------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 2rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--brand));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 4px 14px rgba(124,58,237,.3);
  flex-shrink: 0;
}
.nav-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.nav-logo-text .t1 { color: var(--brand); }
.nav-logo-text .t2 { color: var(--text); }
.nav-logo-sub { font-size: .65rem; color: var(--muted2); letter-spacing: .06em; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: .88rem;
  color: var(--text2); padding: .5rem .9rem; border-radius: var(--radius-sm);
  transition: all .2s; letter-spacing: .01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: var(--surface2); }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-signin {
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  color: var(--text2); padding: .5rem .9rem; border-radius: var(--radius-sm);
  transition: all .2s;
}
.nav-signin:hover { color: var(--brand); background: var(--surface2); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 2rem;
  flex-direction: column; gap: 1rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  color: var(--text); padding: 1rem; border-radius: var(--radius); border: 1px solid var(--border);
}
.mobile-menu a:hover { background: var(--surface2); color: var(--brand); }
.mobile-menu .btn { justify-content: center; width: 100%; }


.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem;
    align-items: stretch; 
    margin: 2rem auto;
    max-width: 1100px;
}

/*-------------Popups-------------*/

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;    
    height: 100%;   
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999999; 
    pointer-events: auto; 
    overflow-y: auto;    
}

.popup-box{
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

.popup-box h3{
    margin-top:0;
    margin-bottom:12px;
}

.popup-box p{
    color:#666;
    line-height:1.6;
    margin-bottom:22px;
}

.popup-buttons{
    display:flex;
    justify-content:center;
    gap:12px;
}

.popup-buttons button{
    padding:10px 18px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.popup-buttons button:first-child{
    background:#ddd;
}

.popup-buttons button:last-child{
    background:#0d6efd;
    color:#fff;
}


@media (max-width: 768px){

    .popup-box{
        max-width: 100%;
        padding: 20px;
        border-radius: 10px;
    }

    .popup-box h3{
        font-size: 22px;
    }

    .popup-box p{
        font-size: 15px;
        line-height: 1.6;
    }

    .popup-buttons{
        flex-direction: column;
    }

    .popup-buttons button{
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

/* -------------- */
footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
}
.footer-top {
  max-width: var(--max-w); margin: 0 auto; padding: 60px 2rem 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo-icon { background: linear-gradient(135deg, var(--violet), var(--brand)); }
.footer-brand .nav-logo-text .t1 { color: #93c5fd; }
.footer-brand .nav-logo-text .t2 { color: #fff; }
.footer-desc { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all .2s;
}
.footer-social a:hover { background: var(--brand); border-color: var(--brand); }

.footer-col h4 {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.4); margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: #93c5fd; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: .65rem; }
.footer-contact-icon { font-size: .9rem; margin-top: 1px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto;
  font-size: .8rem; color: rgba(255,255,255,.3);
}

.footer-bottom-right { 
  display: flex; 
  gap: 1rem; 
  white-space: nowrap; 
  flex-wrap: nowrap;   
}
.footer-bottom-right a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom-right a:hover { color: rgba(255,255,255,.7); }

/* ------------ */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.card:hover { border-color: #bfdbfe; box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* --------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: var(--radius-pill);
}
.badge-brand { background: var(--surface2); color: var(--brand); }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-violet { background: var(--violet-light); color: var(--violet); }
.badge-cyan { background: var(--cyan-light); color: #0369a1; }
.badge-orange { background: var(--orange-light); color: var(--orange); }

/* ------------ */
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-label { font-weight: 600; font-size: .88rem; color: var(--text2); }
.form-input, .form-textarea, .form-select {
  padding: .8rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text); font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ------------ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 2000;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  width: 0%; transition: width .1s;
}



/* ------------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- */
.stat-chip {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  box-shadow: var(--shadow-sm); text-align: center;
}
.stat-chip-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.8rem;
  color: var(--text); line-height: 1;
}
.stat-chip-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ------- */
.grad-text {
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-violet {
  background: linear-gradient(135deg, var(--violet), var(--brand));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* -------- */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ---------- */
.alert {
  padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; display: flex; align-items: center; gap: 8px;
}
.alert-success { background: var(--green-light); color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: var(--cyan-light); color: #0369a1; border: 1px solid #bae6fd; }

/* ---------- */
.grid-2, .grid-3, .grid-4 { 
  min-width: 0; 
}

/* ----------------- */
.responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 5rem;
    align-items: center;
}

/* ----------- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem;
}

/* ------------ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 70px 0; }
  .section-sm { padding: 48px 0; }
  .section-header { margin-bottom: 2.5rem; }
  
  .container { padding: 0 1.25rem; }
  .section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .section .container > div {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .responsive-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr !important; }

  /* ------------- */
  .nav-links, .nav-actions .btn { display: none; }
  .nav-signin { display: none; }
  .hamburger { display: flex; }

 /* ---------- */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-bottom-right { gap: 0.8rem; font-size: 0.7rem; }

  .review-grid { display: flex !important; flex-direction: column !important; gap: 2rem !important; width: 100% !important; }
  .review-form-wrap { width: 100% !important; padding: 0 !important; }
  
  .prime-web-box { padding: 1.5rem; }
  
  .analytics-grid {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }

  .contact-form-card {
    width: 100% !important;     
    margin: 0 auto !important; 
    padding: 1.5rem !important;
    box-sizing: border-box !important;
  }
  
    .contact-info-card {
      width: 100% !important;
      border-radius: 0px;   
      padding: 1.5rem;      
    }

  .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}

@media (max-width: 600px) {
  .float-notif {
    display: none !important; 
  }
}

@media (max-width: 480px) {
  .btn-lg { padding: .85rem 1.5rem; font-size: .88rem; }

  .container {
    padding: 0 1rem !important;
  }
}

/* --------- */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all .3s; position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: -10px; right: 20px;
  font-size: 8rem; color: var(--surface2); font-family: Georgia, serif;
  line-height: 1; pointer-events: none; z-index: 0;
}
.testimonial-card:hover { border-color: #bfdbfe; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.test-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: 2px; position: relative; z-index: 1; }
.test-text { font-size: .9rem; line-height: 1.7; color: var(--text2); margin-bottom: 1.2rem; position: relative; z-index: 1; font-style: italic; }
.test-author { display: flex; align-items: center; gap: .75rem; position: relative; z-index: 1; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: #fff;
  flex-shrink: 0;
}
.test-name { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--text); }
.test-role { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ------------ */
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all .35s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.feature-card:hover { border-color: #bfdbfe; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.feature-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: .5rem; }
.feature-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ----------- */
.pricing-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem 2rem;
  transition: all .35s; position: relative;
}
.pricing-card.featured {
  border-color: var(--brand); background: var(--text);
  box-shadow: 0 20px 60px rgba(26,86,219,.2);
}
.pricing-card:not(.featured):hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-badge-wrap {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
}
.pricing-badge-pill {
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1.1rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.pricing-plan-name {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin-bottom: .8rem;
}
.pricing-card.featured .pricing-plan-name { color: rgba(255,255,255,.5); }
.pricing-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: .4rem; }
.pricing-currency { font-size: 1rem; color: var(--muted); font-weight: 500; padding-top: .4rem; }
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,.5); }
.pricing-amount {
  font-family: var(--font-display); font-weight: 800; font-size: 3rem;
  color: var(--text); line-height: 1;
}
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-period { font-size: .9rem; color: var(--muted); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.4); }
.pricing-desc { font-size: .82rem; color: var(--muted); padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 1rem 0 1.5rem; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.1); }
.pricing-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.pricing-features li { font-size: .88rem; color: var(--text2); display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.75); }
.pricing-features li::before { content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .pricing-features li::before { color: #93c5fd; }

/* -------------- */
.process-step { text-align: center; }
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: 0 8px 24px rgba(26,86,219,.3);
}
.process-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: .5rem; }
.process-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ---------- */
.demo-card {
  background: rgba(255,255,255,.98); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; position: relative;
}
.demo-titlebar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 10px 14px; display: flex; align-items: center; gap: 7px;
}
.demo-dot { width: 9px; height: 9px; border-radius: 50%; }
.demo-dot-r { background: #ff5f57; }
.demo-dot-y { background: #febc2e; }
.demo-dot-g { background: #28c840; }
.demo-titlebar span { font-size: .7rem; color: var(--muted); margin-left: 6px; }
.demo-body { padding: 1.25rem; }

/* ------------- */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: linear-gradient(160deg, var(--surface2) 0%, #fff 60%);
  border-bottom: 1px solid var(--border);
}

/* --------- */
.float-notif {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .75rem 1rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md); position: absolute; z-index: 10;
  animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-notif-icon { font-size: 1.3rem; }
.float-notif-label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.float-notif-val { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--text); }

/* ----------------- */
.chart-bar-wrap {
  display: flex; align-items: flex-end; gap: 4px;
  height: 80px; padding: 0 4px;
}
.chart-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--brand), var(--cyan));
  opacity: .75; transition: opacity .2s;
  animation: barGrow .8s ease both;
}
@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}

/* ----------- */
.donut-ring { transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1); }

/* ------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--surface2); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-label { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .2rem; }
.contact-info-val { font-size: .88rem; color: var(--muted); }

/* ------------- */
.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff;
  margin: 0 auto 1rem;
}
.team-name { font-family: var(--font-display); font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.team-role { font-size: .82rem; color: var(--muted); }

/* ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up { animation: fadeUp .7s ease both; }
.anim-fade-up-2 { animation: fadeUp .7s .15s ease both; }
.anim-fade-up-3 { animation: fadeUp .7s .3s ease both; }
.anim-fade-up-4 { animation: fadeUp .7s .45s ease both; }
.anim-fade-up-5 { animation: fadeUp .7s .6s ease both; }

/* ------------- */
.review-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
}
.star-rating { display: flex; gap: 6px; margin-bottom: .5rem; }
.star-rating input { display: none; }
.star-rating label {
  font-size: 1.8rem; color: #d1d5db; cursor: pointer;
  transition: color .15s; line-height: 1;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #f59e0b; }
.star-rating { flex-direction: row-reverse; }
.star-rating label:hover,
.star-rating label:hover ~ label { color: #f59e0b; }

/* --- Cookie Bar --- */
.cookie-bar {
  position: fixed; 
  bottom: 0; left: 0; right: 0; 
  z-index: 9999;
  background: var(--text); 
  color: rgba(255, 255, 255, .85); 
  padding: 1.25rem 2rem;
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 2rem;
  transform: translateY(100%); 
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: .85rem; line-height: 1.5; margin: 0; }
.cookie-bar a { color: #93c5fd; text-decoration: underline; }

@media (max-width: 768px) {
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
  .cookie-bar .cookie-buttons {
    display: flex;
    width: 100%;
    gap: 0.75rem;
  }
  .cookie-bar .cookie-buttons button {
    flex: 1;
    padding: 0.6rem 0.5rem !important;
    font-size: 0.85rem;
  }
}

.cookie-modal {
  display: none; 
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 10000; 
  align-items: center; justify-content: center;
  padding: 1rem; 
}

.cookie-modal.show-modal { display: flex; }

.cookie-modal-content {
  background-color: #ffffff;
  color: #1e293b; 
  border-radius: 12px;
  width: 100%;
  max-width: 600px; 
  max-height: 85vh; 
  display: flex; flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: space-between;
}
.cookie-modal-header h3 { margin: 0; font-size: 1.2rem; font-weight: 600; color: #0f172a; }
.cookie-modal-close { font-size: 1.75rem; font-weight: bold; color: #94a3b8; cursor: pointer; transition: color 0.2s; }
.cookie-modal-close:hover { color: #1e293b; }

.cookie-modal-body {
  padding: 1.5rem;
  overflow-y: auto; 
  font-size: 0.9rem; line-height: 1.6;
}
.cookie-modal-body h4 { margin: 1.25rem 0 0.5rem 0; font-size: 1rem; color: #0f172a; font-weight: 600; }
.cookie-modal-body ul { padding-left: 1.25rem; margin-top: 0.5rem; }
.cookie-modal-body li { margin-bottom: 0.5rem; }

.cookie-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex; justify-content: flex-end;
}

/* -------------- */

.ticker-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1001 !important; 
  height: 40px; 
  display: flex;
  align-items: center;
  justify-content: center;
}


.navbar {
  top: 40px !important; 
}

body {
  padding-top: 40px !important;
}

/* ---------------- */

.legal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); z-index: 9999;
    justify-content: center; align-items: center; padding: 20px;
}

.legal-modal {
    background: #fff; width: 100%; max-width: 750px; max-height: 85vh;
    border-radius: 16px; display: flex; flex-direction: column;
    overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.legal-modal-header {
    padding: 20px 25px; border-bottom: 1px solid #eee;
    display: flex; justify-content: space-between; align-items: center;
}

.legal-modal-title { font-weight: 700; font-size: 1.1rem; color: #1e293b; }

.legal-tabs {
    display: flex; gap: 8px; padding: 12px 20px; background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.legal-tab {
    padding: 8px 16px; border: none; background: #e2e8f0;
    cursor: pointer; border-radius: 8px; font-weight: 500; font-size: 0.9rem;
    transition: all 0.2s ease;
}

.legal-tab.active { background: #4F46E5; color: #fff; }
.legal-tab:hover:not(.active) { background: #cbd5e1; }

.legal-body { padding: 25px; overflow-y: auto; color: #334155; font-size: 0.95rem; line-height: 1.6; }
.legal-content { display: none; }
.legal-content.active { display: block; }
.legal-body h2 { font-size: 1.25rem; margin-top: 20px; margin-bottom: 10px; color: #0f172a; }

.legal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #64748b; }
.legal-close:hover { color: #000; }



