/* ===========================
   GROW MEDIA — style.css
   Blue & Sky Blue Theme
=========================== */

:root {
  --blue-deep:    #1a3a8f;
  --blue-main:    #1e4fc8;
  --blue-mid:     #2e6be6;
  --blue-light:   #4e9af0;
  --sky:          #7dc4f8;
  --sky-pale:     #c8e8ff;
  --white:        #ffffff;
  --off-white:    #f4f8ff;
  --text-dark:    #0d1f44;
  --text-body:    #334e82;
  --text-muted:   #7a94c4;
  --border:       rgba(78, 154, 240, 0.15);
  --shadow-blue:  0 8px 32px rgba(30, 79, 200, 0.18);
  --shadow-card:  0 4px 24px rgba(30, 79, 200, 0.10);
  --gradient-hero: linear-gradient(135deg, #0a1e5e 0%, #0f3490 40%, #1a5cb8 100%);
  --gradient-btn:  linear-gradient(135deg, var(--blue-main), var(--blue-light));
  --gradient-card: linear-gradient(135deg, rgba(30,79,200,0.08), rgba(78,154,240,0.04));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 8px; height: 8px;
  background: var(--blue-main);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid var(--blue-light);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .12s ease;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* ─── SCROLL ANIMATION ─── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CONTAINER ─── */
.container {
  width: 90%; max-width: 1200px;
  margin: 0 auto;
}

/* ─── TYPOGRAPHY ─── */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}
.section-label.light { color: var(--sky-pale); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.section-desc {
  font-size: 16px; color: var(--text-body);
  line-height: 1.8; max-width: 540px;
}
.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gradient-btn);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(30, 79, 200, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 79, 200, 0.45);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--sky);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(125, 196, 248, 0.4);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-outline:hover { color: var(--white); border-color: var(--white); }
.btn-outline .arrow { transition: transform .2s; }
.btn-outline:hover .arrow { transform: translateX(4px); }

/* ─── HEADER ─── */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .3s, box-shadow .3s;
  padding: 0;
}
#header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(30,79,200,0.10);
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 60px;
  max-width: 1400px; margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 900;
  letter-spacing: 1px;
}
.logo-box {
  background: var(--blue-deep);
  color: var(--white);
  padding: 4px 10px;
  font-style: italic;
}
.logo-media {
  color: var(--blue-light);
  padding: 4px 8px;
  font-style: italic;
}
#header.scrolled .logo-media { color: var(--blue-main); }

.nav-links {
  list-style: none; display: flex; gap: 40px; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--sky);
  transition: width .3s;
}
.nav-links a:hover { color: var(--sky); }
.nav-links a:hover::after { width: 100%; }

#header.scrolled .nav-links a { color: var(--text-body); }
#header.scrolled .nav-links a:hover { color: var(--blue-main); }
#header.scrolled .nav-links a::after { background: var(--blue-main); }

.nav-cta {
  background: var(--gradient-btn) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(30,79,200,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}
#header.scrolled .hamburger span { background: var(--text-dark); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--blue-deep);
  z-index: 190; display: none;
  align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 24px 0; }
.mobile-link {
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 60px 80px;
  gap: 60px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue-light), transparent);
  top: -200px; right: -100px;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--sky), transparent);
  bottom: -100px; left: 10%;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(78,154,240,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,154,240,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  flex: 1; position: relative; z-index: 2;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(78,154,240,0.15);
  border: 1px solid rgba(78,154,240,0.3);
  color: var(--sky-pale);
  font-size: 13px; letter-spacing: 1px;
  padding: 8px 18px; border-radius: 40px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 8px var(--sky);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sky), var(--sky-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(200, 232, 255, 0.75);
  font-size: 15px; line-height: 1.9;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  flex: 0 0 auto; position: relative; z-index: 2;
  width: 300px;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(125,196,248,0.2);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  padding: 24px;
  position: absolute;
}
.card-main {
  width: 240px;
  top: 40px; left: 0;
  display: flex; align-items: center; gap: 16px;
}
.card-icon { font-size: 32px; }
.card-icon.small { font-size: 20px; }
.card-text strong {
  display: block; font-size: 12px; color: var(--sky-pale);
  margin-bottom: 4px; font-weight: 500;
}
.card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--white);
}
.card-num span { font-size: 16px; }

.card-sub1 {
  top: 160px; left: 140px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--sky-pale); white-space: nowrap;
  padding: 14px 20px;
}
.card-sub2 {
  top: 230px; left: 10px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--sky-pale); white-space: nowrap;
  padding: 14px 20px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  color: rgba(200,232,255,0.5);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 40px; height: 1px;
  background: rgba(125,196,248,0.4);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%; right: 0; bottom: 0;
  background: var(--sky);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ─── TICKER ─── */
.ticker {
  background: linear-gradient(90deg, var(--blue-main), var(--blue-mid));
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}
.ticker-track span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0 32px;
}
.ticker-track span::before { content: '◆  '; color: var(--sky); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-btn);
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(78,154,240,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(145deg, var(--blue-main), var(--blue-mid));
  color: var(--white);
  border: none;
}
.service-card.featured::before { display: none; }
.service-card.featured h3,
.service-card.featured p { color: rgba(255,255,255,0.9); }

