@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary-navy: #1E3A5F;
  --dark-bg: #1E3A5F;
  --primary-blue: #1D4ED8;
  --cyan: #3B82F6;
  --light-bg: #F7F9FC;
  --text-dark: #1E3A5F;
  --text-gray: #6B7280;
  --success: #10B981;
  --danger: #EF4444;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(30, 58, 95, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(30, 58, 95, 0.1), 0 2px 4px -1px rgba(30, 58, 95, 0.06);
  --radius: 8px;
  --radius-lg: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.05rem;
}

p {
  color: var(--text-gray);
}

/* ===== SECTION LAYOUT ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light-bg);
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(30, 58, 95, 0.08);
  padding: 4px 16px;
  border-radius: 100px;
}

.section-title {
  margin-bottom: 12px;
}

.section-sub {
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ===== BUTTONS ===== */
.btn-primary-nx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.3);
}

.btn-primary-nx:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
}

.btn-outline-nx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all .2s;
}

.btn-outline-nx:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: rgba(30, 58, 95, 0.03);
  transform: translateY(-1px);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-bg);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  background: var(--light-bg);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ===== NAVBAR ===== */
.nx-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nx-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  overflow: hidden;
}

.nx-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-navy);
}

.nx-brand img {
  height: 36px;
  width: auto;
}

.nx-brand span {
  color: var(--primary-blue);
}

.nx-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nx-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}

.nx-nav a:hover,
.nx-nav a.active {
  color: var(--primary-blue);
  background: rgba(30, 58, 95, 0.05);
}

.nx-nav-cta {
  background: var(--primary-blue) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.nx-nav-cta:hover {
  background: var(--primary-blue) !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}

.nx-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nx-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--light-bg);
  padding: 30px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 58, 95, 0.08);
  border: 1px solid rgba(30, 58, 95, 0.12);
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hero-title {
  margin-bottom: 20px;
  color: var(--primary-navy);
}

.hero-sub {
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--text-gray);
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

@media (max-width: 576px) {
  .hero-btns {
    gap: 8px;
  }

  .hero-btns .btn-primary-nx,
  .hero-btns .btn-outline-nx {
    padding: 12px 16px;
    font-size: 13.5px;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--text-gray);
  font-weight: 500;
}

.trust-item i {
  color: var(--success);
  font-size: 14px;
}

.hero .btn-outline-nx {
  border-color: var(--border);
  color: var(--text-dark);
}

.hero .btn-outline-nx:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.hero-visual {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(10, 42, 94, 0.08);
}

.hero-mockup {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}

.mockup-bar {
  background: var(--primary-navy);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-content {
  padding: 24px;
}

.mockup-line {
  height: 10px;
  border-radius: 6px;
  background: var(--border);
  margin-bottom: 10px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  height: 100%;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(30, 58, 95, .2);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.08);
  border-radius: 14px;
  margin-bottom: 22px;
  font-size: 24px;
  color: var(--primary-blue);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--primary-blue);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-meta {
  display: flex;
  gap: 14px;
  margin: 14px 0;
  flex-wrap: wrap;
}

.service-meta-item {
  font-size: 13px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
}

.service-card-footer {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ===== PRICING CARDS ===== */
.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 20px;
}

