/* ============================================================
   CONXEPTRIX — CORPORATE WEBSITE — MAIN STYLESHEET
   Primary: #3c79fd | Light Theme | 2026
   ============================================================ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --green:       #3c79fd;
  --green-dk:    #1d65ff;
  --green-lt:    #d3e4ff;
  --green-mid:   #d3e4ff;

  --ink:         #0a0f1e;
  --ink-80:      #1c2540;
  --ink-60:      #3b4567;

  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --light-gray:  #eef1f6;
  --border:      #e2e8f0;

  --text:        #374151;
  --text-lt:     #6b7280;
  --text-xlt:    #9ca3af;

  --grad-green:  linear-gradient(135deg, #3c79fd 0%, #1d65ff 100%);
  --grad-dark:   linear-gradient(135deg, #0a0f1e 0%, #1c2540 100%);
  --grad-hero:   linear-gradient(135deg, #f7f9fc 0%, #eef6f2 100%);

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.12);
  --shadow-green:0 8px 32px rgba(60, 121, 253, .18);

  --font-head:   'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --nav-h:       80px;
  --trans:       0.28s cubic-bezier(.4,0,.2,1);
  --trans-slow:  0.5s 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: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: color var(--trans); }
ul   { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--green-lt);
  border-radius: 100px;
  color: var(--green-dk);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
}

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

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 31px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--green-dk);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans);
}
.btn-white:hover {
  background: var(--green-lt);
  transform: translateY(-2px);
}

/* ─── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 9999;
  transition: all var(--trans);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  background: rgba(255,255,255,.98);
}

.header-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo img { height: 40px; width: auto; transition: transform var(--trans); }
.site-logo:hover img { transform: scale(1.03); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--green);
}
.nav-link.active {
  color: var(--green);
  position: relative;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--green);
  border-radius: 50%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--trans);
}
.nav-phone svg { color: var(--green); flex-shrink: 0; }
.nav-phone:hover { color: var(--green); }

.header-cta {
  padding: 10px 22px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.header-cta:hover {
  background: var(--green-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 9998;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: 12px 16px;
  font-size: 15px;
  border-radius: var(--radius-sm);
}
.mobile-nav .header-cta {
  text-align: center;
  padding: 14px;
  margin-top: 8px;
  border-radius: var(--radius-sm);
}
.mobile-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-lt);
  border-top: 1px solid var(--border);
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* ── Hero Slider ── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Dark overlay so content is always readable */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 8, 18, 0.75) 0%,
    rgba(5, 15, 30, 0.45) 55%,
    rgba(0, 45, 25, 0.35) 100%
  );
  z-index: 1;
}

/* Slider dot indicators */
.hero-slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-slider-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.35);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.hero-slider-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* Slider arrow buttons */
.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  backdrop-filter: blur(10px);
}
.hero-slider-prev { left: 24px; }
.hero-slider-next { right: 24px; }
.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: var(--green);
  border-color: var(--green);
}

/* Hero slider arrows z-index above overlay */
.hero-slider-prev,
.hero-slider-next {
  z-index: 4;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 80px 0 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #0a0f1e;
  border: 1px solid #2000f0;
  border-radius: 100px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulsedot 2s ease-in-out infinite;
}
@keyframes pulsedot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.6); }
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 .highlight {
  color: var(--green);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: rgba(14,189,102,.4);
  border-radius: 2px;
}

.hero-desc {
  color: rgba(255,255,255,.80);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Outline button white variant for hero */
.hero .btn-outline {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
}
.hero .btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(14,189,102,.08);
}

/* hero-trust removed — kept for compat */
.hero-trust { display: none; }

/* Hero Form */
.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: relative;
  overflow: visible;
  transition: transform var(--trans);
}

/* .hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--grad-green);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 10;
}
   */

.hero-form-badge {
  position: absolute;
  top: -75px;
  right: -15px;
  width: 150px;
  height: 150px;
  object-fit: contain;
  animation: badgeAnim 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(60, 121, 253, 0.3));
  z-index: 12;
}

@keyframes badgeAnim {
  0%, 100% { transform: translateY(0) scale(1) rotate(0); }
  50% { transform: translateY(-12px) scale(1.08) rotate(5deg); }
}

@media (max-width: 768px) {
  .hero-form-badge {
    width: 120px;
    height: 120px;
    top: -55px;
    right: 5px;
  }
}

.form-card-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.form-card-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.form-group { margin-bottom: 20px; position: relative; }

