/* SilverGraphy Premium Theme - 고급 톤 정리 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');

:root {
    --sg-primary: #1e2d3d;
    --sg-secondary: #2c3e50;
    --sg-accent: #b8860b;
    --sg-accent-soft: rgba(184, 134, 11, 0.12);
    --sg-line: #e8e4df;
    --sg-bg: #fefefe;
    --sg-bg-soft: #f8f6f3;
    --sg-text: #2d2d2d;
    --sg-text-muted: #5c5c5c;
    --sg-border: #e8e4df;
    --font-main: 'Inter', 'Noto Sans KR', sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(30, 45, 61, 0.06);
    --shadow-md: 0 8px 24px rgba(30, 45, 61, 0.08);
    --shadow-lg: 0 16px 48px rgba(30, 45, 61, 0.1);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: var(--sg-text);
    background-color: var(--sg-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

/* Header - 포인트 라인 */
.sg-header {
    background: #fff;
    border-bottom: 1px solid var(--sg-border);
    box-shadow: var(--shadow-sm);
    padding: 16px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sg-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sg-accent) 0%, transparent 100%);
    opacity: 0.85;
}

.sg-logo-container {
    margin-right: 40px;
    /* Spacing between logo and nav */
    flex-shrink: 0;
}

/* Text Logo Styles */
.sg-logo-text {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1.2;
}

.sg-logo-icon {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    background: var(--sg-primary);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--sg-line);
}

.sg-logo-words {
    display: flex;
    flex-direction: column;
}

.sg-logo-kr {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
}

.sg-logo-en {
    font-size: 10px;
    font-weight: 600;
    color: var(--sg-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -2px;
}

.sg-logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--sg-text-muted);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.sg-nav {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sg-nav-item {
    text-decoration: none;
    color: var(--sg-text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
    cursor: pointer;
}

.sg-nav-item:hover,
.sg-nav-item.active {
    color: var(--sg-primary);
}

.sg-nav-item.active::after,
.sg-nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--sg-accent);
    border-radius: 1px;
}

/* Dropdown Menu Support (Simple Hover) */
.sg-nav-group {
    position: relative;
    padding: 10px 0;
}

.sg-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    padding: 8px 0;
    min-width: 200px;
    flex-direction: column;
    z-index: 1001;
    border: 1px solid var(--sg-border);
}

.sg-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sg-accent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.sg-nav-group.is-open .sg-dropdown,
.sg-dropdown.active {
    display: flex;
}

.sg-dropdown a {
    text-decoration: none;
    color: var(--sg-text);
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    border-left: 3px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sg-dropdown a:hover {
    background: rgba(168, 120, 67, 0.14);
    color: var(--sg-primary);
    border-left-color: var(--sg-accent);
    font-weight: 600;
}

.sg-dropdown a:focus-visible {
    outline: none;
    background: rgba(168, 120, 67, 0.14);
    color: var(--sg-primary);
    border-left-color: var(--sg-accent);
    font-weight: 600;
}

/* 상단 액션: 쇼핑 아이콘, LOGIN, AI WRITE */
.sg-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
}

.sg-nav-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sg-bg-soft);
    color: var(--sg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.2s;
}

.sg-nav-cart:hover {
    background: var(--sg-line);
    transform: scale(1.05);
}

.sg-nav-btn {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.sg-nav-btn-outline {
    background: #fff;
    color: var(--sg-primary);
    border: 2px solid var(--sg-primary);
}

.sg-nav-btn-outline:hover {
    background: var(--sg-bg-soft);
    border-color: var(--sg-secondary);
}

.sg-nav-btn-fill {
    background: var(--sg-primary);
    color: #fff;
    border: 2px solid var(--sg-primary);
    box-shadow: var(--shadow-sm);
}

.sg-nav-btn-fill:hover {
    background: var(--sg-secondary);
    border-color: var(--sg-secondary);
    box-shadow: var(--shadow-md);
}

/* Layout */
.sg-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 56px 24px;
}

/* Generic Hero Section */
.sg-hero-section {
    height: 40vh;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0;
}

.sg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.sg-hero-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sg-hero-text h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
    /* Ensure visible on banner */
}

.sg-hero-text p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    color: white;
    margin-bottom: 0;
}


/* Components - 버튼 포인트 */
.sg-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--sg-primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 20px;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.sg-btn:hover {
    background: var(--sg-secondary);
    box-shadow: var(--shadow-md);
}

