/* ═══════════════════════════════════════════
   ROOT & RESET
═══════════════════════════════════════════ */
:root {
  --bg:        #111111;
  --bg-dark:   #0d0d0d;
  --bg-card:   #181818;
  --bg-card2:  #1a1a1a;
  --bg-input:  #161616;
  --green:     #8DC63F;
  --green-dim: rgba(141,198,63,0.12);
  --green-glow:rgba(141,198,63,0.22);
  --white:     #ffffff;
  --grey-1:    #cccccc;
  --grey-2:    #888888;
  --grey-3:    #555555;
  --grey-4:    #2a2a2a;
  --border:    rgba(255,255,255,0.07);
  --border-g:  rgba(141,198,63,0.25);
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Noise texture ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.15; }
.display-hero {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section-sub {
  color: var(--grey-2);
  font-size: 0.96rem;
  line-height: 1.75;
  font-weight: 400;
}
.green { color: var(--green); }
.grey2 { color: var(--grey-2); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex; align-items: center;
  transition: background 0.3s;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.brand-icon {
  width: 34px; height: 34px; background: var(--green);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: #111; font-family: 'Outfit', sans-serif;
}
.brand-name {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.05rem;
  color: var(--white); letter-spacing: -0.3px;
}
.brand-name span { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: 1rem; list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--grey-1); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; padding: 0.5rem 1rem; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; align-items: center; gap: 15px; }

.btn-nav-cta {
  background: var(--green); color: #111 !important;
  font-weight: 700; font-size: 0.85rem; font-family: 'Outfit', sans-serif;
  padding: 0.6rem 1.4rem; border-radius: 8px; border: none;
  text-decoration: none; cursor: pointer; transition: all 0.22s;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: #a0d94d; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(141,198,63,0.35); }

.hamburger {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--white); padding: 4px 10px; border-radius: 8px;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}

/* ═══════════════════════════════════════════
   PAGE
═══════════════════════════════════════════ */
.page { padding-top: 70px; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-green {
  background: var(--green); color: #111;
  font-weight: 700; font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; padding: 0.75rem 1.8rem;
  border-radius: 10px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: all 0.22s;
}
.btn-green:hover { background: #a0d94d; color: #111; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(141,198,63,0.35); }

.btn-ghost {
  background: transparent; color: var(--white);
  font-weight: 600; font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; padding: 0.73rem 1.8rem;
  border-radius: 10px; border: 1px solid var(--grey-4);
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: all 0.22s;
}
.btn-ghost:hover { border-color: var(--grey-3); color: var(--white); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════ */
.section-wrap { padding: 88px 0; }
.section-wrap-sm { padding: 64px 0; }
.container-tz { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.section-eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green);
  margin-bottom: 0.9rem;
}

.divider { border: none; border-top: 1px solid var(--border); }

/* ═══════════════════════════════════════════
   GREEN ICON BOX
═══════════════════════════════════════════ */
.icon-box-g {
  width: 46px; height: 46px; background: var(--green-dim);
  border: 1px solid var(--border-g);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.2rem; flex-shrink: 0;
  transition: background 0.25s;
}

/* ═══════════════════════════════════════════
   CARD
═══════════════════════════════════════════ */
.card-tz {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}
.card-tz:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-4px); }

/* ═══════════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 64px);
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg-glow {
  position: absolute; pointer-events: none;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(141,198,63,0.10) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -58%);
}
.hero-bg-img {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(141,198,63,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(141,198,63,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(141,198,63,0.03) 0%, transparent 35%);
}
/* subtle hexagon grid pattern */
.hero-bg-img::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(141,198,63,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141,198,63,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 2rem; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.8rem; color: var(--grey-2); font-weight: 500;
}
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero-desc { color: var(--grey-2); font-size: 1.05rem; line-height: 1.75; max-width: 560px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* trusted by */
.trusted-strip {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 0;
}
.trusted-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--grey-3); font-weight: 600; text-align: center; margin-bottom: 1.6rem;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 3.5rem; flex-wrap: wrap;
}
.logo-item {
  color: var(--grey-3); font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.15rem; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 7px;
  transition: color 0.2s;
}
.logo-item:hover { color: var(--grey-2); }
.logo-item i { font-size: 1.3rem; }

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-bg {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  height: 100%; transition: all 0.28s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { border-color: var(--border-g); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h5 { font-size: 1.05rem; font-weight: 700; margin: 1rem 0 0.6rem; }
.service-card p { color: var(--grey-2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 0; }

/* ═══════════════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.why-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem;
  transition: border-color 0.25s;
}
.why-item:hover { border-color: var(--border-g); }
.why-item h6 { font-size: 0.97rem; font-weight: 700; margin: 0.9rem 0 0.5rem; }
.why-item p { color: var(--grey-2); font-size: 0.86rem; line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════════
   DARK BANNER
═══════════════════════════════════════════ */
.dark-banner {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.dark-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(141,198,63,0.07) 0%, transparent 60%);
}
.dark-banner > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem;
  transition: border-color 0.25s, transform 0.25s;
}
.testi-card:hover { border-color: var(--border-g); transform: translateY(-3px); }
.testi-title { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.7rem; line-height: 1.35; }
.testi-body { color: var(--grey-2); font-size: 0.86rem; line-height: 1.7; margin-bottom: 1.2rem; }
.testi-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.testi-name { font-size: 0.84rem; font-weight: 700; }
.testi-role { font-size: 0.76rem; color: var(--grey-2); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-g); }
.faq-q {
  width: 100%; text-align: left; background: var(--bg-card);
  border: none; color: var(--white); cursor: pointer;
  padding: 1.1rem 1.3rem; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-card2); }
