/* ============================================================
   WebMitr.Tech — Main Stylesheet
   Simple, modern, beginner-friendly CSS
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --primary:    #fafaf8;
  --surface:    #ffffff;
  --surface2:   #f5f5f0;
  --surface3:   #f0f0ea;

  --text:       #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --gold:        #F5B700;
  --gold-dark:   #d49f00;
  --gold-light:  #FFD95A;
  --gold-soft:   rgba(245,183,0,0.10);
  --gold-border: rgba(245,183,0,0.30);

  --border-soft: rgba(26,26,26,0.08);
  --shadow-card: 0 2px 16px rgba(26,26,26,0.07);
  --shadow-sm:   0 1px 4px rgba(26,26,26,0.06);

  --wa: #25D366;

  --radius:       16px;
  --radius-sm:    10px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Layout helpers --- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 88px 0; }

/* --- Section labels --- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
}

.gradient-text {
  background: linear-gradient(120deg, #b87a00 0%, #F5B700 50%, #e8a000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   Scroll reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ============================================================
   Urgency bar
   ============================================================ */
#urgency-bar {
  background: #fffbeb;
  border-bottom: 1px solid rgba(245,183,0,0.25);
  text-align: center;
  padding: 7px 48px 7px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #92690a;
  position: relative;
}
#urgency-bar span { color: #b87a00; font-weight: 600; }

.urgency-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #b87a00;
  opacity: 0.6;
  line-height: 1;
  padding: 2px 4px;
}
.urgency-close:hover { opacity: 1; }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  box-shadow: 0 1px 0 var(--border-soft), 0 4px 20px rgba(26,26,26,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.nav-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.nav-logo-mark { width: 34px; height: 34px; flex-shrink: 0; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo-text .tagline {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-links { display: flex; gap: 2px; align-items: center; }

.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 11px;
  border-radius: 7px;
  position: relative;
  transition: color 0.18s, background 0.18s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(26,26,26,0.04); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }

.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 3px;
  gap: 1px;
  margin: 0 6px;
  flex-shrink: 0;
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.lang-btn:hover { background: var(--surface); color: var(--text); }
.lang-btn.active { background: var(--gold); color: #1a1a1a; font-weight: 700; }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 7px;
  transition: background 0.18s;
}
.hamburger:hover { background: var(--surface2); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  padding: 10px 20px 20px;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(26,26,26,0.08);
}
.mobile-menu a {
  display: block;
  padding: 10px 11px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu a:hover { background: var(--surface2); color: var(--text); }
.mobile-menu.open { display: flex; }
.mobile-lang { display: flex; gap: 8px; padding: 10px 11px 4px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 12px 24px;
  border-radius: 9px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gold);
  color: #1a1a1a;
  box-shadow: 0 3px 14px rgba(245,183,0,0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 6px 22px rgba(245,183,0,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-soft);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-soft);
  transform: scale(1.02);
}

.btn-white {
  background: #fff;
  color: #1a1a1a;
  font-weight: 700;
}
.btn-white:hover {
  background: #f5f5f0;
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.btn-nav {
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(245,183,0,0.30);
}
.btn-nav:hover { background: var(--gold-dark); transform: scale(1.04); }

/* ============================================================
   Hero section (UPDATED simple layout)
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 78px; /* space for fixed navbar */
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(245,183,0,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 10% 80%, rgba(245,183,0,0.05) 0%, transparent 65%),
    var(--primary);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,26,26,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  opacity: 0.6;
}

/* NEW: simple hero wrapper */
.hero-simple {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #92690a;
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.6); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 30px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: var(--surface2);
  box-shadow: var(--shadow-sm);
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 0.83rem; color: var(--text-muted); }

/* NEW: profile card */
.hero-profile { display: flex; justify-content: center; }
.profile-card {
  width: 100%;
  max-width: 340px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(26,26,26,0.08);
  text-align: center;
}

.profile-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid rgba(245,183,0,0.25);
  background: var(--surface2);
}

.profile-meta .profile-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}
.profile-meta .profile-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   Stats bar
   ============================================================ */
.stats-bar {
  background: #fff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 32px 0;
}
.stats-grid { display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 18px 20px;
  border-right: 1px solid var(--border-soft);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-num .accent { color: var(--gold-dark); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   Why section
   ============================================================ */
.why-section { background: var(--surface3); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.problem-item:last-child { border-bottom: none; }
.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.problem-body h4 { font-weight: 600; font-size: 0.92rem; color: var(--text); margin-bottom: 3px; }
.problem-body p  { font-size: 0.84rem; color: var(--text-muted); }

.solution-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
}
.solution-item:last-child { border-bottom: none; }
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.solution-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   Industries
   ============================================================ */
.industries-section { background: var(--primary); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 22px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s, border-color 0.25s;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 12px 32px rgba(26,26,26,0.10);
}
.industry-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.industry-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 7px; }
.industry-card p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

.industry-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 12px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: #92690a;
}