.form-group.has-icon .input-icon {
  position: absolute;
  left: 0;
  top: 1.5px;
  bottom: 0px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-xlt);
  font-size: 15px;
  transition: all var(--trans);
  pointer-events: none;
  z-index: 11;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.form-group.has-icon .textarea-icon {
  align-items: flex-start;
  padding-top: 15px;
  height: calc(100% - 3px);
}

.form-group.has-icon input,
.form-group.has-icon textarea {
  padding-left: 45px !important;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
  font-family: var(--font-body);
  transition: all var(--trans);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-xlt); font-weight: 400; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(60, 121, 253, .12);
}

.form-group input:focus ~ .input-icon,
.form-group textarea:focus ~ .input-icon {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  font-size: 18px;
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* Adjust for intlTelInput */
.form-group .iti { width: 100%; display: block; }
.form-group .iti input { padding-left: 100px !important; }
.form-group .iti ~ .input-icon { 
  left: 0 !important; 
  background: rgba(247, 249, 252, 0.9);
}

.form-consent {
  font-size: 11px;
  color: var(--text-lt);
  line-height: 1.6;
  margin: 20px 0;
}
.form-consent a { color: var(--green); font-weight: 600; }

/* Enhanced Submit Button */
.form-submit-btn {
  width: 100%;
  padding: 16px 20px;
  background: var(--grad-green);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .5px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(60, 121, 253, 0.3);
}

.form-submit-btn i {
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(60, 121, 253, 0.4);
}

.form-submit-btn:hover i {
  transform: translateX(5px) translateY(-5px) scale(1.1);
}

.iti__country-list {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  color: var(--ink) !important;
  z-index: 10000 !important;
  box-shadow: var(--shadow-md) !important;
}
.iti__country:hover, .iti__country.iti__highlight { background: var(--green-lt) !important; }
.iti__country-name, .iti__dial-code { color: var(--ink) !important; }
.iti__selected-flag { background: var(--off-white) !important; }
.iti__arrow { border-top-color: var(--green) !important; }
.iti__selected-dial-code { color: var(--ink) !important; }

.form-consent {
  font-size: 11px;
  color: var(--text-lt);
  line-height: 1.6;
  margin-bottom: 20px;
}
.form-consent a { color: var(--green); font-weight: 600; }

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit-btn:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--ink);
  padding: 20px 0;
}
.trust-bar-inner {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.trust-bar-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: trustMarquee 40s linear infinite;
}
@keyframes trustMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 30px)); } /* Half of track + half of gap */
}
.trust-bar-inner:hover .trust-bar-track {
  animation-play-state: paused;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 500;
}
.trust-bar-item svg { color: var(--green); flex-shrink: 0; }

/* ─── SECTION COMMON ────────────────────────────────────────── */
.section-inner {
  padding: 50px 0;
}
.section-header {
  margin-bottom: 60px;
}
.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--green);
}
.section-desc {
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  max-width: 600px;
}
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ─── SERVICES ──────────────────────────────────────────────── */
.section-services { background: var(--white); position: relative; overflow: hidden; }

.services-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .services-top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
}

.services-artwork-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.artwork-bg-blob {
  position: absolute;
  width: 140%; height: 140%;
  background: radial-gradient(circle, var(--green-lt) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  opacity: 0.6;
}
.services-main-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}
@keyframes floatArtwork {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* Features List */
.services-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  margin: 32px 0 42px;
}
.services-features-list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 32px;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}
.services-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0px;
  width: 20px; height: 20px;
  background: var(--green-lt);
  color: var(--green-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}
@media (max-width: 660px) {
  .services-features-list { grid-template-columns: 1fr; margin-bottom: 30px; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--trans-slow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  z-index: -1;
  transition: opacity var(--trans);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-card-bg {
  opacity: 0.8;
}

.service-img-header {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.service-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}
.service-card:hover .service-img-header img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 24px;
}
.service-features li {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '→';
  color: var(--green);
  font-weight: 800;
}

.service-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--trans);
}
.service-card:hover .service-link {
  gap: 12px;
}

/* ─── PORTFOLIO ─────────────────────────────────────────────── */
.section-portfolio { background: var(--off-white); }

/* Portfolio filter removed since only 4 projects are featured */
.portfolio-filter { display: none; }

.portfolio-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-item-wide { grid-column: span 8; }
.p-item-std  { grid-column: span 4; }

@media (max-width: 991px) {
  .portfolio-bento { grid-auto-rows: 280px; }
  .p-item-wide { grid-column: span 12; }
  .p-item-std  { grid-column: span 6; }
}
@media (max-width: 660px) {
  .p-item-std { grid-column: span 12; }
}