.sg-btn-outline {
    padding: 8px 20px;
    border: 1px solid var(--sg-primary);
    color: var(--sg-primary);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.sg-btn-outline:hover {
    background: var(--sg-primary);
    color: white;
}

.sg-btn-white {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: all 0.25s;
}

.sg-btn-white:hover {
    background: #fff;
    color: var(--sg-primary);
    box-shadow: var(--shadow-md);
}

.sg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.sg-card {
    background: white;
    border: 1px solid var(--sg-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Free Website Intro */
.sg-intro-hero {
    min-height: 52vh;
}

.sg-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.sg-intro-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
    align-items: center;
}

.sg-intro-btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    box-shadow: none;
}

.sg-intro-hero-actions .sg-btn-white,
.sg-intro-hero-actions .sg-btn,
.sg-intro-hero-actions .sg-intro-btn-ghost {
    min-width: 160px;
    padding: 14px 28px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.sg-intro-hero-actions .sg-intro-btn-sample {
    margin-top: 20px;
}

.sg-intro-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.9);
}

.sg-intro-steps {
    padding-top: 70px;
}

.sg-intro-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.sg-intro-step {
    background: #fff;
    border: 1px solid var(--sg-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.sg-intro-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sg-accent-soft);
    color: var(--sg-accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.sg-intro-samples {
    padding-top: 20px;
}

.sg-intro-sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.sg-intro-sample-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--sg-border);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sg-intro-sample-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.18);
    border-color: rgba(184, 134, 11, 0.6);
}

.sg-intro-sample-media {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.sg-intro-sample-tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(30, 45, 61, 0.85);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.sg-intro-sample-chip {
    position: absolute;
    right: 16px;
    top: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2937;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.sg-intro-sample-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.05), rgba(15, 23, 42, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sg-intro-sample-card:hover .sg-intro-sample-overlay {
    opacity: 1;
}

.sg-intro-sample-preview {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 16px 16px;
}

.sg-intro-sample-body {
    padding: 22px 24px 24px;
}

.sg-intro-sample-body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #0f172a;
}

.sg-intro-sample-body p {
    margin: 0 0 16px;
    color: var(--sg-text-muted);
}

.sg-intro-sample-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #1f2937;
}

.sg-intro-sample-stats span {
    background: rgba(184, 134, 11, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(184, 134, 11, 0.35);
}

.sg-intro-sample-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    color: var(--sg-text);
    font-size: 14px;
}

.sg-intro-sample-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.sg-intro-sample-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--sg-accent);
}

.sg-intro-sample-cta {
    font-weight: 600;
    color: var(--sg-accent);
}

.sg-intro-apply {
    padding-top: 20px;
    padding-bottom: 80px;
}

.sg-intro-apply-box {
    background: var(--sg-bg-soft);
    border: 1px solid var(--sg-border);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
}

.sg-intro-apply-box h2 {
    margin-top: 0;
}

.sg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sg-card-img {
    width: 100%;
    height: 200px;
    background: #ddd;
    object-fit: cover;
}

.sg-card-body {
    padding: 25px;
}

.sg-card h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--sg-primary);
}

.sg-footer {
    background: var(--sg-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 56px 20px 48px;
    margin-top: 0;
    border-top: 4px solid var(--sg-accent);
    text-align: center;
    font-size: 14px;
}

.sg-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px 40px;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

.sg-footer-col-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}

.sg-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sg-footer-col ul li {
    margin-bottom: 8px;
}

.sg-footer-col a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.sg-footer-col a:hover {
    color: var(--sg-accent);
    text-decoration: underline;
}

.sg-footer-sitemap,
.sg-footer-silver,
.sg-footer-contact,
.sg-footer-legal {
    position: relative;
    padding: 14px 16px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
}

.sg-footer-sitemap::before,
.sg-footer-silver::before,
.sg-footer-contact::before,
.sg-footer-legal::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd36d 0%, #ffb347 100%);
}

