:root {
  --navy: #0c1a3a;
  --navy-mid: #152347;
  --navy-light: #1e3266;
  --blue: #3b82f6;
  --blue-light: #5a9fff;
  --blue-glow: #3b82f633;
  --sky: #e8f1ff;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --accent: #00c2ff;
  --font-display: 'Noto Sans KR', sans-serif;
  --font-body: 'Noto Sans KR', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
* { font-family: inherit; }
body { font-family: 'Noto Sans KR', sans-serif; color: var(--gray-800); background: var(--white); overflow-x: hidden; font-size: 16px; line-height: 1.7; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(12, 26, 58, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white); flex-shrink: 0; white-space: nowrap;
}
.logo-img { height: 38px; width: auto; }
.logo-sub { font-family: var(--font-display); font-size: 16px; color: rgba(255,255,255,0.85); font-weight: 600; margin-top: 2px; letter-spacing: -0.3px; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  text-decoration: none; color: rgba(255,255,255,0.7); font-size: 16px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; transition: all 0.2s;
}
.nav a:hover, .nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }
/* Product Listing Page */
.prd-main-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 16px; }
.prd-main-tab { padding: 12px 28px; border-radius: 10px; border: 1.5px solid var(--gray-200); background: var(--white); color: var(--gray-600); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.prd-main-tab:hover { border-color: var(--navy); color: var(--navy); }
.prd-main-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.prd-cats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.prd-cat { padding: 10px 22px; border-radius: 50px; border: 2px solid var(--gray-200); background: var(--white); color: var(--navy); font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s; }
.prd-cat.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.prd-cat:hover { border-color: var(--blue); }
.prd-cat .prd-cat-count { font-size: 12px; opacity: 0.7; margin-left: 4px; }
.prd-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prd-item { background: var(--white); border: 2px solid var(--gray-200); border-radius: 16px; padding: 24px 18px; text-align: center; transition: all 0.3s; position: relative; cursor: pointer; }
.prd-item:hover { border-color: var(--blue); border-width: 3px; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(43,127,255,0.18); }
.prd-item-badge { position: absolute; top: 12px; left: 12px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.prd-item-badge.best { background: #fef3c7; color: #92400e; }
.prd-item-badge.new { background: #dbeafe; color: #1e40af; }
.prd-item-img { width: 120px; height: 120px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.prd-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prd-item-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.prd-item-type { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 4px; }
.prd-item-longdesc { font-size: 12px; color: var(--gray-500); line-height: 1.5; margin-bottom: 8px; }
.prd-item-price { font-size: 20px; font-weight: 900; color: var(--navy); font-family: var(--font-display); margin-bottom: 12px; }
.prd-item-price small { font-size: 13px; font-weight: 500; color: var(--gray-400); }
.prd-item-btns { display: flex; gap: 8px; justify-content: center; }
.prd-item-btn { padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.prd-item-btn.primary { background: var(--blue); color: white; }
.prd-item-btn.primary:hover { background: #1a6ae8; }
.prd-item-btn.outline { border: 1px solid var(--gray-300); color: var(--navy); }
.prd-item-btn.outline:hover { border-color: var(--blue); color: var(--blue); }
.prd-more { text-align: center; margin-top: 36px; }
.prd-more a { display: inline-block; padding: 14px 36px; border: 2px solid var(--navy); color: var(--navy); border-radius: 12px; font-weight: 700; text-decoration: none; transition: all 0.3s; }
.prd-more a:hover { background: var(--navy); color: var(--white); }
@media (max-width: 900px) { .prd-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .prd-list { grid-template-columns: repeat(2, 1fr); gap: 12px; } .prd-item { padding: 16px 10px; } .prd-item-img { width: 80px; height: 80px; } .prd-item-price { font-size: 16px; } }

.page-section { padding-top: 72px; }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 12px 24px !important; font-size: 16px !important;
}
.nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }
.nav-cta2 {
  background: transparent !important; color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.45) !important;
  font-weight: 700 !important; padding: 10px 22px !important; font-size: 16px !important;
  border-radius: 10px !important;
}
.nav-cta2:hover { background: rgba(255,255,255,0.1) !important; border-color: var(--white) !important; transform: translateY(-1px); }
.nav-phone { color: var(--blue-light) !important; font-weight: 700 !important; font-family: var(--font-display); letter-spacing: 0.5px; font-size: 18px !important; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; color: white; cursor: pointer; padding: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  background: 
    linear-gradient(135deg, rgba(12,26,58,0.9) 0%, rgba(21,35,71,0.85) 35%, rgba(15,41,82,0.8) 70%, rgba(10,20,45,0.85) 100%),
    linear-gradient(45deg, rgba(43,127,255,0.08) 0%, transparent 50%),
    linear-gradient(-45deg, rgba(0,194,255,0.06) 50%, transparent 100%),
    url('hero-bg.jpg') center/cover no-repeat;
  background-color: #0c1a3a;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 1000px 700px at 75% 20%, rgba(43,127,255,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 800px 500px at 15% 85%, rgba(0,194,255,0.08) 0%, transparent 68%),
    radial-gradient(ellipse 600px 400px at 50% 50%, rgba(43,127,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(43,127,255,0.12); border: 1px solid rgba(43,127,255,0.2);
  padding: 8px 20px; border-radius: 50px; font-size: 15px; color: var(--blue-light);
  font-weight: 500; margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--blue-light); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  font-family: var(--font-display); font-size: 52px; font-weight: 800;
  line-height: 1.15; color: var(--white); margin-bottom: 18px; letter-spacing: -1px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero h1 span { 
  background: linear-gradient(135deg, var(--blue-light), var(--accent)); 
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 19px; line-height: 1.8; color: var(--gray-300); margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.3s both; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px; font-size: 17px; font-weight: 700;
  text-decoration: none; transition: all 0.3s; border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px rgba(43,127,255,0.3);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(43,127,255,0.4); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

.hero-stats {
  display: flex; gap: 28px; margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-stat-num { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 14px; color: var(--gray-400); margin-top: 3px; }

.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}
.hero-card {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 18px;
  padding: 28px; width: 100%; max-width: 440px;
}
.hero-card-title { color: var(--gray-400); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.hero-product {
  display: flex; align-items: center; gap: 14px; padding: 14px;
  background: rgba(255,255,255,0.04); border-radius: 12px; margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s;
}
.hero-product:hover { background: rgba(43,127,255,0.08); border-color: rgba(43,127,255,0.2); }
.hero-product-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(43,127,255,0.15), rgba(0,194,255,0.1));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden;
}
.hero-product-icon img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.hero-product-name { color: var(--white); font-size: 17px; font-weight: 600; }
.hero-product-desc { color: var(--gray-400); font-size: 14px; margin-top: 3px; }
.hero-product-arrow { color: var(--blue-light); margin-left: auto; font-size: 18px; opacity: 0; transition: all 0.3s; }
.hero-product:hover .hero-product-arrow { opacity: 1; transform: translateX(4px); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--gray-500); font-size: 15px; font-weight: 500; }
.trust-icon {
  width: 34px; height: 34px; background: var(--white); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ===== PRODUCTS ===== */
.products { background: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--blue); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 10px;
}
.section-label::before, .section-label::after { content:''; width:20px; height:1px; background:var(--blue); opacity:0.3; }
.section-title { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.section-desc { font-size: 17px; color: var(--gray-500); margin-top: 10px; max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.6; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 24px 20px; text-align: center; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer; position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.product-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(43,127,255,0.1); }
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  width: 100px; height: 100px; margin: 0 auto 14px; border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), #dbeafe);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-icon img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.product-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.product-desc { font-size: 14px; color: var(--gray-500); line-height: 1.5; }
.top-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.top-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 800; color: var(--white); z-index: 2; }
.top-badge.gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.top-badge.silver { background: linear-gradient(135deg, #94a3b8, #64748b); }
.top-badge.bronze { background: linear-gradient(135deg, #c2956a, #a87c5a); }
.top-badge.normal { background: var(--navy); }
.top-card { padding: 20px 14px; }
.top-card .product-icon { width: 90px; height: 90px; margin: 0 auto 12px; border-radius: 12px; }
.top-card .product-icon img { padding: 6px; }
.top-card .product-name { font-size: 14px; margin-bottom: 4px; }
.top-card .product-desc { font-size: 12px; }
@media (max-width: 900px) { .top-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .top-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .top-card { padding: 14px 10px; } }
.product-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 16px;
  font-size: 15px; font-weight: 600; color: var(--blue); text-decoration: none;
  opacity: 0; transform: translateY(8px); transition: all 0.3s;
}
.product-card:hover .product-link { opacity: 1; transform: translateY(0); }

/* ===== WHY US ===== */
.why-us { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(43,127,255,0.08) 0%, transparent 70%);
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 2; }
.why-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 32px 24px; transition: all 0.4s;
}
.why-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(43,127,255,0.2); transform: translateY(-3px); }
.why-num {
  font-family: var(--font-display); font-size: 42px; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 14px;
}
.why-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-desc { font-size: 15px; color: var(--gray-400); line-height: 1.6; }

/* ===== CTA ===== */
/* Solutions Section */
.sol-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.sol-tab { padding: 12px 24px; border-radius: 50px; border: 2px solid var(--gray-200); background: var(--white); color: var(--navy); font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.3s; }
.sol-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.sol-tab:hover { border-color: var(--blue); }
.sol-content { display: none; }
.sol-content.active { display: block; }
.sol-overview { text-align: center; max-width: 800px; margin: 0 auto 48px; color: var(--gray-600); font-size: 16px; line-height: 1.8; }
.sol-auth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-bottom: 48px; }
.sol-auth-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px 16px; text-align: center; transition: all 0.3s; }
.sol-auth-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.sol-auth-icon { font-size: 40px; margin-bottom: 12px; }
.sol-auth-name { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 6px; }
.sol-auth-desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.sol-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 48px; }
.sol-feat { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 24px; text-align: center; }
.sol-feat-icon { font-size: 32px; margin-bottom: 10px; }
.sol-feat-text { font-size: 14px; color: var(--navy); font-weight: 600; line-height: 1.6; }
.sol-effects { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 700px; margin: 0 auto; }
.sol-effect { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; }
.sol-effect-icon { font-size: 24px; flex-shrink: 0; }
.sol-effect-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.sol-sub-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; text-align: center; }
.sol-fields { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.sol-field-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; cursor: default; transition: all 0.3s; }
.sol-field-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.sol-field-card::before { content: ''; position: absolute; inset: 0; z-index: 1; }
.sol-field-card.fc-blue { background: linear-gradient(160deg, #1a3a5c 0%, #2b7fff 50%, #0a1628 100%); }
.sol-field-card.fc-green { background: linear-gradient(160deg, #1a4a3c 0%, #2ecc71 50%, #0a2818 100%); }
.sol-field-card.fc-orange { background: linear-gradient(160deg, #5c3a1a 0%, #e67e22 50%, #281a0a 100%); }
.sol-field-card.fc-purple { background: linear-gradient(160deg, #3a1a5c 0%, #9b59b6 50%, #1a0a28 100%); }
.sol-field-card.fc-red { background: linear-gradient(160deg, #5c1a1a 0%, #e74c3c 50%, #280a0a 100%); }
.sol-field-card.fc-teal { background: linear-gradient(160deg, #1a4a5c 0%, #1abc9c 50%, #0a2828 100%); }
.sol-field-card.fc-navy { background: linear-gradient(160deg, #0d1b2a 0%, #1b4965 50%, #0a1628 100%); }
.sol-field-card.fc-steel { background: linear-gradient(160deg, #2c3e50 0%, #7f8c8d 50%, #1a2530 100%); }
.sol-field-icon { font-size: 40px; margin-bottom: 10px; position: relative; z-index: 2; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.sol-field-name { font-size: 15px; font-weight: 800; color: var(--white); position: relative; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,0.4); line-height: 1.4; }
@media (max-width: 768px) { .sol-fields { grid-template-columns: repeat(2, 1fr); gap: 10px; } .sol-field-card { aspect-ratio: 1/1; } .sol-field-name { font-size: 13px; } .sol-field-icon { font-size: 32px; } }

/* Company Section */
.company-section { background: var(--white); }
.cert-section { margin-top: 72px; padding-top: 48px;  }
.cert-section-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 6px; }
.cert-section-desc { text-align: center; color: var(--gray-400); font-size: 14px; margin-bottom: 28px; }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 880px; margin: 0 auto; }
.cert-card { background: var(--white); border: 1px solid var(--gray-200); text-align: center; transition: all 0.3s; padding: 10px 10px 8px; min-width: 0; overflow: hidden; border-radius: 12px; }
.cert-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); border-color: var(--blue); }
.cert-card-img { width: 100%; overflow: hidden; }
.cert-card-img img { width: 100%; height: auto; display: block; max-width: 100%; }
.cert-card-name { font-size: 12px; font-weight: 700; color: var(--navy); padding: 8px 4px 2px; }
@media (max-width: 768px) { .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } .cert-card { padding: 5px 5px 4px; } .cert-card-name { font-size: 9px; padding: 5px 2px 0; } }
.brand-section { margin-top: 72px; padding-top: 48px;  }
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; max-width: 960px; margin: 0 auto; }
.brand-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 16px 10px 14px; text-align: center; transition: all 0.3s; }
.brand-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.brand-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 900; letter-spacing: 0.5px; margin-bottom: 6px; line-height: 1.2; }
.brand-logo-wrap { height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.brand-logo-img { max-width: 100%; max-height: 44px; width: auto; object-fit: contain; }
.brand-name { font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.brand-desc { font-size: 10px; color: var(--gray-400); line-height: 1.4; }
@media (max-width: 768px) { .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; } .brand-card { padding: 12px 6px 10px; } .brand-name { font-size: 10px; } .brand-logo-text { font-size: 14px; } .brand-logo-wrap { height: 40px; } .brand-logo-img { max-height: 36px; } .brand-desc { font-size: 9px; } }
.partner-section { margin-top: 72px; padding-top: 48px;  }
.partner-category { margin-top: 28px; }
.partner-category:first-child { margin-top: 0; }
.partner-cat-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--blue); text-align: center; margin-bottom: 14px; padding: 6px 20px; background: var(--sky); border-radius: 50px; display: inline-block; position: relative; left: 50%; transform: translateX(-50%); letter-spacing: 0.3px; }
.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; max-width: 960px; margin: 0 auto; }
.partner-card { text-align: center; padding: 10px 6px 8px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; transition: all 0.3s; }
.partner-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.partner-logo-img { width: 80px; height: 44px; margin: 0 auto 4px; display: flex; align-items: center; justify-content: center; }
.partner-logo-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-name { font-size: 11px; font-weight: 600; color: var(--gray-500); line-height: 1.3; word-break: keep-all; }
@media (max-width: 768px) { .partner-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; } .partner-card { padding: 6px 3px 5px; border-radius: 8px; } .partner-logo-img { width: 52px; height: 30px; } .partner-name { font-size: 9px; } .partner-cat-title { font-size: 12px; padding: 5px 14px; } }
.company-intro { max-width: 800px; margin: 0 auto 36px; text-align: center; }
.company-intro h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 16px; font-family: var(--font-display); }
.company-intro p { color: var(--gray-600); font-size: 15px; line-height: 1.8; }
.company-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 600px; margin: 0 auto 32px; }
.company-stat { text-align: center; padding: 24px 12px; background: var(--gray-50); border-radius: 14px; border: 1px solid var(--gray-200); }
.company-stat-num { font-size: 32px; font-weight: 900; color: var(--blue); font-family: var(--font-display); }
.company-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; font-weight: 500; }
.company-strengths { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 36px; }
.strength-card { text-align: center; padding: 20px 12px; background: var(--white); border-radius: 14px; border: 1px solid var(--gray-200); transition: all 0.3s; }
.strength-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); border-color: var(--blue); }
.strength-icon { font-size: 28px; margin-bottom: 8px; }
.strength-title { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.strength-desc { font-size: 12px; color: var(--gray-500); line-height: 1.5; }
.company-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 40px; }
.company-detail { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; background: var(--gray-50); border-radius: 12px; border: 1px solid var(--gray-100); }
.company-detail-icon { font-size: 18px; flex-shrink: 0; }
.company-detail-content { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.company-detail-content strong { color: var(--navy); font-weight: 700; }
@media (max-width: 768px) {
  .company-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .company-stat-num { font-size: 24px; }
  .company-strengths { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .company-details { grid-template-columns: 1fr; }
  .sol-auth-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-tab { padding: 8px 16px; font-size: 13px; }
}

/* Package Recommendation */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: 18px; padding: 32px 24px; text-align: center; transition: all 0.3s; position: relative; }
.pkg-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(43,127,255,0.12); }
.pkg-card.recommended { border-color: var(--blue); }
.pkg-card.recommended::before { content: '가장 많이 선택'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.pkg-icon { font-size: 48px; margin-bottom: 12px; }
.pkg-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pkg-size { font-size: 14px; color: var(--blue); font-weight: 700; margin-bottom: 16px; }
.pkg-list { text-align: left; margin-bottom: 20px; }
.pkg-item { padding: 8px 0; font-size: 14px; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px; }
.pkg-item::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.pkg-price { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.pkg-price-note { font-size: 12px; color: var(--gray-400); margin-bottom: 16px; }
.pkg-btn { display: inline-block; padding: 12px 28px; border-radius: 12px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s; }
.pkg-btn-primary { background: var(--blue); color: var(--white); }
.pkg-btn-primary:hover { background: #1a6ae8; transform: translateY(-2px); }
.pkg-btn-outline { border: 2px solid var(--gray-300); color: var(--navy); }
.pkg-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
@media (max-width: 768px) { .pkg-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* Quick Quote Form */
.quick-form-section { background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%); }
.quick-form-box { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 24px; padding: 48px 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.quick-form-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 8px; }
.quick-form-desc { text-align: center; color: var(--gray-500); margin-bottom: 32px; font-size: 15px; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.qf-group { display: flex; flex-direction: column; gap: 6px; }
.qf-label { font-size: 13px; font-weight: 700; color: var(--navy); }
.qf-select, .qf-input { padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: 12px; font-size: 15px; color: var(--navy); background: var(--white); transition: border 0.3s; appearance: none; }
.qf-select:focus, .qf-input:focus { outline: none; border-color: var(--blue); }
.qf-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.qf-submit { display: block; width: 100%; padding: 16px; background: var(--blue); color: var(--white); border: none; border-radius: 12px; font-size: 17px; font-weight: 800; cursor: pointer; transition: all 0.3s; margin-top: 8px; }
.qf-submit:hover { background: #1a6ae8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,127,255,0.3); }
.qf-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--gray-400); }
@media (max-width: 520px) { .qf-row { grid-template-columns: 1fr; } .quick-form-box { padding: 32px 20px; } }

.cta-section { background: var(--gray-50); }
.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 24px; padding: 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(43,127,255,0.1) 0%, transparent 70%);
}
.cta-box h2 { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--white); margin-bottom: 14px; position: relative; }
.cta-box p { font-size: 18px; color: var(--gray-400); margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; position: relative; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--navy); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-blue-outline { background: transparent; color: var(--blue-light); border: 1.5px solid rgba(43,127,255,0.4); }
.btn-blue-outline:hover { background: rgba(43,127,255,0.1); border-color: var(--blue-light); }
.btn-blue-outline { background: transparent; color: #3b82f6; border: 1.5px solid rgba(212,133,10,0.4); }
.btn-blue-outline:hover { background: rgba(212,133,10,0.1); border-color: #3b82f6; }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1000px; margin: 0 auto; }
.gallery-item {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4;
  background: var(--gray-100); cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(12,26,58,0.85));
  display: flex; align-items: flex-end; padding: 24px;
}
.gallery-label { color: var(--white); font-size: 16px; font-weight: 600; }
.gallery-sub { color: var(--gray-300); font-size: 13px; margin-top: 4px; }

/* --- Gallery Pagination --- */
.gal-pagination { display: flex; justify-content: center; align-items: center; gap: 4px; margin-top: 36px; flex-wrap: wrap; }
.gal-page-btn { min-width: 36px; height: 36px; border: 1px solid var(--gray-200); background: var(--white); color: var(--gray-600); font-size: 14px; font-weight: 500; border-radius: 8px; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.gal-page-btn:hover { background: var(--gray-50); border-color: var(--navy); color: var(--navy); }
.gal-page-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); font-weight: 700; }
.gal-page-dots { color: var(--gray-400); font-size: 14px; padding: 0 4px; }

