:root {
  --green: #2A80B9;
  --green-dark: #1f6696;
  --navy: #123550;
  --tech-blue: #2A80B9;
  --cyan: #77c043;
  --accent-green: #77c043;
  --ink: #11164d;
  --muted: #686b73;
  --soft: #f5f6f5;
  --line: #e7e9ec;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.topbar {
  height: 45px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.topbar i {
  margin-right: 8px;
  color: var(--green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 18px rgba(17, 22, 29, 0.07);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo img {
  width: auto;
  height: 58px;
  max-width: 190px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  color: #4f5158;
}

.nav-links a {
  position: relative;
  transition: color 220ms ease;
}

.nav-links a:not(.btn)::before {
  content: "";
  position: absolute;
  left: 0;
  top: -23px;
  width: 12px;
  height: 2px;
  background: var(--green);
  opacity: 0;
  transform: translateY(-6px);
  transition: 220ms ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-links a:hover::before,
.nav-links a.active::before {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-size: 23px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: var(--green);
  font: 700 14px/1 "Poppins", sans-serif;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(42, 128, 185, 0.2);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(42, 128, 185, 0.34);
}

.btn--small {
  min-height: 45px;
  padding: 0 20px;
}

.btn--ghost {
  color: var(--green);
  background: var(--white);
  box-shadow: 0 14px 24px rgba(24, 40, 64, 0.1);
}

.btn--ghost:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(42, 128, 185, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 34%, rgba(255,255,255,0.3) 62%, rgba(255,255,255,0.04) 100%),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=85") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: var(--green);
  clip-path: polygon(0 100%, 14% 0, 86% 0, 100% 100%);
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: var(--white);
  clip-path: polygon(0 100%, 0 0, 14% 0, 0 100%, 86% 0, 100% 0, 100% 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__content { max-width: 680px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 14px;
  color: var(--green-dark);
  background: rgba(42, 128, 185, 0.11);
  border: 1px solid rgba(42, 128, 185, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero p {
  max-width: 640px;
  margin: 0 0 44px;
  color: #5e6067;
  font-size: 17px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.section-pad { padding: 95px 0; }

.services {
  padding-bottom: 0;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
}

.tag {
  display: inline-flex;
  min-width: 132px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--navy));
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(42, 128, 185, 0.2);
  font-weight: 700;
  letter-spacing: 0;
}

.section-title h2 {
  margin: 0 0 24px;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 40px);
  letter-spacing: 0;
  color: var(--ink);
}

.section-title h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--green));
}

.section-title p {
  margin: 0 auto;
  max-width: 690px;
  color: #4f5158;
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  padding: 40px 32px 34px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(22, 28, 38, 0.08);
  transform-style: preserve-3d;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.service-card:hover { box-shadow: 0 26px 65px rgba(22, 28, 38, 0.15); }

.service-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  color: var(--green);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--green), var(--cyan)) border-box;
  border: 5px solid transparent;
  border-radius: 24px;
  font-size: 34px;
  box-shadow: 0 16px 30px rgba(34, 48, 62, 0.1);
  transition: transform 260ms ease, color 260ms ease;
}

.service-card:hover .service-icon {
  color: var(--tech-blue);
  transform: translateY(-5px) rotate(-4deg);
}

.service-card h3 { margin: 0 0 12px; font-size: 22px; }
.service-card p { margin: 0; color: #4f5158; line-height: 1.55; }

.round-link {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  line-height: 1;
}

.benefits {
  background:
    radial-gradient(circle at 12% 18%, rgba(42, 128, 185, 0.12), transparent 28%),
    linear-gradient(180deg, #eef6fb 0%, #f7fbff 56%, #ffffff 100%);
}

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

.benefit-card {
  min-height: 210px;
  padding: 30px;
  background: var(--white);
  border: 1px solid #e9eef2;
  box-shadow: 0 18px 45px rgba(17, 22, 29, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(42, 128, 185, 0.45);
  box-shadow: 0 24px 60px rgba(17, 22, 29, 0.12);
}

.benefit-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--tech-blue));
  border-radius: 14px;
  font-size: 21px;
}