.portfolio-card-inner {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-card-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 1.5s cubic-bezier(0.2, 1, 0.2, 1), object-position 5s ease-in-out;
}

.portfolio-item:hover .portfolio-card-inner img {
  transform: scale(1.15) rotate(1deg);
  object-position: bottom;
}

/* Glass Overlay Styling */
.portfolio-glass-overlay {
  position: absolute;
  inset: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  z-index: 5;
  pointer-events: none;
}

.glass-info {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 24px;
  border-radius: 20px;
  color: white;
  flex: 1;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.portfolio-item:hover .glass-info {
  transform: translateY(0);
  opacity: 1;
}

.glass-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 8px;
}

.glass-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}

.glass-client {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Glass Button */
.glass-btn {
  width: 56px; height: 56px;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  pointer-events: auto;
  box-shadow: 0 8px 32px rgba(60, 121, 253, 0.3);
  transform: scale(0.8) rotate(-45deg);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .glass-btn {
  transform: scale(1) rotate(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.glass-btn:hover {
  background: white;
  color: var(--green);
  transform: scale(1.1);
}

/* Creative Hover Border */
.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--green);
  border-radius: var(--radius-xl);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 40px rgba(60, 121, 253, 0.2);
  z-index: 10;
}
.portfolio-item:hover::after {
  opacity: 1;
}

/* ─── PROCESS ────────────────────────────────────────────────── */
.section-process { background: var(--off-white); position: relative; }

.process-path-wrap {
  position: relative;
  padding: 40px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
/* Connecting Line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 50px; left: 10%; right: 10%;
  height: 2px;
  background-image: linear-gradient(to right, var(--green) 33%, rgba(255,255,255,0) 0%);
  background-position: bottom;
  background-size: 15px 1px;
  background-repeat: repeat-x;
  z-index: 1;
  opacity: 0.3;
}

@media (max-width: 991px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 30px; }
  .process-grid::before { display: none; }
}
@media (max-width: 660px) {
  .process-grid { grid-template-columns: 1fr; }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon-wrap {
  width: 100px; height: 100px;
  margin: 0 auto 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-num {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 900;
  color: var(--green-lt);
  opacity: 0.4;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.process-step:hover .process-num {
  color: var(--green);
  opacity: 0.15;
  transform: translateX(-50%) translateY(-10px);
}

.process-icon {
  width: 64px; height: 64px;
  background: var(--white);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 4px solid var(--off-white);
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.process-step:hover .process-icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(14, 189, 102, 0.3);
}

.process-step-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
  transition: color 0.3s ease;
}
.process-step:hover .process-step-title { color: var(--green); }

.process-step-desc {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.7;
  padding: 0 10px;
}

/* ─── WHY US ─────────────────────────────────────────────────── */
.section-why {
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}
.section-why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,189,102,.12) 0%, transparent 70%);
}
.section-why .section-tag { background: #2000f0; color: var(--green-lt); }
.section-why .section-title { color: var(--white); }
.section-why .section-desc { color: rgba(255,255,255,.7); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text { position: relative; z-index: 1; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 42px; height: 42px;
  background: var(--green-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans);
}
.why-feature:hover .why-feature-icon { background: var(--green); }
.why-feature-icon svg { color: var(--green); }
.why-feature:hover .why-feature-icon svg { color: var(--white); }
.why-feature-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-feature-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

.why-img-wrap { position: relative; z-index: 1; }
.why-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.why-img-frame img { width: 100%; display: block; transition: transform 0.6s ease; }
.why-img-frame:hover img { transform: scale(1.03); }

.why-stats-float {
    position: absolute;
    bottom: 10px;
    left: -3px;
    background: #6073b9;
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 24px;
}
.why-stat-item { display: flex; flex-direction: column; }
.why-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.why-stat-lbl {
  font-size: 11px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}
.why-stat-div { width: 1px; background: var(--border); }

/* ─── PRICING ───────────────────────────────────────────────── */
.section-pricing { background: var(--off-white); }

.pricing-slider-wrap { position: relative; overflow: hidden; }
.pricing-track {
  display: flex;
  gap: 24px;
  transition: transform var(--trans-slow);
  will-change: transform;
}

.pricing-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--trans-slow);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border);
  transition: background var(--trans);
}
.pricing-card:hover, .pricing-card.featured {
  border-color: var(--green);
  transform: translateY(-4px);
}
.pricing-card:hover::before, .pricing-card.featured::before { background: var(--grad-green); }

