/* === DEOWENS CONCEPTS — DESIGN SYSTEM === */

:root {
  --red: #DC2626;
  --red-dark: #B91C1C;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-1: #F5F5F5;
  --gray-2: #E5E5E5;
  --gray-3: #A3A3A3;
  --gray-4: #737373;
  --gray-5: #525252;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

/* === LAYOUT === */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }

/* === NAV === */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 0 24px; height: 80px;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1320px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.nav-logo img { width: 38px; height: 38px; }
.nav-logo span { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-5); position: relative; }
.nav-links a::after { content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--red); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--dark); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--dark); color: var(--white); }
.btn-primary:hover { background: var(--red); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(220,38,38,0.25); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(220,38,38,0.3); }
.btn-outline { border: 2px solid var(--gray-2); color: var(--dark); background: transparent; }
.btn-outline:hover { border-color: var(--dark); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.25); color: var(--white); background: transparent; }
.btn-ghost:hover { background: var(--white); color: var(--dark); }
.btn-lg { padding: 18px 36px; font-size: 16px; border-radius: 12px; }

/* Mobile Toggle */
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; font-size: 22px; }
.nav-mobile { display: none; }

/* === HERO === */
.hero {
  min-height: 100vh; padding: 120px 0 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(220,38,38,0.08); color: var(--red);
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero h1 { font-size: clamp(44px, 5.5vw, 68px); margin-bottom: 24px; }
.hero h1 .accent { color: var(--red); }
.hero-text { font-size: 19px; color: var(--gray-4); line-height: 1.75; margin-bottom: 40px; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; }
.hero-stat h3 { font-size: 44px; font-weight: 800; color: var(--red); }
.hero-stat p { font-size: 14px; color: var(--gray-3); font-weight: 500; margin-top: 4px; }
.hero-visual { position: relative; }
.hero-img {
  width: 100%; height: 580px; object-fit: cover;
  border-radius: 20px; box-shadow: 0 32px 64px rgba(0,0,0,0.12);
}
.hero-float {
  position: absolute; background: var(--white); padding: 18px 22px;
  border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 14px;
  animation: float 6s ease-in-out infinite;
}
.hero-float:nth-child(2) { animation-delay: -3s; }
.hero-float-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hero-float h4 { font-size: 15px; font-family: var(--font-display); }
.hero-float p { font-size: 12px; color: var(--gray-3); margin-top: 2px; }
.float-1 { top: 60px; left: -30px; }
.float-2 { bottom: 80px; right: -30px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* === SECTION HEADER === */
.section-header { max-width: 640px; margin-bottom: 64px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-tag { display: inline-block; padding: 6px 16px; background: rgba(220,38,38,0.08); color: var(--red); border-radius: 100px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.section-header h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--gray-4); line-height: 1.75; }

/* === SERVICE CARDS === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
  padding: 44px 36px; border-radius: 20px;
  border: 1px solid var(--gray-2); background: var(--white);
  transition: var(--transition); position: relative; overflow: hidden;
}
.svc-card::before { content:''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.06); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(220,38,38,0.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 24px; transition: var(--transition);
}
.svc-card:hover .svc-icon { background: var(--red); color: var(--white); }
.svc-card h3 { font-size: 22px; margin-bottom: 14px; }
.svc-card p { font-size: 15px; color: var(--gray-4); line-height: 1.7; margin-bottom: 20px; }
.svc-list { display: flex; flex-direction: column; gap: 10px; }
.svc-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-5); }
.svc-list i { color: var(--red); font-size: 12px; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 600; font-size: 15px; margin-top: 24px; }
.svc-link:hover { gap: 14px; }

/* === ABOUT PREVIEW === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { width: 100%; height: 480px; object-fit: cover; border-radius: 20px; }
.about-img-small {
  position: absolute; bottom: -30px; right: -30px;
  width: 240px; height: 200px; object-fit: cover;
  border-radius: 16px; border: 6px solid var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.about-badge {
  position: absolute; top: 30px; right: 30px;
  background: var(--red); color: var(--white);
  padding: 20px 28px; border-radius: 16px;
  text-align: center; box-shadow: 0 16px 40px rgba(220,38,38,0.3);
}
.about-badge h3 { font-size: 36px; font-weight: 800; }
.about-badge p { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.about-text { font-size: 17px; color: var(--gray-4); line-height: 1.8; margin-bottom: 32px; }
.about-features { display: grid; gap: 20px; margin-bottom: 36px; }
.about-feat { display: flex; gap: 16px; }
.about-feat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(220,38,38,0.08); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.about-feat h4 { font-size: 17px; margin-bottom: 4px; }
.about-feat p { font-size: 14px; color: var(--gray-4); }

/* === PROJECT CARDS === */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.proj-card { border-radius: 20px; overflow: hidden; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: var(--transition); }
.proj-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.proj-img { position: relative; height: 260px; overflow: hidden; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.proj-card:hover .proj-img img { transform: scale(1.06); }
.proj-cat {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px; border-radius: 8px;
  background: var(--red); color: var(--white);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
}
.proj-body { padding: 28px; }
.proj-body h3 { font-size: 20px; margin-bottom: 10px; }
.proj-body p { font-size: 14px; color: var(--gray-4); line-height: 1.6; margin-bottom: 16px; }
.proj-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 600; font-size: 14px; }
.proj-link:hover { gap: 14px; }

/* === PROCESS === */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-card { text-align: center; padding: 40px 28px; border-radius: 20px; border: 1px solid var(--gray-2); transition: var(--transition); }
.process-card:hover { border-color: var(--red); box-shadow: 0 16px 40px rgba(220,38,38,0.06); transform: translateY(-4px); }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  margin: 0 auto 20px;
}
.process-card h3 { font-size: 18px; margin-bottom: 10px; }
.process-card p { font-size: 14px; color: var(--gray-4); line-height: 1.6; }

/* === TESTIMONIALS === */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.test-card { padding: 40px 32px; border-radius: 20px; border: 1px solid var(--gray-2); transition: var(--transition); }
.test-card:hover { border-color: transparent; box-shadow: 0 20px 48px rgba(0,0,0,0.06); transform: translateY(-4px); }
.test-stars { color: #F59E0B; font-size: 16px; display: flex; gap: 4px; margin-bottom: 20px; }
.test-text { font-size: 15px; color: var(--gray-5); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.test-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.test-role { font-size: 13px; color: var(--gray-3); margin-top: 2px; }

/* === CTA BANNER === */
.cta-banner {
  padding: 100px 0; background: var(--dark); color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.15), transparent 70%);
}
.cta-banner h2 { font-size: clamp(36px, 4.5vw, 52px); margin-bottom: 20px; position: relative; }
.cta-banner p { font-size: 19px; color: var(--gray-3); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* === PAGE HERO === */
.page-hero {
  height: 50vh; min-height: 360px; margin-top: 80px;
  display: flex; align-items: center; justify-content: center;
  position: relative; text-align: center; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -1; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.85), rgba(10,10,10,0.75)); }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 16px; font-size: 14px; color: var(--gray-3); }