/* --- Shop Section --- */
.shop-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.shop-tab { padding: 10px 24px; border-radius: 10px; border: 1.5px solid var(--gray-200); background: var(--white); color: var(--gray-600); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.shop-tab:hover { border-color: var(--navy); color: var(--navy); }
.shop-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.shop-tab-count { font-size: 12px; opacity: 0.7; margin-left: 4px; }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.shop-item { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; }
.shop-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: var(--blue); }
.shop-item-link { text-decoration: none; color: inherit; display: block; }
.shop-item-img { background: #f8fafc; padding: 20px; display: flex; align-items: center; justify-content: center; height: 170px; }
.shop-item-img img { max-width: 100%; max-height: 130px; object-fit: contain; }
.shop-item-info { padding: 16px; border-top: 1px solid var(--gray-100); }
.shop-item-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.shop-item-desc { font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.shop-item-price { font-size: 18px; font-weight: 800; color: var(--blue); }
.shop-item-price small { font-size: 13px; font-weight: 500; color: var(--gray-500); }

/* --- Gallery Search Bar --- */
.gallery-search-wrap { margin-bottom: 20px; }
.gallery-search-box {
  display: flex; align-items: center;
  background: #fff; border: 2px solid var(--gray-200); border-radius: 12px;
  overflow: hidden; max-width: 660px; margin: 0 auto;
  transition: border-color 0.2s; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.gallery-search-box:focus-within { border-color: var(--navy); }
.gallery-search-type {
  padding: 0 14px; height: 52px; border: none; border-right: 1px solid var(--gray-200);
  font-size: 14px; color: var(--gray-600); background: #f8fafc;
  cursor: pointer; outline: none; min-width: 90px;
}
.gallery-search-input {
  flex: 1; height: 52px; padding: 0 16px; border: none;
  font-size: 15px; color: var(--navy); background: transparent; outline: none;
}
.gallery-search-input::placeholder { color: var(--gray-400); font-size: 14px; }
.gallery-search-btn {
  width: 52px; height: 52px; background: var(--navy); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: white;
  transition: background 0.2s; flex-shrink: 0;
}
.gallery-search-btn:hover { background: var(--blue); }
.gallery-search-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 10px; min-height: 26px;
}
.gallery-result-text { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.gallery-reset-btn {
  display: none; align-items: center; gap: 5px;
  padding: 4px 12px; background: none; border: 1px solid var(--gray-300);
  border-radius: 20px; font-size: 13px; color: var(--gray-500);
  cursor: pointer; transition: all 0.2s;
}
.gallery-reset-btn:hover { background: var(--gray-100); color: var(--gray-700); }

/* --- Gallery Category Bar --- */
.gallery-cat-bar {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 32px; flex-wrap: wrap;
}
.gallery-cat-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 20px; border: 2px solid var(--gray-200);
  background: var(--white); border-radius: 30px;
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  cursor: pointer; transition: all 0.2s;
}
.gallery-cat-btn:hover, .gallery-cat-btn.active {
  background: var(--navy); border-color: var(--navy); color: white;
}
.gal-cat-num { font-size: 12px; opacity: 0.75; }

/* --- Gallery No Result --- */
.gallery-no-result {
  display: none; flex-direction: column; align-items: center;
  padding: 80px 20px; color: var(--gray-400); gap: 8px;
}
.gallery-no-result-icon { font-size: 40px; margin-bottom: 8px; }
.gallery-no-result-title { font-size: 18px; font-weight: 600; color: var(--gray-600); }
.gallery-no-result-sub { font-size: 14px; margin-bottom: 16px; }

/* ===== LIGHTBOX DETAIL POPUP ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  justify-content: center; align-items: center;
  opacity: 0; transition: opacity 0.3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-panel {
  position: relative; width: 94%; max-width: 960px; height: 90vh;
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  display: flex; flex-direction: column;
}
.lightbox-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50); flex-shrink: 0;
}
.lightbox-header-left { display: flex; align-items: center; gap: 14px; }
.lightbox-cat {
  display: inline-block; padding: 5px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  background: var(--sky);
}
.lightbox-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--navy);
}
.lightbox-close {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gray-100); border: none;
  color: var(--gray-600); font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.lightbox-close:hover { background: var(--gray-200); color: var(--navy); }
.lightbox-body {
  flex: 1; overflow-y: auto; padding: 28px;
  -webkit-overflow-scrolling: touch;
}
.lightbox-table {
  width: 100%; border-collapse: collapse; margin-bottom: 28px;
  font-size: 16px;
}
.lightbox-table th {
  text-align: left; padding: 8px 16px; background: var(--gray-50);
  color: var(--navy); font-weight: 700; width: 110px;
  border-bottom: 1px solid var(--gray-200); font-size: 14px;
}
.lightbox-table td {
  padding: 8px 16px; border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700); font-size: 14px;
}
.lightbox-images {
  display: flex; flex-direction: column; gap: 16px;
}
.lightbox-images img {
  width: 100%; border-radius: 12px; cursor: pointer;
  transition: transform 0.3s;
}
.lightbox-images img:hover { transform: scale(1.02); }
.lightbox-images img.lb-loading {
  min-height: 200px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px; border-top: 1px solid var(--gray-200);
  background: var(--gray-50); flex-shrink: 0;
}
.lightbox-nav-btn {
  padding: 12px 24px; border-radius: 10px; border: 2px solid var(--gray-200);
  background: white; cursor: pointer; font-size: 16px; font-weight: 600;
  color: var(--navy); display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.lightbox-nav-btn:hover { border-color: var(--blue); color: var(--blue); }
.lightbox-nav-btn:disabled { opacity: 0.3; cursor: default; }
.lightbox-counter {
  font-size: 15px; color: var(--gray-500); font-weight: 600;
}

@media (max-width: 768px) {
  .lightbox-panel { width: 100%; height: 100vh; border-radius: 0; }
  .lightbox-header { padding: 16px 20px; }
  .lightbox-title { font-size: 18px; }
  .lightbox-body { padding: 20px; }
  .lightbox-table th, .lightbox-table td { padding: 6px 12px; font-size: 13px; }
  .lightbox-table th { width: 80px; }
  .lightbox-nav-row { padding: 12px 20px; }
}

/* ===== PERIPHERAL DETAIL ===== */
.prd-detail-back {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 28px;
  padding: 10px 20px; border-radius: 10px; background: var(--gray-100);
  color: var(--gray-600); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.2s;
}
.prd-detail-back:hover { background: var(--gray-200); color: var(--navy); }
.prd-detail-wrap { max-width: 960px; margin: 0 auto; padding: 20px 0; }
.prd-detail-img-area { text-align: center; }
.prd-detail-info-area { display: flex; flex-direction: column; justify-content: center; }

/* ===== PRODUCT DETAIL PAGE ===== */
.prd-back-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 28px;
  padding: 10px 20px; border-radius: 10px; background: var(--gray-100);
  color: var(--gray-600); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.2s;
}
.prd-back-btn:hover { background: var(--gray-200); color: var(--navy); }
.prd-detail-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px;
  align-items: start;
}
.prd-detail-gallery { position: relative; position: sticky; top: 100px; }
.prd-detail-mainimg {
  width: 100%; aspect-ratio: 4/5; background: var(--gray-50);
  border-radius: 16px; border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.prd-detail-mainimg img { max-width: 80%; max-height: 80%; object-fit: contain; }
.prd-detail-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 800; color: white; z-index: 2;
}
.prd-detail-badge.best { background: linear-gradient(135deg, #f59e0b, #d97706); }
.prd-detail-badge.new { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.prd-detail-info { display: flex; flex-direction: column; }
.prd-detail-name {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.prd-detail-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 12px; line-height: 1.6; }
.prd-detail-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.prd-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 12px 0 0; border-top: 1px solid var(--gray-200); }
.prd-spec-cell { display: flex; gap: 8px; padding: 9px 12px; border-bottom: 1px solid var(--gray-200); font-size: 13px; }
.prd-spec-label { color: var(--navy); font-weight: 700; white-space: nowrap; }
.prd-spec-value { color: var(--gray-600); }
.prd-spec-feat { display: flex; gap: 8px; padding: 9px 12px; border-bottom: 1px solid var(--gray-200); font-size: 13px; margin-bottom: 16px; }
.prd-detail-tag {
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
  background: var(--sky); color: var(--blue);
}
.prd-detail-price-box {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 16px 20px; margin-bottom: 16px;
}
.prd-detail-price-label { font-size: 13px; color: var(--gray-500); margin-bottom: 2px; }
.prd-detail-price {
  font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--navy);
}
.prd-detail-price small { font-size: 16px; font-weight: 600; color: var(--gray-500); }
.prd-detail-vat { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.prd-detail-opts { margin-bottom: 14px; }
.prd-opt-group { margin-bottom: 10px; }
.prd-opt-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.prd-opt-select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
  border-radius: 10px; font-size: 14px; color: var(--gray-700);
  background: var(--white); appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%2394a3b8' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.prd-opt-select:focus { outline: none; border-color: var(--blue); }
.prd-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.prd-qty-label { font-size: 13px; font-weight: 700; color: var(--navy); }
.prd-qty-ctrl {
  display: flex; align-items: center; border: 1px solid var(--gray-200);
  border-radius: 10px; overflow: hidden;
}
.prd-qty-btn {
  width: 36px; height: 36px; border: none; background: var(--gray-50);
  font-size: 18px; cursor: pointer; color: var(--navy);
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.prd-qty-btn:hover { background: var(--gray-200); }
.prd-qty-val {
  width: 46px; text-align: center; font-size: 15px; font-weight: 700;
  color: var(--navy); border: none; border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200); background: white; padding: 7px 0;
}
.prd-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; background: var(--navy); border-radius: 12px; margin-bottom: 12px;
}
.prd-total-label { font-size: 14px; font-weight: 600; color: var(--gray-300); }
.prd-total-price { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--white); }
.prd-total-price small { font-size: 14px; font-weight: 500; }
.prd-buy-btns { display: flex; gap: 10px; margin-bottom: 10px; }
.prd-buy-btn {
  flex: 1; padding: 13px; border-radius: 12px; font-size: 15px;
  font-weight: 700; border: none; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.prd-buy-btn.cart { background: var(--white); color: var(--blue); border: 2px solid var(--blue); }
.prd-buy-btn.cart:hover { background: #eff6ff; }
.prd-buy-btn.buy { background: var(--blue); color: white; box-shadow: 0 4px 16px rgba(59,130,246,0.3); }
.prd-buy-btn.buy:hover { background: #2563eb; transform: translateY(-1px); }
.prd-naver-btn {
  width: 100%; padding: 13px; border-radius: 12px; font-size: 15px;
  font-weight: 700; border: none; cursor: pointer;
  background: #03c75a; color: white;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.3s; margin-bottom: 12px;
}
.prd-naver-btn:hover { background: #02b350; }
.prd-naver-btn svg { width: 20px; height: 20px; }
.prd-contact-btns { display: flex; gap: 10px; margin-top: 6px; }
.prd-contact-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 0; border-radius: 12px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.2s; text-align: center;
}
.prd-contact-btn.quote { background: #ea580c; color: white; }
.prd-contact-btn.quote:hover { background: #c2410c; }
.prd-contact-btn.call { background: var(--white); color: #ea580c; border: 2px solid #fb923c; }
.prd-contact-btn.call:hover { background: #fff7ed; border-color: #ea580c; }

.prd-detail-divider { height: 1px; background: var(--gray-200); margin: 40px 0; }
.prd-detail-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 24px;
}
.prd-detail-tab {
  padding: 12px 24px; font-size: 14px; font-weight: 700; color: var(--gray-400);
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none;
}
.prd-detail-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.prd-detail-tab:hover { color: var(--navy); }
.prd-tab-content { display: none; }
.prd-tab-content.active { display: block; }
.prd-spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.prd-spec-table th {
  text-align: left; padding: 12px 16px; background: var(--gray-50);
  color: var(--navy); font-weight: 700; width: 140px;
  border-bottom: 1px solid var(--gray-200);
}
.prd-spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); color: var(--gray-600); }
/* ===== BRAND STORY BANNER ===== */
.brand-story-banner {
  display: flex; flex-direction: column;
  border-radius: 16px; overflow: hidden; margin-bottom: 24px;
  border: 1px solid #dde6f5;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.brand-story-header {
  background: linear-gradient(90deg, #0c1a3a 0%, #1e3266 100%);
  padding: 14px 32px; display: flex; align-items: center; gap: 12px;
}
.brand-story-header-label {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  letter-spacing: 4px; color: #ffffff; text-transform: uppercase;
}
.brand-story-header::before {
  content: ''; display: inline-block; width: 3px; height: 16px;
  background: #3b82f6; border-radius: 2px; flex-shrink: 0;
}
.brand-story-body {
  display: flex; background: #f5f8ff; min-height: 280px;
}
.brand-story-left {
  flex: 0 0 38%; display: flex; align-items: center; justify-content: center;
  padding: 40px 24px; background: #eaf1ff; position: relative;
}
.brand-story-left::after {
  content: ''; position: absolute; right: 0; top: 10%; bottom: 10%;
  width: 1px; background: #d0dff5;
}
.brand-story-prd-img {
  max-width: 100%; max-height: 240px; object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,60,150,0.12));
}
.brand-story-right {
  flex: 1; padding: 36px 48px; display: flex; flex-direction: column; justify-content: center;
  background: #ffffff;
}
.brand-story-label { display: none; }
.brand-story-prd-name {
  font-family: var(--font-display); font-size: 24px; font-weight: 900;
  color: #0c1a3a; margin-bottom: 6px; line-height: 1.2;
}
.brand-story-prd-desc {
  font-size: 13px; color: #64748b; margin-bottom: 20px; line-height: 1.6;
}
.brand-story-table { width: 100%; border-collapse: collapse; }
.brand-story-table tr { border-bottom: 1px solid #e8eef8; }
.brand-story-table tr:last-child { border-bottom: none; }
.brand-story-table th {
  text-align: left; padding: 9px 12px 9px 0;
  font-size: 12px; font-weight: 600; color: #94a3b8;
  width: 90px; white-space: nowrap;
}
.brand-story-table td {
  padding: 9px 12px; font-size: 13px; color: #1e293b; font-weight: 500;
}
@media (max-width: 768px) {
  .brand-story-body { flex-direction: column; }
  .brand-story-left { padding: 28px 20px; }
  .brand-story-left::after { display: none; }
  .brand-story-prd-img { max-height: 180px; }
  .brand-story-right { padding: 24px 20px; }
  .brand-story-prd-name { font-size: 20px; }
  .brand-story-header { padding: 12px 20px; }
}

/* ===== PRODUCT OPTION SECTION ===== */
.prd-opt-section {
  margin-bottom: 32px; border: 1px solid #e2e8f0;
  border-radius: 12px; overflow: hidden;
}
.prd-opt-header {
  background: #475569; padding: 11px 24px;
  display: flex; align-items: center; gap: 10px;
}
.prd-opt-header span {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: #ffffff; letter-spacing: 0.5px;
}
.prd-opt-badge-row {
  padding: 20px 24px; background: #f8faff;
  display: flex; align-items: center; gap: 20px;
  border-bottom: 1px solid #e8eef5;
}
.prd-opt-badge {
  width: 68px; height: 68px; border-radius: 50%;
  background: #0c1a3a; display: flex; flex-direction: column;
  align-items: center; justify-content: center; flex-shrink: 0;
  gap: 1px;
}
.prd-opt-badge-sub {
  font-size: 9px; font-weight: 700; color: #94a3b8;
  letter-spacing: 1px; text-transform: uppercase;
}
.prd-opt-badge-num {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 900; color: #ffffff; line-height: 1;
}
.prd-opt-labels {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.prd-opt-tag {
  padding: 6px 14px; background: #ffffff; border: 1.5px solid #cbd5e1;
  border-radius: 50px; font-size: 12px; font-weight: 600;
  color: #334155;
}
.prd-opt-imgs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: #e2e8f0;
}
.prd-opt-imgs img { width: 100%; display: block; }
@media (max-width: 600px) {
  .prd-opt-imgs { grid-template-columns: 1fr; }
  .prd-opt-badge-row { gap: 14px; }
  .prd-opt-badge { width: 56px; height: 56px; }
  .prd-opt-badge-num { font-size: 18px; }
}

.prd-detail-imgs { margin-top: 32px; }
.prd-detail-imgs img {
  width: 100%; display: block; border-radius: 0;
}
.prd-ship-info { font-size: 14px; color: var(--gray-600); line-height: 1.8; }
.prd-ship-info h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 16px 0 8px; }
.prd-ship-info h4:first-child { margin-top: 0; }

/* Ship section - professional table */
.prd-ship-section { margin-top: 8px; }
.prd-ship-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--navy); margin: 0 0 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.prd-ship-notice {
  padding: 20px 24px; margin-bottom: 20px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 12px; font-size: 14px; color: var(--gray-600);
  line-height: 1.7; text-align: center;
}
.prd-ship-box {
  border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden;
  margin-bottom: 8px;
}
.prd-ship-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.prd-ship-table th {
  text-align: left; vertical-align: top; padding: 16px 20px;
  background: var(--gray-50); color: var(--navy); font-weight: 700;
  width: 180px; border-bottom: 1px solid var(--gray-200);
  line-height: 1.6;
}
.prd-ship-table td {
  padding: 16px 20px; border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600); line-height: 1.7; vertical-align: top;
}
.prd-ship-table tr:last-child th,
.prd-ship-table tr:last-child td { border-bottom: none; }
.prd-ship-sub { color: var(--gray-400); font-size: 13px; }
.prd-ship-exchange {
  display: inline-block; margin-left: 24px; padding: 4px 14px;
  background: var(--gray-100); border-radius: 6px; font-weight: 700;
  color: var(--navy); font-size: 13px;
}
.prd-ship-reasons { display: flex; flex-direction: column; gap: 6px; }
.prd-ship-reasons span { display: block; line-height: 1.6; }

@media (max-width: 768px) {
  .prd-ship-table th { width: 120px; padding: 12px 14px; font-size: 13px; }
  .prd-ship-table td { padding: 12px 14px; font-size: 13px; }
  .prd-ship-exchange { display: block; margin: 8px 0 0; }
  .prd-ship-title { font-size: 17px; }
}

@media (max-width: 768px) {
  .prd-detail-top { grid-template-columns: 1fr; gap: 24px; }
  .prd-detail-gallery { position: static; }
  .prd-detail-mainimg { aspect-ratio: 1/1; }
  .prd-detail-name { font-size: 22px; }
  .prd-detail-price { font-size: 26px; }
  .prd-buy-btns { flex-direction: column; }
  .prd-total-price { font-size: 20px; }
}


/* Pagination */
.prd-pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.prd-page-btn {
  min-width: 40px; height: 40px; border: 1px solid var(--gray-200); border-radius: 10px;
  background: var(--white); color: var(--gray-600); font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; padding: 0 12px;
}
.prd-page-btn:hover { border-color: var(--blue); color: var(--blue); }
.prd-page-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.prd-page-btn:disabled { opacity: 0.4; cursor: default; }
.prd-page-btn:disabled:hover { border-color: var(--gray-200); color: var(--gray-600); }

/* Product Detail Notice Banner */
.prd-notice-banner {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; margin-bottom: 28px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
  border: 1px solid rgba(43,127,255,0.15);
  border-radius: 14px; border-left: 4px solid var(--blue);
}
.prd-notice-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue); color: white; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.prd-notice-body { flex: 1; }
.prd-notice-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.prd-notice-text { font-size: 13px; color: var(--gray-500); line-height: 1.7; }
.prd-notice-text strong { color: var(--navy); }
.prd-notice-text a { color: var(--blue); font-weight: 700; text-decoration: none; }


