/* ========================================
   UNITY FINANCE – STYLESHEET
   Blue → Purple Gradient Theme
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --blue: #38bdf8;
  --blue-mid: #3b5bdb;
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --navy: #1e1b4b;
  --dark: #0f0e2a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --grad-main: linear-gradient(135deg, #38bdf8 0%, #3b5bdb 50%, #7c3aed 100%);
  --grad-dark: linear-gradient(135deg, #1e1b4b 0%, #0f0e2a 100%);
  --grad-card: linear-gradient(135deg, #3b5bdb 0%, #7c3aed 100%);
  --shadow-sm: 0 2px 8px rgba(59, 91, 219, .12);
  --shadow-md: 0 8px 32px rgba(59, 91, 219, .18);
  --shadow-lg: 0 20px 60px rgba(59, 91, 219, .22);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: var(--grad-main);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(59, 91, 219, .35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 91, 219, .45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--blue-mid);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .6);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* ---------- Section Utility ---------- */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(59, 91, 219, .12), rgba(124, 58, 237, .12));
  color: var(--blue-mid);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(59, 91, 219, .2);
}

.section-tag--light {
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
  border-color: rgba(255, 255, 255, .25);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon svg {
  display: block;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.logo-unity {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.logo-finance {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-mid);
  letter-spacing: -0.02em;
}

/* Real logo image */
.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Show logo clearly on dark footer - lighten it a bit */
  filter: brightness(1.1);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--blue-mid);
  background: linear-gradient(135deg, rgba(59, 91, 219, .08), rgba(124, 58, 237, .08));
}

.nav__cta {
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, .25) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero__blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, .3) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.hero__blob--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 91, 219, .25) 0%, transparent 70%);
  top: 50%;
  right: 30%;
  animation: blobFloat 12s ease-in-out infinite;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.97);
  }
}

/* Abstract shapes */
.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .06);
}

.shape--circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  top: 10%;
  right: 5%;
  animation: spinSlow 30s linear infinite;
}

.shape--ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, .15);
  bottom: 20%;
  left: 5%;
  animation: spinSlow 20s linear infinite reverse;
}

.shape--square {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  top: 60%;
  right: 15%;
  transform: rotate(30deg);
  animation: spinSlow 25s linear infinite;
}

.shape--dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  border: none;
}

.shape--dot-1 {
  top: 25%;
  left: 15%;
  animation: pulse 3s ease-in-out infinite;
}

.shape--dot-2 {
  top: 70%;
  right: 20%;
  animation: pulse 3s ease-in-out infinite 1s;
}

.shape--dot-3 {
  top: 45%;
  left: 50%;
  animation: pulse 3s ease-in-out infinite 2s;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero__badge i {
  color: var(--blue);
}

.hero__headline {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Finance Card Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.finance-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .06) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 320px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
}

.finance-card__glow {
  position: absolute;
  inset: -2px;
  background: var(--grad-main);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .4;
  filter: blur(12px);
}

.finance-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .6);
}

.finance-card__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.finance-card__amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.finance-card__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 24px;
}

.finance-card__bar-wrap {
  margin-bottom: 24px;
}

.finance-card__bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 8px;
}

.finance-card__bar {
  height: 6px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50px;
  overflow: hidden;
}

.finance-card__bar-fill {
  height: 100%;
  width: 85%;
  background: var(--grad-main);
  border-radius: 50px;
  animation: barGrow 2s ease-out;
}

@keyframes barGrow {
  from {
    width: 0;
  }

  to {
    width: 85%;
  }
}

.finance-card__stats {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

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

.stat-val {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}

/* Mini cards */
.mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .95);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  white-space: nowrap;
  animation: floatY 5s ease-in-out infinite;
}

.mini-card i {
  color: var(--blue-mid);
}

.mini-card--1 {
  top: -16px;
  right: -20px;
  animation-delay: 0s;
}

.mini-card--2 {
  bottom: -16px;
  left: -20px;
  animation-delay: 1.5s;
}

/* Stats bar */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 24px;
  background: rgba(255, 255, 255, .06);
  border-top: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.hero__stat {
  flex: 1;
  text-align: center;
}

.hero__stat-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hero__stat-lbl {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  margin-top: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .12);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 120px 0;
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  background: var(--grad-card);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, .9);
}

.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, .7);
}

.service-card--featured .service-card__link {
  color: rgba(255, 255, 255, .9);
}

.service-card--featured::before {
  display: none;
}

