/* ================================================================
   바른누수센터 — style.css
   Mobile-first. Breakpoints: 768px (tablet), 1024px (desktop)
   ================================================================ */

/* ----------------------------------------------------------------
   FONT SIZE ORIGINALS (되돌릴 때 참고)
   hero h1:            32px / 44px(768) / 54px(1024)
   section-head h2:    28px / 36px(1024)
   section-head p:     16px
   service-card h3:    20px
   service-card p/li:  14px
   feat-body h3:       16px
   feat-body p:        14px
   process-step h3:    17px
   process-step p:     14px
   trust-item strong:  22px
   trust-item span:    12px
   guarantee strong:   18px
   price-amount:       34px
   price-card h3:      17px
   price-card p:       14px
   hero-point strong:  14px / 15px(768)
   hero-point span:    12px(768)
   contact h2:         28px / 36px(1024)
   contact-sub:        15px
   contact-btn-num:    18px
   as-content h3:      18px
   as-content strong:  15px
   blog-text h2:       22px
   blog-text p:        15px
   area-block h3:      18px
   slogan-bar p:       15px
   ---------------------------------------------------------------- */

:root {
  --blue:        #1565C0;
  --blue-dark:   #0D1F5C;
  --blue-light:  #DBEAFE;
  --cyan:        #0EA5E9;
  --cyan-dark:   #0284C7;
  --cyan-light:  #E0F2FE;
  --orange:      #E85D04;
  --orange-dark: #C04A00;
  --orange-light:#FFF3EE;
  --text:        #1A1A1A;
  --muted:       #5A6070;
  --border:      #C8D6EE;
  --white:       #FFFFFF;
  --off-white:   #F0F5FF;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 2px 16px rgba(13,31,92,.12);
  --shadow-lg:   0 8px 40px rgba(13,31,92,.16);
  --font:        'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --trans:       .2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); -webkit-text-size-adjust: 100%; word-break: keep-all; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
}

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block;
  padding: 7px 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--trans), color var(--trans);
  white-space: nowrap;
}
.main-nav a:hover { background: var(--blue-light); color: var(--blue); }
.main-nav .nav-cta {
  background: var(--blue);
  color: var(--white);
  border-radius: 20px;
  padding: 7px 16px;
}
.main-nav .nav-cta:hover { background: var(--blue-dark); }