/* Product Detail Gallery */
.prd-gallery-section { margin-top: 40px; }
.prd-gallery-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--navy); margin: 0 0 8px; padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.prd-gallery-sub { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.prd-gallery-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.prd-gallery-item {
  aspect-ratio: 3/4; border-radius: 10px; overflow: hidden;
  cursor: pointer; position: relative;
  border: 1px solid var(--gray-200);
}
.prd-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.prd-gallery-item:hover img { transform: scale(1.05); }
.prd-gallery-item .gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,0.6));
  display: flex; align-items: flex-end; padding: 10px;
  opacity: 0; transition: opacity 0.3s;
}
.prd-gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 11px; font-weight: 600; line-height: 1.4; }
.prd-gallery-more {
  display: flex; align-items: center; justify-content: center;
  margin-top: 16px;
}
.prd-gallery-more button {
  padding: 10px 28px; border-radius: 10px; border: 1px solid var(--gray-200);
  background: var(--white); color: var(--navy); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.prd-gallery-more button:hover { border-color: var(--blue); color: var(--blue); }
/* Gallery lightbox */
.gallery-lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  justify-content: center; align-items: center;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img {
  max-width: 90%; max-height: 90vh; object-fit: contain; border-radius: 12px;
}
.gallery-lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(255,255,255,0.15); border: none;
  color: white; font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 768px) {
  .prd-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .prd-breadcrumb { font-size: 12px; }
}


