/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: #fff;
  color: #45495f;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: none; font-family: inherit; }

:root {
  --bg:         #ffffff;
  --bg-soft:    #f7f7ff;
  --bg-lavender:#f0f0ff;
  --primary:    #7687e1;
  --primary-dark:#5a6cd4;
  --primary-light:#e8ebff;
  --text:       #45495f;
  --text-muted: #868a93;
  --text-light: #b0b4c1;
  --border:     #e9eaf4;
  --white:      #ffffff;
  --font: 'Noto Sans KR', sans-serif;
}

/* ── CURSOR ── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--primary); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(118,135,225,0.5); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
}

/* ── LOADER ── */
#novo-loader {
  position: fixed; inset: 0; background: #fff;
  z-index: 99999; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 28px;
}
.loader-logo {
  font-size: 32px; font-weight: 800;
  color: var(--text); display: flex; align-items: center; gap: 4px;
  letter-spacing: -0.5px;
}
.loader-logo .dot-accent { color: var(--primary); }
.loader-bar-wrap { width: 160px; height: 3px; background: var(--border); border-radius: 99px; overflow: hidden; }
.loader-bar { height: 100%; background: var(--primary); width: 0%; border-radius: 99px; }
.loader-count { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(118,135,225,0.08); }
.nav-logo {
  font-size: 22px; font-weight: 800;
  color: var(--text); letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 2px;
}
.nav-logo .o { color: var(--primary); }
.site-nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
.site-nav ul li a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color 0.25s; position: relative; padding-bottom: 2px;
}
.site-nav ul li a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary);
  border-radius: 99px; transition: width 0.3s ease;
}
.site-nav ul li a:hover { color: var(--primary); }
.site-nav ul li a:hover::after { width: 100%; }
.nav-cta {
  background: var(--primary) !important; color: #fff !important;
  padding: 10px 22px !important; border-radius: 99px !important;
  font-weight: 700 !important; font-size: 13px !important;
  transition: background 0.25s, transform 0.2s !important;
  box-shadow: 0 4px 14px rgba(118,135,225,0.35) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px) !important; }

/* ── HERO ── */
.hero-section { height: 100vh; position: relative; overflow: hidden; }
.hero-swiper { height: 100%; }
.swiper-slide { position: relative; overflow: hidden; }