.header-right { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  transition: background var(--trans), color var(--trans);
  white-space: nowrap;
}
.header-phone:hover { background: var(--blue); color: var(--white); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--trans);
}
.nav-toggle:hover { background: var(--off-white); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.main-nav.mobile-open {
  display: block;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.main-nav.mobile-open ul { flex-direction: column; gap: 0; padding: 0 16px; }
.main-nav.mobile-open a { font-size: 16px; padding: 12px 16px; border-radius: var(--radius-sm); }
.main-nav.mobile-open .nav-cta { margin: 8px 0; text-align: center; border-radius: var(--radius-sm); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #0D1F5C 0%, #1A3A8F 55%, #1565C0 100%);
  color: var(--white);
  overflow: hidden;
  margin-top: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/main.jpg') center center / cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .02em;
}

.hero h1 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  color: #FFB347;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
}
.hero-desc strong { color: #FFB347; font-weight: 700; }

.hero-points {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-point {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.hero-point svg { flex-shrink: 0; color: #FFB347; }
.hero-point strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  white-space: nowrap;
}
.hero-point span { display: none; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; align-items: flex-start; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge  { animation: hero-in .5s cubic-bezier(.22,.61,.36,1) .05s both; }
.hero h1     { animation: hero-in .55s cubic-bezier(.22,.61,.36,1) .2s both; }
.hero-points { animation: hero-in .55s cubic-bezier(.22,.61,.36,1) .4s both; }
.hero-btns   { animation: hero-in .5s cubic-bezier(.22,.61,.36,1) .55s both; }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: 72px; }

@media (max-width: 479px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { align-self: stretch; justify-content: center; }
  .hero-point { padding: 12px 10px; gap: 8px; }
  .hero-point svg { width: 20px; height: 20px; }
  .hero-point strong { font-size: 12px; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
}
.btn:active { transform: scale(.97); }

.btn-lg { padding: 16px 28px; font-size: 17px; }

.btn-accent {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-accent:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 0 4px 20px rgba(232,93,4,.4); }

.btn-kakao {
  background: #FEE500;
  color: #3A1D1D;
  border-color: #FEE500;
}
.btn-kakao:hover { background: #FDD800; box-shadow: 0 4px 16px rgba(254,229,0,.5); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 4px 20px rgba(26,86,160,.35); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ================================================================
   SLOGAN BAR
   ================================================================ */
.slogan-bar {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--cyan-dark) 100%);
  padding: 18px 0;
}
.slogan-bar p {
  font-size: 17px;
  color: var(--white);
  text-align: center;
  line-height: 1.6;
}
.slogan-bar strong { font-weight: 700; }

/* ================================================================
   GUARANTEE BAR
   ================================================================ */
.guarantee-bar {
  background: #F0FDF4;
  border-top: 1px solid #BBF7D0;
  border-bottom: 1px solid #BBF7D0;
  padding: 24px 0;
}

.guarantee-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.g-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #16A34A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.guarantee-item strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #14532D;
  margin-bottom: 2px;
}

.guarantee-item span {
  font-size: 15px;
  color: #4B7A5A;
}

.g-divider {
  display: none;
}

@media (min-width: 768px) {
  .guarantee-items {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .guarantee-item {
    flex: 1;
    max-width: 360px;
    justify-content: center;
  }
  .g-divider {
    display: block;
    width: 1px;
    height: 48px;
    background: #86EFAC;
    flex-shrink: 0;
    margin: 0 28px;
  }
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.section-head p {
  font-size: 17px;
  color: var(--muted);
}

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.svc-icon.blue { background: var(--blue-light); color: var(--blue); }
.svc-icon.orange { background: var(--orange-light); color: var(--orange); }

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.service-card > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card li {
  font-size: 15px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
}
.service-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ================================================================
   FEATURES
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.feat-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan-dark) 100%);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .05em;
}

.feat-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.feat-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================================================
   PROCESS
   ================================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.process-step {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.step-circle {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 12px;
  box-shadow: 0 4px 12px rgba(14,165,233,.35);
}

.process-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.process-arrow {
  color: var(--cyan);
  transform: rotate(90deg);
  padding: 4px 0;
}

/* ================================================================
   SERVICE AREA
   ================================================================ */
.area-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.area-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.area-block h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 18px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tags span {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

.area-note {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ================================================================
   BLOG BOX
   ================================================================ */
.blog-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--blue-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.blog-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.blog-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
  background: var(--blue-dark);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.contact-section h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.contact-sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: var(--radius);
  width: 100%;
  max-width: 360px;
  transition: transform var(--trans), box-shadow var(--trans);
}
.contact-btn:active { transform: scale(.97); }

.contact-btn-call {
  background: var(--orange);
  color: var(--white);
}
.contact-btn-call:hover { box-shadow: 0 6px 24px rgba(232,93,4,.5); transform: translateY(-2px); }

.contact-btn-kakao {
  background: #FEE500;
  color: #3A1D1D;
}
.contact-btn-kakao:hover { box-shadow: 0 6px 24px rgba(254,229,0,.4); transform: translateY(-2px); }

.contact-btn-label {
  font-size: 13px;
  font-weight: 500;
  opacity: .85;
  display: block;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
}
.contact-btn-num {
  font-size: 20px;
  font-weight: 900;
  display: block;
  text-align: left;
  letter-spacing: -.01em;
  white-space: nowrap;
  word-break: keep-all;
}

.contact-note {
  font-size: 14px;
  color: rgba(255,255,255,.55);
}

.kakao-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.kakao-qr img {
  width: 130px;
  height: 130px;
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.kakao-qr p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  letter-spacing: .01em;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 56px 20px 40px;
}
@media (min-width: 1440px) {
  .footer-inner { padding: 96px 20px 64px; }
}
.footer-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-blog {
  font-size: 14px;
  color: #93C5FD;
  font-weight: 500;
}
.footer-blog:hover { color: var(--white); }

.footer-info p {
  font-size: 14px;
  line-height: 2;
}
.footer-info a { color: #93C5FD; }
.footer-info a:hover { color: var(--white); }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 20px;
}
.footer-copy p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ================================================================
   FLOATING BUTTONS (듀얼 FAB)
   ================================================================ */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 32px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}
.float-btn:active { transform: scale(.97); }

.float-kakao {
  background: #FEE500;
  color: #3A1D1D;
  box-shadow: 0 3px 14px rgba(254,229,0,.45);
}
.float-kakao:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,229,0,.55);
}

.float-call {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,93,4,.45);
  animation: float-pulse 3s ease-in-out infinite;
}
.float-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,4,.55);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,93,4,.45); }
  50% { box-shadow: 0 4px 32px rgba(232,93,4,.65); }
}

