:root {
  --sky: #0EA5E9;
  --teal: #14B8A6;
  --amber: #F59E0B;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --grad-main: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
  --grad-warm: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --grad-cool: linear-gradient(135deg, #0EA5E9 0%, #6366F1 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(14,165,233,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(14,165,233,0.18), 0 8px 24px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: #F8FAFC;
  color: var(--gray-800);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(248,250,252,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14,165,233,0.1);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 22px;
  color: var(--gray-900); text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo img {
    width: 200px;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 15px; font-weight: 500;
  color: var(--gray-600); transition: color 0.2s;
}
.nav-links a:hover { color: var(--sky); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.btn-ghost {
  padding: 10px 20px; border-radius: 10px; border: 1.5px solid var(--gray-200);
  font-size: 14px; font-weight: 600; color: var(--gray-700);
  background: transparent; cursor: pointer; transition: all 0.2s; font-family: 'Manrope', sans-serif;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--sky); color: var(--sky); }
.btn-primary {
  padding: 10px 22px; border-radius: 10px; border: none;
  font-size: 14px; font-weight: 700; color: white;
  background: var(--grad-main); cursor: pointer; transition: all 0.2s;
  font-family: 'Manrope', sans-serif; text-decoration: none;
  box-shadow: 0 4px 14px rgba(14,165,233,0.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,165,233,0.5); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  background: transparent; cursor: pointer; gap: 5px;
  transition: all 0.2s; flex-shrink: 0;
}
.hamburger:hover { border-color: var(--sky); }
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed; top: 71px; left: 0; right: 0; z-index: 99;
  background: rgba(248,250,252,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14,165,233,0.12);
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.mobile-menu.open {
  max-height: 480px;
  padding: 16px 24px 24px;
}
.mobile-menu ul {
  list-style: none; display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 16px;
}
.mobile-menu ul li a {
  display: block; padding: 12px 0;
  font-size: 16px; font-weight: 600; color: var(--gray-700);
  text-decoration: none; border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { color: var(--sky); }
.mobile-menu-cta {
  display: flex; flex-direction: column; gap: 10px; padding-top: 4px;
}
.mobile-menu-cta .btn-ghost,
.mobile-menu-cta .btn-primary {
  display: block; text-align: center; width: 100%;
  padding: 12px 20px; font-size: 15px;
}

/* ── HERO ── */
.hero {
  padding: 140px 24px 80px;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.bg-img-here {
    background: linear-gradient(180deg, #ecf2f9 0%, #f9fcff 100%);
}
.hero .d-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}
.here-left,
.here-right-img {
    width: 50%;
}
.hero::before {
  content: '';
  position: fixed; top: -200px; left: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: fixed; bottom: -200px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.2);
  border-radius: 100px; padding: 6px 16px; font-size: 13px; font-weight: 600;
  color: var(--sky); margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; font-size: 10px; }
.hero h1 {
  font-family: 'Poppins', sans-serif; font-size: clamp(35px, 5vw, 60px);
  line-height: 1.1; font-weight: 800; color: var(--gray-900);
  margin-bottom: 10px; max-width: 700px;
}
.hero h1 .accent {
  background: var(--grad-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .accent2 {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 18px; color: var(--gray-600); max-width: 560px;
  line-height: 1.7; margin-bottom: 40px; font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.btn-lg {
  padding: 16px 32px; border-radius: 14px; font-size: 16px;
  font-weight: 700; font-family: 'Manrope', sans-serif;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-lg {
  background: var(--grad-main); color: white; border: none;
  box-shadow: 0 6px 24px rgba(14,165,233,0.45);
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(14,165,233,0.55); }
.btn-outline-lg {
  background: white; color: var(--gray-800);
  border: 2px solid var(--gray-200);
}
.btn-outline-lg:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.stat { }
.stat-num {
  font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800;
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 13px; color: var(--gray-400); font-weight: 500; margin-top: 2px; }

/* ── DASHBOARD / LIVE PLATFORM ── */
.lp-wrap {
  background: var(--gray-900);
  padding: 100px 24px;
  position: relative; overflow: hidden;
}
.lp-wrap::before {
  content: ''; position: absolute; top: -160px; left: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.lp-wrap::after {
  content: ''; position: absolute; bottom: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.lp-inner {
  max-width: 1200px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center;
}
/* Left column */
.lp-left {}
.lp-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sky);
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.lp-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--sky); border-radius: 2px;
}
.lp-left h2 {
  font-family: 'Poppins', sans-serif; font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: white; line-height: 1.15; margin-bottom: 16px;
}
.lp-left h2 span {
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.lp-desc {
  font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 40px; max-width: 420px;
}
/* Service icon cards */
.lp-service-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.lp-srv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 22px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden;
}
.lp-srv-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  border-radius: 18px; transition: opacity 0.3s;
}
.lp-srv-card.c1::after { background: radial-gradient(circle at 0% 100%, rgba(14,165,233,0.12), transparent 70%); }
.lp-srv-card.c2::after { background: radial-gradient(circle at 0% 100%, rgba(20,184,166,0.12), transparent 70%); }
.lp-srv-card.c3::after { background: radial-gradient(circle at 0% 100%, rgba(245,158,11,0.12), transparent 70%); }
.lp-srv-card.c4::after { background: radial-gradient(circle at 0% 100%, rgba(99,102,241,0.12), transparent 70%); }
.lp-srv-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.16); }
.lp-srv-card:hover::after { opacity: 1; }
.lp-srv-icon {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  position: relative; z-index: 1;
}
.c1 .lp-srv-icon { background: rgba(14,165,233,0.15); box-shadow: 0 0 20px rgba(14,165,233,0.15); }
.c2 .lp-srv-icon { background: rgba(20,184,166,0.15); box-shadow: 0 0 20px rgba(20,184,166,0.15); }
.c3 .lp-srv-icon { background: rgba(245,158,11,0.15); box-shadow: 0 0 20px rgba(245,158,11,0.15); }
.c4 .lp-srv-icon { background: rgba(99,102,241,0.15); box-shadow: 0 0 20px rgba(99,102,241,0.15); }
.lp-srv-text { position: relative; z-index: 1; }
.lp-srv-text strong { display: block; font-size: 14px; font-weight: 700; color: white; margin-bottom: 4px; }
.lp-srv-text span { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.5; }

/* Right column — dashboard mockup */
.lp-mockup {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}
.lp-topbar {
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-topbar-title { font-weight: 700; font-size: 14px; color: white; display: flex; align-items: center; gap: 8px; }
.lp-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ADE80;
  box-shadow: 0 0 6px #4ADE80;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.lp-topbar-date { font-size: 12px; color: rgba(255,255,255,0.3); }
.lp-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
/* Metric row */
.lp-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.lp-metric {
  background: rgba(255,255,255,0.06); border-radius: 12px; padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-metric-icon { font-size: 16px; margin-bottom: 8px; }
.lp-metric-val { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: white; line-height: 1; margin-bottom: 3px; }
.lp-metric-lbl { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 4px; }
.lp-metric-trend { font-size: 10px; color: #4ADE80; font-weight: 700; }
/* Chart row */
.lp-chart-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; }
.lp-chart-box {
  background: rgba(255,255,255,0.04); border-radius: 14px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.07);
}
.lp-chart-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 14px; }
.lp-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.lp-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,0.15);
  animation: barRise 1s ease-out forwards; opacity: 0;
}
.lp-bar.hi { background: linear-gradient(180deg, #4ADE80, #22C55E); }
.lp-bar:nth-child(1){height:50%;animation-delay:.1s}
.lp-bar:nth-child(2){height:68%;animation-delay:.15s}
.lp-bar:nth-child(3){height:42%;animation-delay:.2s}
.lp-bar:nth-child(4){height:82%;animation-delay:.25s}
.lp-bar:nth-child(5){height:60%;animation-delay:.3s}
.lp-bar:nth-child(6){height:90%;animation-delay:.35s}
.lp-bar:nth-child(7){height:75%;animation-delay:.4s}
.lp-bar:nth-child(8){height:100%;animation-delay:.45s}
.lp-bar:nth-child(9){height:70%;animation-delay:.5s}
.lp-bar:nth-child(10){height:85%;animation-delay:.55s}
/* Plant list */
.lp-plant-box {
  background: rgba(255,255,255,0.04); border-radius: 14px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 8px;
}
.lp-plant-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,0.04);
}
.lp-plant-name { font-size: 12px; font-weight: 600; color: white; }
.lp-plant-loc { font-size: 10px; color: rgba(255,255,255,0.35); }
.lp-plant-kw { font-size: 12px; font-weight: 700; color: white; text-align: right; }
.lp-plant-status { font-size: 10px; text-align: right; font-weight: 600; }
.s-ok { color: #4ADE80; } .s-warn { color: #FCD34D; }
/* Alert bar */
.lp-alert {
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.25);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.lp-alert span { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; }
.lp-alert strong { color: #A5B4FC; }

@media (max-width: 1024px) {
  .lp-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lp-service-grid { grid-template-columns: 1fr; }
  .lp-chart-row { grid-template-columns: 1fr; }
}

/* ── FEATURES ── */
.section { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.15);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--sky); margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Poppins', sans-serif; font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; color: var(--gray-900); line-height: 1.15; margin-bottom: 16px;
}
.section-header h2 .g {
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-header p { font-size: 17px; color: var(--gray-500); max-width: 520px; margin: 0 auto; line-height: 1.7; }

#feature{
  border-radius:25px;
  max-width:1200px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;background:linear-gradient(135deg,#F0FDFA,#EFF6FF);
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card {
  background: white; border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s; cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--grad-main);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,0.2); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
  background: var(--gray-50);
  transition: all 0.3s;
}
.feat-card:hover .feat-icon { background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(20,184,166,0.1)); }
.feat-card h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.feat-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ── WHY US ── */
.why-section {
  background: var(--gray-900);
  padding: 100px 24px;
}
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-section .tag { background: rgba(14,165,233,0.15); color: #7DD3FC; }
.why-section .section-header h2 { color: white; }
.why-section .section-header p { color: rgba(255,255,255,0.5); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 36px 30px;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.3);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 36px; margin-bottom: 20px;
  display: block;
}
.why-card h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── SERVICES ── */
.services-section {
  padding: 110px 24px;
  background: var(--gray-900);
  position: relative; overflow: hidden;
}
.services-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.services-section::after {
  content: ''; position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.services-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.services-section .tag { background: rgba(14,165,233,0.12); color: #7DD3FC; border-color: rgba(14,165,233,0.2); }

/* Top featured card — full width */
.srv-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 28px; overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s;
  cursor: pointer;
}
.srv-featured:hover { border-color: rgba(14,165,233,0.35); }
.srv-featured-visual {
  background: linear-gradient(145deg, #0EA5E9 0%, #14B8A6 100%);
  padding: 52px 48px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 360px;
}
.srv-featured-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.srv-featured-visual::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.srv-featured-mockup {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px; padding: 24px; width: 100%;
  position: relative; z-index: 1;
}
.srv-featured-content {
  background: rgba(255,255,255,0.03);
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.srv-featured-content .srv-num {
  font-family: 'Poppins', sans-serif; font-size: 64px; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
  margin-bottom: -20px;
}
.srv-featured-content h3 {
  font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 800;
  color: white; margin-bottom: 16px; line-height: 1.2;
}
.srv-featured-content p {
  font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 28px;
}
.srv-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.srv-pill {
  background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.25);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: #7DD3FC;
}
.srv-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--sky);
  text-decoration: none; transition: gap 0.2s;
}
.srv-link:hover { gap: 12px; }