.service-card--featured:hover {
  transform: translateY(-8px) scale(1.02);
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .3);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.service-card__icon--blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
}

.service-card__icon--purple {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #7c3aed;
}

.service-card__icon--indigo {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #4338ca;
}

.service-card__icon--violet {
  background: linear-gradient(135deg, #f5d0fe, #e9d5ff);
  color: #7e22ce;
}

.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, .2);
  color: var(--white);
}

.service-card__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-mid);
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 10px;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  padding: 120px 0;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 32px;
}

.why-us__list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-us__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

.why-us__list li i {
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  transition: all var(--transition);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:hover {
  padding-left: 8px;
}

.process-step__num {
  font-size: 32px;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
  width: 52px;
}

.process-step__content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.process-step__content p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}

/* =============================================
   CTA
   ============================================= */
.cta {
  padding: 120px 0;
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta__blob--1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, .15);
  top: -100px;
  left: -100px;
}

.cta__blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .1);
  bottom: -80px;
  right: -50px;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  margin: 0 auto 28px;
  border: 2px solid rgba(255, 255, 255, .3);
}

.cta__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.cta__text {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.cta__note {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 80px 24px 60px;
}

.footer__logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 28px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  transition: all var(--transition);
}

.footer__social:hover {
  background: var(--grad-main);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.footer__col-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.footer__links a i {
  font-size: 10px;
}

.footer__links a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
}

.footer__contact li i {
  color: var(--blue-mid);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact a:hover {
  color: var(--blue);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 24px;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, .45);
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--blue);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-main);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }

  .nav__menu.open {
    display: flex;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px 40px;
    gap: 40px;
  }

  .hero__sub {
    margin: 0 auto 40px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .hero__stat-divider {
    width: 80px;
    height: 1px;
  }

  .cta__actions {
    flex-direction: column;
  }
}


/* =========================
   CONTACT SECTION FIX
========================= */

.contact-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-card__icon {
  width: 45px;
  height: 45px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-card__body h4 {
  margin: 0;
  font-size: 16px;
}

.contact-card__body a {
  color: #2563eb;
  text-decoration: none;
  font-size: 14px;
}

.contact-card__body span {
  font-size: 14px;
  color: #555;
}

/* FORM */

.contact__form-wrap {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  flex: 1;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-input-wrap {
  position: relative;
}

.form-input-wrap i {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #888;
}

.form-input-wrap input,
.form-input-wrap select,
.form-input-wrap textarea {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-submit {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #2563eb;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.form-submit:hover {
  background: #1e4ed8;
}

.form-success {
  margin-top: 12px;
  color: green;
  display: none;
}

/* MOBILE */

@media (max-width:768px) {

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

}

.form-submit {
  display: block;
  margin: 20px auto;
  text-align: center;
}

/* =============================================
   PRIVACY POLICY & TERMS SECTIONS
   ============================================= */

.policy-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.policy-section--dark {
  background: var(--grad-dark);
}

/* --- Policy Cards Grid (Privacy) --- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.policy-card:hover::before {
  transform: scaleX(1);
}

.policy-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(59,91,219,.1), rgba(124,58,237,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--blue-mid);
  border: 1px solid rgba(59,91,219,.15);
  flex-shrink: 0;
}

.policy-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.policy-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 10px;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

.policy-card ul li i {
  color: var(--blue-mid);
  font-size: 8px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Contact bar at bottom of Privacy section */
.policy-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--blue-mid), var(--purple));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  box-shadow: var(--shadow-md);
}

.policy-contact > i {
  font-size: 36px;
  opacity: .9;
  flex-shrink: 0;
}

.policy-contact h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.policy-contact p {
  font-size: 15px;
  opacity: .9;
  line-height: 1.6;
}

.policy-contact a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .95;
}

.policy-contact a:hover {
  opacity: 1;
}

/* --- Terms List (numbered items) --- */
.terms-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terms-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  transition: background var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.terms-item:last-child {
  border-bottom: none;
}

.terms-item:hover {
  background: rgba(255,255,255,.05);
}

.terms-item__num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 52px;
  line-height: 1;
  padding-top: 4px;
}

.terms-item__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.terms-item__body p {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}

.terms-item__body a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-item__body a:hover {
  color: #93c5fd;
}

/* Responsive */
@media (max-width: 900px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
  }

  .terms-item {
    flex-direction: column;
    gap: 12px;
    padding: 24px 16px;
  }

  .terms-item__num {
    font-size: 28px;
  }
}