.sg-footer-sitemap::before {
    background: linear-gradient(180deg, #8fd3ff 0%, #5db2ff 100%);
}

.sg-footer-contact::before {
    background: linear-gradient(180deg, #7ee0c2 0%, #4ec9a6 100%);
}

.sg-footer-legal::before {
    background: linear-gradient(180deg, #c7b8ff 0%, #9d87ff 100%);
}

.sg-footer-silver-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.sg-footer-silver-mark {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
    flex: 0 0 auto;
}

.sg-footer-silver .sg-footer-col-title {
    margin-bottom: 0;
}

.sg-footer-sitemap .sg-footer-col-title,
.sg-footer-contact .sg-footer-col-title,
.sg-footer-legal .sg-footer-col-title {
    margin-bottom: 10px;
}

.sg-footer-silver-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #5f3700;
    background: linear-gradient(180deg, #ffd36d 0%, #ffc457 100%);
}

.sg-footer-silver a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #fff;
}

.sg-footer-silver-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: radial-gradient(circle at 35% 35%, #fff 0%, #fff 26%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.sg-footer-silver a:hover .sg-footer-silver-icon {
    box-shadow: 0 0 0 2px rgba(255, 211, 109, 0.45);
}

.sg-footer-addr,
.sg-footer-tel,
.sg-footer-email {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.sg-footer-tel a,
.sg-footer-email a {
    color: rgba(255, 255, 255, 0.9);
}

.sg-footer-link-inline {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--sg-accent);
}

.sg-footer-quote {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.sg-footer-desc {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.sg-footer-cta {
    margin-bottom: 28px;
}

.sg-footer .sg-btn {
    background: #fff;
    color: var(--sg-primary);
}

.sg-footer .sg-btn:hover {
    background: var(--sg-accent);
    color: #fff;
    border-color: var(--sg-accent);
}

.sg-footer-copy {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.7);
}

.sg-footer-tagline {
    margin: 0;
    font-size: 12px;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.7);
}

/* Legal pages (terms, privacy) */
.sg-legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}

.sg-legal-title {
    font-size: 28px;
    color: var(--sg-primary);
    margin: 0 0 8px;
    border-bottom: 2px solid var(--sg-accent);
    padding-bottom: 12px;
}

.sg-legal-updated {
    font-size: 13px;
    color: var(--sg-text-muted);
    margin: 0 0 32px;
}

.sg-legal-body section {
    margin-bottom: 28px;
}

.sg-legal-body h2 {
    font-size: 16px;
    color: var(--sg-secondary);
    margin: 0 0 10px;
}

.sg-legal-body p {
    margin: 0;
    line-height: 1.75;
    color: var(--sg-text);
}

.sg-legal-contact {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--sg-border);
    font-size: 14px;
}

.sg-legal-contact a {
    color: var(--sg-accent);
}

/* Notice list page */
.sg-notices-page {
    padding: 48px 20px 80px;
}

.sg-notices-page .sg-section-title {
    margin-bottom: 24px;
}

.sg-notices-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sg-notices-item {
    border-bottom: 1px solid var(--sg-border);
    padding: 20px 0;
}

.sg-notices-item:first-child {
    padding-top: 0;
}

.sg-notices-item a {
    text-decoration: none;
    color: var(--sg-text);
    display: block;
}

.sg-notices-item a:hover .sg-notices-item-title {
    color: var(--sg-accent);
}

.sg-notices-item-date {
    font-size: 13px;
    color: var(--sg-text-muted);
    margin-bottom: 6px;
}

.sg-notices-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--sg-primary);
    margin: 0 0 8px;
}

.sg-notices-item-desc {
    font-size: 14px;
    color: var(--sg-text-muted);
    line-height: 1.5;
    margin: 0;
}

.sg-notices-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--sg-text-muted);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-50 {
    margin-bottom: 50px;
}


/* --- Mobile Menu & Slider Additions --- */

.sg-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.sg-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--sg-text);
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .sg-mobile-toggle {
        display: flex;
    }

    .sg-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 0;
        border-top: 1px solid #eee;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .sg-nav.active {
        display: flex;
    }

    .sg-nav-actions {
        width: 100%;
        margin-left: 0;
        padding: 16px 24px 0;
        gap: 12px;
        border-top: 1px solid var(--sg-line);
        margin-top: 8px;
        padding-top: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .sg-nav-actions .sg-nav-group,
    .sg-nav-actions .sg-nav-btn,
    .sg-nav-actions .sg-nav-cart {
        width: 100%;
    }

    .sg-nav-item {
        width: 100%;
        padding: 15px 40px;
        box-sizing: border-box;
        display: block;
    }

    .sg-nav-group {
        width: 100%;
        padding: 0;
    }

    .sg-nav-actions .sg-nav-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .sg-nav-actions .sg-nav-cart {
        height: 44px;
        border-radius: var(--radius);
    }

    .sg-nav-toggle::after {
        content: '+';
        float: right;
    }

    .sg-dropdown {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        display: none !important;
        /* JS will toggle this */
        width: 100%;
        padding: 0;
    }

    .sg-dropdown.active {
        display: flex !important;
    }

    .sg-nav-group:hover .sg-dropdown {
        display: none !important;
        /* Disable hover on mobile, use click */
    }

    .sg-dropdown a {
        padding-left: 60px;
    }

    .sg-nav-actions .sg-dropdown a {
        padding-left: 18px;
    }

    .sg-nav-actions .sg-nav-group .sg-dropdown {
        margin-top: 8px;
        border: 1px solid var(--sg-border);
        border-radius: 12px;
        background: #fff;
    }
}

