:root {
  --bg:      #0d1108;
  --bg2:     #12160d;
  --bg3:     #1a1e15;
  --primary: #668026;
  --cyan:    #c8cc4d;
  --violet:  #1a4a5a;
  --white:   #f1f5f9;
  --muted:   #7a8270;
  --border:  rgba(102,128,38,0.12);
  --card-bg: rgba(102,128,38,0.025);
  --glow:    rgba(102,128,38,0.2);
  --radius:  18px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: auto;
}
h1,h2,h3,h4,h5 {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.12;
  letter-spacing: -.03em;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
}


/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 5%;
  background: rgba(3,6,14,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.scrolled { 
  padding: 1.1rem 5%; 
  background: rgba(13,17,8,0.75); 
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Unbounded', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  letter-spacing: -.04em !important;
  color: var(--white) !important;
  text-decoration: none;
  display: inline-block;
}
.nav-logo em { 
  font-family: inherit !important;
  font-style: normal; 
  font-size: inherit; 
  font-weight: inherit;
  color: var(--primary) !important; 
  -webkit-text-fill-color: var(--primary) !important; 
}
.nav-links { display: flex !important; gap: 2.5rem !important; list-style: none !important; margin: 0 !important; padding: 0 !important; }
.nav-links a {
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: .85rem !important;
  font-weight: 500 !important;
  font-family: 'Outfit', sans-serif !important;
  transition: all .3s ease !important;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%; height: 1px;
  background: var(--primary); transition: right .3s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover, .nav-links a.active { color: #fff !important; opacity: 1 !important; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0 !important; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-auth-wrapper { display: flex; align-items: center; gap: 1.5rem; }
.nav-auth-link {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: .85rem !important;
  text-decoration: none !important;
  transition: color .3s ease !important;
}
.nav-auth-link:hover { color: #fff !important; }

/* ── HAMBURGER ── */
#mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 16px;
  background: none; border: none; padding: 0;
  cursor: pointer; z-index: 110;
}
#mobile-toggle span {
  width: 100%; height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
#mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU BACKDROP ── */
#mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 105;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-menu-backdrop.active { opacity: 1; pointer-events: all; }

/* ── MOBILE MENU DRAWER ── */
#mobile-menu-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 85%; max-width: 400px; z-index: 110;
  background: rgba(6, 10, 23, 0.85);
  backdrop-filter: blur(35px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
}
#mobile-menu-drawer.active { transform: translateX(0); }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 3.5rem;
}
#mobile-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
#mobile-close:active { transform: scale(0.9); background: rgba(255, 255, 255, 0.1); }

.mobile-menu-body {
  flex: 1; display: flex; flex-direction: column;
}
.mobile-nav-links {
  list-style: none; display: flex; flex-direction: column; gap: 1.25rem;
  margin-bottom: auto;
}
.mobile-nav-links a {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.m-num {
  font-size: 0.7rem; font-weight: 400; color: var(--primary);
  opacity: 0.5; font-family: 'Outfit', sans-serif;
  margin-top: 0.4rem;
}
#mobile-menu-drawer.active .mobile-nav-links a { opacity: 1; transform: translateX(0); }
#mobile-menu-drawer.active li:nth-child(1) a { transition-delay: 0.1s; }
#mobile-menu-drawer.active li:nth-child(2) a { transition-delay: 0.15s; }
#mobile-menu-drawer.active li:nth-child(3) a { transition-delay: 0.2s; }
#mobile-menu-drawer.active li:nth-child(4) a { transition-delay: 0.25s; }
#mobile-menu-drawer.active li:nth-child(5) a { transition-delay: 0.3s; }
#mobile-menu-drawer.active li:nth-child(6) a { transition-delay: 0.35s; }

.mobile-menu-footer {
  margin-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}
.mobile-auth-section {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem;
}
.mobile-socials {
  display: flex; gap: 1.25rem;
}
.mobile-socials a {
  font-size: 1.2rem; color: var(--muted);
  transition: color 0.3s ease;
}
.mobile-socials a:hover { color: var(--primary); }

body.menu-open { overflow: hidden; }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #7a943a); color: #fff;
  font-family: 'Unbounded', sans-serif; font-size: .75rem; font-weight: 700;
  padding: .65rem 1.6rem; border-radius: 50px; border: none; cursor: auto;
  box-shadow: 0 0 28px rgba(102,128,38,.4);
  transition: transform .2s, box-shadow .2s; letter-spacing: -.02em;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(102,128,38,.6); }

/* ── GRADIENT TEXT ── */
.grad {
  background: linear-gradient(125deg, var(--primary) 0%, var(--cyan) 55%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7a943a); color: #fff;
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: .8rem;
  padding: .9rem 2.2rem; border-radius: 50px; border: none; cursor: auto;
  text-decoration: none; letter-spacing: -.02em;
  box-shadow: 0 0 32px rgba(102,128,38,.45);
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(102,128,38,.6); }
.btn-outline {
  background: transparent; color: var(--white);
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: .8rem;
  padding: .9rem 2.2rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.1); cursor: auto; text-decoration: none;
  letter-spacing: -.02em; backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.25); transform: translateY(-3px); }