.faq-num { color: var(--green); font-weight: 800; min-width: 22px; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-dim); border: 1px solid var(--border-g);
  color: var(--green); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: #111; }
.faq-a {
  background: var(--bg-card); color: var(--grey-2);
  font-size: 0.87rem; line-height: 1.72;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.3rem 0 3.4rem;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 1.3rem 1.2rem 3.4rem; }

/* ═══════════════════════════════════════════
   CONTACT SECTION & FORM
═══════════════════════════════════════════ */
.cta-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
  text-align: center;
}
.cta-icon-wrap {
  width: 64px; height: 64px; background: var(--green);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 1.8rem; color: #111;
}
.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 3rem; margin-top: 3rem;
  max-width: 860px; margin-left: auto; margin-right: auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--grey-2); letter-spacing: 0.02em; }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-input); border: 1px solid var(--grey-4);
  color: var(--white); border-radius: 10px;
  padding: 0.8rem 1rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem; outline: none; transition: border-color 0.22s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(141,198,63,0.10); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--grey-3); }
.form-field textarea { resize: none; }
.form-field select option { background: var(--bg-card); }

/* radio grid */
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.radio-opt {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-input); border: 1px solid var(--grey-4);
  border-radius: 8px; padding: 0.7rem 0.9rem; cursor: pointer;
  font-size: 0.84rem; transition: border-color 0.2s;
}
.radio-opt input[type="radio"] { accent-color: var(--green); width: 14px; height: 14px; }
.radio-opt:has(input:checked) { border-color: var(--green); background: var(--green-dim); color: var(--green); }

/* budget slider */
.budget-slider {
  width: 100%; -webkit-appearance: none; height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--grey-4) 0%);
  border-radius: 100px; outline: none; cursor: pointer;
}
.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(141,198,63,0.2);
}
.budget-labels { display: flex; justify-content: space-between; font-size: 0.76rem; color: var(--grey-3); margin-top: 6px; }

/* form success */
.form-success {
  display: none; text-align: center; padding: 2.5rem;
}
.form-success h4 { font-family: 'Outfit', sans-serif; font-weight: 800; margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.stat-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: border-color 0.25s;
}
.stat-box:hover { border-color: var(--border-g); }
.stat-num {
  font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 900;
  color: var(--green); line-height: 1;
}
.stat-lbl { color: var(--grey-2); font-size: 0.84rem; margin-top: 0.4rem; }