.pricing-card-new {
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.pricing-card-new:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Theme Colors */
.pricing-card-default {
  border: 1px solid #E2E8F0;
}

.pricing-card-blue {
  border: 2px solid var(--primary-blue);
}

.pricing-card-green {
  border: 2px solid var(--success);
}

.pricing-top-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 20px;
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-blue-badge {
  background: var(--primary-blue);
}

.pricing-card-green-badge {
  background: var(--success);
}

.pricing-card-inner {
  padding: 30px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-sub-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  min-height: 24px;
}

.sub-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.pricing-name-new {
  font-size: 1.3rem;
  margin-bottom: 6px;
  font-weight: 500;
  color: #000;
}

.pricing-sub-new {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.4;
  min-height: 40px;
}

.pricing-price-area {
  margin-bottom: 24px;
}

.pricing-original-price {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: -4px;
}

.pricing-current-price .amount {
  font-size: 2.2rem;
  font-weight: 500;
  color: #000;
  line-height: 1;
  margin-right: 4px;
}

.pricing-save-text {
  font-size: 14px;
  color: var(--success);
  margin-top: 4px;
}

.pricing-features-new {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-features-new li {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
  padding-left: 0;
}

.pricing-btn-wrapper {
  margin-top: auto;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.btn-pricing-outline {
  background: #fff;
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-pricing-outline:hover {
  background: rgba(30, 58, 95, 0.05);
}

.btn-pricing-blue {
  background: var(--primary-blue);
  color: #fff;
  border: 1px solid var(--primary-blue);
}

.btn-pricing-blue:hover {
  background: #0052cc;
  color: #fff;
}

.btn-pricing-green {
  background: var(--success);
  color: #fff;
  border: 1px solid var(--success);
}

.btn-pricing-green:hover {
  background: #15803d;
  color: #fff;
}

.addons-section {
  border-top: 1px solid var(--border);
}

.addon-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.addon-title {
  font-size: 14px;
  color: #333;
}

.addon-price {
  font-size: 14px;
  color: var(--primary-blue);
}

.pricing-footer-note {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

/* ===== PORTFOLIO CARDS ===== */
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.portfolio-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--light-bg);
}

.portfolio-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--light-bg), #F7F9FC);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 36px;
}

.portfolio-body {
  padding: 20px;
}

.portfolio-cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.portfolio-tech {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-tag {
  font-size: 12px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--text-gray);
  padding: 2px 10px;
  border-radius: 100px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  height: 100%;
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--primary-navy);
}

.testimonial-company {
  font-size: 12.5px;
  color: var(--text-gray);
}

.star-rating i {
  font-size: 13px;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 15px;
  background: var(--white);
  user-select: none;
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-arrow {
  font-size: 18px;
  transition: transform .2s;
  color: var(--primary-blue);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-gray);
  font-size: 14.5px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== PROCESS STEPS ===== */
.process-step {
  text-align: center;
  padding: 24px;
}

.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step h4 {
  margin-bottom: 8px;
}

/* ===== WHY CHOOSE US ===== */
.why-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.why-item:last-child {
  border: none;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(30, 58, 95, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--light-bg);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2,
.cta-banner h3 {
  color: var(--primary-navy);
}

.cta-banner p {
  color: var(--text-gray);
  max-width: 540px;
  margin: 12px auto 32px;
  font-size: 16px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== TRUST PILLS ===== */
.trust-pills {
  background: var(--light-bg);
  padding: 20px 0;
  border-top: 1px solid rgba(30, 58, 95, 0.06);
  border-bottom: 1px solid rgba(30, 58, 95, 0.06);
}

.trust-pills-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 13.5px;
  font-weight: 500;
}

.trust-pill i {
  color: var(--primary-blue);
}

/* ===== FOOTER ===== */
@keyframes floatFooterOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -40px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatFooterOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-40px, 40px) scale(1.15);
  }

  66% {
    transform: translate(20px, -20px) scale(0.85);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.nx-footer {
  background: var(--primary-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nx-footer::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: floatFooterOrb1 15s ease-in-out infinite;
}

.nx-footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: floatFooterOrb2 18s ease-in-out infinite reverse;
}

.nx-footer .container {
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-tag {
  font-size: 13px;
  color: var(--primary-blue);
  margin-top: 4px;
  letter-spacing: .02em;
}

.footer-desc {
  font-size: 14.5px;
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.footer-heading {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s, padding-left .2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-blue);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14.5px;
}

.footer-contact-item i {
  color: var(--primary-blue);
  margin-top: 4px;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom p {
  font-size: 13.5px;
  margin: 0;
  color: var(--text-gray);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 16px;
  transition: all .3s ease;
}

.social-link:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  transform: translateY(-3px);
}

/* Newsletter Form */
.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter .input-group {
  background: rgba(30, 58, 95, 0.04);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 8px;
  padding: 4px;
  display: flex;
}

.footer-newsletter input {
  background: transparent;
  border: none;
  color: var(--text-dark);
  padding: 10px 14px;
  font-size: 14px;
  width: 100%;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: var(--text-gray);
}

.footer-newsletter button {
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}

.footer-newsletter button:hover {
  background: var(--primary-navy);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--light-bg);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  color: var(--primary-navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-gray);
  max-width: 520px;
}

.breadcrumb-nx {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.breadcrumb-nx a {
  color: var(--primary-blue);
}

.breadcrumb-nx span {
  color: var(--text-gray);
}

/* ===== CONTACT FORM ===== */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14.5px;
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, .1);
  outline: none;
}