/* Homepage Slider Styles */
.sg-hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.sg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sg-slide.active {
    opacity: 1;
    z-index: 1;
}

.sg-slide-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 4px;
    color: white;
    max-width: 800px;
}

.sg-slide-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.sg-slide-desc {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========== Home (silvergraphy.com 동일) ========== */
.sg-page-content {
    margin: 0;
}

/* 롤링 배너 슬라이더 */
.sg-hero-slider {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #1a2332;
}

.sg-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.sg-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.sg-hero-slide .sg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.18) 0%, rgba(26, 35, 50, 0.34) 100%);
}

.sg-hero-slide .sg-hero-inner {
    position: relative;
    z-index: 2;
    padding: 48px 24px;
    max-width: 820px;
}

.sg-hero-slide .sg-hero-title {
    font-size: clamp(1.4rem, 3.2vw, 2.2rem);
    font-weight: 700;
    line-height: 1.28;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.sg-hero-slide--compact .sg-hero-title {
    font-size: clamp(1.2rem, 2.4vw, 1.85rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.sg-hero-slide .sg-hero-desc {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0 0 36px;
    line-height: 1.7;
}

.sg-hero-slide .sg-btn-white {
    border-radius: var(--radius);
    font-weight: 600;
}

/* 배너 인디케이터(닷) */
.sg-hero-dots {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sg-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.sg-hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.sg-hero-dot.active {
    background: var(--sg-accent);
    border-color: #fff;
    transform: scale(1.2);
}

/* 홈 섹션 교차 배경 */
.sg-section-alt {
    background-color: var(--sg-bg-soft);
    border-top: 1px solid var(--sg-border);
    border-bottom: 1px solid var(--sg-border);
}

/* Quick 3 Cards - 좌측 포인트 라인 */
.sg-quick-cards {
    padding: 56px 0;
    background: #fff;
    border-bottom: 1px solid var(--sg-line);
}

.sg-quick-cards.sg-section-alt {
    background-color: var(--sg-bg-soft);
}

.sg-quick-cards .sg-section-title--home {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.sg-quick-cards .sg-section-subtitle {
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: var(--sg-text-muted);
}

.sg-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
}

.sg-quick-card {
    text-align: center;
    padding: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--sg-border);
    border-left: 4px solid var(--sg-accent);
    text-decoration: none;
    color: var(--sg-text);
    transition: transform 0.25s, box-shadow 0.25s, border-left-color 0.25s;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.sg-quick-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--sg-primary);
}

.sg-quick-card-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: var(--sg-bg-soft);
}

.sg-quick-card h3 {
    margin: 0 0 8px;
    padding: 20px 20px 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--sg-primary);
}

.sg-quick-card p {
    margin: 0;
    padding: 0 20px 24px;
    font-size: 0.9rem;
    color: var(--sg-text-muted);
    line-height: 1.5;
}

/* 공지·뉴스 카드 섹션 (시니어 뉴스 | 실버그래피 뉴스) */
.sg-news-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #fff 0%, var(--sg-bg-soft) 100%);
    border-top: 1px solid var(--sg-line);
}

.sg-news-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sg-primary);
    margin: 0 0 28px;
    text-align: center;
}

.sg-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.sg-news-column {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sg-border);
    overflow: hidden;
}

.sg-news-column-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sg-primary);
    margin: 0;
    padding: 20px 24px;
    border-bottom: 3px solid var(--sg-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sg-news-icon {
    font-size: 1.35rem;
}

.sg-news-column-title .sg-link-more {
    margin-left: auto;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.sg-news-card-list {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 520px;
}

.sg-news-card {
    padding: 18px 20px;
    background: var(--sg-bg-soft);
    border-radius: var(--radius);
    border-left: 4px solid var(--sg-accent);
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 112px;
}

.sg-news-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sg-news-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sg-news-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    margin-bottom: 12px;
}

.sg-news-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.sg-news-card-date {
    display: block;
    font-size: 0.8rem;
    color: var(--sg-accent);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.sg-news-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sg-primary);
    margin: 0 0 8px;
    line-height: 1.4;
}