/* Breadcrumb */
.prd-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; color: var(--gray-400); margin-bottom: 20px;
}
.prd-breadcrumb a {
  color: var(--gray-400); text-decoration: none; transition: color 0.2s;
}
.prd-breadcrumb a:hover { color: var(--blue); }
.prd-breadcrumb .bc-sep { color: var(--gray-300); }
.prd-breadcrumb .bc-current { color: var(--navy); font-weight: 600; }


/* Product description section title */
.prd-desc-header {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--navy); margin: 0 0 8px; padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}

/* Program section - inline */
.prd-program-section { margin-top: 8px; }
.prd-program-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--navy); margin: 0 0 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.prd-program-inline {
  border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden;
  background: var(--white);
}
.prd-program-inline-header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
}
.prd-program-inline-header h4 { font-size: 22px; font-weight: 800; margin: 0 0 4px; }
.prd-program-inline-header p { font-size: 14px; opacity: 0.8; margin: 0; }
.prd-program-logo {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; padding: 6px;
}
.prd-program-logo img {
  width: 100%; height: 100%; object-fit: contain;
}
.prd-program-logo.suprema-logo { background: #A12944; }
.prd-program-logo.union-logo { background: linear-gradient(135deg, #059669, #10b981); }
.prd-program-inline-body { padding: 28px; }
.prd-program-desc {
  font-size: 15px; line-height: 1.8; color: var(--gray-600); margin-bottom: 28px;
}
.prd-program-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
.prd-program-feat {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--gray-50);
  border-radius: 12px; font-size: 14px; color: var(--navy); font-weight: 600;
}
.feat-icon { font-size: 20px; flex-shrink: 0; }
.prd-program-placeholder {
  padding: 28px; background: var(--sky); border-radius: 14px;
  text-align: center; font-size: 15px; color: var(--gray-400);
  border: 1px dashed rgba(59,130,246,0.2);
}
.prd-program-screenshots {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 28px; align-items: start;
}
.prd-program-main-img {
  border-radius: 14px; overflow: hidden;
  background: #1a1a2e;
}
.prd-program-main-img img {
  width: 100%; height: auto; display: block;
}
.prd-program-side-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.prd-program-side-item {
  border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-200);
  background: #fff;
}
.prd-program-side-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.3s;
}
.prd-program-side-item:hover img { transform: scale(1.02); }
.prd-program-side-item .pgal-caption {
  padding: 8px 12px; background: var(--gray-50);
  color: var(--gray-600); font-size: 12px; font-weight: 600;
  border-top: 1px solid var(--gray-100);
}
@media (max-width: 768px) {
  .prd-program-screenshots { grid-template-columns: 1fr; }
  .prd-program-side-imgs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .prd-program-features { grid-template-columns: 1fr; }
  .prd-program-inline-body { padding: 20px; }
}

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--gray-400); padding: 48px 0 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-img { height: 42px; }
.footer-brand .logo-sub { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.footer-info { font-size: 14px; line-height: 1.8; color: var(--gray-500); }
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--gray-500); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--gray-500);
}
.footer-phone { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--white); margin: 10px 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999; background: rgba(12,26,58,0.98); flex-direction: column; padding: 16px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
  .nav a { padding: 12px 16px; font-size: 15px; border-radius: 8px; }
  .nav a:hover, .nav a.active { background: rgba(255,255,255,0.1); }
  .nav-phone { font-size: 15px !important; text-align: center; margin-top: 4px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-cta { text-align: center; margin-top: 4px; padding: 12px 24px !important; border-radius: 10px; }
  .nav-cta2 { text-align: center; margin-top: 4px; padding: 12px 24px !important; }
  .menu-toggle { display: block; }
  .logo-img { height: 30px; }
  .logo-sub { font-size: 13px; }
  .hero h1 { font-size: 36px; }
  .hero-desc { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 24px; }
  .hero-card { max-width: 100%; }
  .section { padding: 50px 0; }
  .section-title { font-size: 26px; }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cta-box { padding: 40px 24px; }
  .cta-box h2 { font-size: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .trust-inner { gap: 24px; }
}
/* ===== PHONE EMPHASIS ===== */
.phone-hero-bar {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  padding: 18px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.phone-hero-bar::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
}
.phone-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.phone-hero-label {
  font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.9);
}
.phone-hero-number {
  font-family: var(--font-display); font-size: 38px; font-weight: 900;
  color: var(--white); letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-decoration: none;
}
.phone-hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.8);
}