.best-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.pricing-amount { margin-bottom: 24px; }
.pricing-currency { font-size: 24px; font-weight: 700; color: var(--ink); vertical-align: top; margin-top: 6px; display: inline-block; }
.pricing-value { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: var(--ink); line-height: 1; }
.pricing-period { display: block; font-size: 13px; color: var(--text-lt); margin-top: 4px; }
.pricing-addon { display: block; font-size: 12px; color: var(--text-lt); margin-top: 4px; }
.pricing-addon span { color: var(--green); font-weight: 700; }

.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--green-lt);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='%233c79fd'%3E%3Cpath d='M7 12.5L3.5 9 4.91 7.59 7 9.67l6.09-6.09L14.5 5z'/%3E%3C/svg%3E");
  background-size: cover;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--green-lt);
  color: var(--green-dk);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
  border: 2px solid var(--green-mid);
  cursor: pointer;
}
.pricing-cta:hover, .pricing-card.featured .pricing-cta {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.pricing-detail-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--text-lt);
  margin-top: 12px;
  transition: color var(--trans);
}
.pricing-detail-link:hover { color: var(--green); }

/* Slider Nav */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.slider-arrow {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--ink);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans);
}
.slider-arrow:hover:not(:disabled) { background: var(--green); border-color: var(--green); color: var(--white); }
.slider-arrow:disabled { opacity: .35; cursor: not-allowed; }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 8px; height: 8px;
  background: var(--border);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all var(--trans);
}
.slider-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

.pricing-ctx-strip {
  margin-top: 48px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pricing-ctx-strip p { font-size: 15px; color: var(--text); }
.pricing-ctx-strip strong { color: var(--ink); display: block; margin-bottom: 4px; }
.pricing-ctx-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.section-testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--trans-slow);
}
.testimonial-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 14px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--green-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--green-dk);
  flex-shrink: 0;
}
.testimonial-author-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testimonial-author-role { font-size: 12px; color: var(--text-lt); }

/* ─── CTA ───────────────────────────────────────────────────── */
.section-cta {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Background Blobs (Lighter for light theme) */
.cta-bg-elements {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 15s infinite alternate ease-in-out;
}
.cta-blob-1 {
  width: 400px; height: 400px;
  background: var(--green);
  top: -100px; left: -100px;
}
.cta-blob-2 {
  width: 500px; height: 500px;
  background: #03a9f4;
  bottom: -150px; right: -100px;
  animation-delay: -5s;
}
.cta-blob-3 {
  width: 300px; height: 300px;
  background: var(--green-lt);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 20s;
}

/* Glass Card (Refined white for light theme) */
.cta-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.08); /* Softer shadow */
  border: 4px solid var(--green);
}
@media (max-width: 768px) {
  .cta-glass-card { padding: 60px 24px; }
}

.cta-main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--ink); /* Dark title */
  line-height: 1.1;
  margin-top: 10px;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--green-dk) 0%, #03a9f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-main-desc {
  font-size: 18px;
  color: var(--text-lt); /* Muted dark text */
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Actions */
.cta-actions-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-primary-glow {
  padding: 18px 40px;
  background: var(--green);
  color: white !important;
  border-radius: 100px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(14, 189, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.btn-primary-glow:hover {
  background: var(--green-dk);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(14, 189, 102, 0.4);
}

.btn-glass-outline {
  padding: 16px 38px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.btn-glass-outline:hover {
  background: var(--off-white);
  border-color: var(--green);
  color: var(--green) !important;
}

/* Mini Info */
.cta-mini-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--text-lt);
  font-size: 14px;
}
.mini-info-item { display: flex; align-items: center; gap: 8px; }
.mini-info-sep { width: 1px; height: 16px; background: var(--border); }
@media (max-width: 660px) {
  .cta-mini-info { flex-direction: column; gap: 15px; }
  .mini-info-sep { display: none; }
}

/* Floating Elements */
.cta-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}
.cta-float-badge {
  position: absolute;
  background: white;
  padding: 10px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  animation: badgeFloat 4s infinite alternate ease-in-out;
  pointer-events: none;
  border: 1px solid var(--border);
}
.badge-top { top: -15px; right: 80px; }

@keyframes badgeFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

.badge-dot { width: 8px; height: 8px; background: #0ebd66; border-radius: 50%; position: relative; }
.pulse-green::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #0ebd66;
  border-radius: 50%;
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

@media (max-width: 1100px) {
  .cta-float-badge { display: none; }
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--trans);
}
.cta-contact-item svg { color: rgba(255,255,255,.7); }
.cta-contact-item:hover { color: var(--white); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
}

