/* ═══════════════════════════════════════════════════════════
   Owxify — Main Stylesheet
   Design System matching the Flutter App
═══════════════════════════════════════════════════════════ */

:root {
  --bg: #07070D;
  --bg-alt: #0C0C14;
  --card: #101018;
  --card-border: #1A1A28;
  --accent: #00E5A0;
  --accent-dim: rgba(0, 229, 160, 0.08);
  --accent-glow: rgba(0, 229, 160, 0.18);
  --red: #FF4D6D;
  --yellow: #FFB830;
  --blue: #4D9FFF;
  --purple: #A855F7;
  --text: #EEEEF8;
  --text-muted: #5A5A7A;
  --text-sub: #9898B8;
  --divider: #1A1A28;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font: 'DM Sans', -apple-system, sans-serif;
  --nav-h: 68px;
}

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

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; }

/* ─── Container ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #07070D;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--card-border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  padding: 11px 16px;
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(7, 7, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 20px; cursor: pointer; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 160, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 160, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 10%; right: 15%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 229, 160, 0.1) 0%, transparent 70%);
  pointer-events: none; border-radius: 50%;
}

/* ── Two-column hero layout ── */
.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h) - 80px);
}
.hero-left { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 160, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeInDown 0.6s ease;
}

.hero-h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease;
  letter-spacing: -1px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #00B4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease;
}
.hero-sub strong { color: var(--text); }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s ease;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeInUp 1.0s ease;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-val { font-size: 26px; font-weight: 900; color: var(--accent); }
.stat-lbl { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.hero-divider { width: 1px; height: 36px; background: var(--divider); }

/* ─── App Mockup (right column) ──────────────────────────── */
.hero-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}
.mockup-phone {
  background: var(--card);
  border: 1px solid rgba(0,229,160,0.15);
  border-radius: 24px;
  padding: 20px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(0,229,160,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
/* Second notification card floating below */
.mockup-notif {
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite reverse;
}
.notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; box-shadow: 0 0 8px var(--accent); }
.notif-text { font-size: 12px; line-height: 1.4; }
.notif-text strong { color: var(--accent); font-size: 13px; display: block; }
.mockup-bar { margin-bottom: 14px; font-weight: 600; font-size: 12px; display: flex; align-items: center; justify-content: space-between; }
.mockup-live { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--accent); }
.mockup-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.mockup-stats { display: flex; gap: 8px; margin-bottom: 16px; }
.ms-card { flex: 1; background: var(--bg-alt); border-radius: 10px; padding: 10px 8px; text-align: center; border: 1px solid var(--divider); }
.ms-val { font-size: 20px; font-weight: 900; }
.ms-lbl { font-size: 10px; color: var(--text-muted); font-weight: 700; margin-top: 2px; }
.mockup-section-label { font-size: 11px; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.mockup-member { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid var(--divider); }
.mm-avatar { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; flex-shrink: 0; }
.mm-check { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; background: rgba(0,229,160,0.1); display: flex; align-items:center; justify-content:center; font-size: 10px; color: var(--accent); }

/* ─── Section Base ───────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-sub); max-width: 560px; margin-bottom: 56px; }

/* ─── Features ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(0, 229, 160, 0.3); transform: translateY(-3px); }
.feature-card-accent { border-color: rgba(0, 229, 160, 0.2); background: linear-gradient(135deg, rgba(0,229,160,0.05), var(--card)); }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-sub); line-height: 1.6; margin-bottom: 16px; }
.feature-list li { font-size: 13px; color: var(--text-sub); padding: 3px 0; }

/* ─── How It Works ───────────────────────────────────────── */
.steps-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.step {
  flex: 1;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.step-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 12px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-sub); }
.step-arrow { font-size: 28px; color: var(--text-muted); flex-shrink: 0; }