.sg-news-card-desc {
    font-size: 0.9rem;
    color: var(--sg-text-muted);
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .sg-news-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* AI Life Record - 섹션 타이틀 포인트 라인 */
.sg-ai-life {
    padding: 72px 0;
    background: var(--sg-bg-soft);
    border-top: 1px solid var(--sg-line);
}

.sg-ai-life .sg-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--sg-primary);
    display: inline-block;
}

.sg-ai-life .sg-section-subtitle {
    font-size: 1.05rem;
    color: var(--sg-text-muted);
    margin: 0 0 24px;
}

.sg-link-more {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--sg-accent);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.sg-link-more:hover {
    text-decoration: underline;
}

.sg-life-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.sg-life-card {
    background: #fff;
    padding: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--sg-border);
    border-left: 3px solid var(--sg-accent);
    transition: box-shadow 0.25s;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.sg-life-card:hover {
    box-shadow: var(--shadow-md);
}

.sg-life-card-thumb {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--sg-bg-soft);
}

.sg-life-card .sg-life-badge,
.sg-life-card .sg-life-text,
.sg-life-card .sg-life-meta {
    padding-left: 20px;
    padding-right: 20px;
}

.sg-life-card .sg-life-badge {
    padding-top: 14px;
}

.sg-life-card .sg-life-text {
    padding-bottom: 8px;
}

.sg-life-card .sg-life-meta {
    padding-bottom: 18px;
}

.sg-life-badge {
    display: block;
    font-size: 0.75rem;
    color: var(--sg-text-muted);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.sg-life-text {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--sg-text);
}

.sg-life-meta {
    font-size: 0.8rem;
    color: var(--sg-text-muted);
}

/* 시니어 셀렉션 - 타이틀 라인 + 카드 포인트 */
.sg-selection {
    padding: 72px 0;
    background: #fff;
    border-top: 1px solid var(--sg-line);
}

.sg-selection .sg-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 40px;
    color: var(--sg-primary);
    text-align: center;
    position: relative;
    padding-bottom: 14px;
}

.sg-selection .sg-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--sg-accent);
    border-radius: 2px;
}

.sg-selection .sg-section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--sg-text-muted);
    margin: -24px 0 28px;
}

/* 셀렉션 마퀴: 우 → 좌 무한 스크롤 */
.sg-selection-marquee-wrap {
    overflow: hidden;
    margin: 0 -20px;
    padding: 8px 0 24px;
}

.sg-selection-marquee {
    display: flex;
    width: max-content;
    animation: sg-selection-marquee 45s linear infinite;
}

.sg-selection-marquee:hover {
    animation-play-state: paused;
}

@keyframes sg-selection-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sg-selection-marquee {
        animation-duration: 120s;
    }
}

.sg-selection-track {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    padding: 0 20px;
}

.sg-selection-marquee .sg-selection-card {
    flex: 0 0 240px;
    min-width: 240px;
}

.sg-selection-card-img--placeholder {
    background-size: auto;
    background-position: center;
}

.sg-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.sg-selection-card {
    background: #fff;
    padding: 0;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--sg-text);
    border: 1px solid var(--sg-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.sg-selection-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--sg-accent-soft);
}

.sg-selection-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--sg-bg-soft);
}

.sg-selection-card .sg-selection-tag,
.sg-selection-card h3,
.sg-selection-card .sg-selection-price {
    padding-left: 20px;
    padding-right: 20px;
}

.sg-selection-card .sg-selection-tag {
    padding-top: 16px;
}

.sg-selection-card h3 {
    padding-bottom: 8px;
}

.sg-selection-card .sg-selection-price {
    padding-bottom: 24px;
}

.sg-selection-tag {
    display: block;
    font-size: 0.7rem;
    color: var(--sg-accent);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.sg-selection-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--sg-primary);
}

.sg-selection-price {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sg-secondary);
}

/* 전국 150개 지점(지도) + 프리미엄 서비스 한 블록 */
.sg-nationwide-block {
    padding: 64px 0;
    background: linear-gradient(180deg, var(--sg-bg-soft) 0%, #fff 100%);
    border-top: 1px solid var(--sg-line);
}

.sg-nationwide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.sg-nationwide-map-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sg-border);
}