.service-icon { font-size: 36px; margin-bottom: 20px; }
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.service-card p {
  font-size: 14px; line-height: 1.8;
  color: var(--text-body);
}
.service-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin: 16px 0 8px;
}
.service-link {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--blue-main);
  margin-top: 20px;
  transition: color .2s;
}
.service-card.featured .service-link { color: var(--sky-pale); }
.service-link:hover { color: var(--blue-light); }

/* ─── STATS ─── */
.stats-section {
  background: var(--gradient-hero);
  padding: 80px 0;
}
.stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1; text-align: center; padding: 20px;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num span { font-size: 0.5em; color: var(--sky); }
.stat-item p {
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,232,255,0.6);
}
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(125,196,248,0.2);
}

/* ─── WORK SLIDER ─── */
.work { padding: 120px 0; overflow: hidden; }

.work-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.slider-controls {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 8px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--blue-main);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.slider-btn:hover {
  background: var(--blue-main);
  border-color: var(--blue-main);
  color: var(--white);
  transform: scale(1.08);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer; padding: 0;
  transition: background .3s, width .3s;
}
.slider-dot.active {
  background: var(--blue-main);
  width: 24px; border-radius: 4px;
}

/* Track */
.slider-track-wrap {
  padding-left: calc((100% - min(1200px, 90%)) / 2);
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  cursor: grab;
  user-select: none;
}
.slider-track:active { cursor: grabbing; }

.slide-item {
  flex: 0 0 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.slide-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

.slide-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #ddeeff, #b8d4f8);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.slide-item:hover .slide-thumb {
  background: linear-gradient(135deg, #c5d9f8, #96bef5);
}
.slide-emoji { font-size: 56px; }

.slide-info { padding: 24px 28px 28px; }
.work-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.slide-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4; margin-bottom: 12px;
}
.work-result {
  font-size: 14px; color: var(--text-muted);
}
.work-result strong { color: var(--blue-main); font-weight: 700; }

/* ─── ABOUT ─── */
.about { padding: 120px 0; background: var(--off-white); }
.about-inner {
  display: flex; gap: 80px; align-items: center;
}
.about-text { flex: 1; }
.about-text p {
  font-size: 15px; line-height: 1.9;
  color: var(--text-body); margin-bottom: 32px;
}
.about-list {
  list-style: none; margin-bottom: 40px;
}
.about-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-body);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gradient-btn);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}

.about-visual { flex: 0 0 380px; }
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.about-logo-wrap {
  display: inline-flex; align-items: center;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px; font-weight: 900;
  font-style: italic;
}
.about-logo-box {
  background: var(--blue-deep);
  color: var(--white);
  padding: 5px 12px;
}
.about-logo-media { color: var(--blue-light); padding: 5px 8px; }

.about-tagline {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 32px;
}
.about-contact { text-align: left; }
.contact-row {
  display: flex; gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.contact-label {
  color: var(--text-muted); flex: 0 0 80px;
  font-weight: 500;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  background: var(--gradient-hero);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; pointer-events: none; }
.contact-orb {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(78,154,240,0.2), transparent);
  top: -200px; right: -200px;
}
.contact-inner { position: relative; z-index: 2; }
.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; line-height: 1.1;
  color: var(--white); letter-spacing: -1px;
  margin-bottom: 20px;
}
.contact-desc {
  font-size: 15px; color: rgba(200,232,255,0.7);
  line-height: 1.8; max-width: 480px;
  margin-bottom: 48px;
}
.contact-form { max-width: 680px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.form-input, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(125,196,248,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(200,232,255,0.4);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: rgba(255,255,255,0.12);
}
.form-textarea {
  display: block; resize: vertical;
  min-height: 120px; margin-bottom: 20px;
}
.btn-submit {
  background: var(--white);
  color: var(--blue-main);
  padding: 16px 40px;
  border: none; border-radius: 6px; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.contact-info {
  display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.info-item {
  color: rgba(200,232,255,0.7);
  font-size: 14px;
  transition: color .2s;
}
.info-item:hover { color: var(--sky); }

/* ─── FOOTER ─── */
.footer {
  background: var(--text-dark);
  padding: 60px 0 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: var(--text-muted); font-size: 13px; margin-top: 8px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: color .2s;
}
.footer-links a:hover { color: var(--sky); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px; 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.5);
  font-size: 12px; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--sky); color: var(--sky); }
.footer-biz {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0 12px;
    margin-bottom: 12px;
}
.footer-biz p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    line-height: 2;
    text-align: center;
}
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    text-align: center;
    padding-bottom: 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-item.big { grid-row: span 1; }
  .about-inner { flex-direction: column; gap: 48px; }
  .about-visual { flex: none; width: 100%; max-width: 480px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; padding: 100px 24px 80px; gap: 40px; }
  .hero-visual { display: none; }
  section { padding: 80px 0; }
  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 50%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-section { padding: 80px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .scroll-hint { left: 24px; }
}