/* ─── Pricing ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(0,229,160,0.07), var(--card));
  box-shadow: 0 0 40px rgba(0,229,160,0.1);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #07070D;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
}
.plan-badge-yellow { background: var(--yellow); }
.plan-name { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.plan-price { font-size: 40px; font-weight: 900; margin-bottom: 4px; color: var(--accent); }
.plan-per { font-size: 16px; font-weight: 600; color: var(--text-sub); }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--text-sub); }
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.pricing-note strong { color: var(--text); }

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial-stars { font-size: 18px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-dim); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; }
.author-gym { font-size: 12px; color: var(--text-muted); }

/* ─── CTA Section ────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; }
.cta-inner { text-align: center; position: relative; }
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,229,160,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 14px; }
.cta-sub { font-size: 17px; color: var(--text-sub); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { padding-top: 64px; border-top: 1px solid var(--divider); }
.footer-inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}
.footer-brand { flex: 2; min-width: 240px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin: 8px 0 12px; }
.footer-links { display: flex; gap: 48px; flex: 1; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-sub); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--divider);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Blog ───────────────────────────────────────────────── */
.blog-hero { padding: calc(var(--nav-h) + 48px) 0 48px; background: var(--bg-alt); border-bottom: 1px solid var(--divider); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.blog-card:hover { transform: translateY(-3px); border-color: rgba(0,229,160,0.3); }
.blog-card-img { height: 160px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card-body { padding: 20px; }
.blog-category { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-excerpt { font-size: 13px; color: var(--text-sub); line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 12px; }
.blog-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.blog-featured .blog-card-img { height: 100%; min-height: 240px; }

/* ─── Article ────────────────────────────────────────────── */
.article-hero { padding: calc(var(--nav-h) + 48px) 0 48px; background: var(--bg-alt); }
.article-body { max-width: 700px; margin: 0 auto; padding: 48px 24px; }
.article-body h2 { font-size: 24px; margin: 32px 0 14px; }
.article-body h3 { font-size: 19px; margin: 24px 0 10px; }
.article-body p { font-size: 16px; color: var(--text-sub); line-height: 1.8; margin-bottom: 18px; }
.article-body ul { padding-left: 20px; margin-bottom: 18px; }
.article-body li { font-size: 15px; color: var(--text-sub); line-height: 1.7; margin-bottom: 6px; }
.article-body strong { color: var(--text); }

/* ─── Download Page ──────────────────────────────────────── */
.download-page { padding: calc(var(--nav-h) + 64px) 0 64px; }
.download-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.download-card:hover { transform: translateY(-4px); border-color: rgba(0,229,160,0.3); }
.download-icon { font-size: 56px; margin-bottom: 20px; }
.download-card h2 { font-size: 22px; margin-bottom: 10px; }
.download-card p { font-size: 14px; color: var(--text-sub); margin-bottom: 24px; }
.download-meta { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 280px; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .blog-featured { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-toggle { display: block; }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(12, 12, 20, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px;
    border-bottom: 1px solid var(--divider);
    gap: 8px;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: slideDownMenu 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  @keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .nav-links.open li {
    width: 100%;
  }
  
  .nav-links.open li a {
    display: block;
    padding: 14px 16px;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  
  .nav-links.open li a:hover {
    background: rgba(255,255,255,0.03);
    color: var(--accent);
  }
  
  .mobile-cta-li {
    display: block !important;
    margin-top: 16px;
    padding: 0 16px;
  }
  
  .pricing-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .hero-h1 { font-size: 34px; }
  
  .policy-container {
    padding: 24px !important;
    border-radius: var(--radius-md) !important;
  }
  .policy-container h1 {
    font-size: 28px !important;
  }
}

/* ─── Policy Pages ───────────────────────────────────────── */
.policy-page {
  padding: calc(var(--nav-h) + 64px) 0 80px;
}
.policy-container {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.policy-container h1 {
  font-size: 38px;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 900;
}
.policy-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  gap: 16px;
}
.policy-content h2 {
  font-size: 20px;
  margin: 36px 0 16px;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  font-weight: 800;
}
.policy-content p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 20px;
}
.policy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.policy-content li {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 8px;
}
.policy-content strong {
  color: var(--text);
}

/* ─── Contact Page Professional ─────────────────────────── */
.contact-hero {
  padding: calc(var(--nav-h) + 64px) 0 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--divider);
  text-align: center;
}
.contact-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 12px;
}
.contact-hero p {
  color: var(--text-sub);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}
.contact-section {
  padding: 64px 0 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-card h3 {
  font-size: 22px;
  margin: 0 0 28px;
  color: #fff;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  font-size: 22px;
  background: var(--accent-dim);
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,229,160,0.15);
}
.info-detail h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.info-detail p,
.info-detail a {
  margin: 0;
  color: var(--text-sub);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.info-detail a:hover {
  color: var(--accent);
}
.map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  height: 220px;
  background: var(--bg-alt);
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.6) brightness(0.7);
  transition: filter 0.3s;
}
.map-wrapper:hover iframe {
  filter: grayscale(0.3) brightness(0.85);
}

/* ─── Form Inputs (Public Pages) ────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── Features Grid Polish ──────────────────────────────── */
.feature-card {
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: rgba(0, 229, 160, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 20px rgba(0,229,160,0.06);
}

/* ─── About Page Polish ─────────────────────────────────── */
.about-hero {
  padding: calc(var(--nav-h) + 64px) 0 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--divider);
  text-align: center;
}
.about-content {
  padding: 64px 0 80px;
}
.about-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.competency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.competency-card {
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.competency-card:hover {
  border-color: rgba(0,229,160,0.3);
  transform: translateY(-3px);
}
.competency-card h4 {
  color: var(--accent);
  margin: 0 0 8px;
  font-size: 16px;
}
.competency-card p {
  font-size: 14px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.6;
}

/* ─── Blog Hardcoded Polish ─────────────────────────────── */
.blog-category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.blog-pill {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--card-border);
  color: var(--text-sub);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.blog-pill:hover,
.blog-pill.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.blog-card-img {
  position: relative;
  overflow: hidden;
}
.blog-card-img .blog-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,160,0.12), rgba(77,159,255,0.08));
}

/* ─── Responsive Contact ────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}