.page-hero .breadcrumb a { color: var(--white); }
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 19px; color: var(--gray-3); max-width: 600px; margin: 0 auto; }

/* === TEAM === */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { border-radius: 20px; overflow: hidden; background: var(--white); border: 1px solid var(--gray-2); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); border-color: transparent; }
.team-img { height: 300px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 24px; text-align: center; }
.team-info h3 { font-size: 18px; margin-bottom: 4px; }
.team-info p { font-size: 14px; color: var(--red); font-weight: 600; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 5fr 3fr; gap: 48px; }
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; font-family: var(--font);
  font-size: 15px; border: 2px solid var(--gray-2); border-radius: 10px;
  background: var(--white); transition: var(--transition); color: var(--dark);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card { display: flex; gap: 16px; padding: 24px; border-radius: 16px; border: 1px solid var(--gray-2); transition: var(--transition); }
.contact-card:hover { border-color: var(--red); }
.contact-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(220,38,38,0.08); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--gray-4); }
.contact-card a:hover { color: var(--red); }

/* === FOOTER === */
.footer {
  background: var(--dark); color: var(--white);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 16px; }
.footer-logo img { width: 38px; height: 38px; }
.footer-logo span { color: var(--red); }
.footer-desc { font-size: 15px; color: var(--gray-3); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.footer-social a:hover { background: var(--red); transform: translateY(-2px); }
.footer h4 { font-size: 16px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 15px; color: var(--gray-3); }
.footer-links a:hover { color: var(--red); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-3); margin-bottom: 14px; }
.footer-contact i { color: var(--red); margin-top: 3px; }
.footer-contact a:hover { color: var(--red); }
.footer-bottom { padding: 28px 0; text-align: center; font-size: 14px; color: var(--gray-4); }

