:root {
  --head-primary: #2297f0;
  --head-dark: #1b47a0;
  --head-text: #222;
  --head-bg: #ffffff;
  --head-shadow: rgba(0,0,0,0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.head-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--head-bg);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.head-scrolled {
  box-shadow: 0 4px 12px var(--head-shadow);
}

.head-container {
  margin: auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head-logo img {
  height: 50px;
}

.head-nav {
  display: flex;
  gap: 30px;
}

.head-nav-link {
  text-decoration: none;
  color: #120b03cc;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.head-nav-link:hover,
.head-active {
  color: var(--head-primary);
}

.head-btn {
  padding: 8px 26px;
  border-radius: 50px;
  background: linear-gradient(to right, var(--head-primary), var(--head-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.head-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.head-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.head-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--head-text);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .head-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 10px 20px var(--head-shadow);
  }

  .head-nav-open {
    display: flex;
  }

  .head-cta {
    display: none;
  }

  .head-hamburger {
    display: flex;
  }
}

/* hero section  */

.hero-section {
  padding: 40px 20px;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  background: #eaf4ff;
  border-radius: 50px;
  border: 1px solid #2297f054;
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--head-dark);
}

.hero-title {
  font-size: 58px;
  margin-bottom: 20px;
  color: #111;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #2297f0 0%, #1b47a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 17px;
  color: #120b0399;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-outline-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: 0.3s;
}

.hero-outline-btn:hover {
  background: #f2f6fb;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #666;
}

.hero-stats strong {
  font-size: 26px;
  color: #111;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-main-img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hero-float {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  font-size: 14px;
}

.hero-float strong {
  display: block;
  font-size: 18px;
  color: var(--head-primary);
}

.hero-float-left {
  left: -30px;
  bottom: 80px;
}

.hero-float-right {
  right: -30px;
  top: 60px;
}


/* Scroll animation utility */
.global-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.global-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .hero-float-left {
    left: 10px;
  }

  .hero-float-right {
    right: 10px;
  }
}

/* section 1  */

.sec1-section {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
}

.sec1-container {
  max-width: 1200px;
  margin: auto;
}

.sec1-top-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--head-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.sec1-title {
  font-size: 42px;
  margin-bottom: 15px;
  color: #111;
}

.sec1-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 60px;
  color: #555;
}

.sec1-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.sec1-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 22px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.sec1-card:hover {
  border-color: #dbe9ff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transform: translateY(-4px);
}

.sec1-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--head-primary), var(--head-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
}

.sec1-card-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000;
}

.sec1-card-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: #666;
}

/* Responsive */
@media (max-width: 1100px) {
  .sec1-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sec1-grid {
    grid-template-columns: 1fr;
  }

  .sec1-title {
    font-size: 32px;
  }
}


/* section 2  */

.sec2-services {
  background: var(--head-bg);
  padding: 80px 20px;
}

.sec2-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.sec2-subtitle {
  color: var(--head-primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.sec2-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--head-text);
  margin: 15px 0;
}

.sec2-description {
  max-width: 650px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.sec2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.sec2-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px var(--head-shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
}

.sec2-card:hover {
  border-color: rgba(34, 151, 240, 0.3);
  transform: translateY(-5px);
}

/* ICON */
.sec2-icon {
  width: 55px;
  height: 55px;
  background: #f1f7ff;
  color: var(--head-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.sec2-card:hover .sec2-icon {
  background: var(--head-primary);
  color: #fff;
}

/* TEXT */
.sec2-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--head-text);
}

.sec2-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* BUTTON */
.sec2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--head-primary);
  color: var(--head-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sec2-btn:hover {
  background: var(--head-primary);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .sec2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec2-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .sec2-grid {
    grid-template-columns: 1fr;
  }

  .sec2-title {
    font-size: 28px;
  }

  .sec2-card {
    text-align: center;
  }

  .sec2-icon {
    margin-left: auto;
    margin-right: auto;
  }
}


/* section 3  */

.sec3-process {
  background: #0f172a;
  padding: 100px 20px;
  color: #fff;
}

.sec3-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.sec3-subtitle {
  color: var(--head-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.sec3-title {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0;
}

.sec3-description {
  max-width: 650px;
  margin: 0 auto 70px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.sec3-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.sec3-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 24px;
  padding: 45px 30px;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.sec3-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(34, 151, 240, 0.25);
}

/* STEP BADGE */
.sec3-step-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--head-primary);
  color: #fff;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
}

/* ICON */
.sec3-icon {
  width: 60px;
  height: 60px;
  background: rgba(34, 151, 240, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--head-primary);
  margin-bottom: 25px;
  transition: all 0.35s ease;
}

.sec3-card:hover .sec3-icon {
  background: var(--head-primary);
  color: #fff;
}

/* TEXT */
.sec3-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.sec3-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .sec3-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sec3-steps {
    grid-template-columns: 1fr;
  }

  .sec3-title {
    font-size: 34px;
  }

  .sec3-card {
    text-align: center;
  }

  .sec3-step-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .sec3-icon {
    margin-left: auto;
    margin-right: auto;
  }
}