.benefit-card h3,
.process-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.benefit-card p,
.process-step p {
  margin: 0;
  color: #555861;
  line-height: 1.55;
}

.about {
  position: relative;
  overflow: hidden;
  padding: 70px 0 84px;
  color: var(--white);
  background: linear-gradient(90deg, var(--green) 0 21%, var(--navy) 21% 100%);
}

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

.about__media {
  position: relative;
  min-height: 540px;
  transform-style: preserve-3d;
}

.about__media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%);
}

.years {
  position: absolute;
  right: -45px;
  bottom: 34px;
  width: 160px;
  height: 150px;
  display: grid;
  place-items: center;
  color: #3a3b40;
  background: var(--white);
  clip-path: polygon(0 12%, 100% 0, 97% 100%, 0 86%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.years strong { font-size: 52px; line-height: 0.8; }
.years span { display: block; margin-top: -34px; font-size: 24px; }

.eyebrow,
.contact-label {
  margin: 0 0 16px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  margin-right: 14px;
  vertical-align: middle;
  background: var(--white);
}

.about h2,
.contact h2,
.cta-stats h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.25;
  letter-spacing: 0;
}

.about__content > p:not(.eyebrow) { color: #e6edf2; line-height: 1.6; }

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  margin: 28px 0;
}

.feature > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.feature h3 { margin: 0 0 7px; font-size: 20px; }
.feature p { margin: 0; color: #dbe4eb; }

.founder {
  background:
    radial-gradient(circle at 12% 22%, rgba(42, 128, 185, 0.13), transparent 28%),
    linear-gradient(135deg, #f8fbfd 0%, #ffffff 48%, #eef6f8 100%);
}

.founder__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.founder__photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: #dfe8ec;
  box-shadow: 0 28px 70px rgba(20, 30, 44, 0.16);
}

.founder__photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.photo-placeholder {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(34, 48, 62, 0.82);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.founder__content h2 {
  margin: 24px 0 6px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
}

.founder__content h3 {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 22px;
}

.founder__content p {
  max-width: 620px;
  color: #4f5158;
  font-size: 17px;
  line-height: 1.7;
}

.founder__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.founder__metrics div {
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--green);
  box-shadow: 0 18px 45px rgba(17, 22, 29, 0.08);
}

.founder__metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
}

.founder__metrics span {
  color: #5e6067;
  font-size: 14px;
}

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

.process-step {
  position: relative;
  min-height: 280px;
  padding: 32px 24px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(34, 48, 62, 0.16);
}

.process-step::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(42, 128, 185, 0.18);
}

.process-step span {
  display: block;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 42px;
  font-weight: 800;
}

.process-step i {
  position: absolute;
  right: 24px;
  top: 34px;
  color: var(--green);
  font-size: 28px;
}

.process-step p { color: #dbe4eb; }

.cta-stats {
  position: relative;
  min-height: 500px;
  padding: 58px 0 0;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(7, 28, 48, 0.92), rgba(42, 128, 185, 0.62)),
    url("banner.jpg") center / cover no-repeat;
}

.cta-stats::after {
  content: none;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta__content p { margin: 0 auto 28px; max-width: 650px; line-height: 1.6; }

.stats {
  position: relative;
  z-index: 2;
  top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 30px 36px;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(17, 22, 29, 0.13);
}

.stats div {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 20px;
  align-items: center;
  padding: 0 25px;
  border-right: 1px solid #dadde0;
}

.stats div:last-child { border-right: 0; }

.stats span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: var(--white);
  background: var(--green);
}

.stats strong { font-size: 22px; }
.stats strong::after { content: "+"; }
.stats p { grid-column: 2; margin: -8px 0 0; font-size: 13px; font-weight: 700; text-transform: uppercase; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  background: var(--soft);
}

.contact__image {
  background: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=85") center / cover no-repeat;
}

.contact__form {
  padding: 68px clamp(28px, 6vw, 84px);
}

.contact-label {
  text-transform: none;
  font-size: 18px;
}