.sg-nationwide-map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sg-primary);
    margin: 0 0 8px;
}

.sg-nationwide-map-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--sg-accent);
    margin-top: 12px;
    border-radius: 2px;
}

.sg-nationwide-map-desc {
    font-size: 0.95rem;
    color: var(--sg-text-muted);
    margin: 0 0 20px;
    line-height: 1.5;
}

.sg-korea-map-wrap {
    width: 100%;
    aspect-ratio: 100/140;
    max-height: 320px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--sg-bg-soft);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sg-korea-map {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    opacity: 0.35;
}

.sg-korea-outline {
    stroke: var(--sg-border);
    stroke-width: 1.2;
    transition: fill 0.2s;
}

.sg-nationwide-premium {
    padding: 8px 0 0;
}

.sg-nationwide-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sg-accent);
    letter-spacing: 0.06em;
    margin: 0 0 12px;
}

.sg-nationwide-premium .sg-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--sg-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sg-accent);
    display: inline-block;
}

.sg-nationwide-premium .sg-section-desc {
    margin: 0 0 28px;
    color: var(--sg-text-muted);
    line-height: 1.7;
}

.sg-nationwide-premium .sg-premium-list {
    margin: 0 0 28px;
}

@media (max-width: 768px) {
    .sg-nationwide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sg-nationwide-map-card {
        order: 1;
    }

    .sg-nationwide-premium {
        order: 2;
    }

    .sg-korea-map-wrap {
        max-height: 280px;
    }
}

/* 프리미엄 서비스(파트너) - 리스트 포인트 */
.sg-premium-service {
    padding: 72px 0;
    background: #fff;
    border-top: 1px solid var(--sg-line);
}

.sg-premium-service .sg-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--sg-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sg-accent);
    display: inline-block;
}

.sg-premium-service .sg-section-desc {
    margin: 0 0 32px;
    color: var(--sg-text-muted);
    line-height: 1.7;
}

.sg-premium-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    counter-reset: premium;
}

.sg-premium-list li {
    counter-increment: premium;
    padding: 16px 0;
    border-bottom: 1px solid var(--sg-line);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
}

.sg-premium-list li::before {
    content: counter(premium);
    font-weight: 700;
    color: var(--sg-accent);
    margin-right: 12px;
    min-width: 24px;
    text-align: center;
}

.sg-premium-list strong {
    flex: 0 0 auto;
}

.sg-premium-list span {
    color: var(--sg-text-muted);
    font-size: 0.95rem;
}

/* 스마트 케어 카드 - 포인트 라인 */
.sg-smart-care {
    padding: 72px 0;
    background: var(--sg-bg-soft);
    border-top: 1px solid var(--sg-line);
}

.sg-smart-care .sg-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 40px;
    text-align: center;
    color: var(--sg-primary);
    position: relative;
    padding-bottom: 14px;
}

.sg-smart-care .sg-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--sg-accent);
    border-radius: 2px;
}

.sg-smart-care .sg-section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--sg-text-muted);
    margin: -24px 0 28px;
}

.sg-care-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1200px) {

    .sg-life-grid,
    .sg-care-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {

    .sg-life-grid,
    .sg-care-grid {
        grid-template-columns: 1fr;
    }
}

.sg-care-card {
    background: #fff;
    padding: 0;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--sg-text);
    border: 1px solid var(--sg-border);
    border-top: 3px solid var(--sg-accent);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
}

.sg-care-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.sg-care-card-img {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--sg-bg-soft);
}

.sg-care-card .sg-care-type,
.sg-care-card h3,
.sg-care-card .sg-care-status {
    padding-left: 20px;
    padding-right: 20px;
}

.sg-care-card .sg-care-type {
    padding-top: 14px;
}

.sg-care-card h3 {
    padding-bottom: 6px;
}

.sg-care-card .sg-care-status {
    padding-bottom: 20px;
}

.sg-care-type {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sg-text-muted);
    margin-bottom: 10px;
}

.sg-care-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sg-primary);
}

.sg-care-status {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sg-accent);
}

/* CTA Art - 마무리 포인트 */
.sg-cta-art {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.sg-cta-art .sg-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 45, 61, 0.7) 0%, rgba(30, 45, 61, 0.85) 100%);
}

.sg-cta-inner {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
}

