@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #0a0a0a;
  --color-accent: #ff4d00;
  --color-surface: #f5f5f5;
  --color-border: #e8e8e8;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 800; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all .3s;
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 72px; display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
  color: var(--color-primary); text-decoration: none; cursor: pointer;
}
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--color-accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: #555; font-size: .88rem; font-weight: 500;
  text-decoration: none; transition: color .2s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--color-primary); border-radius: 2px; transition: all .3s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--color-accent); color: #fff;
  border: none; border-radius: 8px; padding: .75rem 1.5rem;
  font-size: .88rem; font-weight: 600; font-family: var(--font-body);
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-primary:hover { background: #e04400; transform: translateY(-1px); box-shadow: 0 8px 25px rgba(255,77,0,.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--color-primary);
  border: 1.5px solid var(--color-border); border-radius: 8px; padding: .75rem 1.5rem;
  font-size: .88rem; font-weight: 600; font-family: var(--font-body);
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--color-primary);
  border: none; border-radius: 8px; padding: .75rem 1.5rem;
  font-size: .88rem; font-weight: 600; font-family: var(--font-body);
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }

/* ── LAYOUT ── */
.section { padding: 90px 2rem; }
.section-sm { padding: 60px 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.section-tag {
  display: inline-block; background: #fff5f2; border: 1px solid #ffd5c8;
  border-radius: 100px; padding: .3rem 1rem;
  color: var(--color-accent); font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  margin-bottom: 1rem;
}
.section-header h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--color-primary); letter-spacing: -.03em; margin-bottom: 1rem; }
.section-header p { color: #777; font-size: 1rem; line-height: 1.75; }
.accent { color: var(--color-accent); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--color-primary); padding: 140px 2rem 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,77,0,.15), transparent 70%);
}
.page-hero-inner { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem,4.5vw,3.5rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1.05rem; line-height: 1.75; max-width: 600px; margin: 0 auto; }