.slide-bg { position: absolute; inset: 0; z-index: 0; }
.slide-bg-1 {
  background: linear-gradient(135deg, #f0f0ff 0%, #e8ebff 40%, #fff 70%);
}
.slide-bg-2 {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 40%, #fff 70%);
}
.slide-bg-3 {
  background: linear-gradient(135deg, #f0fff8 0%, #e0f7ef 40%, #fff 70%);
}

/* Hero 장식 요소 */
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none; z-index: 1;
}

.slide-content {
  position: absolute; top: 50%; left: 60px;
  transform: translateY(-50%);
  z-index: 3; max-width: 580px;
}
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  padding: 6px 16px; border-radius: 99px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 24px; opacity: 0; transform: translateY(10px);
}
.slide-tag svg { width: 14px; height: 14px; }
.slide-title {
  font-size: clamp(38px, 4.5vw, 68px); font-weight: 800;
  line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 18px;
}
.slide-title .line { display: block; overflow: hidden; }
.slide-title .line span { display: block; transform: translateY(110%); }
.slide-title em { color: var(--primary); font-style: normal; }
.slide-sub {
  font-size: 16px; color: var(--text-muted); line-height: 1.7;
  font-weight: 400; margin-bottom: 36px; max-width: 420px;
  opacity: 0; transform: translateY(12px);
}
.slide-btns {
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(12px);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 14px 28px; border-radius: 99px;
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  box-shadow: 0 6px 20px rgba(118,135,225,0.35);
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(118,135,225,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 13px 24px; border-radius: 99px;
  border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 600;
  transition: border-color 0.25s, color 0.25s;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* Hero 우측 장식 카드 (슬라이드 1) */
.hero-cards {
  position: absolute; right: 80px; top: 50%;
  transform: translateY(-50%); z-index: 3;
  display: flex; flex-direction: column; gap: 16px;
  pointer-events: none;
}
.hero-mini-card {
  background: #fff; border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(118,135,225,0.12);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  min-width: 220px;
  opacity: 0; transform: translateX(30px);
}
.hmc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hmc-1 .hmc-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.hmc-2 .hmc-icon { background: linear-gradient(135deg, #ff0000, #c00); }
.hmc-3 .hmc-icon { background: #000; }
.hmc-label { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-bottom: 2px; }
.hmc-value { font-size: 16px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.hmc-grow { font-size: 11px; color: #22c55e; font-weight: 700; }

/* Swiper pagination */
.hero-section .swiper-pagination {
  bottom: 32px !important;
}
.hero-section .swiper-pagination-bullet {
  background: var(--border); opacity: 1; width: 8px; height: 8px;
  border-radius: 99px; transition: width 0.3s, background 0.3s;
}
.hero-section .swiper-pagination-bullet-active {
  background: var(--primary); width: 24px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg-lavender); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 60px;
  display: flex; align-items: center; justify-content: center; gap: 0;
  overflow: hidden;
}
.trust-marquee { display: flex; animation: marqueeScroll 30s linear infinite; white-space: nowrap; }
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 36px; flex-shrink: 0;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
}
.trust-item svg { color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMONS ── */
.section-wrap { padding: 100px 60px; }
.section-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light); color: var(--primary);
  padding: 5px 14px; border-radius: 99px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
  color: var(--text); line-height: 1.25; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-title em { color: var(--primary); font-style: normal; }
.section-sub { font-size: 15px; color: var(--text-muted); line-height: 1.75; max-width: 460px; }

/* ── SERVICES ── */
.services-section { background: var(--bg-soft); }
.services-section .section-wrap { padding-bottom: 100px; }
.services-head { text-align: center; margin-bottom: 60px; }
.services-head .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.service-card {
  background: #fff; border-radius: 20px;
  border: 1.5px solid var(--border);
  padding: 36px 28px 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(118,135,225,0.15); }
.service-card:hover::before { opacity: 1; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--primary-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px; position: relative; z-index: 1;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .svc-icon { background: var(--primary); transform: scale(1.08); }
.service-card:hover .svc-icon svg { color: #fff; }
.svc-icon svg { color: var(--primary); width: 26px; height: 26px; transition: color 0.3s; }
.svc-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 10px; position: relative; z-index: 1; letter-spacing: -0.02em; }
.svc-desc { font-size: 13px; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; position: relative; z-index: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; position: relative; z-index: 1; }
.svc-tag { font-size: 11px; font-weight: 600; color: var(--primary); background: var(--primary-light); padding: 3px 10px; border-radius: 99px; }

/* ── STATS ── */
.stats-section { background: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 60px 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(36px,4vw,60px); font-weight: 800;
  color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px;
}
.stat-suffix { font-size: 0.65em; font-weight: 700; opacity: 0.85; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 400; }

/* ── PORTFOLIO ── */
.portfolio-section { background: #fff; }
.portfolio-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.portfolio-scroll-wrap { overflow-x: auto; padding-bottom: 16px; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; }
.portfolio-scroll-wrap::-webkit-scrollbar { display: none; }
.portfolio-scroll-wrap:active { cursor: grabbing; }
.portfolio-track { display: flex; gap: 20px; width: max-content; }
.portfolio-card {
  width: 320px; flex-shrink: 0;
  background: #fff; border-radius: 20px;
  border: 1.5px solid var(--border); overflow: hidden;
  transition: border-color 0.3s, transform 0.35s, box-shadow 0.35s;
}
.portfolio-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(118,135,225,0.13); }
.portfolio-thumb {
  width: 100%; height: 200px; overflow: hidden; position: relative;
}
.portfolio-thumb-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-thumb-bg { transform: scale(1.05); }
.pt-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.pt-2 { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); }
.pt-3 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.pt-4 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.pt-5 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.portfolio-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  padding: 4px 12px; border-radius: 99px;
  font-size: 11px; font-weight: 700; color: var(--text);
}
.portfolio-info { padding: 22px 22px 26px; }
.portfolio-cat { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.portfolio-title { font-size: 16px; font-weight: 800; color: var(--text); line-height: 1.4; letter-spacing: -0.02em; margin-bottom: 6px; }
.portfolio-result { font-size: 12px; color: var(--text-muted); }
.portfolio-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.portfolio-year { font-size: 11px; color: var(--text-light); }
.portfolio-link {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s;
}
.portfolio-card:hover .portfolio-link { background: var(--primary); color: #fff; }

/* ── PROCESS ── */
.process-section { background: var(--bg-soft); }
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 60px; position: relative; }
.process-connector { position: absolute; top: 26px; left: 10%; right: 10%; height: 1px; background: var(--border); }
.process-step { padding: 0 16px; text-align: center; }
.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  font-size: 14px; font-weight: 800; color: var(--text-muted);
  transition: all 0.35s;
}
.process-step:hover .step-circle { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(118,135,225,0.35); }
.step-name { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* ── REVIEWS ── */
.reviews-section { background: #fff; }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.reviews-summary {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 16px 24px; margin-bottom: 36px;
}
.reviews-score { font-size: 48px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.reviews-score-detail { display: flex; flex-direction: column; gap: 4px; }
.review-stars-big { color: #fbbf24; font-size: 20px; letter-spacing: 2px; }
.reviews-count { font-size: 13px; color: var(--text-muted); }
.testimonial-swiper { overflow: visible !important; }
.testimonial-swiper .swiper-slide { width: 360px !important; opacity: 0.4; transition: opacity 0.4s; }
.testimonial-swiper .swiper-slide-active, .testimonial-swiper .swiper-slide-next { opacity: 1; }
.review-card {
  background: var(--bg-soft); border-radius: 20px;
  border: 1.5px solid var(--border); padding: 28px 26px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover { border-color: var(--primary); box-shadow: 0 8px 32px rgba(118,135,225,0.1); }
.review-stars { color: #fbbf24; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; line-height: 1.8; color: var(--text); margin-bottom: 20px; font-weight: 400; }
.review-text em { color: var(--primary); font-style: normal; font-weight: 700; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; }
.av-1 { background: linear-gradient(135deg,#7687e1,#5a6cd4); }
.av-2 { background: linear-gradient(135deg,#f97316,#ea580c); }
.av-3 { background: linear-gradient(135deg,#8b5cf6,#7c3aed); }
.av-4 { background: linear-gradient(135deg,#10b981,#059669); }
.review-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.review-company { font-size: 11px; color: var(--text-muted); }
.swiper-nav { display: flex; gap: 8px; }
.swiper-btn {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.25s;
  background: #fff;
}
.swiper-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #7687e1 0%, #5a6cd4 50%, #4c5fc7 100%);
  padding: 100px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18); color: #fff;
  padding: 6px 16px; border-radius: 99px;
  font-size: 12px; font-weight: 700; margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.cta-title {
  font-size: clamp(32px, 5vw, 64px); font-weight: 800;
  color: #fff; line-height: 1.2; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 420px; margin: 0 auto 44px; line-height: 1.7; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary);
  padding: 15px 32px; border-radius: 99px;
  font-size: 14px; font-weight: 800; letter-spacing: -0.01em;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.2); color: var(--primary-dark); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 28px; border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 14px; font-weight: 600;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--text); padding: 72px 60px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; margin-bottom: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.5px; }
.footer-logo .o { color: var(--primary); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.85; max-width: 220px; font-weight: 300; }
.footer-col-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.25s; font-weight: 300; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.85; font-weight: 300; }
.footer-contact a { color: var(--primary); }
.footer-contact a:hover { color: #a0acf0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-sns { display: flex; gap: 10px; }
.footer-sns a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: all 0.25s;
}
.footer-sns a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── REVEAL ── */
.r-up    { opacity: 0; transform: translateY(40px); }
.r-left  { opacity: 0; transform: translateX(-40px); }
.r-right { opacity: 0; transform: translateX(40px); }
.r-scale { opacity: 0; transform: scale(0.92); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(2,1fr); } .hero-cards { display: none; } }
@media (max-width: 1024px) {
  #site-header { padding: 0 32px; }
  .section-wrap { padding: 80px 32px; }
  .trust-bar { padding: 16px 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .process-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer.site-footer { padding: 60px 32px 28px; }
  .cta-section { padding: 80px 32px; }
  .portfolio-head { padding: 0; }
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; } a, button { cursor: pointer; }
  #site-header { padding: 0 20px; }
  .site-nav ul { gap: 16px; }
  .nav-cta { display: none; }
  .section-wrap { padding: 60px 20px; }
  .trust-bar { padding: 14px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 40px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  footer.site-footer { padding: 56px 20px 28px; }
  .cta-section { padding: 64px 20px; }
  .slide-content { left: 24px; right: 24px; max-width: 100%; }
  .hero-cards { display: none; }
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .portfolio-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
