
  :root {
    --navy-900: #0a1628;
    --navy-800: #0f1e36;
    --navy-700: #16294a;
    --navy-600: #1e3a66;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --accent: #fbbf24;
    --text-primary: #0a1628;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.04);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.06);
    --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.08);
    --shadow-cyan: 0 8px 24px rgba(34, 211, 238, 0.25);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; scroll-padding-top: 80px; }

  body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;
    color: var(--text-primary);
    background: var(--surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }


  /* ===== Header ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: all 0.3s ease;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: var(--navy-900);
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--navy-700), var(--cyan-500));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
  }

  .logo img{
    width: 205px;
  }

  .header-info {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
  }

  .info-item strong {
    color: var(--navy-900);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
  }

  .info-icon {
    width: 32px;
    height: 32px;
    background: var(--surface-alt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-600);
  }

  @media (max-width: 768px) {
    .header-inner { height: 60px; }
    .header-info { gap: 8px; }
    .info-item .info-text { display: none; }
    .info-item strong { font-size: 14px; }

    .info-item:has(.info-text) {
      display: none;  /* 영업시간 숨김 */
    }
  }


  /* ===== Hero ===== */
  .hero {
    position: relative;
    padding: 140px 0 100px;
    background:
      linear-gradient(105deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.78) 50%,
        rgba(10, 22, 40, 0.6) 100%),
      radial-gradient(ellipse at top right, rgba(34, 211, 238, 0.15), transparent 50%),
      url('../img/bg.jpeg') center/cover;
    color: white;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan-400);
    margin-bottom: 24px;
  }

  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan-400);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--cyan-400);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    
  }

  .hero h1 .highlight {
    color: var(--cyan-400);
    position: relative;
    display: inline-block;
  }

  .hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan-400);
    opacity: 0.5;
  }

  .hero p.sub {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 36px;
  }

  .hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
  }

  .btn-primary {
    background: var(--cyan-500);
    color: var(--navy-900);
    box-shadow: var(--shadow-cyan);
  }

  .btn-primary:hover {
    background: var(--cyan-400);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 211, 238, 0.4);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--cyan-400);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .stat-label {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 6px;
  }

  /* Hero visual */
  .hero-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin-left: auto;
  }

  .visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 20px;
  }

  .visual-card.main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(8, 145, 178, 0.1));
    border: 1px solid rgba(34, 211, 238, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .visual-icon-big {
    font-size: 96px;
    line-height: 1;
  }

  .visual-card.float-1 {
    top: 8%;
    right: 5%;
    width: 38%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 4s ease-in-out infinite;
  }

  .visual-card.float-2 {
    bottom: 10%;
    left: 0;
    width: 42%;
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.25);
    animation: float 4s ease-in-out infinite 1s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .visual-card .vc-label {
    font-size: 11px;
    color: var(--cyan-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .visual-card .vc-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
  }

  @media (max-width: 900px) {
    .hero { padding: 110px 0 80px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 360px; margin: 0 auto; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
  }

  /* ===== Section base ===== */
  section { padding: 100px 0; }

  .section-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan-600);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
  }

  /* ===== Services ===== */
  .services {
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services .container {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-400), var(--cyan-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-500);
  box-shadow: 0 20px 40px -10px rgba(6, 182, 212, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-featured {
  background: linear-gradient(180deg, white 0%, #f0fbfd 100%);
  border-color: rgba(6, 182, 212, 0.3);
}

.service-card-featured::before {
  transform: scaleX(1);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--cyan-500);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.service-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 50%, var(--cyan-600) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow:
    0 8px 20px -4px rgba(10, 22, 40, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.35s ease;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-icon-glow {
  position: absolute;
  inset: 0;
  background: var(--cyan-500);
  border-radius: 18px;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-icon-glow {
  opacity: 0.35;
}

.service-card:hover .service-icon {
  transform: scale(1.05) rotate(-3deg);
}

.service-content {
  position: relative;
}

.service-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  min-height: 46px;
}

.service-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan-600);
  background: rgba(6, 182, 212, 0.08);
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: -0.01em;
}

.service-price {
  display: inline-flex;
  align-items: baseline;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.service-price::before {
  content: 'FROM';
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan-600);
  letter-spacing: 0.1em;
  margin-right: 8px;
  padding: 3px 7px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px 24px;
  }
  .service-icon-wrap,
  .service-icon {
    width: 60px;
    height: 60px;
  }
  .service-icon svg {
    width: 28px;
    height: 28px;
  }
}

  /* ===== Reviews ===== */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.2s ease;
  }

  .review-card:hover {
    border-color: var(--cyan-500);
    box-shadow: var(--shadow-md);
  }

  .review-stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 2px;
  }

  .review-text {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.7;
    flex: 1;
  }

  .review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy-700), var(--cyan-500));
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
  }

  .review-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900);
  }

  .review-date {
    font-size: 13px;
    color: var(--text-muted);
  }

  .place-cta {
    text-align: center;
    margin-top: 40px;
  }

  .place-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-900);
    transition: all 0.2s ease;
  }

  .place-link:hover {
    border-color: #03c75a;
    color: #03c75a;
  }

  /* ===== Place ===== */
  /* ===== Place / Service Area ===== */