/* Bottom 4-column grid */
.srv-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 24px;
}
.srv-mini {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 28px 24px;
  cursor: pointer; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.srv-mini::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.srv-mini.c1::before { background: linear-gradient(90deg, #0EA5E9, #14B8A6); }
.srv-mini.c2::before { background: linear-gradient(90deg, #14B8A6, #4ADE80); }
.srv-mini.c3::before { background: linear-gradient(90deg, #F59E0B, #EF4444); }
.srv-mini.c4::before { background: linear-gradient(90deg, #6366F1, #8B5CF6); }
.srv-mini:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.srv-mini:hover::before { transform: scaleX(1); }
.srv-mini-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.srv-mini.c1 .srv-mini-icon { background: rgba(14,165,233,0.12); }
.srv-mini.c2 .srv-mini-icon { background: rgba(74,222,128,0.1); }
.srv-mini.c3 .srv-mini-icon { background: rgba(245,158,11,0.1); }
.srv-mini.c4 .srv-mini-icon { background: rgba(99,102,241,0.1); }
.srv-mini h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.srv-mini p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 16px; }
.srv-mini-link {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 4px;
}
.srv-mini:hover .srv-mini-link { color: var(--sky); }

/* Bottom wide card */
.srv-wide {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 36px 40px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  cursor: pointer; transition: all 0.3s;
}
.srv-wide:hover { background: rgba(245,158,11,0.05); border-color: rgba(245,158,11,0.2); }
.srv-wide-left { display: flex; align-items: flex-start; gap: 20px; }
.srv-wide-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(245,158,11,0.12); display: flex;
  align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0;
}
.srv-wide-left h4 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px; }
.srv-wide-left p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 500px; }
.srv-wide-cta {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 13px 24px; border-radius: 12px;
  background: linear-gradient(135deg, #F59E0B, #EF4444); color: white;
  font-size: 14px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3); transition: all 0.2s;
}
.srv-wide-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }

@media (max-width: 1024px) {
  .srv-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .srv-featured { grid-template-columns: 1fr; }
  .srv-featured-visual { min-height: 260px; }
  .srv-wide { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .srv-grid-4 { grid-template-columns: 1fr; }
  .srv-featured-content { padding: 32px 28px; }
  .srv-featured-visual { padding: 32px 28px; }
}

/* ── STATS ── */
.stats-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
  border-top: 1px solid rgba(14,165,233,0.1);
  border-bottom: 1px solid rgba(14,165,233,0.1);
}
.stats-inner { max-width: 1000px; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  text-align: center; padding: 40px 20px;
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.counter {
  font-family: 'Poppins', sans-serif; font-size: 44px; font-weight: 900;
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 6px; line-height: 1;
}
.stat-card p { font-size: 14px; color: var(--gray-500); font-weight: 600; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white; border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #F59E0B; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #0EA5E9, #14B8A6); }
.av2 { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.av3 { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.author-name { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.author-role { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: white; border-radius: var(--radius-lg); padding: 40px 32px;
  border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: all 0.3s; position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: var(--grad-main); border-color: transparent;
  box-shadow: 0 20px 60px rgba(14,165,233,0.4);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.06) translateY(-4px); }
.pop-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: white; border-radius: 100px;
  padding: 4px 16px; font-size: 12px; font-weight: 700; white-space: nowrap;
}
.plan-name { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 12px; }
.price-card.featured .plan-name { color: rgba(255,255,255,0.8); }
.plan-price {
  font-family: 'Poppins', sans-serif; font-size: 50px; font-weight: 900;
  color: var(--gray-900); line-height: 1; margin-bottom: 4px;
}
.price-card.featured .plan-price { color: white; }
.plan-period { font-size: 14px; color: var(--gray-400); margin-bottom: 24px; }
.price-card.featured .plan-period { color: rgba(255,255,255,0.6); }
.plan-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.6; }
.price-card.featured .plan-desc { color: rgba(255,255,255,0.75); }
.plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-600);
}
.price-card.featured .plan-features li { color: rgba(255,255,255,0.85); }
.check { width: 20px; height: 20px; border-radius: 50%; background: rgba(14,165,233,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; color: var(--sky); }
.price-card.featured .check { background: rgba(255,255,255,0.2); color: white; }
.btn-plan {
  width: 100%; padding: 14px; border-radius: 12px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: 'Manrope', sans-serif;
  text-decoration: none;
  display: block;
  text-align: center;
  border: 2px solid var(--gray-200); background: white; color: var(--gray-800);
}
.btn-plan:hover { border-color: var(--sky); color: var(--sky); }
.btn-plan-featured {
  width: 100%; padding: 14px; border-radius: 12px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: 'Manrope', sans-serif;
  text-decoration: none;
  display: block;
  text-align: center;
  border: none; background: white; color: var(--sky);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-plan-featured:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border-radius: var(--radius); border: 1px solid var(--gray-100);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(14,165,233,0.3); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--gray-900);
  font-family: 'Manrope', sans-serif; text-align: left;
}
.faq-arrow { font-size: 18px; color: var(--sky); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 20px; font-size: 14px; color: var(--gray-500); line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 24px 0;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: -160px; left: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
  pointer-events: none;
}
footer::after {
  content: ''; position: absolute; bottom: 0; right: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 2fr;
    gap: 56px;
    padding-bottom:10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
}

/* Brand column */
.footer-brand {}
.footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px;
  color: white; text-decoration: none; margin-bottom: 16px;
}
.footer-logo .logo-icon {
  background: var(--grad-main); width: 36px; height: 36px;
  border-radius: 9px; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.75;
  max-width: 260px; margin-bottom: 28px;
}
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 13px; text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover { background: var(--sky); border-color: var(--sky); color: white; transform: translateY(-2px); }

/* Link columns */
.footer-col {}
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sky); }

/* Contact column */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    width: 33%;
    float: left;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.footer-contact-text { }
.footer-contact-label { font-size: 11px; color: rgba(255,255,255,0.25); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 2px; }
.footer-contact-value { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; line-height: 1.5; }
.footer-contact-value a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact-value a:hover { color: var(--sky); }

/* Bottom bar */
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 0;
  position: relative;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.2); font-weight: 500; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 13px; color: rgba(255,255,255,0.2); text-decoration: none;
  font-weight: 500; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* Footer badge */
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.18);
  border-radius: 100px; padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: var(--sky); margin-top: 20px;
}

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap:20px; }
}
@media (max-width: 640px) {
  footer { padding-top: 52px; }
  .footer-main { grid-template-columns: 1fr; gap: 0; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--grad-main); padding: 80px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner h2 {
  font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: white; margin-bottom: 16px; position: relative;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; position: relative; flex-wrap: wrap; }
.btn-white {
  padding: 16px 32px; border-radius: 14px; background: white;
  color: var(--sky); font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; font-family: 'Manrope', sans-serif;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15); transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
.btn-outline-white {
  padding: 16px 32px; border-radius: 14px; background: transparent;
  color: white; font-size: 16px; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer;
  font-family: 'Manrope', sans-serif; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.7s ease-out both; }
.d1 { animation-delay: 0.05s; } .d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; } .d4 { animation-delay: 0.35s; }
.d5 { animation-delay: 0.45s; } .d6 { animation-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-metrics { grid-template-columns: repeat(2, 1fr); }
  .dash-charts { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }
}