.sg-cta-quote {
    font-size: clamp(1.3rem, 3.2vw, 1.9rem);
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.sg-cta-quote::before,
.sg-cta-quote::after {
    color: var(--sg-accent);
}

.sg-cta-desc {
    font-size: 1.05rem;
    opacity: 0.95;
    margin: 0 0 32px;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.sg-cta-art .sg-btn-white {
    border-radius: var(--radius);
    font-weight: 600;
}

/* Section title/desc 공통 */
.sg-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sg-primary);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.sg-section-desc {
    font-size: 1rem;
    color: var(--sg-text-muted);
    line-height: 1.65;
}

/* Dismissable success alert */
.sg-alert-success {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sg-alert-close {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--sg-border);
    background: #fff;
    color: var(--sg-primary);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
}

.sg-alert-close:hover {
    background: var(--sg-bg-soft);
}

@media (max-width: 1100px) {
    .sg-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .sg-quick-grid {
        grid-template-columns: 1fr;
    }

    .sg-hero-title {
        font-size: 1.5rem;
    }

    .sg-cta-art {
        min-height: 280px;
        padding: 40px 20px;
    }
}

/* IT Service / Site Check CTA Card */
.sg-it-cta-section {
    padding: 30px 0 0;
}

.sg-it-cta-card {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 1.5fr;
    gap: 32px;
    background: #fff;
    border: 1px solid var(--sg-border);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.sg-it-cta-media {
    position: relative;
    min-height: 240px;
    background: var(--sg-bg-soft);
}

.sg-it-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sg-it-cta-content {
    padding: 32px 28px 28px;
}

.sg-it-cta-content h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: var(--sg-primary);
}

.sg-it-cta-content p {
    margin: 0 0 16px;
    color: var(--sg-text-muted);
}

.sg-it-cta-list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.sg-it-cta-list li {
    padding-left: 18px;
    position: relative;
    color: var(--sg-text);
}

.sg-it-cta-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sg-accent);
}

.sg-it-cta-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--sg-text-muted);
    margin-bottom: 16px;
}

.sg-it-cta-meta span {
    background: var(--sg-bg-soft);
    padding: 6px 10px;
    border-radius: 999px;
}

.sg-it-cta-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.sg-it-cta-form .full {
    grid-column: 1 / -1;
}

.sg-it-cta-form input,
.sg-it-cta-form select,
.sg-it-cta-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--sg-border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-main);
}

.sg-it-cta-form textarea {
    min-height: 110px;
    resize: vertical;
}

.sg-it-cta-form .sg-btn {
    margin-top: 4px;
    width: 100%;
}

@media (max-width: 900px) {
    .sg-it-cta-card {
        grid-template-columns: 1fr;
    }

    .sg-it-cta-media {
        min-height: 200px;
    }

    .sg-it-cta-form {
        grid-template-columns: 1fr;
    }

    .sg-it-cta-form input,
    .sg-it-cta-form select,
    .sg-it-cta-form textarea {
        min-height: 50px;
    }

    .sg-it-cta-form textarea {
        min-height: 120px;
    }

    .sg-it-cta-form .full .sg-btn {
        position: relative;
        margin-top: 8px;
        min-height: 50px;
    }
}



/* Home notices modal */
.sg-news-card--clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sg-news-card--clickable:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sg-news-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.sg-news-modal.is-open {
    display: flex;
}

.sg-news-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--sg-border);
    padding: 28px;
    position: relative;
}

.sg-news-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: var(--sg-bg-soft);
    color: var(--sg-primary);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-size: 18px;
}

.sg-news-modal-title {
    margin: 0 0 6px;
    font-size: 1.3rem;
    color: var(--sg-primary);
}

.sg-news-modal-date {
    font-size: 0.9rem;
    color: var(--sg-text-muted);
    margin-bottom: 16px;
}

.sg-news-modal-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--sg-text);
}

/* Desktop: hover opens dropdown */
@media (min-width: 1025px) {
    .sg-nav-group:hover > .sg-dropdown {
        display: flex !important;
    }
}

/* Mobile: click state controls dropdown */
@media (max-width: 1024px) {
    .sg-nav-group:hover .sg-dropdown {
        display: none !important;
    }

    .sg-nav-group.is-open .sg-dropdown,
    .sg-nav-group.is-open:hover .sg-dropdown,
    .sg-dropdown.active {
        display: flex !important;
    }
}

