:root{
  --primary:#1c75bc;
  --primary-dark:#145b93;
  --secondary:#58595b;
  --light:#f7f9fc;
  --white:#ffffff;
  --border:#dde6ef;
  --text:#1d1d1f;
  --muted:#6c757d;
  --shadow:0 12px 35px rgba(28,117,188,0.12);
  --radius:22px;
  --container:1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}

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

a{
  text-decoration:none;
  color:inherit;
}

.text-primary{
  color:var(--primary);
}

.bg-light{
  background:var(--light);
}

.mb-0{
  margin-bottom:0;
}

.text-center{
  text-align:center;
}

.mx-auto{
  margin-inline:auto;
}

.max-780{
  max-width:780px;
}

.max-850{
  max-width:850px;
}

.max-300{
  max-width:300px;
}

.pl-40{
  padding-left: 40px!important;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  transition:.3s ease;
  border:1px solid transparent;
  cursor:pointer;
}

.btn-primary{
  background:var(--primary);
  color:var(--white);
  box-shadow:var(--shadow);
}

.btn-primary:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
}

.btn-outline{
  border-color:var(--primary);
  color:var(--primary);
  background:transparent;
}

.btn-outline:hover{
  background:var(--primary);
  color:var(--white);
}

.btn-light{
  background:var(--white);
  color:var(--primary);
}

.btn-light:hover{
  transform:translateY(-2px);
}

.btn-dark-outline{
  color:var(--white);
  border-color:rgba(255,255,255,0.65);
}

.btn-dark-outline:hover{
  background:var(--white);
  color:var(--primary);
  border-color:var(--white);
}

.tag{
  display:inline-block;
  padding:8px 14px;
  background:#e8f3fb;
  color:var(--primary);
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.section{
  padding:88px 0;
}

.section-head{
  max-width:720px;
  margin-bottom:42px;
}

.section-head h2{
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.15;
  margin-top:14px;
  margin-bottom:14px;
}

.section-head p{
  color:var(--muted);
  font-size:16px;
}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:82px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:var(--secondary);
  font-size:18px;
}

.logo-mark{
  width:42px;
  height:42px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--primary), #52a9ea);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:20px;
  font-weight:800;
  box-shadow:var(--shadow);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:14px;
  font-weight:600;
  color:var(--secondary);
}

.nav-links a:hover{
  color:var(--primary);
}

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

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:none;
  border-radius:12px;
  background:#eef5fb;
  color:var(--primary);
  font-size:22px;
  cursor:pointer;
}

/* Hero */
.hero{
  padding:42px 0 34px;
  background:
    radial-gradient(circle at top left, rgba(28,117,188,0.12), transparent 30%),
    linear-gradient(to bottom, #ffffff 0%, #f8fbfe 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.hero-left{
  padding:18px 0;
}

.hero-left h1{
  font-size:clamp(38px,5vw,64px);
  line-height:1.06;
  letter-spacing:-0.03em;
  margin:18px 0 18px;
  max-width:680px;
}

.hero-left p{
  font-size:17px;
  color:var(--muted);
  max-width:620px;
  margin-bottom:24px;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.hero-info-card{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:22px;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:18px;
  box-shadow:0 14px 30px rgba(0,0,0,0.05);
  max-width:720px;
}

.hero-info-image{
  border-radius:20px;
  overflow:hidden;
  min-height:220px;
}

.hero-info-image img{
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
}

.hero-info-content h3{
  font-size:28px;
  line-height:1.18;
  margin-bottom:12px;
  color:var(--secondary);
}

.hero-info-content p{
  font-size:15px;
  color:var(--muted);
  margin-bottom:14px;
}

.hero-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--primary);
  font-weight:700;
}

.hero-link::after{
  content:"→";
  transition:transform .25s ease;
}

.hero-link:hover::after{
  transform:translateX(4px);
}

.hero-right{
  position:relative;
  display:flex;
  align-items:center;
}

.hero-visual{
  position:relative;
  width:100%;
  min-height:580px;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(28,117,188,0.10), rgba(88,89,91,0.06)),
    url('images/laptop-closed-2.webp') center/cover no-repeat;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.floating-card{
  position:absolute;
  background:#fff;
  border-radius:22px;
  padding:20px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  max-width:300px;
}

.floating-top{
  top:34px;
  left:-22px;
}

.floating-bottom{
  bottom:30px;
  right:-18px;
  background:var(--primary);
  color:#fff;
}