.contact__form > p:not(.contact-label) {
  margin-bottom: 40px;
  color: #555861;
  line-height: 1.7;
}

form { width: 100%; }

input,
textarea {
  width: 100%;
  min-height: 50px;
  margin-bottom: 20px;
  padding: 0 16px;
  border: 1px solid #e7e8e9;
  color: var(--ink);
  background: var(--white);
  font: 400 14px "Poppins", sans-serif;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 148px;
  padding-top: 16px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(42, 128, 185, 0.13);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.subscribe {
  min-height: 42px;
  padding: 0;
  background: var(--white);
}

.subscribe__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: end;
}

.subscribe h2 { margin: 0 0 7px; font-size: 22px; }
.subscribe p { margin: 0; color: #4f5158; }
.subscribe form { display: grid; grid-template-columns: 1fr 150px; gap: 14px; }
.subscribe input { margin: 0; min-height: 52px; }
.subscribe .btn { min-height: 52px; }

.footer {
  color: var(--white);
  background: var(--navy);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1.15fr;
  gap: 58px;
  padding: 84px 0 68px;
}

.logo--footer { display: inline-flex; margin-bottom: 28px; }
.logo--footer img {
  height: 72px;
  max-width: 220px;
  padding: 8px;
  background: var(--white);
  border-radius: 6px;
}
.footer p { color: #e0e7ec; line-height: 1.45; }
.footer h3 { margin: 0 0 28px; font-size: 22px; }
.footer h3::after { content: ""; display: block; width: 50px; height: 2px; margin-top: 13px; background: var(--white); }
.footer a:not(.logo) { display: block; margin-bottom: 12px; color: #e0e7ec; }
.footer a:hover { color: var(--green); }
.footer i { margin-right: 8px; color: var(--green); }

.support {
  display: inline-grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border 180ms ease, transform 180ms ease;
}

.support:hover {
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

.support span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.support i { margin-right: 0; color: var(--white); }

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.13);
  color: #e0e7ec;
  font-size: 14px;
}

.whatsapp-float,
.to-top {
  position: fixed;
  right: 24px;
  z-index: 25;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.whatsapp-float {
  right: 28px;
  bottom: 88px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover {
  color: var(--white);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.45);
}

.to-top {
  right: 28px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--green);
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 220ms ease;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.magnetic { will-change: transform; }

@media (max-width: 1000px) {
  .topbar { display: none; }
  .nav { min-height: 74px; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 75px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 220ms ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { padding: 13px 10px; }
  .nav-links a::before { display: none; }
  .hero { min-height: 560px; }
  .about { background: var(--navy); }
  .about__grid,
  .founder__grid,
  .contact,
  .subscribe__inner {
    grid-template-columns: 1fr;
  }
  .about__media { min-height: auto; }
  .years { right: 18px; }
  .service-grid,
  .benefit-grid,
  .stats,
  .process-grid,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats div { border: 0; padding: 18px; }
  .contact__image { min-height: 420px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1110px); }
  .logo img { height: 50px; max-width: 160px; }
  .hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.78)),
      url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1000&q=80") center / cover no-repeat;
  }
  .hero h1 { font-size: 36px; }
  .about { padding-top: 40px; }
  .about__media img { height: 390px; }
  .years { width: 126px; height: 118px; right: 10px; bottom: 20px; }
  .years strong { font-size: 38px; }
  .years span { margin-top: -24px; font-size: 18px; }
  .section-pad { padding: 72px 0; }
  .services { padding-bottom: 0; }
  .service-grid,
  .benefit-grid,
  .stats,
  .process-grid,
  .footer__grid,
  .form-row,
  .subscribe form {
    grid-template-columns: 1fr;
  }
  .service-card { min-height: 340px; }
  .founder__photo,
  .founder__photo img { min-height: 380px; height: 380px; }
  .founder__metrics { grid-template-columns: 1fr; }
  .stats { top: 56px; padding: 18px; }
  .contact__form { padding: 48px 20px; }
  .subscribe__inner { gap: 24px; }
}