/* ================================================================
   TABLET  768px+
   ================================================================ */
@media (min-width: 768px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }

  .hero { padding: 140px 0 100px; }
  .hero h1 { font-size: 50px; }
  .hero-point strong { font-size: 16px; }
  .hero-point span { display: block; font-size: 13px; color: rgba(255,255,255,.72); margin-top: 3px; line-height: 1.35; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .area-wrap { flex-direction: row; }
  .area-block { flex: 1; }

  .blog-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-btns { flex-direction: row; justify-content: center; }
  .contact-btn { max-width: 320px; }

  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

/* ================================================================
   DESKTOP  1024px+
   ================================================================ */
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
  .header-phone { display: flex; }

  .hero h1 { font-size: 64px; }
  .hero::before {
    left: 50%;
    background: url('../images/main.jpg') center top / cover no-repeat;
    opacity: 0.85;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%);
    mask-image: linear-gradient(to right, transparent 0%, black 18%);
  }

  .section { padding: 88px 0; }
  .section-head h2 { font-size: 42px; }

  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
  }
  .process-step { flex: 1; min-width: 0; max-width: none; }
  .process-arrow { transform: rotate(0deg); align-self: center; flex-shrink: 0; }

  .contact-section h2 { font-size: 42px; }
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  background: var(--blue-dark);
  padding: 24px 0;
}
.trust-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #FFB347;
  line-height: 1.2;
  margin-bottom: 3px;
}
.trust-item span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.trust-sep { display: none; }
@media (min-width: 560px) {
  .trust-items { flex-direction: row; justify-content: center; gap: 0; }
  .trust-item { flex: 1; max-width: 220px; padding: 0 12px; }
  .trust-sep {
    display: block;
    width: 1px; height: 36px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
  }
}

/* ================================================================
   WORK ITEMS
   ================================================================ */
.wi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.wi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wi-head {
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
}
.wi-blue { background: var(--blue); }
.wi-cyan { background: linear-gradient(90deg, var(--blue) 0%, var(--cyan-dark) 100%); }
.wi-card ul {
  padding: 14px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.wi-card li {
  font-size: 13px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.wi-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--cyan-dark);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .wi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wi-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--off-white);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,31,92,.8));
  padding: 24px 8px 10px;
  opacity: 1;
  transition: opacity var(--trans);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-overlay { opacity: 0; }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
}
.gallery-overlay span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  text-align: center;
  line-height: 1.4;
}
.gallery-more { text-align: center; margin-top: 32px; }
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .gallery-overlay span { font-size: 14px; }
}
@media (min-width: 1024px) {
  .gallery-grid { gap: 14px; }
}

/* ================================================================
   REVIEWS
   ================================================================ */
.review-scroll-wrap {
  position: relative;
  margin-bottom: 36px;
}
.review-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.review-scroll::-webkit-scrollbar { display: none; }
.review-scroll img {
  flex-shrink: 0;
  width: 260px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.review-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--blue-dark);
  cursor: pointer;
  transition: background var(--trans);
}
.review-arrow:hover { background: var(--blue-light); }
.review-arrow-prev { left: -22px; }
.review-arrow-next { right: -22px; }
@media (hover: hover) and (pointer: fine) {
  .review-arrow { display: flex; }
}
.review-more { text-align: center; }

/* ================================================================
   PRICING
   ================================================================ */
.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card-main {
  border-color: var(--blue);
  background: var(--blue-light);
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.price-amount {
  font-size: 38px;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.price-free { color: var(--cyan-dark); }
.price-included {
  font-size: 22px;
  color: var(--blue);
  line-height: 1.3;
  letter-spacing: normal;
}
.price-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.price-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.price-card p strong { color: var(--orange); font-weight: 700; }
.price-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.price-note svg { flex-shrink: 0; color: var(--cyan-dark); margin-top: 2px; }
.price-note p { font-size: 14px; color: var(--muted); line-height: 1.65; }
@media (min-width: 768px) {
  .price-cards { grid-template-columns: repeat(3, 1fr); }
}
/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--blue);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 22px 18px;
  border-top: 1px solid var(--border);
}
.faq-a p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 14px;
}

/* ================================================================
   A/S BAR
   ================================================================ */
.as-bar {
  background: var(--blue-light);
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  padding: 36px 0;
}
.as-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.as-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.as-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.as-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.as-content p:last-child { margin-bottom: 0; }
.as-content strong { color: var(--blue-dark); font-size: 16px; font-weight: 700; }
@media (min-width: 768px) {
  .as-inner { flex-direction: row; align-items: flex-start; }
}