.stars{
  color:#f4b400;
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.score{
  display:flex;
  align-items:center;
  gap:14px;
  margin:10px 0;
}

.score strong{
  font-size:42px;
  line-height:1;
  color:var(--primary);
}

.score-label{
  font-weight:700;
  color:var(--secondary);
}

.floating-top p,
.floating-bottom p{
  font-size:14px;
  color:var(--muted);
}

.floating-bottom p{
  color:rgba(255,255,255,0.88);
}

.floating-bottom h4{
  font-size:17px;
  margin-bottom:8px;
}

/* Partner row */
.partners{
  padding:26px 0 8px;
}

.partner-wrap{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:24px 0;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
  align-items:center;
  opacity:.9;
}

.partner-logo{
  text-align:center;
  padding:8px 12px;
  font-weight:800;
  color:#98a3af;
  letter-spacing:.06em;
  font-size:15px;
}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.about-image{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:520px;
  background:url('images/meeting-1.webp') center/cover no-repeat;
}

.feature-list{
  display:grid;
  gap:18px;
  margin-top:24px;
}

.feature-item{
  display:flex;
  gap:18px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:20px;
}

.feature-no{
  width:58px;
  min-width:58px;
  height:58px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#e9f3fb;
  color:var(--primary);
  font-weight:800;
  font-size:20px;
}

.feature-item h4{
  font-size:18px;
  margin-bottom:6px;
}

.feature-item p{
  color:var(--muted);
  font-size:14px;
}

/* Why us */
.why{
  background:linear-gradient(135deg, #4a4b4d, #2f3032);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.why::before{
  content:"";
  position:absolute;
  inset:auto -100px -120px auto;
  width:340px;
  height:340px;
  border-radius:50%;
  background:rgba(28,117,188,0.18);
}

.why .section-head p{
  color:rgba(255,255,255,0.78);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.why-card{
  background:#fff;
  color:var(--text);
  border-radius:24px;
  padding:28px;
  position:relative;
  min-height:220px;
  box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.why-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(135deg, var(--primary), #58a7e3);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:24px;
  margin-bottom:18px;
}

.why-card h3{
  font-size:22px;
  line-height:1.25;
  margin-bottom:12px;
}

.why-card p{
  font-size:15px;
  color:var(--muted);
}

/* Stats */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.stat-card{
  border-radius:24px;
  padding:32px 24px;
  background:#fff;
  border:1px solid var(--border);
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.3s ease;
}

.stat-card.featured{
  background:var(--primary);
  color:#fff;
  border-color:transparent;
  box-shadow:var(--shadow);
}

.stat-card:hover{
  transform:translateY(-6px);
}

.stat-card h3{
  font-size:48px;
  line-height:1;
  margin-bottom:22px;
}

.stat-card h4{
  font-size:20px;
  line-height:1.3;
  margin-bottom:10px;
}

.stat-card p{
  color:var(--muted);
  font-size:14px;
}

.stat-card.featured p{
  color:rgba(255,255,255,0.85);
}

/* Services */
.services-layout{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:34px;
  align-items:center;
  margin-bottom:40px;
}

.services-intro{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.service-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:24px;
}

.service-point{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.service-point .icon{
  width:50px;
  min-width:50px;
  height:50px;
  border-radius:16px;
  background:#eaf4fc;
  display:grid;
  place-items:center;
  color:var(--primary);
  font-size:22px;
  font-weight:800;
}

.services-visual-wrap{
  position:relative;
  margin:40px 0;
}

.service-visual{
  position:relative;
  min-height:520px;
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(28,117,188,0.08), rgba(28,117,188,0.14)),
    url('images/meeting-2.webp') center/cover no-repeat;
  box-shadow:var(--shadow);
}

.service-overlay-stats{
  position:absolute;
  right:20px;
  bottom:20px;
  width:50%;
  max-width:420px;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  border:1px solid rgba(28,117,188,0.10);
  border-radius:22px;
  padding:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  box-shadow:0 18px 40px rgba(0,0,0,0.14);
}

.service-overlay-stats div{
  text-align:center;
}

.service-overlay-stats strong{
  display:block;
  color:var(--primary);
  font-size:28px;
  line-height:1.1;
  margin-bottom:4px;
}

.service-overlay-stats span{
  font-size:12px;
  color:var(--muted);
}

.services-details{
  margin-top:10px;
}

/* Accordion */
.accordion{
  display:grid;
  gap:14px;
  margin-top:14px;
}

.accordion-item{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.accordion-header{
  width:100%;
  border:none;
  background:#f5f9fd;
  color:var(--secondary);
  font-size:15px;
  font-weight:700;
  text-align:left;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.accordion-header.active{
  background:var(--primary);
  color:#fff;
}

.accordion-body{
  display:none;
  padding:18px 20px 22px;
  color:var(--muted);
  font-size:14px;
  background:#fff;
}

.accordion-body.open{
  display:block;
}

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

.process-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px 22px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.03);
}

.process-card .num{
  width:62px;
  height:62px;
  margin:0 auto 18px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--primary),#61afe9);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:22px;
  font-weight:800;
}

.process-card h4{
  margin-bottom:10px;
  font-size:20px;
}

.process-card p{
  color:var(--muted);
  font-size:14px;
}

/* CTA */
.cta-wrap{
  border-radius:30px;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(28,117,188,0.88), rgba(88,89,91,0.88)),
    url('images/laptop-closed-3.webp') center/cover no-repeat;
  color:#fff;
  padding:54px 48px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:center;
  box-shadow:var(--shadow);
}

.cta-wrap h2{
  font-size:clamp(30px,4vw,46px);
  line-height:1.12;
  margin-bottom:12px;
}

.cta-wrap p{
  font-size:16px;
  color:rgba(255,255,255,0.88);
  max-width:660px;
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}

/* Footer */
footer{
  background:#1f2226;
  color:#fff;
  padding-top:70px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .7fr 1fr;
  gap:28px;
  padding-bottom:40px;
}

.footer-brand p{
  color:rgba(255,255,255,0.76);
  font-size:14px;
  max-width:340px;
  margin:18px 0 18px;
}

.socials{
  display:flex;
  gap:10px;
}

.socials a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:grid;
  place-items:center;
  transition:.3s ease;
}

.socials a:hover{
  background:var(--primary);
}

.footer-col h4{
  font-size:18px;
  margin-bottom:16px;
}

.footer-links{
  display:grid;
  gap:10px;
}

.footer-links a,
.footer-contact li{
  color:rgba(255,255,255,0.76);
  font-size:14px;
}

.footer-links a:hover{
  color:#fff;
}

.footer-contact{
  list-style:none;
  display:grid;
  gap:12px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:20px 0 30px;
  color:rgba(255,255,255,0.68);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Scroll reveal */
.scroll-reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity 0.8s ease, transform 0.8s ease;
  will-change:opacity, transform;
}

.scroll-reveal.revealed{
  opacity:1;
  transform:translateY(0);
}

.stat-card,
.service-point,
.feature-item,
.why-card,
.process-card{
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.8s ease;
}

.countup{
  display:inline-block;
  min-width:2ch;
}

/* Responsive */
@media (max-width:1100px){
  .hero-grid,
  .about-grid,
  .services-layout,
  .cta-wrap,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .why-grid,
  .stats-grid,
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .partner-wrap{
    grid-template-columns:repeat(3,1fr);
  }

  .cta-actions{
    justify-content:flex-start;
  }

  .hero-right{
    order:-1;
  }

  .hero-visual{
    min-height:500px;
  }

  .services-visual-wrap{
    margin:30px 0;
  }

  .service-visual{
    min-height:460px;
  }
}

@media (max-width:860px){
  .nav-links,
  .nav-actions .btn{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links.mobile-open{
    display:flex;
    position:absolute;
    top:82px;
    left:16px;
    right:16px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    box-shadow:var(--shadow);
  }

  .service-points{
    grid-template-columns:1fr;
  }

  .hero-info-card{
    grid-template-columns:1fr;
  }

  .hero-info-image,
  .hero-info-image img{
    min-height:220px;
  }

  .floating-top,
  .floating-bottom{
    position:static;
    margin:18px;
  }

  .hero-visual{
    min-height:500px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:18px 0;
  }

  .service-overlay-stats{
    width:calc(100% - 32px);
    max-width:none;
    right:16px;
    bottom:16px;
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:640px){
  .section{
    padding:70px 0;
  }

  .hero{
    padding-top:20px;
  }

  .why-grid,
  .stats-grid,
  .process-grid,
  .partner-wrap{
    grid-template-columns:1fr;
  }

  .hero-left h1{
    font-size:42px;
  }

  .hero-info-content h3{
    font-size:22px;
  }

  .service-points{
    grid-template-columns:1fr;
  }

  .service-visual{
    min-height:380px;
  }

  .services-visual-wrap{
    margin:20px 0;
  }

  .service-overlay-stats{
    position:relative;
    width:100%;
    right:auto;
    bottom:auto;
    margin:16px;
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
  }

  .section-head h2{
    font-size:30px;
  }
}