/* B2B apply page */
.sg-b2b-hero-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.sg-b2b-apply-overview {
    padding: 60px 20px 20px;
}

.sg-b2b-apply-point-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.sg-b2b-apply-point-card {
    background: #fff;
    border: 1px solid var(--sg-border);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 8px 20px rgba(18, 38, 63, 0.06);
}

.sg-b2b-apply-point-card h3 {
    margin: 0 0 8px;
    color: var(--sg-primary);
    font-size: 19px;
}

.sg-b2b-apply-point-card p {
    margin: 0;
    color: var(--sg-text-muted);
    line-height: 1.65;
}

.sg-b2b-apply-process {
    padding: 16px 20px 26px;
}

.sg-b2b-apply-process-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    background: #f4f7fb;
    border: 1px solid #e4e9f2;
    border-radius: 14px;
    padding: 16px;
}

.sg-b2b-apply-process-item {
    background: #fff;
    border: 1px solid #e6ebf4;
    border-radius: 12px;
    padding: 14px 12px;
}

.sg-b2b-apply-process-item span {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sg-primary);
    color: #fff;
    text-align: center;
    line-height: 28px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sg-b2b-apply-process-item h4 {
    margin: 0 0 6px;
    font-size: 15px;
    color: var(--sg-primary);
}

.sg-b2b-apply-process-item p {
    margin: 0;
    color: var(--sg-text-muted);
    font-size: 13px;
}

.sg-b2b-apply-form-wrap {
    padding: 10px 20px 30px;
}

.sg-b2b-apply-form-container {
    max-width: 1080px;
    margin: 0 auto;
    border: 1px solid var(--sg-border);
    border-radius: 14px;
    background: #fff;
    padding: 36px 34px;
    box-shadow: 0 10px 30px rgba(16, 33, 54, 0.08);
}

.sg-b2b-apply-form-head {
    margin-bottom: 22px;
}

.sg-b2b-apply-form-head h2 {
    margin: 0 0 8px;
    color: var(--sg-primary);
    font-size: 28px;
}

.sg-b2b-apply-form-head p {
    margin: 0;
    color: var(--sg-text-muted);
}

.sg-b2b-apply-form-container .form-group label {
    display: block;
    font-weight: 700;
    color: #1c2d40;
    font-size: 16px;
    line-height: 1.45;
    margin: 0 0 10px;
}

.sg-b2b-apply-form-container .form-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 18px;
}

.sg-b2b-apply-form-container .form-group input,
.sg-b2b-apply-form-container .form-group select,
.sg-b2b-apply-form-container .form-group textarea {
    border: 1px solid #d5dde7;
    border-radius: 12px;
    min-height: 54px;
}

.sg-b2b-apply-form-container .form-group textarea {
    min-height: 140px;
}

.sg-b2b-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.sg-b2b-apply-submit {
    margin-top: 20px;
}

.sg-b2b-apply-submit .sg-btn {
    min-width: 260px;
}

.sg-b2b-apply-faq {
    padding: 18px 20px 72px;
}

.sg-b2b-apply-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.sg-b2b-apply-faq-grid article {
    background: #fff;
    border: 1px solid var(--sg-border);
    border-radius: 12px;
    padding: 20px 18px;
}

.sg-b2b-apply-faq-grid h3 {
    margin: 0 0 8px;
    color: var(--sg-primary);
    font-size: 17px;
}

.sg-b2b-apply-faq-grid p {
    margin: 0;
    color: var(--sg-text-muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .sg-b2b-apply-point-grid,
    .sg-b2b-apply-faq-grid {
        grid-template-columns: 1fr;
    }

    .sg-b2b-apply-process-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sg-b2b-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sg-b2b-apply-form-container {
        padding: 24px 16px;
    }

    .sg-b2b-apply-form-head {
        margin-bottom: 16px;
    }

    .sg-b2b-apply-form-container .form-group {
        margin-bottom: 14px;
    }

    .sg-b2b-apply-form-container .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .sg-b2b-apply-form-container .form-group input,
    .sg-b2b-apply-form-container .form-group select,
    .sg-b2b-apply-form-container .form-group textarea {
        min-height: 50px;
    }

    .sg-b2b-apply-submit {
        margin-top: 14px;
    }

    .sg-b2b-apply-submit .sg-btn {
        width: 100%;
        min-width: 0;
        min-height: 50px;
    }
}

@media (max-width: 640px) {
    .sg-b2b-apply-process-row {
        grid-template-columns: 1fr;
    }
}