.place {
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

.place::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.place .container {
  position: relative;
}

/* 영업시간 배너 */
.hours-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px -10px rgba(10, 22, 40, 0.3);
}

.hours-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hours-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-400);
  flex-shrink: 0;
}

.hours-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan-400);
  animation: pulse 2s infinite;
}

.hours-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}

.hours-time {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
}

.hours-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

.hours-sub {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: -0.01em;
}

.hours-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--cyan-500);
  color: var(--navy-900);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.4);
}

.hours-cta:hover {
  transform: translateY(-2px);
  background: var(--cyan-400);
  box-shadow: 0 10px 24px rgba(6, 182, 212, 0.5);
}

/* 출장 지역 영역 */
.regions-wrap {
  background: white;
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
}

.regions-group {
  margin-bottom: 32px;
}

.regions-group:last-of-type {
  margin-bottom: 0;
}

.regions-group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  width: 100%;
}

.regions-group-label svg {
  color: var(--cyan-600);
}

.regions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-card {
  padding: 12px 22px;
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  cursor: default;
}

.region-card:hover {
  border-color: var(--cyan-500);
  background: rgba(6, 182, 212, 0.05);
  color: var(--cyan-700, var(--cyan-600));
  transform: translateY(-2px);
}



.regions-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}

.regions-note svg {
  color: var(--cyan-600);
  flex-shrink: 0;
}

/* 반응형 */
@media (max-width: 768px) {
  .hours-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
    text-align: center;
  }

  .hours-badge {
    align-self: center;
  }

  .hours-main {
    justify-content: center;
    gap: 12px;
  }

  .hours-divider {
    display: none;
  }

  .hours-time {
    font-size: 20px;
  }

  .hours-cta {
    justify-content: center;
  }

  .regions-wrap {
    padding: 28px 24px;
  }

  .region-card {
    padding: 10px 18px;
    font-size: 14px;
  }
}

  .map-placeholder {
    text-align: center;
    color: var(--navy-700);
  }

  .map-pin {
    width: 56px;
    height: 56px;
    background: var(--cyan-500);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
  }

  .map-pin svg {
    transform: rotate(45deg);
    color: white;
  }

  @media (max-width: 900px) {
    .place-grid { grid-template-columns: 1fr; }
    .place-info { padding: 32px; }
    .place-map { aspect-ratio: 16/10; }
  }

  /* ===== Blog ===== */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .blog-thumb {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--navy-700), var(--cyan-500));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 48px;
  }

  .blog-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
  }

  .blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan-600);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }

  .blog-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--navy-900);
  }

  .blog-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: auto;
  }

.blog-location {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: -0.01em;
}

.blog-cta {
  text-align: center;
  margin-top: 48px;
}

.blog-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: white;
  border: 1.5px solid var(--navy-900);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.blog-more-btn:hover {
  background: var(--navy-900);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.15);
}

.blog-more-btn svg {
  transition: transform 0.25s ease;
}

.blog-more-btn:hover svg {
  transform: translateX(4px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid var(--navy-900);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: var(--navy-900);
  color: white;
}

  /* ===== Footer ===== */
  .footer {
    background: var(--navy-900);
    color: #94a3b8;
    padding: 60px 0 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .footer-h {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
  }

  .footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }

  .footer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--cyan-400);
  flex-shrink: 0;
}

.footer-list a:hover .footer-icon {
  color: var(--cyan-400);
}

  .footer-list a:hover { color: var(--cyan-400); }

  .footer-bottom {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
  }

  /* ===== Floating CTA ===== */
  .floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
  }

  .float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cyan-500);
    color: var(--navy-900);
    padding: 16px 24px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.5);
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
  }

  .float-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 40px rgba(6, 182, 212, 0.6);
  }

  @media (max-width: 768px) {
    .floating { bottom: 16px; right: 16px; }
    .float-btn { padding: 14px 20px; font-size: 15px; }
  }

  /* SVG icon size */
  .icon { width: 20px; height: 20px; stroke-width: 2; }
  .icon-sm { width: 16px; height: 16px; stroke-width: 2; }
  .icon-lg { width: 32px; height: 32px; stroke-width: 2; }