/* ── SECTION BASE ── */
section { padding: 7rem 5%; }
.section-tag {
  display: inline-block; font-family: 'Outfit', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(200, 204, 77, 0.2);
}
.section-tag.cyan { color: var(--cyan); }
h2.section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 900;
  margin-bottom: 1.25rem;
}
.section-desc { color: var(--muted); max-width: 460px; font-weight: 300; font-size: 1rem; line-height: 1.8; }
.section-head { margin-bottom: 4.5rem; }

/* ── PAGE HEADER ── */
.page-header {
  position: relative; padding: 10rem 5% 6rem;
  background: var(--bg2); overflow: hidden; text-align: center;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(102,128,38,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102,128,38,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.page-header .glow-l {
  position: absolute; top: 0; left: 20%; width: 600px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, rgba(102,128,38,.12), transparent 65%);
  transform: translate(-50%, -50%); pointer-events: none;
}
.page-header .glow-r {
  position: absolute; bottom: 0; right: 20%; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(200,204,77,.08), transparent 65%);
  transform: translate(50%, 50%); pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-header h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; margin-bottom: 1.2rem; }
.page-header p { color: var(--muted); font-size: 1.1rem; font-weight: 300; margin-bottom: 1.75rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .8rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { opacity: .4; }

/* ── SERVICE CARD ── */
.service-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem; position: relative; overflow: hidden; cursor: auto;
  transition: border-color .3s, transform .5s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(102,128,38,.12) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(102,128,38,.35);
  box-shadow: 0 20px 60px rgba(102,128,38,.12), 0 0 0 1px rgba(102,128,38,.1);
}
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(102,128,38,.1); border: 1px solid rgba(102,128,38,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.75rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s;
}
.service-card:hover .svc-icon { transform: scale(1.15) rotate(-8deg); background: rgba(102,128,38,.2); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .7rem; letter-spacing: -.03em; }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.75; }
.svc-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--primary); font-size: .82rem; font-weight: 600;
  margin-top: 1.5rem; text-decoration: none; font-family: 'Unbounded', sans-serif;
  letter-spacing: -.02em; transition: gap .2s;
}
.service-card:hover .svc-link { gap: .8rem; }

/* ── PROJECT CARD (flip) ── */
.project-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--card-bg);
  cursor: auto; perspective: 1000px;
  transition: border-color .3s, box-shadow .3s;
}
.project-inner {
  position: relative; transition: transform .6s cubic-bezier(.16,1,.3,1);
  transform-style: preserve-3d;
}
.project-card:hover .project-inner { transform: rotateY(180deg); }
.project-face, .project-back {
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
}
.project-back {
  position: absolute; inset: 0; transform: rotateY(180deg);
  background: linear-gradient(135deg, rgba(102,128,38,.15), rgba(200,204,77,.1));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem; text-align: center;
  border: 1px solid rgba(102,128,38,.25); border-radius: var(--radius);
}
.project-back h4 { font-size: 1.1rem; font-weight: 700; }
.project-back p { color: var(--muted); font-size: .88rem; }
.project-card:hover { border-color: rgba(102,128,38,.3); box-shadow: 0 24px 64px rgba(102,128,38,.15); }
.project-img {
  width: 100%; height: 230px;
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
  position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(102,128,38,.18), rgba(200,204,77,.1));
}
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,11,24,1) 0%, transparent 55%);
}
.project-body { padding: 1.5rem; }
.proj-tag { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }
.project-body h3 { font-size: 1.05rem; margin: .4rem 0 .5rem; letter-spacing: -.03em; }
.project-body p { color: var(--muted); font-size: .87rem; }

