/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, Arial, sans-serif; background: #0a0a0a; color: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Sticky Header ── */
.site-header { position: sticky; top: 0; z-index: 1000; }

/* ── Top Bar ── */
.top-bar {
  background: #111;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 6px 24px;
  border-bottom: 1px solid #1e1e1e;
}
.top-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: opacity 0.2s;
}
.top-btn:hover { opacity: 0.85; }
.call-btn { background: #00aaff; color: #fff; }
.contact-btn { background: #1e1e1e; color: #ccc; border: 1px solid #333; }

/* ── Navbar ── */
.navbar {
  background: #0d0d0d;
  border-bottom: 1px solid #1e1e1e;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 40px; width: auto; }
.logo-name { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.logo-name span { color: #00aaff; }
.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom-color: #00aaff; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  padding: 12px 24px 20px;
  gap: 4px;
}
.nav-mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #aaa;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover, .nav-mobile-menu a.active { color: #00aaff; }
.nav-mobile-menu.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1a2e 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,170,255,0.08) 0%, transparent 70%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,170,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,170,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00aaff;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 span { color: #00aaff; }
.hero-sub {
  font-size: 18px;
  color: #888;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btn-primary {
  background: #00aaff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.hero-btn-primary:hover { background: #0088cc; transform: translateY(-2px); }
.hero-btn-secondary {
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  border: 2px solid #333;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.hero-btn-secondary:hover { border-color: #00aaff; color: #00aaff; transform: translateY(-2px); }

/* ── Stats Bar ── */
.stats-bar {
  background: #111;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-num { font-size: 40px; font-weight: 900; color: #00aaff; line-height: 1; }
.stat-label { font-size: 13px; color: #666; margin-top: 6px; font-weight: 500; }

/* ── Section Shared ── */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 48px;
}
.section-header { text-align: center; margin-bottom: 52px; }

/* ── Services Section ── */
.services-section {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #00aaff;
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover { border-color: #2a2a2a; transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 36px; margin-bottom: 20px; }
.service-card h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 24px; }
.service-link-btn {
  font-size: 13px;
  font-weight: 700;
  color: #00aaff;
  border: 1px solid #00aaff33;
  padding: 8px 20px;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.service-link-btn:hover { background: #00aaff; color: #fff; }

/* ── About Section ── */
.about-section {
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 96px 24px;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; letter-spacing: -1px; margin-bottom: 20px; }
.about-text h2 span { color: #00aaff; }
.about-text p { font-size: 15px; color: #777; line-height: 1.8; margin-bottom: 16px; }
.about-highlights { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.about-highlight { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #ccc; font-weight: 600; }
.about-highlight::before { content: '✓'; color: #00aaff; font-weight: 900; font-size: 16px; flex-shrink: 0; }
.about-btn {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}
.about-btn:hover { background: #0088cc; transform: translateY(-2px); }
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
  border-radius: 20px;
  border: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #00aaff;
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,170,255,0.3);
}
.about-badge-num { font-size: 36px; font-weight: 900; line-height: 1; }
.about-badge-label { font-size: 12px; font-weight: 600; opacity: 0.9; margin-top: 4px; }

/* ── Portfolio Section ── */
.portfolio-section { padding: 96px 24px; max-width: 1200px; margin: 0 auto; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.portfolio-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.portfolio-card:hover { border-color: #333; transform: translateY(-4px); }
.portfolio-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e, #0d1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid #1e1e1e;
}
.portfolio-info { padding: 24px; }
.portfolio-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00aaff;
  margin-bottom: 8px;
}
.portfolio-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.portfolio-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #0d1a2e 0%, #0a0a0a 100%);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 80px 24px;
  text-align: center;
}
.cta-section h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
.cta-section p { font-size: 16px; color: #666; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btn {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover { background: #0088cc; transform: translateY(-2px); }

/* ── Footer ── */
footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: #555; line-height: 1.7; max-width: 280px; margin-top: 8px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: #555; transition: color 0.2s; }
.footer-col ul li a:hover { color: #00aaff; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #444;
}
.footer-bottom a { color: #444; transition: color 0.2s; }
.footer-bottom a:hover { color: #00aaff; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1a2e 100%);
  padding: 80px 24px;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; letter-spacing: -1.5px; }
.page-hero p { font-size: 17px; color: #666; margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }
.page-hero .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #00aaff; margin-bottom: 16px; }

/* ── Blog Cards ── */
.blog-section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: #333; transform: translateY(-4px); }
.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e, #0d1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid #1e1e1e;
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 12px; color: #555; margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.blog-card p { font-size: 13px; color: #666; line-height: 1.6; flex: 1; }
.blog-read-more { margin-top: 20px; font-size: 13px; font-weight: 700; color: #00aaff; }
.blog-read-more:hover { text-decoration: underline; }
.blog-empty { text-align: center; color: #555; padding: 60px 0; font-size: 16px; grid-column: 1/-1; }

/* ── Contact Page ── */
.contact-section { padding: 80px 24px; max-width: 900px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 900; margin-bottom: 16px; }
.contact-info p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong { display: block; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.contact-detail-text span, .contact-detail-text a { font-size: 13px; color: #666; }
.contact-detail-text a:hover { color: #00aaff; }
.contact-form-wrap {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 20px;
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #aaa; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #00aaff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1a1a1a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  width: 100%;
  background: #00aaff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.submit-btn:hover { background: #0088cc; transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 24px; color: #00aaff; font-weight: 700; font-size: 16px; }

/* ── About Page ── */
.about-page { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.about-page-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
  border-radius: 20px;
  border: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}
.about-page-text h2 { font-size: 36px; font-weight: 900; letter-spacing: -1px; margin-bottom: 20px; }
.about-page-text h2 span { color: #00aaff; }
.about-page-text p { font-size: 15px; color: #777; line-height: 1.8; margin-bottom: 16px; }
.credential-list { display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.credential-item {
  background: #111;
  border: 1px solid #1e1e1e;
  border-left: 3px solid #00aaff;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}
.credential-item strong { display: block; color: #fff; font-size: 15px; margin-bottom: 2px; }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 48px; }
.skill-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.skill-card:hover { border-color: #00aaff33; }
.skill-icon { font-size: 32px; margin-bottom: 12px; }
.skill-card h4 { font-size: 14px; font-weight: 700; color: #fff; }

/* ── Services Page ── */
.services-page { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid #1a1a1a;
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
  border-radius: 16px;
  border: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}
.service-detail-text .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #00aaff; margin-bottom: 12px; }
.service-detail-text h2 { font-size: 32px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 16px; }
.service-detail-text p { font-size: 15px; color: #777; line-height: 1.8; margin-bottom: 16px; }
.service-detail-btn {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  margin-top: 8px;
  transition: background 0.2s;
}
.service-detail-btn:hover { background: #0088cc; }

/* ── Portfolio Page ── */
.portfolio-page { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.portfolio-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

/* ── Blog Post ── */
.post-wrap { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.post-wrap .post-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #00aaff; margin-bottom: 16px; }
.post-wrap h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; }
.post-meta { font-size: 13px; color: #555; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid #1a1a1a; }
.post-body { font-size: 16px; color: #aaa; line-height: 1.9; }
.post-body h2 { font-size: 24px; font-weight: 800; color: #fff; margin: 40px 0 16px; }
.post-body p { margin-bottom: 20px; }
.post-body img { width: 100%; border-radius: 12px; margin: 32px 0; border: 1px solid #1e1e1e; }
.post-thumb-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #111, #1a1a2e);
  border-radius: 16px;
  margin-bottom: 40px;
  border: 1px solid #1e1e1e;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.post-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 40px; transition: color 0.2s; }
.back-link:hover { color: #00aaff; }

/* ── Login Page ── */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #0a0a0a;
}
.login-box {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.login-logo { font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.login-logo span { color: #00aaff; }
.login-tagline { font-size: 13px; color: #555; margin-bottom: 36px; }
.login-box h2 { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.login-btn {
  width: 100%;
  background: #00aaff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}
.login-btn:hover { background: #0088cc; }
.login-btn img { width: 20px; height: 20px; }
.login-error { font-size: 13px; color: #ff4444; margin-top: 16px; display: none; }

/* ── 404 Page ── */
.notfound-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 24px;
}
.notfound-wrap h1 { font-size: 120px; font-weight: 900; color: #1a1a1a; line-height: 1; letter-spacing: -4px; }
.notfound-wrap h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.notfound-wrap p { font-size: 16px; color: #555; margin-bottom: 32px; }
.notfound-btn {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  transition: background 0.2s;
}
.notfound-btn:hover { background: #0088cc; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { order: -1; }
  .about-badge { bottom: 10px; right: 10px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btn-primary, .hero-btn-secondary { text-align: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