/* ===== ABOUT PAGE ===== */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.mission-vision-card {
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}

.mission-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
}

.vision-card {
  background: var(--primary-navy);
}

.vision-card h3,
.vision-card p {
  color: rgba(255, 255, 255, .9);
}

/* ===== ALERT / SUCCESS ===== */
.alert-nx-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert-nx-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: var(--radius);
  padding: 16px 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 20px 0 40px;
  }

  .hero-visual {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .nx-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    gap: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform-origin: top;
    animation: nxNavSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes nxNavSlideIn {
    from {
      opacity: 0;
      transform: scaleY(0.9);
    }

    to {
      opacity: 1;
      transform: scaleY(1);
    }
  }

  .nx-nav.open {
    display: flex;
  }

  .nx-nav a {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  .nx-nav a::after {
    content: '\F285';
    font-family: "bootstrap-icons";
    font-size: 12px;
    opacity: 0.3;
  }

  .nx-nav a:hover,
  .nx-nav a.active {
    background: rgba(30, 58, 95, 0.04);
    color: var(--primary-blue);
  }

  .nx-nav-cta {
    margin: 12px 20px;
    border-radius: 12px !important;
    justify-content: center !important;
    padding: 14px !important;
    box-shadow: var(--shadow-sm) !important;
  }

  .nx-nav-cta::after {
    display: none !important;
  }

  .nx-hamburger {
    display: block;
  }

  .hero-btns {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px;
    width: 100%;
    margin-top: 24px;
    flex-wrap: nowrap;
  }

  .hero-btns .btn-primary-nx,
  .hero-btns .btn-outline-nx {
    flex: 1;
    padding: 10px 6px !important;
    font-size: 13px !important;
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
  }

  .hero-btns .btn-primary-nx {
    order: 2;
  }

  .hero-btns .btn-outline-nx {
    order: 1;
  }

  .trust-pills-inner {
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {

  .section,
  .page-header,
  .hero,
  .cta-banner,
  .nx-footer {
    overflow-x: hidden;
  }

  .contact-form-card {
    padding: 20px 16px;
  }

  .pricing-card {
    padding: 20px 16px;
  }

  .mission-vision-card {
    padding: 24px 20px;
  }

  .contact-info-item {
    padding: 20px 16px;
  }

  .contact-info-item div {
    word-break: break-word;
  }
}

/* Global Word Break Utility for dynamic text */
.text-break-nx {
  word-break: break-word;
  overflow-wrap: anywhere;
}


/* ===== SKELETON SCREEN ===== */
.skeleton-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: opacity 0.5s ease-out, visibility 0.5s;
}

.skeleton-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.skeleton {
  background: #f1f5f9;
  background-image: linear-gradient(90deg, #f1f5f9 0px, #f8fafc 40px, #f1f5f9 80px);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  animation: skeleton-shimmer 1.8s infinite linear;
  border-radius: 6px;
}

.skeleton-text {
  height: 12px;
  margin-bottom: 12px;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 35%;
}

.skeleton-text.medium {
  width: 65%;
}

.skeleton-title {
  height: 36px;
  width: 55%;
  margin-bottom: 24px;
  border-radius: 10px;
}

.skeleton-nav {
  height: 68px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  z-index: 10001;
  box-shadow: var(--shadow-sm);
}

.skeleton-nav-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skeleton-nav-logo {
  width: 140px;
  height: 32px;
  border-radius: 10px;
}

.skeleton-nav-links {
  display: flex;
  gap: 24px;
}

.skeleton-nav-link {
  width: 65px;
  height: 14px;
  border-radius: 4px;
}

.skeleton-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 15px;
}

.skeleton-page-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skeleton-hero {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.skeleton-hero-left {
  flex: 1.2;
}

.skeleton-hero-right {
  flex: 1;
  height: 420px;
  border-radius: 24px;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.skeleton-card {
  height: 320px;
  border-radius: 20px;
}

.skeleton-form {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .skeleton-hero {
    flex-direction: column;
    gap: 40px;
  }

  .skeleton-hero-right {
    width: 100%;
    height: 300px;
  }

  .skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .skeleton-nav-links {
    display: none;
  }

  .skeleton-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PREMIUM CONTACT SECTION ===== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 30px rgba(7, 26, 51, 0.08);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.1);
}

.contact-info-item.whatsapp {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.contact-info-item.whatsapp .contact-info-icon {
  background: #25D366;
  color: #fff;
}

.contact-info-item.phone .contact-info-icon {
  background: rgba(30, 58, 95, 0.1);
  color: var(--primary-blue);
}

.contact-info-item.email .contact-info-icon {
  background: rgba(7, 26, 81, 0.1);
  color: var(--primary-navy);
}

.contact-info-item.location .contact-info-icon {
  background: rgba(30, 58, 95, 0.1);
  color: var(--cyan);
}

.contact-form-card {
  padding: 40px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 24px;
  }
}

/* ===== NEEDS SECTION (PREMIUM "Tell Us About Your Needs") ===== */
.needs-section {
  position: relative;
  padding: 80px 0;
  background: var(--light-bg);
  overflow: hidden;
}

/* Decorative Blobs */
.needs-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.45;
}

.needs-blob-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.03) 0%, transparent 70%);
  top: -120px;
  left: -100px;
  animation: blobFloat1 12s ease-in-out infinite;
}