/* ── TEAM CARD ── */
.team-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--card-bg);
  text-align: center; position: relative;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s;
  transform-style: preserve-3d; cursor: auto;
}
.team-card:hover {
  transform: translateY(-10px) rotateX(4deg);
  border-color: rgba(102,128,38,.3);
  box-shadow: 0 28px 60px rgba(102,128,38,.15);
}
.team-photo {
  width: 100%; height: 210px;
  background: linear-gradient(135deg, rgba(102,128,38,.18), rgba(200,204,77,.1));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, var(--bg3), transparent);
}
.team-card:hover .team-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.06) 50%, transparent 70%);
  animation: shimmer .8s forwards;
}
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.team-body { padding: 1.4rem; }
.team-body h3 { font-size: .95rem; font-weight: 700; letter-spacing: -.03em; }
.team-role { color: var(--primary); font-size: .8rem; margin-top: .25rem; font-weight: 500; }
.team-social { display: flex; justify-content: center; gap: .6rem; margin-top: 1rem; }
.team-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .78rem; text-decoration: none;
  transition: border-color .2s, color .2s, background .2s, transform .2s; cursor: auto;
}
.team-social a:hover { border-color: var(--primary); color: var(--primary); background: rgba(102,128,38,.1); transform: scale(1.15); }

/* ── TESTIMONIAL CARD ── */
.testi-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.testi-card:hover::before { transform: scaleX(1); }
.testi-card:hover { transform: translateY(-8px); border-color: rgba(102,128,38,.2); box-shadow: 0 24px 56px rgba(102,128,38,.1); }
.testi-quote { font-size: 2.5rem; line-height: 1; color: rgba(102,128,38,.25); font-family: 'Unbounded', sans-serif; margin-bottom: .75rem; }
.testi-card blockquote { color: #c0cce6; font-size: .93rem; line-height: 1.78; margin-bottom: 1.5rem; }
.stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: #fbbf24; font-size: .85rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: .8rem; color: #fff;
  flex-shrink: 0; overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: .88rem; }
.author-role { color: var(--muted); font-size: .78rem; }

/* ── FEATURE ROW ── */
.feature-row {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; border-radius: 14px; border: 1px solid transparent;
  transition: border-color .3s, background .3s, transform .3s; cursor: default;
}
.feature-row:hover { background: var(--card-bg); border-color: var(--border); transform: translateX(8px); }
.feature-num {
  font-family: 'Unbounded', sans-serif; font-size: 1.8rem; font-weight: 900;
  color: rgba(102,128,38,.2); min-width: 3rem; line-height: 1; transition: color .3s;
}
.feature-row:hover .feature-num { color: rgba(102,128,38,.5); }
.feature-row h4 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; letter-spacing: -.03em; }
.feature-row p { color: var(--muted); font-size: .87rem; }

/* ── BLOG CARD ── */
.blog-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: auto;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-8px); border-color: rgba(102,128,38,.2); box-shadow: 0 24px 56px rgba(102,128,38,.1); }
.blog-img { width: 100%; height: 210px; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,11,24,.8) 0%, transparent 50%); }
.blog-body { padding: 1.75rem; }
.blog-tag { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); }
.blog-body h3 { font-size: 1rem; margin: .5rem 0 .6rem; letter-spacing: -.03em; line-height: 1.4; }
.blog-body p { color: var(--muted); font-size: .87rem; line-height: 1.7; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.blog-meta span { color: var(--muted); font-size: .78rem; display: flex; align-items: center; gap: .4rem; }

/* ── FORM INPUTS ── */
.tm-input, .tm-textarea, .tm-select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .85rem 1.2rem;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.tm-input::placeholder, .tm-textarea::placeholder { color: var(--muted); }
.tm-input:focus, .tm-textarea:focus, .tm-select:focus { border-color: rgba(102,128,38,.5); background: rgba(255,255,255,.06); }
.tm-input.error, .tm-textarea.error { border-color: rgba(239,68,68,.5); }
.tm-textarea { resize: none; }
.tm-select option { background: #0a0f1e; }
.tm-label { display: block; color: var(--muted); font-size: .82rem; font-weight: 500; margin-bottom: .55rem; letter-spacing: .02em; }
.tm-error { color: #f87171; font-size: .78rem; margin-top: .4rem; }

/* ── INFO CARD ── */
.info-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color .3s;
}
.info-card:hover { border-color: rgba(102,128,38,.25); }
.info-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(102,128,38,.1); border: 1px solid rgba(102,128,38,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.info-label { color: var(--muted); font-size: .75rem; margin-bottom: .25rem; letter-spacing: .04em; }
.info-value { color: var(--white); font-size: .9rem; font-weight: 500; }
.info-value a { color: var(--white); text-decoration: none; transition: color .2s; }
.info-value a:hover { color: var(--primary); }

/* ── PACKAGE CARD ── */
.pkg-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem; position: relative;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s;
}
.pkg-card:hover { transform: translateY(-8px); border-color: rgba(102,128,38,.25); box-shadow: 0 24px 60px rgba(102,128,38,.1); }
.pkg-card.featured { background: linear-gradient(135deg, rgba(102,128,38,.12), rgba(200,204,77,0.06)); border-color: rgba(102,128,38,.35); }
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #c8cc4d); color: #fff;
  font-family: 'Unbounded', sans-serif; font-size: .65rem; font-weight: 700;
  padding: .35rem 1rem; border-radius: 50px; white-space: nowrap; letter-spacing: .04em;
}
.pkg-name { font-size: .85rem; font-weight: 700; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; }
.pkg-price { font-family: 'Unbounded', sans-serif; font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 1.5rem; }
.pkg-price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.pkg-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .65rem; }
.pkg-features li { display: flex; align-items: center; gap: .6rem; color: #c0cce6; font-size: .88rem; }
.pkg-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: .75rem; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: var(--card-bg); border: none; cursor: auto;
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 600;
  text-align: left; transition: background .2s;
}
.faq-question:hover { background: rgba(255,255,255,.04); }
.faq-icon { color: var(--primary); font-size: 1rem; transition: transform .3s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: .9rem; line-height: 1.8; display: none; }
.faq-answer.open { display: block; }