/* ── CONTACT ── */
.contact-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #F0FDFA 0%, #EFF6FF 100%);
}
.contact-inner { max-width: 1100px; margin: 0 auto; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start;
}
.contact-info h2 {
  font-family: 'Poppins', sans-serif; font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 16px;
}
.contact-info h2 span {
  background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-info p {
  font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: white; border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: var(--shadow-sm);
}
.contact-item-text strong {
  display: block; font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px;
}
.contact-item-text span { font-size: 14px; color: var(--gray-500); }
.contact-social { display: flex; gap: 10px; }
.csocial {
  width: 40px; height: 40px; border-radius: 10px;
  background: white; border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gray-500); text-decoration: none;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.csocial:hover { background: var(--sky); border-color: var(--sky); color: white; transform: translateY(-2px); }

/* Form card */
.contact-form-card {
  background: white; border-radius: var(--radius-lg); padding: 44px 40px;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.contact-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-main);
}
.form-title {
  font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 6px;
}
.form-subtitle { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-size: 13px; font-weight: 700; color: var(--gray-700); letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid var(--gray-200); background: var(--gray-50);
  font-size: 14px; color: var(--gray-800); font-family: 'Manrope', sans-serif;
  transition: all 0.2s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky); background: white;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; border-radius: 5px; border: 2px solid var(--gray-200);
  cursor: pointer; flex-shrink: 0; margin-top: 1px; accent-color: var(--sky);
}
.form-check label { font-size: 13px; color: var(--gray-500); line-height: 1.5; cursor: pointer; }
.form-check label a { color: var(--sky); text-decoration: none; font-weight: 600; }
.btn-submit {
  width: 100%; padding: 16px; border-radius: 14px; border: none;
  background: var(--grad-main); color: white;
  font-size: 16px; font-weight: 700; font-family: 'Manrope', sans-serif;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(14,165,233,0.4);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(14,165,233,0.5); }
.btn-submit:active { transform: translateY(0); }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success .success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #4ADE80, #22C55E);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 20px;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 10px;
}
.form-success p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 997;
    width: 60px;
    height: 60px;
    padding: 15px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    transition: transform .2s;
}

.wa-float img {
    width: 100%;
}

.wa-float:hover {
    transform: scale(1.08);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero .d-flex {
      display: block;
  }
  .here-left, .here-right-img {
      width: 100%;
  }
  .here-right-img img {
    width: 100%;
}
.counter {
    font-size: 35px;
}
.logo img {
    width: 130px;
}
.footer-contact-item {
    width: 100%;
}
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
}