.needs-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.03) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  animation: blobFloat2 15s ease-in-out infinite;
}

@keyframes blobFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 20px) scale(1.08);
  }
}

@keyframes blobFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, -30px) scale(1.06);
  }
}

/* Section Header */
.needs-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-blue);
  background: rgba(30, 58, 95, .08);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.needs-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 14px;
}

.needs-sub {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 540px;
  margin: 0 auto;
}

/* ---- Process Steps ---- */
.needs-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

.needs-process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.needs-step-num {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .05em;
  box-shadow: 0 4px 14px rgba(30, 58, 95, .3);
  flex-shrink: 0;
}

.needs-step-body {
  padding-top: 10px;
}

.needs-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.needs-step-desc {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.6;
}

.needs-process-connector {
  width: 2px;
  height: 32px;
  background: var(--light-bg), rgba(30, 58, 95, .15));
  margin-left: 22px;
  border-radius: 2px;
}

/* ---- Trust Badges ---- */
.needs-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.needs-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.needs-trust-badge i {
  color: var(--primary-blue);
  font-size: 14px;
}

/* ---- Contact Channel Buttons ---- */
.needs-channels-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.needs-channels-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.needs-channel-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: #fff;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
}

.needs-channel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(7, 26, 51, .1);
}

.needs-channel-btn>i {
  font-size: 22px;
  flex-shrink: 0;
}

.needs-channel-btn.wa {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.needs-channel-btn.wa>i {
  color: #16a34a;
}

.needs-channel-btn.em>i {
  color: var(--primary-blue);
}

.needs-channel-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
}

.needs-channel-val {
  font-size: 12.5px;
  color: var(--text-gray);
}

/* ---- Form Card ---- */
.needs-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  border: 1px solid rgba(30, 58, 95, .1);
  box-shadow: 0 20px 60px rgba(7, 26, 51, .1), 0 4px 16px rgba(7, 26, 51, .06);
  position: relative;
  overflow: hidden;
}

.needs-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--light-bg), var(--cyan));
}

/* Form Header */
.needs-form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.needs-form-icon {
  width: 52px;
  height: 52px;
  background: var(--light-bg), var(--primary-blue));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(30, 58, 95, .3);
}

.needs-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.needs-form-sub {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
}

/* Error Message */
.needs-error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

/* ---- Form Grid & Fields ---- */
.needs-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.needs-field-full {
  grid-column: 1 / -1;
}

.needs-label-text {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.needs-label-text span {
  color: var(--danger);
}

.needs-input-wrap {
  position: relative;
}

.needs-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  font-size: 15px;
  pointer-events: none;
}

.needs-input-wrap input,
.needs-input-wrap select,
.needs-input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #f8faff;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}

