@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;600;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #16A34A;
  --green-dark: #0f7a36;
  --green-light: #d1fae5;
  --green-xlight: #f0fdf4;
  --ash: #ECECEC;
  --ash-dark: #d4d4d4;
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --ink: #2d2d2d;
  --muted: #6b7280;
  --light: #f9f9f7;
  --white: #ffffff;
  --border: #e5e5e0;
  --nav-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  color: var(--black);
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}

.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--green);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green);
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem !important; font-weight: 500 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; z-index: 999;
  flex-direction: column; gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500;
  color: var(--ink); padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--green); }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: var(--nav-h); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer; border: none;
  transition: all var(--transition);
  line-height: 1;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,0.3); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green-xlight); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--green-light); transform: translateY(-2px); }

/* ── SECTION UTILITIES ── */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-xlight);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--charcoal);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(22,163,74,0.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600; color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  max-width: 560px; margin: 0 auto;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 0.9rem; line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 260px;
}
.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--white);
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer-socials a:hover { background: var(--green); color: var(--white); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.65rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}


/* Home Styling */
    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      background: var(--charcoal);
      padding: 8rem 2rem 6rem;
    }
    .hero-bg-img {
      position: absolute; inset: 0; z-index: 0;
      background-image: url('https://images.unsplash.com/photo-1593941707882-a5bba14938c7?w=1600&auto=format&fit=crop&q=80');
      background-size: cover; background-position: center;
      filter: brightness(0.22);
    }
    .hero::after {
      content: ''; position: absolute; inset: 0; z-index: 1;
      background: radial-gradient(ellipse at 70% 40%, rgba(22,163,74,0.2) 0%, transparent 60%);
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto;
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(22,163,74,0.15); border: 1px solid rgba(22,163,74,0.3);
      color: #4ade80; border-radius: 100px;
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.4rem 1rem; margin-bottom: 1.5rem;
    }
    .hero-badge span { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
    .hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 600; color: var(--white); letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 1.5rem; }
    .hero h1 em { color: var(--green); font-style: normal; }
    .hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-visual { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 2rem; backdrop-filter: blur(12px); }
    .score-card { background: var(--white); border-radius: 16px; padding: 1.75rem; margin-bottom: 1rem; }
    .score-label { font-size: 0.75rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
    .score-value { font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 600; color: var(--green); line-height: 1; }
    .score-sub { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }
    .score-bar-wrap { margin-top: 1rem; background: var(--ash); border-radius: 100px; height: 8px; overflow: hidden; }
    .score-bar { height: 100%; background: var(--green); border-radius: 100px; width: 0; animation: grow 1.8s ease forwards 0.5s; }
    @keyframes grow { to { width: 82%; } }
    .mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .mini-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1rem; }
    .mini-card-icon { font-size: 1.25rem; margin-bottom: 0.4rem; }
    .mini-card-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 0.2rem; }
    .mini-card-val { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--white); }

    /* ─── FEATURE STRIP ─── */
    .features-strip { background: var(--green); padding: 1.5rem 2rem; }
    .features-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
    .strip-item { display: flex; align-items: center; gap: 1rem; padding: 0.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.2); }
    .strip-item:first-child { padding-left: 0; }
    .strip-item:last-child { border-right: none; }
    .strip-icon { font-size: 1.5rem; flex-shrink: 0; }
    .strip-text strong { display: block; font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--white); }
    .strip-text span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

    /* ─── ABOUT ─── */
    .about-section { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
    .about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
    .about-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
    .about-img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--white); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
    .about-img-badge .badge-num { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--green); }
    .about-img-badge .badge-txt { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
    .about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
    .about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.975rem; }
    .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.75rem 0; }
    .about-stat { background: var(--green-xlight); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
    .about-stat-num { font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 600; color: var(--green); }
    .about-stat-lbl { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }

    /* ─── SERVICES ─── */
    .services-section { background: var(--light); }
    .services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }
    .svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
    .svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
    .svc-card.featured { border-color: var(--green); border-width: 2px; }
    .svc-img { width: 100%; height: 200px; object-fit: cover; display: block; }
    .svc-body { padding: 1.75rem; }
    .svc-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
    .svc-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.65rem; letter-spacing: -0.02em; }
    .svc-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
    .svc-price { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 600; color: var(--green); }
    .svc-price-lbl { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.25rem; }
    .svc-link { font-size: 0.875rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap var(--transition); }
    .svc-link:hover { gap: 0.6rem; }

    /* ─── HOW IT WORKS ─── */
    .hiw-section { background: var(--charcoal); }
    .hiw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
    .hiw-img { border-radius: var(--radius-lg); overflow: hidden; }
    .hiw-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
    .hiw-steps { display: flex; flex-direction: column; gap: 1.5rem; }
    .hiw-step { display: flex; gap: 1.25rem; align-items: flex-start; }
    .hiw-num { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--white); font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .hiw-step h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
    .hiw-step p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

    /* ─── PORTFOLIO ─── */
    .portfolio-section { background: var(--white); }
    .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .port-card { border: 1px solid var(--border); border-left: 4px solid var(--green); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); background: var(--white); }
    .port-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
    .port-card-img { width: 100%; height: 160px; object-fit: cover; display: block; }
    .port-card-body { padding: 1.25rem; background: var(--ash); }
    .port-badge { display: inline-block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.2rem 0.6rem; border-radius: 100px; margin-bottom: 0.65rem; }
    .badge-done { background: var(--green-xlight); color: var(--green); }
    .badge-progress { background: #eff6ff; color: #1d4ed8; }
    .badge-upcoming { background: #fef3c7; color: #92400e; }
    .port-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
    .port-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

    /* ─── TEAM ─── */
    .team-section { background: var(--light); }
    .team-grid-wrap { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
    .team-row { display: grid; gap: 2rem; }
    .team-row.three { grid-template-columns: repeat(3, 1fr); }
    .team-row.two { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; width: 100%; }
    .team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
    .team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
    .team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.25rem; object-fit: cover; border: 3px solid var(--green-light); display: block; }
    .team-initials { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.25rem; background: var(--green); color: var(--white); font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 600; display: flex; align-items: center; justify-content: center; border: 3px solid var(--green-light); }
    .team-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.3rem; }
    .team-card .role { font-size: 0.78rem; color: var(--green); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
    .team-card .email { font-size: 0.78rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.3rem; transition: color var(--transition); }
    .team-card .email:hover { color: var(--green); }

    /* ─── CONTACT ─── */
    .contact-section { background: var(--charcoal); }
    .contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
    .contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7); }
    .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid rgba(255,255,255,0.12); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--white); background: rgba(255,255,255,0.07); transition: border-color var(--transition); outline: none; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
    .form-group select { color: rgba(255,255,255,0.7); appearance: none; }
    .form-group select option { background: var(--charcoal); color: var(--white); }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.15); }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .form-submit { background: var(--green); color: var(--white); border: none; padding: 0.9rem 2rem; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; cursor: pointer; transition: background var(--transition), transform var(--transition); width: 100%; }
    .form-submit:hover { background: var(--green-dark); transform: translateY(-2px); }
    .contact-info-panel { display: flex; flex-direction: column; gap: 1.5rem; }
    .cinfo-item { display: flex; align-items: flex-start; gap: 1rem; }
    .cinfo-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(22,163,74,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .cinfo-label { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
    .cinfo-value { font-size: 0.95rem; color: var(--white); font-weight: 500; }
    .cinfo-value a { color: #4ade80; }
    .contact-socials { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.5rem; }
    .contact-social-btn { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1rem; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); font-size: 0.8rem; transition: background var(--transition), color var(--transition), border-color var(--transition); }
    .contact-social-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
    .contact-social-btn svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

    /* ─── CTA BANNER ─── */
    .cta-banner { background: var(--green); border-radius: var(--radius-lg); padding: 4rem; text-align: center; position: relative; overflow: hidden; }
    .cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.1) 0%, transparent 60%); }
    .cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; color: var(--white); letter-spacing: -0.02em; margin-bottom: 1rem; position: relative; }
    .cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; position: relative; }

    @media (max-width: 1024px) {
      .hero-inner, .about-grid, .hiw-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .hero-visual { display: none; }
      .services-cards, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
      .features-strip-inner { grid-template-columns: 1fr; gap: 1rem; }
      .strip-item { border-right: none; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
      .strip-item:last-child { border-bottom: none; }
    }
    @media (max-width: 600px) {
      .services-cards, .portfolio-grid { grid-template-columns: 1fr; }
      .team-row.three, .team-row.two { grid-template-columns: 1fr; max-width: 100%; }
      .form-row { grid-template-columns: 1fr; }
      .about-stats { grid-template-columns: 1fr 1fr; }
    }
    /* ─── FAQ ─── */
.faq-section{
  background: var(--light);
}

.faq-wrap{
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition),
              border-color var(--transition);
}