/* Floating call button */
.float-call {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  width: 66px; height: 66px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(59,130,246,0.5);
  text-decoration: none; transition: all 0.3s;
  animation: floatPulse 2s infinite;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 8px 40px rgba(59,130,246,0.6); }
.float-call svg { width: 32px; height: 32px; fill: white; }
.float-call-label {
  position: absolute; right: 84px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: white; padding: 10px 18px; border-radius: 10px;
  font-size: 15px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.float-call-label::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--navy);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(59,130,246,0.5); }
  50% { box-shadow: 0 6px 40px rgba(59,130,246,0.8), 0 0 0 12px rgba(59,130,246,0.15); }
}

/* Hero phone inline */
.hero-phone-box {
  margin-top: 32px; padding: 20px 28px;
  background: rgba(59,130,246,0.15); border: 2px solid rgba(59,130,246,0.3);
  border-radius: 16px; display: inline-flex; align-items: center; gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}
.hero-phone-box a {
  font-family: var(--font-display); font-size: 32px; font-weight: 900;
  color: #3b82f6; text-decoration: none; letter-spacing: 1px;
}
.hero-phone-box span {
  font-size: 15px; color: var(--gray-300); font-weight: 500;
}

@media (max-width: 768px) {
  .phone-hero-number { font-size: 32px; }
  .phone-hero-label { font-size: 15px; }
  .float-call { width: 64px; height: 64px; bottom: 20px; right: 20px; }
  .float-call-label { display: none; }
  .hero-phone-box a { font-size: 26px; }
  .hero-phone-box { padding: 16px 20px; gap: 12px; }
}