/* section 4  */

.sec4-pricing {
  padding: 100px 20px;
  background: var(--head-bg);
}

.sec4-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.sec4-subtitle {
  color: var(--head-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.sec4-title {
  font-size: 44px;
  font-weight: 700;
  margin: 15px 0;
  color: var(--head-text);
}

.sec4-description {
  max-width: 650px;
  margin: 0 auto 70px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* CARDS GRID */
.sec4-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* BASE CARD */
.sec4-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 35px;
  box-shadow: 0 15px 40px var(--head-shadow);
  border: 2px solid transparent;
  text-align: left;
  transition: all 0.35s ease;
}

.sec4-card:hover {
  border-color: rgba(34, 151, 240, 0.35);
  transform: translateY(-6px);
}

/* FEATURED CARD */
.sec4-featured {
  background: linear-gradient(180deg, #1b47a0, #0f172a);
  color: #fff;
  transform: translateY(-20px);
  border: none;
}

.sec4-featured:hover {
  transform: translateY(-20px);
}

/* BADGE */
.sec4-badge {
  display: inline-block;
  background: var(--head-primary);
  color: #fff;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* PLAN TEXT */
.sec4-plan {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sec4-plan-desc {
  font-size: 15px;
  margin-bottom: 25px;
  color: inherit;
  opacity: 0.85;
}

/* PRICE */
.sec4-price {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* FEATURES */
.sec4-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec4-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}

.sec4-features i {
  color: var(--head-primary);
  background: rgba(34, 151, 240, 0.15);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* BUTTON */
.sec4-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 70px;
  padding: 15px 32px;
  border-radius: 50px;
  background: linear-gradient(90deg, #2297f0, #1b47a0);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sec4-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 151, 240, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .sec4-cards {
    grid-template-columns: 1fr;
  }

  .sec4-featured {
    transform: translateY(0);
  }

  .sec4-title {
    font-size: 34px;
  }
}


/* section 5  */

.sec5-wrapper {
  background: var(--head-bg);
  padding: 90px 20px;
  border-top:1px solid #2297f050;
}

.sec5-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.sec5-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef6ff;
  color: var(--head-primary);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}

.sec5-badge-icon {
  font-size: 14px;
}

/* Heading */
.sec5-heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--head-text);
  line-height: 1.15;
  margin-bottom: 20px;
}

.sec5-heading span {
  color: var(--head-primary);
}

/* Sub text */
.sec5-subtext {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Button */
.sec5-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: linear-gradient(
    135deg,
    var(--head-primary),
    var(--head-dark)
  );
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 25px var(--head-shadow);
  transition: all 0.3s ease;
}

.sec5-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px var(--head-shadow);
}

.sec5-button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.sec5-button:hover .sec5-button-arrow {
  transform: translateX(4px);
}

/* Footnote */
.sec5-footnote {
  margin-top: 20px;
  font-size: 14px;
  color: #888;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .sec5-wrapper {
    padding: 70px 16px;
  }

  .sec5-subtext {
    font-size: 16px;
  }

  .sec5-button {
    font-size: 16px;
    padding: 14px 30px;
  }
}


/* footer section  */

.sec-footer-wrapper {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 20px 30px;
}

/* Main grid */
.sec-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
}

/* Brand */
.sec-footer-logo {
  margin-bottom: 24px;
  width: 15%;
  border-radius: 12px;
}

.sec-footer-desc {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
}

/* Titles */
.sec-footer-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 22px;
}

/* Links */
.sec-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec-footer-list li {
  margin-bottom: 14px;
}

.sec-footer-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.sec-footer-list a:hover {
  color: #38bdf8;
}

/* Contact */
.sec-footer-contact p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 14px;
}

/* Divider */
.sec-footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sec-footer-bottom p {
  font-size: 15px;
  color: #94a3b8;
}

/* Legal links */
.sec-footer-legal {
  display: flex;
  gap: 30px;
}

.sec-footer-legal a {
  color: #94a3b8;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sec-footer-legal a:hover {
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 900px) {
  .sec-footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sec-footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .sec-footer-wrapper {
    padding: 60px 16px 24px;
  }

  .sec-footer-desc,
  .sec-footer-list a,
  .sec-footer-contact p {
    font-size: 16px;
  }

  .sec-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