/* ── HERO ── */
.hero { background: #fff; padding: 140px 2rem 90px; position: relative; }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff5f2; border: 1px solid #ffd5c8; border-radius: 100px;
  padding: .4rem 1rem; color: var(--color-accent); font-size: .78rem; font-weight: 600;
  letter-spacing: .05em; margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero-title { font-size: clamp(2.8rem,5.5vw,4.2rem); line-height: 1.05; letter-spacing: -.03em; color: var(--color-primary); margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.1rem; line-height: 1.75; color: #555; margin-bottom: 2.5rem; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: .4rem; color: #777; font-size: .82rem; font-weight: 500; }
.hero-trust-item svg { color: var(--color-accent); width: 15px; height: 15px; }
.hero-visual { position: relative; }
.hero-card-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; }
.hero-stat-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: 16px;
  padding: 1.5rem; transition: transform .3s, box-shadow .3s;
}
.hero-stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.hero-stat-card.accent { background: var(--color-accent); border-color: var(--color-accent); grid-column: span 2; }
.hero-stat-card.large { background: var(--color-primary); grid-column: span 2; }
.hero-stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; letter-spacing: -.04em; color: var(--color-primary); margin-bottom: .3rem; line-height: 1; }
.hero-stat-card.accent .hero-stat-number,
.hero-stat-card.large .hero-stat-number { color: #fff; }
.hero-stat-label { font-size: .82rem; font-weight: 500; color: #888; }
.hero-stat-card.accent .hero-stat-label,
.hero-stat-card.large .hero-stat-label { color: rgba(255,255,255,.7); }
.hero-floating-badge {
  position: absolute; top: -20px; right: -20px;
  background: #fff; border: 1px solid var(--color-border); border-radius: 12px;
  padding: .75rem 1rem; display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,.1); white-space: nowrap;
}

/* ── MARQUEE ── */
.marquee-section { background: var(--color-primary); padding: 1.5rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; flex-shrink: 0; }
.marquee-dot { width: 5px; height: 5px; background: var(--color-accent); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: 16px;
  padding: 2rem; transition: all .3s; position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--color-accent); transform: scaleX(0); transition: transform .3s;
}
.service-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: #fff5f2; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent); margin-bottom: 1.25rem; transition: background .3s;
}
.service-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { background: var(--color-accent); color: #fff; }
.service-card-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-primary); margin-bottom: .6rem; }
.service-card-desc { color: #777; font-size: .88rem; line-height: 1.65; margin-bottom: 1.25rem; }
.service-link { display: inline-flex; align-items: center; gap: .3rem; color: var(--color-accent); font-size: .85rem; font-weight: 600; text-decoration: none; transition: gap .2s; }
.service-link:hover { gap: .6rem; }

/* ── STATS ── */
.stats-section { background: var(--color-primary); padding: 80px 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem 1rem; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; letter-spacing: -.04em; color: #fff; margin-bottom: .4rem; line-height: 1; }
.stat-number span { color: var(--color-accent); }
.stat-label { color: rgba(255,255,255,.5); font-size: .9rem; }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.why-icon { width: 44px; height: 44px; background: #fff5f2; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--color-accent); flex-shrink: 0; }
.why-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-text h4 { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--color-primary); margin-bottom: .3rem; }
.why-text p { color: #777; font-size: .87rem; line-height: 1.6; }
.why-image-card { background: var(--color-surface); border-radius: 20px; padding: 2.5rem; position: relative; overflow: hidden; }
.why-image-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,77,0,.1), transparent 70%); }
.metric-stack { display: flex; flex-direction: column; gap: 1rem; }
.metric-row { background: #fff; border-radius: 12px; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.metric-info h5 { font-family: var(--font-heading); font-size: .82rem; font-weight: 600; color: var(--color-primary); margin-bottom: .25rem; }
.metric-bar-wrap { width: 120px; height: 5px; background: var(--color-border); border-radius: 3px; overflow: hidden; }
.metric-bar-fill { height: 100%; background: var(--color-accent); border-radius: 3px; }
.metric-value { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--color-primary); }
.metric-value.green { color: #16a34a; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 35px; left: 10%; right: 10%; height: 1px; background: var(--color-border); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 70px; height: 70px; background: #fff; border: 2px solid var(--color-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800;
  color: var(--color-primary); transition: all .3s;
}
.process-step:hover .process-number { background: var(--color-accent); border-color: var(--color-accent); color: #fff; box-shadow: 0 8px 24px rgba(255,77,0,.3); }
.process-step h4 { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--color-primary); margin-bottom: .5rem; }
.process-step p { color: #888; font-size: .84rem; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 2rem; transition: transform .3s, box-shadow .3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.06); }
.testimonial-stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: #f59e0b; }
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-text { color: #555; font-size: .9rem; font-style: italic; line-height: 1.75; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-size: .9rem; font-weight: 700; flex-shrink: 0; }
.author-name { font-family: var(--font-heading); font-size: .88rem; font-weight: 700; color: var(--color-primary); }
.author-role { color: #999; font-size: .78rem; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--color-primary); border-radius: 24px; padding: 5rem 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,77,0,.15), transparent 70%); }
.cta-banner::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,77,0,.1), transparent 70%); }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin: 0 auto 2.5rem; }
.cta-banner-actions { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── SERVICES PAGE ── */
.service-detail-card { border: 1px solid var(--color-border); border-radius: 20px; overflow: hidden; transition: all .3s; }
.service-detail-card:hover { border-color: transparent; transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.service-detail-header { background: #fff; padding: 2.5rem 2.5rem 0; }
.service-detail-body { background: #fff; padding: 0 2.5rem 2.5rem; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.pricing-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: 20px;
  padding: 2.5rem 2rem; display: flex; flex-direction: column;
  transition: all .3s; position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.1); }
.pricing-card.featured { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: #fff; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; border-radius: 100px; padding: .3rem 1rem; white-space: nowrap;
}
.pricing-name { font-family: var(--font-heading); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--color-accent); margin-bottom: .5rem; }
.pricing-card.featured .pricing-name { color: rgba(255,255,255,.5); }
.pricing-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--color-primary); margin-bottom: 1.25rem; }
.pricing-card.featured h3 { color: #fff; }
.pricing-price { margin-bottom: 1.75rem; }
.pricing-amount { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; letter-spacing: -.04em; color: var(--color-primary); line-height: 1; }
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-period { color: #999; font-size: .85rem; margin-left: .25rem; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.4); }
.pricing-divider { height: 1px; background: var(--color-border); margin-bottom: 1.75rem; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.1); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: .65rem; font-size: .87rem; line-height: 1.4; color: #555; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.75); }
.pricing-features li svg { color: var(--color-accent); flex-shrink: 0; margin-top: 1px; width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.pricing-features li.disabled { opacity: .35; }
.pricing-features li.disabled svg { color: #ccc; }
.pricing-card.featured .btn-primary { background: #fff; color: #0a0a0a; }
.pricing-card.featured .btn-primary:hover { background: #f0f0f0; box-shadow: 0 8px 25px rgba(255,255,255,.2); }

/* ── ABOUT ── */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mission-card { background: var(--color-surface); border-radius: 16px; padding: 2rem; }
.mission-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-primary); margin-bottom: .75rem; }
.mission-card p { color: #666; font-size: .9rem; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value-card { background: var(--color-surface); border-radius: 16px; padding: 2rem; transition: all .3s; }
.value-card:hover { background: #fff; transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.07); }
.value-card.accent-card { background: var(--color-accent); }
.value-card.accent-card h3, .value-card.accent-card p { color: #fff; }
.value-icon { width: 48px; height: 48px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--color-accent); margin-bottom: 1.25rem; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.value-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card.accent-card .value-icon { background: rgba(255,255,255,.2); box-shadow: none; }
.value-card.accent-card .value-icon svg { color: #fff; }
.value-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: .5rem; }
.value-card p { color: #777; font-size: .87rem; line-height: 1.65; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.team-card { border-radius: 16px; overflow: hidden; transition: all .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.team-avatar { height: 220px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: #fff; }
.team-info { background: #fff; border: 1px solid var(--color-border); border-top: none; border-radius: 0 0 16px 16px; padding: 1.25rem; }
.team-info h4 { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--color-primary); }
.team-info p { color: var(--color-accent); font-size: .8rem; font-weight: 500; margin-top: .2rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card { background: var(--color-surface); border-radius: 14px; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; transition: all .3s; }
.contact-info-card:hover { background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.contact-icon { width: 44px; height: 44px; background: #fff5f2; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--color-accent); flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-card h4 { font-family: var(--font-heading); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #aaa; margin-bottom: .25rem; }
.contact-info-card p { color: var(--color-primary); font-size: .9rem; font-weight: 500; line-height: 1.5; }
.contact-form-wrap { background: #fff; border: 1px solid var(--color-border); border-radius: 20px; padding: 2.5rem; }
.contact-form-wrap h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--color-primary); margin-bottom: .5rem; }
.contact-form-wrap > p { color: #888; font-size: .87rem; line-height: 1.6; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-family: var(--font-heading); font-size: .8rem; font-weight: 600; color: #555; letter-spacing: .02em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--color-border);
  border-radius: 8px; font-size: .9rem; font-family: var(--font-body);
  color: var(--color-primary); background: #fafafa; outline: none; transition: all .2s; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--color-accent); background: #fff; box-shadow: 0 0 0 3px rgba(255,77,0,.08); }
.form-group textarea { min-height: 130px; }
.form-submit { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 1rem; }
.form-success { background: #f0fdf4; border: 1px solid #86efac; border-radius: 12px; padding: 1.5rem; text-align: center; margin-top: 1rem; }
.form-success h4 { font-family: var(--font-heading); color: #16a34a; font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.form-success p { color: #4b5563; font-size: .87rem; }

/* ── FOOTER ── */
.footer { background: #080808; color: #fff; padding: 80px 2rem 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social-link { width: 36px; height: 36px; background: rgba(255,255,255,.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); text-decoration: none; transition: all .2s; cursor: pointer; }
.footer-social-link:hover { background: var(--color-accent); color: #fff; }
.footer-social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h5 { font-family: var(--font-heading); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .88rem; text-decoration: none; transition: all .2s; cursor: pointer; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); max-width: 1200px; margin: 0 auto; padding: 1.75rem 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .82rem; }

/* ── POPUP ── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  animation: fadeInOverlay .3s;
}
@keyframes fadeInOverlay { from{opacity:0} to{opacity:1} }
.popup-modal {
  background: #fff; border-radius: 24px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto; padding: 2.5rem; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
  animation: slideUpModal .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes slideUpModal { from{opacity:0;transform:translateY(40px) scale(.96)} to{opacity:1;transform:translateY(0) scale(1)} }
.popup-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px; background: var(--color-surface); border: none;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #555; transition: all .2s; font-size: 1.1rem;
}
.popup-close:hover { background: #eee; color: var(--color-primary); }
.popup-header { margin-bottom: 1.75rem; }
.popup-tag { display: inline-flex; align-items: center; gap: .4rem; background: #fff5f2; border: 1px solid #ffd5c8; border-radius: 100px; padding: .3rem .9rem; color: var(--color-accent); font-size: .75rem; font-weight: 600; margin-bottom: .75rem; }
.popup-header h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--color-primary); margin-bottom: .4rem; line-height: 1.2; }
.popup-header p { color: #888; font-size: .87rem; line-height: 1.55; }

/* ── CHAT WIDGET ── */
.chat-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 998; display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.chat-bubble {
  background: #fff; border: 1px solid var(--color-border); border-radius: 18px;
  padding: 1.25rem 1.5rem; max-width: 260px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12); position: relative;
  animation: bounceIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes bounceIn { from{opacity:0;transform:scale(.8) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
.chat-bubble::after {
  content: ''; position: absolute; bottom: -8px; right: 24px;
  width: 16px; height: 16px; background: #fff;
  border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
  clip-path: polygon(0 0, 100% 100%, 0 100%); transform: rotate(45deg);
}
.chat-bubble-title { font-family: var(--font-heading); font-size: .88rem; font-weight: 700; color: var(--color-primary); margin-bottom: .3rem; }
.chat-bubble p { color: #777; font-size: .78rem; line-height: 1.5; margin-bottom: .85rem; }
.chat-bubble-btn {
  width: 100%; background: var(--color-accent); color: #fff; border: none;
  border-radius: 8px; padding: .65rem 1rem; font-size: .8rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .4rem; transition: all .2s;
}
.chat-bubble-btn:hover { background: #e04400; }
.chat-toggle-btn {
  width: 60px; height: 60px; background: var(--color-accent); border: none;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; transition: all .3s;
  box-shadow: 0 8px 30px rgba(255,77,0,.4);
  animation: pulse-chat 3s ease-in-out infinite;
}
.chat-toggle-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(255,77,0,.5); }
.chat-toggle-btn svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes pulse-chat { 0%,100%{box-shadow:0 8px 30px rgba(255,77,0,.4)} 50%{box-shadow:0 8px 40px rgba(255,77,0,.6),0 0 0 8px rgba(255,77,0,.1)} }
.chat-notification { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; background: #22c55e; border: 2px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .6rem; font-weight: 700; }

/* ── MOBILE MENU ── */
.mobile-menu { position: fixed; inset: 0; background: #fff; z-index: 99; display: flex; flex-direction: column; gap: 1rem; padding: 5rem 2rem 2rem; animation: slideDown .3s; }
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
.mobile-menu a { font-size: 1.2rem; font-weight: 600; color: var(--color-primary); text-decoration: none; padding: .75rem 0; border-bottom: 1px solid var(--color-border); cursor: pointer; }
.mobile-menu-close { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; color: var(--color-primary); cursor: pointer; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.fade-up { animation: fadeInUp .4s both; }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .services-grid,.stats-grid{grid-template-columns:repeat(2,1fr)}
  .stat-item:nth-child(2){border-right:none}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid::before{display:none}
}
@media(max-width:768px){
  .about-intro-grid,.mission-grid{grid-template-columns:1fr!important}
  .section{padding:70px 1.5rem}
  .hero{padding:120px 1.5rem 70px}
  .hero-inner{grid-template-columns:1fr;gap:3rem}
  .hero-visual,.nav-links{display:none}
  .mobile-menu-btn{display:flex}
  .why-grid{grid-template-columns:1fr;gap:3rem}
  .testimonials-grid,.services-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.08)}
  .pricing-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto}
  .values-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr;gap:2.5rem}
  .form-row{grid-template-columns:1fr}
  .cta-banner{padding:3rem 1.5rem}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column;gap:.75rem;text-align:center}
  .page-hero{padding:120px 1.5rem 60px}
  .navbar-inner{padding:0 1.5rem}
  .process-grid{grid-template-columns:1fr;max-width:300px;margin:0 auto}
  .popup-modal{padding:1.75rem}
}
@media(max-width:480px){
  .hero-title{font-size:2.2rem}
  .stat-number{font-size:2.5rem}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-actions .btn-primary,.hero-actions .btn-secondary{justify-content:center}
  .team-grid{grid-template-columns:1fr;max-width:280px;margin:0 auto}
}