/* ============================================================
   Services
   ============================================================ */
.services-section { background: var(--surface3); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.22s ease, box-shadow 0.22s, border-color 0.22s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-border);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.service-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.service-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 14px;
}

/* ============================================================
   CTA banners
   ============================================================ */
.cta-banner {
  background: #1a1a1a;
  border-radius: var(--radius);
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245,183,0,0.06);
  right: -60px;
  top: -120px;
}
.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
.cta-banner-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.cta-banner-text .urgency {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245,183,0,0.15);
  border: 1px solid rgba(245,183,0,0.30);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 11px;
  border-radius: 100px;
  margin-top: 10px;
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing-section { background: var(--surface2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
  align-items: start;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.price-card.popular {
  border-color: var(--gold);
  position: relative;
  transform: scale(1.02);
  box-shadow: 0 6px 28px rgba(245,183,0,0.18);
}
.price-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 13px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.price-name   { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-muted); margin-bottom: 3px; }
.price-amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 3px; }
.price-delivery {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.price-features { border-top: 1px solid var(--border-soft); padding-top: 18px; margin-bottom: 20px; }
.price-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.price-feature .check { color: var(--gold-dark); font-size: 0.78rem; }

/* ============================================================
   Trust cards
   ============================================================ */
.trust-section { background: var(--surface3); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-border);
}
.trust-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.trust-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 7px; }
.trust-card p  { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-section { background: var(--primary); }
.testimonials-heading { text-align: center; margin-bottom: 44px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.star { color: var(--gold); font-size: 0.85rem; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8a000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-info .name { font-weight: 600; font-size: 0.87rem; color: var(--text); }
.author-info .biz  { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   About
   ============================================================ */
.about-section { background: var(--surface2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-soft);
}
.about-feature:last-child { border-bottom: none; }
.about-feature .icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.about-feature h4 { font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 2px; }
.about-feature p  { font-size: 0.81rem; color: var(--text-muted); }

.about-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.about-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.about-card-header h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); }
.about-card-header p  { font-size: 0.78rem; color: var(--text-muted); }

.about-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.mini-stat {
  background: var(--surface2);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.mini-stat .val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--gold-dark); }
.mini-stat .lbl { font-size: 0.72rem; color: var(--text-muted); }
.about-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.72; }

/* ============================================================
   Contact
   ============================================================ */
.contact-section { background: var(--primary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 44px;
  margin-top: 44px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item .label { font-size: 0.72rem; color: var(--text-muted); }
.contact-item .value { font-size: 0.88rem; color: var(--text); font-weight: 500; }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wa);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: 9px;
  margin-top: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 14px rgba(37,211,102,0.28);
}
.wa-btn:hover { transform: scale(1.04) translateY(-1px); box-shadow: 0 6px 22px rgba(37,211,102,0.40); }
.wa-btn svg { width: 17px; height: 17px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.contact-form h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface2);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,183,0,0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 52px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-logo-mark { width: 26px; height: 26px; }
.footer-desc { font-size: 0.82rem; color: #6b7280; line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.18s;
  color: #9ca3af;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #1a1a1a; }

.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: #fff; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.82rem; color: #6b7280; transition: color 0.18s; }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 7px; margin-bottom: 9px; font-size: 0.8rem; color: #6b7280; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.79rem; color: #6b7280; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 0.79rem; color: #6b7280; transition: color 0.18s; }
.footer-links a:hover { color: #fff; }

/* ============================================================
   WhatsApp floating button
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}
.wa-tooltip {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 7px;
  padding: 5px 11px;
  font-size: 0.75rem;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(3px);
  transition: all 0.18s;
  pointer-events: none;
  box-shadow: var(--shadow-card);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(0); }
.wa-float-btn {
  width: 54px;
  height: 54px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 7px 28px rgba(37,211,102,0.50); }
.wa-float-btn svg { width: 28px; height: 28px; fill: #fff; }
.wa-float-btn::before,
.wa-float-btn::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: wa-pulse 2.5s ease-out infinite;
}
.wa-float-btn::after { animation-delay: 1.25s; }
@keyframes wa-pulse {
  0%   { width: 54px; height: 54px; opacity: 0.65; }
  100% { width: 94px; height: 94px; opacity: 0; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .nav-links, .nav-cta, .lang-switcher { display: none; }
  .hamburger { display: flex; }

  /* hero stacks: image top, text below */
  .hero-simple { grid-template-columns: 1fr; gap: 22px; }
  .hero-profile { order: -1; } /* move image on top */
  .profile-card { max-width: 360px; }

  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .industries-grid, .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { padding: 32px 22px; text-align: center; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .stat-item { width: 50%; border-right: none; border-bottom: 1px solid var(--border-soft); }
  .stat-item:last-child { border-bottom: none; }
  .nav-logo-text .tagline { display: none; }

  .profile-img { width: 200px; height: 200px; }
}