.faq-item:hover{
  border-color: rgba(22,163,74,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.faq-item.active{
  border-color: var(--green);
}

.faq-question{
  width: 100%;
  border: none;
  background: transparent;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.faq-question span{
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
}

.faq-icon{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-xlight);
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition),
              background var(--transition),
              color var(--transition);
}

.faq-item.active .faq-icon{
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer{
  max-height: 220px;
}

.faq-answer p{
  padding: 0 1.5rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
}

@media (max-width:600px){
  .faq-question{
    padding: 1.15rem 1rem;
  }

  .faq-question span{
    font-size: 0.92rem;
  }

  .faq-answer p{
    padding: 0 1rem 1.25rem;
  }
}



/*About Style*/
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
    .about-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
    .about-img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--white); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem; box-shadow: 0 8px 32px rgba(0,0,0,.15); }
    .about-img-badge .badge-num { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--green); }
    .about-img-badge .badge-txt { font-size: .8rem; color: var(--muted); line-height: 1.4; }
    .about-story-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -.03em; margin-bottom: 1.25rem; }
    .about-story-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: .975rem; }

    .mission-section { background: var(--charcoal); }
    .mission-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .mission-card { border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 2rem; }
    .mission-icon { font-size: 2rem; margin-bottom: 1rem; }
    .mission-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .75rem; }
    .mission-card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; }

    .team-grid-wrap { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
    .team-row { display: grid; gap: 2rem; }
    .team-row.three { grid-template-columns: repeat(3, 1fr); }
    .team-row.two { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; width: 100%; }
    .team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
    .team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
    .team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.25rem; object-fit: cover; border: 3px solid var(--green-light); display: block; }
    .team-initials { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.25rem; background: var(--green); color: var(--white); font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 600; display: flex; align-items: center; justify-content: center; border: 3px solid var(--green-light); }
    .team-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .3rem; }
    .team-card .role { font-size: .78rem; color: var(--green); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
    .team-card .email { font-size: .78rem; color: var(--muted); display: inline-flex; align-items: center; gap: .3rem; transition: color var(--transition); }
    .team-card .email:hover { color: var(--green); }

    @media (max-width: 900px) {
      .about-story, .mission-cards { grid-template-columns: 1fr; }
      .team-row.three, .team-row.two { grid-template-columns: 1fr; max-width: 100%; }
    }
    
    
    /*Contact Style*/
    
    .contact-layout {
      display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start;
    }

    /* FORM */
    .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; color: var(--ink);
      background: var(--white);
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 140px; }
    .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
    .form-submit {
      background: var(--green); color: var(--white);
      border: none; padding: 0.9rem 2rem;
      border-radius: 8px; font-family: 'DM Sans', sans-serif;
      font-size: 1rem; font-weight: 500; cursor: pointer;
      transition: background var(--transition), transform var(--transition);
      width: 100%;
    }
    .form-submit:hover { background: var(--green-dark); transform: translateY(-2px); }

    /* INFO PANEL */
    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .info-card {
      background: var(--light); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 1.75rem;
    }
    .info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
    .info-item:last-child { margin-bottom: 0; }
    .info-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--green-xlight);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .info-label { font-size: 0.75rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
    .info-value { font-size: 0.95rem; color: var(--ink); font-weight: 500; }
    .info-value a { color: var(--green); }

    .social-card {
      background: var(--charcoal); border-radius: var(--radius-lg); padding: 1.75rem;
    }
    .social-card h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; }
    .social-links { display: flex; flex-direction: column; gap: 0.65rem; }
    .social-link {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.6rem 0.75rem; border-radius: 8px;
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.75);
      font-size: 0.875rem;
      transition: background var(--transition), color var(--transition);
    }
    .social-link:hover { background: var(--green); color: var(--white); }
    .social-link svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

    .map-placeholder {
      background: var(--ash); border-radius: var(--radius-lg);
      height: 180px; display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 0.5rem;
      color: var(--muted); font-size: 0.875rem;
    }
    .map-placeholder .pin { font-size: 2rem; }

    @media (max-width: 900px) {
      .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
      .form-row { grid-template-columns: 1fr; }
    }
    
    
    
    /*Portfolio Style*/
    
    .trl-bar-section { background: var(--light); }
    .trl-visual {
      max-width: 760px; margin: 3rem auto 0;
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 2.5rem;
    }
    .trl-track { display: flex; gap: 0; margin: 1.5rem 0 1rem; position: relative; }
    .trl-step {
      flex: 1; height: 10px;
      background: var(--ash);
      border-right: 3px solid var(--white);
      position: relative;
    }
    .trl-step:first-child { border-radius: 100px 0 0 100px; }
    .trl-step:last-child { border-right: none; border-radius: 0 100px 100px 0; }
    .trl-step.done { background: var(--green); }
    .trl-step.current { background: linear-gradient(90deg, var(--green) 50%, var(--ash) 50%); }
    .trl-labels { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--muted); }
    .trl-legend { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.25rem; flex-wrap: wrap; }
    .trl-legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); }
    .trl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

    .milestones-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
    }
    .milestone-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-left: 4px solid var(--green);
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      padding: 1.75rem;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .milestone-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
    .milestone-badge {
      display: inline-block;
      font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
      padding: 0.2rem 0.65rem; border-radius: 100px;
      margin-bottom: 1rem;
    }
    .badge-done { background: var(--green-xlight); color: var(--green); }
    .badge-upcoming { background: #fef3c7; color: #92400e; }
    .badge-progress { background: #eff6ff; color: #1d4ed8; }
    .milestone-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.65rem; letter-spacing: -0.01em; }
    .milestone-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

    .timeline-section { background: var(--charcoal); }
    .timeline { max-width: 680px; margin: 3rem auto 0; position: relative; }
    .timeline::before {
      content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px;
      background: rgba(255,255,255,0.1);
    }
    .tl-item { display: flex; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; }
    .tl-item:last-child { padding-bottom: 0; }
    .tl-dot {
      width: 50px; height: 50px; border-radius: 50%;
      background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.15);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; position: relative; z-index: 1;
    }
    .tl-dot.active { background: var(--green); border-color: var(--green); }
    .tl-content { padding-top: 0.65rem; }
    .tl-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.35rem; }
    .tl-content h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
    .tl-content p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

    @media (max-width: 900px) {
      .milestones-grid { grid-template-columns: 1fr; }
    }
    
    
    /*Services Style*/
    
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      position: relative; overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
    .service-card.featured { border-color: var(--green); border-width: 2px; }
    .service-card.featured::after {
      content: 'Most Popular';
      position: absolute; top: 1.25rem; right: 1.25rem;
      background: var(--green); color: var(--white);
      font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
      padding: 0.25rem 0.65rem; border-radius: 100px;
    }
    .service-icon {
      width: 60px; height: 60px; border-radius: 16px;
      background: var(--green-xlight);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.75rem; margin-bottom: 1.5rem;
    }
    .service-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
    .service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
    .service-price {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem; font-weight: 400; color: var(--green);
      margin-bottom: 0.25rem;
    }
    .service-price-label { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; }
    .service-features { list-style: none; margin-bottom: 2rem; }
    .service-features li {
      font-size: 0.875rem; color: var(--ink);
      padding: 0.4rem 0;
      display: flex; align-items: flex-start; gap: 0.6rem;
      border-bottom: 1px solid var(--border);
    }
    .service-features li:last-child { border-bottom: none; }
    .service-features li::before { content: '✓'; color: var(--green); font-weight: 600; flex-shrink: 0; }

    .how-it-works { background: var(--light); }
    .process-steps { margin-top: 3rem; }
    .process-step {
      display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: start;
      padding: 2rem 0;
      border-bottom: 1px solid var(--border);
    }
    .process-step:last-child { border-bottom: none; }
    .ps-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--green); color: var(--white);
      font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ps-content h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
    .ps-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

    .revenue-section { background: var(--charcoal); }
    .revenue-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .rev-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg); padding: 2rem; text-align: center;
    }
    .rev-amount { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 600; color: var(--green); margin-bottom: 0.5rem; }
    .rev-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

    @media (max-width: 900px) {
      .services-grid, .revenue-cards { grid-template-columns: 1fr; }
      .process-step { grid-template-columns: 56px 1fr; gap: 1.25rem; }
    }