/* === MAP === */
.map-wrap { border-radius: 20px; overflow: hidden; height: 420px; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* === FAQ === */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
.faq-item { padding: 28px; border: 1px solid var(--gray-2); border-radius: 16px; transition: var(--transition); }
.faq-item:hover { border-color: var(--red); }
.faq-item h4 { font-size: 16px; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.faq-item h4 i { color: var(--red); margin-top: 3px; font-size: 14px; }
.faq-item p { font-size: 14px; color: var(--gray-4); line-height: 1.7; padding-left: 24px; }

/* === DARK SECTION === */
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: var(--gray-3); }
.section-dark .section-header p { color: var(--gray-3); }
.section-dark .svc-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.section-dark .svc-card:hover { border-color: rgba(220,38,38,0.3); box-shadow: 0 24px 48px rgba(0,0,0,0.2); }
.section-dark .svc-card .svc-icon { background: rgba(220,38,38,0.15); }
.section-dark .process-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.section-dark .process-card:hover { border-color: rgba(220,38,38,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

/* === CONTACT CARDS ROW === */
.contact-cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* === BG VARIANTS === */
.bg-gray { background: var(--gray-1); }

/* === SCROLL TOP === */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(220,38,38,0.3);
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 99;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .projects-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .process-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-cards-row { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner > .btn { display: none; }
  .about-img-small { display: none; }
  .hero-float { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .services-grid, .projects-grid, .testimonial-grid, .process-grid, .team-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: 1fr; }
  .hero-btns, .cta-btns { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-stat { text-align: center; }
  .page-hero { min-height: 300px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 16px; }
}

/* Mobile nav overlay */
.nav-mobile.open {
  display: flex; flex-direction: column;
  position: fixed; inset: 0; background: var(--white);
  z-index: 200; padding: 100px 32px 40px;
  gap: 0;
}
.nav-mobile .nav-mob-link {
  display: block; padding: 18px 0; font-size: 20px;
  font-family: var(--font-display); font-weight: 600;
  border-bottom: 1px solid var(--gray-2);
}
.nav-mobile .nav-mob-link:hover { color: var(--red); }
.nav-mobile .nav-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 28px; color: var(--dark);
}

/* === FILTER BAR (Projects) === */
.filter-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 24px; border-radius: 100px;
  border: 2px solid var(--gray-2); background: transparent;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--gray-5); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }

/* === STATS BAR === */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 48px 0; }
.stat-box { text-align: center; }
.stat-box h3 { font-size: 44px; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.stat-box p { font-size: 14px; color: var(--gray-4); font-weight: 500; }

/* === MISSION/VISION CARDS === */
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mv-card { padding: 44px 32px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }
.mv-card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(220,38,38,0.15); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 24px;
}
.mv-card h3 { margin-bottom: 16px; }
.mv-card ul { display: grid; gap: 10px; margin-top: 12px; }
.mv-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--gray-3); }
.mv-card ul li i { color: var(--red); margin-top: 4px; font-size: 12px; }

/* === FEATURE CARDS (Why Choose) === */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feat-card {
  text-align: center; padding: 40px 28px; border-radius: 20px;
  border: 1px solid var(--gray-2); transition: var(--transition);
}
.feat-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.feat-card-num { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: rgba(220,38,38,0.1); line-height: 1; }
.feat-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(220,38,38,0.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 20px;
}
.feat-card h3 { font-size: 18px; margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--gray-4); line-height: 1.7; }

/* === SERVICE DETAIL SECTIONS === */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.svc-detail + .svc-detail { margin-top: 80px; padding-top: 80px; border-top: 1px solid var(--gray-2); }
.svc-detail-img { border-radius: 20px; height: 440px; object-fit: cover; width: 100%; }
.svc-detail h3 { font-size: 32px; margin-bottom: 16px; }
.svc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.svc-feat { display: flex; gap: 10px; align-items: flex-start; }
.svc-feat i { color: var(--red); margin-top: 4px; font-size: 14px; }
.svc-feat div strong { display: block; font-size: 15px; margin-bottom: 2px; }
.svc-feat div p { font-size: 13px; color: var(--gray-4); }

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 1024px) {
  .svc-detail { grid-template-columns: 1fr; }
  .mv-grid, .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mv-grid, .features-grid, .stats-bar { grid-template-columns: 1fr; }
  .svc-features { grid-template-columns: 1fr; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 8px 18px; font-size: 13px; }
}