.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--trans);
}
.footer-social:hover { background: var(--green); border-color: var(--green); color: var(--white); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--green); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
.footer-contact-link svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-link:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  transition: color var(--trans);
}
.footer-legal-links a:hover { color: var(--green); }
.payment-icons img { height: 28px; width: auto; filter: brightness(1.5) grayscale(1); opacity: .6; }

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal        { transform: translateY(30px); }
.reveal-left   { transform: translateX(-30px); }
.reveal-right  { transform: translateX(30px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ─── POPUP MODAL ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,.65);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.25);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--text);
  transition: all var(--trans);
}
.modal-close:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.modal-img-col { position: relative; }
.modal-img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,30,.8) 0%, transparent 60%); }
.modal-img-text {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: var(--white);
}
.modal-img-text strong { font-size: 18px; font-weight: 700; display: block; margin-bottom: 6px; }
.modal-img-text span { font-size: 13px; opacity: .8; }
.modal-form-col {
  padding: 36px 32px;
  overflow-y: auto;
  max-height: 90vh;
}
.modal-plan-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-lt);
  border-radius: 100px;
  color: var(--green-dk);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.modal-title { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.modal-subtitle { font-size: 13px; color: var(--text-lt); margin-bottom: 24px; }

.modal-form .form-group input,
.modal-form .form-group textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14,189,102,.12);
}
.modal-form .iti__selected-dial-code { color: var(--ink) !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-consent {
  font-size: 12px;
  color: var(--text-lt);
}
.modal-consent input[type="checkbox"] { margin-top: 2px; accent-color: var(--green); }
.modal-consent a { color: var(--green); }
.modal-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans);
}
.modal-submit-btn:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* ─── LEGAL PAGES ────────────────────────────────────────────── */
.legal-hero {
  padding: 140px 0 80px;
  background: var(--grad-hero);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.legal-breadcrumbs {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-lt);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.legal-breadcrumbs a { color: var(--green); transition: color 0.3s; }
.legal-breadcrumbs a:hover { color: var(--green-dk); text-decoration: underline; }
.legal-breadcrumbs span { color: var(--text-xlt); }

.legal-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
  color: var(--ink);
}
.legal-hero-sub {
  font-size: 16px;
  color: var(--text-lt);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-body {
  padding: 80px 0;
  background: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Sidebar TOC */
.legal-toc {
  position: sticky;
  top: 120px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.legal-toc-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-toc ul li { margin-bottom: 10px; }
.legal-toc ul li a {
  font-size: 14px;
  color: var(--text-lt);
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
}
.legal-toc ul li a:hover {
  background: var(--green-lt);
  color: var(--green-dk);
  padding-left: 18px;
}
.legal-toc ul li a.active {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow-green);
}

/* Main Content */
.legal-content {
  max-width: 800px;
}
.legal-section {
  margin-bottom: 60px;
  scroll-margin-top: 120px;
}
.legal-section:last-child { margin-bottom: 0; }

.legal-section-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  background: var(--green-lt);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.legal-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--ink);
}
.legal-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.legal-section ul, .legal-section ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.legal-section ul li, .legal-section ol li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 10px;
  position: relative;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: -20px; top: 10px;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.legal-contact-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.legal-contact-card .icon {
  font-size: 24px;
  background: var(--white);
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  color: var(--green);
}
.legal-contact-card p { margin-bottom: 0; font-size: 15px; }
.legal-contact-card a { color: var(--green); font-weight: 700; }

/* Refund Specific */
.refund-timeline {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.refund-step {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
  transition: transform var(--trans);
}
.refund-step:hover { transform: translateX(10px); border-color: var(--green); }
.refund-step-pct {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  width: 70px;
  text-align: center;
}
.refund-step-info strong { display: block; font-size: 16px; color: var(--ink); }
.refund-step-info span { font-size: 13px; color: var(--text-lt); }
.refund-step.no-refund .refund-step-pct { color: var(--text-xlt); }

@media (max-width: 991px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .legal-content { max-width: 100%; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { flex: 0 0 calc((100% - 24px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-grid::before { display: none; }
  .why-stats-float { position: static; margin-top: 20px; }
  .why-img-frame { margin-bottom: 0; }
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-desc { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .header-nav { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 660px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 72px 0; }
  .hero-inner { padding: 60px 0 40px; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-img-col { display: none; }
  .pricing-ctx-strip { flex-direction: column; text-align: center; }
  .pricing-ctx-btns { justify-content: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .cta-contacts { flex-direction: column; gap: 16px; }
  .trust-bar-inner { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

.services-actions {margin-top: 20px;}
.hero-element{
  position: absolute; top: 0; right: 0;z-index: 9999;
}

.mini-info-item svg {
    transform: translateY(4px);
}