.needs-input-wrap input:focus,
.needs-input-wrap select:focus,
.needs-input-wrap textarea:focus {
  border-color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, .1);
}

.needs-input-wrap input::placeholder,
.needs-input-wrap textarea::placeholder {
  color: #a0aec0;
}

.needs-textarea-wrap .needs-input-icon {
  top: 18px;
  transform: none;
}

.needs-input-wrap textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 14px;
}

/* ---- CTA Buttons ---- */
.needs-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.needs-btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--light-bg), var(--primary-blue));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(30, 58, 95, .35);
}

.needs-btn-primary:hover:not(:disabled) {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 58, 95, .4);
}

.needs-btn-primary:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.needs-btn-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--primary-blue);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  border: 2px solid var(--primary-blue);
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
}

.needs-btn-secondary:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Spinner animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.needs-spin {
  display: inline-block;
  animation: spin .7s linear infinite;
}

.needs-btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Privacy note */
.needs-privacy {
  font-size: 12.5px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.needs-privacy i {
  color: var(--success);
}

/* ---- Success State ---- */
.needs-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
}

.needs-success-icon {
  width: 80px;
  height: 80px;
  background: var(--light-bg), #22c55e);
  color: #fff;
  border-radius: 50%;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(22, 163, 74, .3);
  animation: successPop .4s cubic-bezier(.175, .885, .32, 1.275);
}

@keyframes successPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.needs-success h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.needs-success p {
  color: var(--text-gray);
  font-size: 15px;
  max-width: 380px;
  line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .needs-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .needs-form-card {
    padding: 28px 24px;
  }

  .needs-form-grid {
    grid-template-columns: 1fr;
  }

  .needs-cta-row {
    flex-direction: column;
  }

  .needs-process {
    margin-bottom: 24px;
  }
}

@media (max-width: 576px) {
  .needs-section {
    padding: 48px 0;
  }

  .needs-form-card {
    padding: 24px 18px;
  }

  .needs-trust-row {
    gap: 8px;
  }

  .needs-trust-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .needs-channels-row {
    gap: 10px;
  }
}

/* =========================================================================
   AOS Animation Overrides (Stripe/Linear/Webflow exact specs)
   ========================================================================= */

/* 1 - Fade up: Slide from 30px below instead of 100px */
[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0) !important;
}

/* 2 - Fade from left/right: Slide from 40px instead of 100px */
[data-aos="fade-right"] {
  transform: translate3d(-40px, 0, 0) !important;
}

[data-aos="fade-left"] {
  transform: translate3d(40px, 0, 0) !important;
}

/* 3 - Scale in: Pop from 85% instead of 60% */
[data-aos="zoom-in"] {
  transform: scale(0.85) !important;
}

/* Ensure ending state is clean */
[data-aos].aos-animate {
  transform: translate3d(0, 0, 0) scale(1) !important;
}

/* Premium smooth easing (Apple/Stripe feel) */
[data-aos] {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* WhatsApp Button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff !important;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
  background: #128C7E;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa i {
  font-size: 1.2rem;
}

/* CTA Banner */
.cta-banner {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER OVERLAY SYSTEM ===== */

/* Body as flex column so footer is always at the bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh; /* 100dvh accounts for mobile browser chrome */
}

/* Main content grows to fill space, sits ABOVE footer via z-index */
.site-main {
  flex-grow: 1;
  background: var(--white);
  z-index: 10;
  position: relative;
  overflow-x: clip; /* clip doesn't break position:sticky like hidden does */

  /* Deep shadow on the bottom edge — this is the "overlay" visual */
  box-shadow:
    0 30px 60px -10px rgba(7, 26, 51, 0.20),
    0 10px 20px -5px  rgba(7, 26, 51, 0.10);

  /* Smooth lift animation on scroll driven by JS */
  will-change: transform;
  transition: border-radius 0.3s ease;
}

/* Footer sits behind main content */
.nx-footer {
  z-index: 1;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .nx-footer {
    position: sticky;
    bottom: 0;
  }
}

/* When user has scrolled near the bottom, give main content rounded bottom corners */
@media (min-width: 992px) {
  .site-main.nx-peek {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}