/* ── GRID LAYOUTS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; align-items: start; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── APPEARANCE ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── FLASH MESSAGES ── */
.flash-success { background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.2); border-radius: 12px; padding: 1rem 1.25rem; color: #4ade80; display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.flash-error { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); border-radius: 12px; padding: 1rem 1.25rem; color: #f87171; display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }

/* ── BADGE ── */
.badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(102, 128, 38, 0.12); border: 1px solid rgba(102, 128, 38, 0.35); border-radius: 50px; padding: .4rem 1rem; font-size: .75rem; color: #f1f5f9; font-weight: 600; letter-spacing: .04em; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.6)} 50%{box-shadow:0 0 0 8px rgba(74,222,128,0)} }
.badge-dot { animation: pulse 2s infinite; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding: 6rem 5% 4rem; max-width: 1400px; margin: 0 auto; }
.footer-logo { background: linear-gradient(135deg, var(--white), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: 'Unbounded', sans-serif; font-size: 1.4rem; font-weight: 900; letter-spacing: -.04em; background: linear-gradient(135deg, var(--white), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; margin-bottom: 1rem; text-decoration: none; }
.footer-tagline { color: var(--muted); font-size: .9rem; line-height: 1.75; max-width: 300px; margin-bottom: 2rem; }
.footer-social { display: flex; gap: .75rem; }
.fsoc { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: var(--card-bg); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .85rem; text-decoration: none; transition: border-color .2s, color .2s, background .2s, transform .2s; cursor: auto; }
.fsoc:hover { border-color: var(--primary); color: var(--primary); background: rgba(102,128,38,.12); transform: translateY(-3px); }
.footer-col h4 { font-family: 'Unbounded', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul a { text-decoration: none; color: var(--muted); font-size: .88rem; transition: color .2s, padding-left .2s; display: block; }
.footer-col ul a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.75rem 5%; display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; }
.footer-bottom p { color: var(--muted); font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 2rem; list-style: none; }
.footer-bottom-links a { color: var(--muted); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--white); }
.footer-glow { position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(102,128,38,.06) 0%, transparent 70%); pointer-events: none; }

/* newsletter */
.nl-form { display: flex; gap: .5rem; margin-top: .75rem; }
.nl-input { flex: 1; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 50px; padding: .7rem 1.2rem; color: var(--white); font-family: 'Outfit', sans-serif; font-size: .85rem; outline: none; transition: border-color .2s; min-width: 0; }
.nl-input::placeholder { color: var(--muted); }
.nl-input:focus { border-color: rgba(102,128,38,.45); }
.nl-btn { background: var(--primary); color: #fff; border: none; border-radius: 50px; padding: .7rem 1.2rem; font-family: 'Unbounded', sans-serif; font-size: .7rem; font-weight: 700; cursor: auto; white-space: nowrap; transition: background .2s, transform .2s; }
.nl-btn:hover { background: #7a943a; transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (max-width: 900px) {
  nav { padding: 1.2rem 5%; }
  .nav-links { display: none !important; }
  .nav-auth-wrapper { display: none !important; }
  #mobile-toggle { display: flex !important; }
  .grid-2-3 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 4rem 5% 3rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 600px) {
  section { padding: 5.5rem 4%; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}