/* skill bars */
.skill-row { margin-bottom: 1.1rem; }
.skill-top { display: flex; justify-content: space-between; font-size: 0.84rem; margin-bottom: 7px; color: var(--grey-1); }
.skill-top span:last-child { color: var(--green); font-weight: 700; }
.skill-track { height: 5px; background: var(--grey-4); border-radius: 100px; overflow: hidden; }
.skill-bar { height: 100%; background: linear-gradient(90deg, var(--green), #a0d94d); border-radius: 100px; width: 0; transition: width 1.1s cubic-bezier(.4,0,.2,1); }

/* tech pills */
.tech-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.45rem 1.1rem;
  font-size: 0.83rem; font-weight: 500; color: var(--grey-2);
  transition: all 0.22s;
}
.tech-pill:hover { border-color: var(--border-g); color: var(--white); }
.tech-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* values */
.value-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.8rem; transition: border-color 0.22s; }
.value-row:hover { border-color: var(--border-g); }
.value-row h6 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.value-row p { color: var(--grey-2); font-size: 0.83rem; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.svc-hero {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0 4rem; text-align: center;
}
.svc-detail {
  padding: 4.5rem 0; border-bottom: 1px solid var(--border);
}
.svc-num {
  font-family: 'Outfit', sans-serif; font-size: 5rem; font-weight: 900;
  color: rgba(141,198,63,0.07); line-height: 1;
  position: absolute; top: 0; right: 0;
}
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 2rem; }
.check-list li {
  display: flex; align-items: center; gap: 9px;
  color: var(--grey-2); font-size: 0.88rem; margin-bottom: 0.55rem;
}
.check-list li i { color: var(--green); font-size: 0.85rem; }

/* process steps */
.step-item { display: flex; gap: 1.2rem; align-items: flex-start; position: relative; padding-bottom: 1.8rem; }
.step-item:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 42px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--border-g), transparent); }
.step-num {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  background: var(--green-dim); border: 1px solid var(--border-g);
  color: var(--green); font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
}
.step-item h6 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.step-item p { color: var(--grey-2); font-size: 0.84rem; line-height: 1.6; margin: 0; }

/* pricing */
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.2rem;
  transition: all 0.28s; position: relative;
}
.price-card:hover { border-color: var(--border-g); transform: translateY(-5px); }
.price-card.featured { border-color: var(--border-g); background: linear-gradient(145deg, var(--bg-card), rgba(141,198,63,0.04)); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #111; font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 800; padding: 3px 14px; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
.price-tier { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); font-weight: 700; margin-bottom: 0.7rem; }
.price-amount { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.price-per { color: var(--grey-3); font-size: 0.8rem; margin-top: 4px; margin-bottom: 1.5rem; }
.price-line { border: none; border-top: 1px solid var(--border); margin: 1.2rem 0; }
.price-feat li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--grey-2); margin-bottom: 0.55rem;
}
.price-feat li i.bi-check2 { color: var(--green); font-size: 0.9rem; font-weight: 700; }
.price-feat li i.bi-x { color: var(--grey-4); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; }
.footer-desc { color: var(--grey-2); font-size: 0.86rem; line-height: 1.7; margin: 0.9rem 0 1.5rem; max-width: 280px; }
.footer-h { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-3); margin-bottom: 1rem; }
.footer-link { display: block; color: var(--grey-2); text-decoration: none; font-size: 0.86rem; margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-link:hover { color: var(--green); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 0.8rem; font-size: 0.84rem; color: var(--grey-2); }
.footer-contact-item i { color: var(--green); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid var(--grey-4); color: var(--grey-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem; text-decoration: none; transition: all 0.22s;
}
.soc-btn:hover { border-color: var(--green); color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.3rem 0; margin-top: 3rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-links a { color: var(--grey-3); font-size: 0.8rem; text-decoration: none; margin-left: 1.4rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--grey-2); }
.copyright { color: var(--grey-3); font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   ANIMATION HELPERS
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ═══════════════════════════════════════════
   CONTACT PAGE STANDALONE
═══════════════════════════════════════════ */
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem;
  transition: border-color 0.22s;
}
.contact-info-card:hover { border-color: var(--border-g); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: 1fr; }
  .navbar-inner { padding: 0 5%; }
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: var(--bg-dark);
    padding: 1.5rem 5%; gap: 0.3rem; border-bottom: 1px solid var(--border);
  }
  .nav-links.show { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; }
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3rem 1.2rem 2.5rem; }
  .section-wrap { padding: 60px 0; }
  .contact-form-wrap { padding: 2rem 1.2rem; }
  .cta-section { padding: 3.5rem 0 0; }
}
