/* reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
#app {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-width: 1440px;
    font-family: 'Pretendard',
    'Apple SD Gothic Neo',
    'Noto Sans KR',
    'Malgun Gothic',
    sans-serif;
    line-height: 1.5;
    color: #111827;
    background-color: #f5f7fb;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    background: none;
}


button {
    border: 0;
    padding: 0;
    cursor: pointer;
}

input,
textarea,
select {
    outline: none;
}

input::-ms-clear,
input::-ms-reveal {
    display: none;
}

textarea {
    resize: none;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

dl,
dt,
dd,
p,
figure,
blockquote {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

caption {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
}

th,
td {
    padding: 0;
    text-align: left;
    vertical-align: middle;
}

fieldset,
legend {
    margin: 0;
    padding: 0;
    border: 0;
}

address,
em,
i {
    font-style: normal;
}

strong,
b {
    font-weight: 700;
}

hr {
    margin: 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

[hidden] {
    display: none !important;
}


/* common */
.inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* header */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
}

#header .inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 28px;
    font-weight: 800;
    color: #1d3557;
}

.gnb ul {
    display: flex;
    gap: 48px;
}

.gnb a {
    font-size: 17px;
    font-weight: 600;
    transition: 0.2s;
}

.gnb a:hover {
    color: #1d4ed8;
}

.header-right {
    display: flex;
    align-items: center;
}

.inquiry-btn {
    height: 48px;
    padding: 0 28px;
    border-radius: 12px;
    background: #1d3557;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s;
}

.inquiry-btn:hover {
    background: #16304f;
}

.mobile-menu-btn,
.mobile-menu-dim,
.mobile-menu-panel {
    display: none;
}

.header-auth-btn {
    height: 48px;
    padding: 0 24px;
    border-radius: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 800;
    transition: 0.2s;
}

.header-auth-btn.ghost {
    margin-right: 10px;
    border: 1px solid #dbe2ea;
    background: #fff;
    color: #1d3557;
}

.header-auth-btn.ghost:hover {
    border-color: #1d3557;
    background: #f8fafc;
}

.mobile-auth-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 24px;
}

.mobile-auth-btn {
    height: 48px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 800;
}

.mobile-auth-btn.primary {
    background: #1d3557;
    color: #fff;
}

.mobile-auth-btn.secondary {
    border: 1px solid #dbe2ea;
    background: #fff;
    color: #1d3557;
}

/* hero */
.hero {
    background: linear-gradient(
            90deg,
            rgba(247, 249, 252, 1) 35%,
            rgba(247, 249, 252, 0.5) 45%,
            rgba(247, 249, 252, 0) 50%
    ),
    url('../img/hero.png');

    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 760px;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: #e9eef8;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 700;
}

.hero-title {
    margin-top: 28px;
    font-size: 56px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
}

.hero-title strong {
    color: #1d4ed8;
    font-weight: 800;
}

.hero-desc {
    margin-top: 28px;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

.hero-desc-m {
    display: none;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 16px;
}

.hero-btn {
    height: 56px;
    padding: 0 32px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: 0.2s;
}

.hero-btn.primary {
    background: #1d3557;
    color: #fff;
}

.hero-btn.primary:hover {
    background: #16304f;
}

.hero-btn.secondary {
    background: #fff;
    border: 1px solid #dbe2ea;
}

.hero-btn.secondary:hover {
    border-color: #1d4ed8;
    color: #1d4ed8;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-menu {
    width: 450px;
    padding: 22px;
    border-radius: 36px;
    background: rgba(210, 230, 255, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    z-index: 5;
}

.quick-item {
    min-height: 190px;
    padding: 30px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12),
    0 8px 20px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.quick-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.96);
}

.quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.quick-item strong {
    margin-top: 18px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}

.quick-item span {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.quick-item:hover {
    transform: translateY(-4px);
}

.quick-item span {
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
}

/* feature */
.feature-section {
    padding: 80px 0 40px;
    background: #f7f9fc;
}

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

.feature-card {
    min-height: 230px;
    padding: 36px 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e8eef6;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.feature-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #f0f4fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.feature-icon i {
    font-size: 36px;
    color: #1d3557;
}

.feature-card h3 {
    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
}

.feature-card p {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.65;
    color: #6b7280;
}

/* preview */
.preview-section {
    padding: 40px 0;
    background: #f7f9fc;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.preview-card {
    padding: 36px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e8eef6;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
}

.vacancy-list,
.community-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-height: 0;
    margin: 20px 0;
}

.vacancy-item,
.community-item {
    height: 126px;
}

.preview-head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.preview-head h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.preview-head h3 i {
    margin-right: 12px;
    color: #1d3557;
}

.preview-head p {
    margin-top: 8px;
    font-size: 16px;
    color: #6b7280;
}

.preview-more {
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1d3557;
}

.preview-empty {
    flex: 1;
    min-height: calc((126px * 3) + (14px * 2));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #dbe2ea;
    border-radius: 18px;
    background: #f8fafc;
    color: #64748b;
    font-size: 15px;
    font-weight: 700;
}

.vacancy-list,
.community-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vacancy-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 16px;
    border: 1px solid #e8eef6;
    border-radius: 18px;
    background: #fff;
}

.vacancy-thumb {
    height: 92px;
    border-radius: 12px;
    background: #dbe5ef;
}

.vacancy-info {
    font-size: 20px;
}

.vacancy-info strong {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.status {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
}

.status::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-right: 8px;
    border-radius: 50%;
}

.status.green {
    color: #10b981;
}

.status.orange {
    color: #f97316;
}

.status.blue {
    color: #3b82f6;
}

.status.green::before {
    background: #10b981;
}

.status.orange::before {
    background: #f97316;
}

.status.blue::before {
    background: #3b82f6;
}

.vacancy-meta {
    text-align: right;
}

.vacancy-meta span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: #6b7280;
}

.community-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 20px;
    padding: 0;
    border-bottom: 1px solid #edf1f6;
}

.community-item:first-child {
    border-top: 1px solid #edf1f6;
}

.community-content {
    min-width: 0;
}

.community-content strong {
    display: block;
    max-width: 100%;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    line-height: 1.45;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.community-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.community-meta > span:first-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #6b7280;
}

.comment {
    flex-shrink: 0;
    font-size: 16px;
    color: #6b7280;
}

.badge {
    width: 82px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.badge.navy {
    background: #1d3557;
}

.badge.green {
    background: #10b981;
}

.badge.purple {
    background: #7c3aed;
}

.preview-bottom {
    height: 58px;
    margin-top: auto;
    border: 1px solid #e8eef6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    color: #1d3557;
}

/* tenant */
.tenant-section {
    padding: 40px 0;
    background: #f7f9fc;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title h2 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}

.section-title p {
    margin-top: 12px;
    font-size: 17px;
    color: #6b7280;
}


.tenant-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e8eef6;
    transition: 0.25s ease;
}

.tenant-card:hover {
    transform: translateY(-6px);
}

.tenant-info {
    min-height: 116px;
    padding: 24px;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 18px;
}

.tenant-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
}

.tenant-logo.blue {
    background: #3b82f6;
}

.tenant-logo.black {
    background: #111;
}

.tenant-logo.navy {
    background: #1d3557;
}

.tenant-info h3 {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
}

.tenant-info p {
    margin-top: 8px;
    font-size: 16px;
    color: #6b7280;
}

.tenant-info > i {
    font-size: 18px;
    color: #1d3557;
}

.tenant-slider-wrap {
    position: relative;
}

.tenant-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding-top: 12px;
    margin-top: -12px;
}

.tenant-slider-track {
    display: flex;
    gap: 28px;
    scroll-behavior: smooth;
}

.tenant-slide {
    flex: 0 0 calc((100% - 56px) / 3);
}

.tenant-image {
    height: 210px;
    overflow: hidden;
    background: #dbe5ef;
}

.tenant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tenant-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dbe2ea;
    color: #1d3557;
    font-size: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    transform: translateY(-50%);
}

.tenant-slider-btn.prev {
    left: -70px;
}

.tenant-slider-btn.next {
    right: -70px;
}

.tenant-slider-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.tenant-dots {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tenant-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
}

.tenant-dots button.active {
    background: #1d3557;
}

.tenant-empty {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #dbe2ea;
    border-radius: 24px;
    background: #fff;
    color: #64748b;
    font-size: 16px;
    font-weight: 700;
}

/* consult banner */
.consult-banner-section {
    padding: 40px 0 80px;
    background: #f7f9fc;
}

.consult-banner {
    padding: 46px 52px;
    border-radius: 28px;
    background: linear-gradient(90deg, rgba(13, 31, 53, 0.96), rgba(13, 31, 53, 0.88)),
    url('../img/hero.png');
    background-size: cover;
    background-position: right center;
    color: #fff;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 48px;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
}

.consult-left h3 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.35;
}

.consult-left p {
    margin-top: 14px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
}

.consult-btn {
    width: 180px;
    height: 58px;
    margin-top: 34px;
    border-radius: 14px;
    background: #fff;
    color: #1d3557;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
}

.consult-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: center;
}

.consult-item {
    min-height: 150px;
    padding: 0 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.consult-item:first-child {
    border-left: none;
}

.consult-item i {
    font-size: 42px;
    margin-bottom: 18px;
    color: #fff;
}

.consult-item strong {
    font-size: 22px;
    font-weight: 800;
}

.consult-item span {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
}

/* footer */
#footer {
    padding: 42px 0;
    border-top: 1px solid #e8eef6;
    background: #fff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 42px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo strong {
    font-size: 32px;
    font-weight: 800;
    color: rgb(29, 53, 87);
}

.footer-info p {
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
}

.footer-info span {
    margin: 0 10px;
    color: #cbd5e1;
}

.copyright {
    margin-top: 6px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 18px;

    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
}

.footer-right span {
    color: #cbd5e1;
}

/* floating top button */
.floating-top-btn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid #dbe2ea;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1d3557;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s,
    visibility 0.25s,
    transform 0.25s;
    z-index: 9999;
}

.floating-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-top-btn:hover {
    transform: translateY(-4px);
    border-color: #1d3557;
    background: #fff;
}

/* board common */
.sub-visual {
    padding: 40px 0;
    background: linear-gradient(135deg, #f3f7fb 0%, #eef3f8 100%);
}

.sub-visual .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-visual .sub-label {
    margin-bottom: 12px;
    color: #1b365d;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.sub-visual h1 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 42px;
    font-weight: 900;
}

.sub-visual p {
    margin: 0;
    color: #64748b;
    font-size: 18px;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
}

.section-title-row h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 32px;
    font-weight: 900;
}

.section-title-row p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
}

.empty {
    grid-column: 1 / -1;
    padding: 80px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    color: #64748b;
    text-align: center;
    font-size: 16px;
}

/* board pagination common */
.board-page .pg_wrap {
    float: none !important;
    clear: both;
    display: flex !important;
    justify-content: center;
    width: 100%;
    margin: 30px 0 0;
}

.board-page .pg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.board-page .pg_page,
.board-page .pg_current {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 11px;
    border: 0;
    border-radius: 6px;
    background: #f1f5f9 !important;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-indent: 0 !important;
    overflow: visible !important;
    text-decoration: none;
}

.board-page .pg_current {
    background: #3b82f6 !important;
    color: #fff !important;
}

.board-page .pg_start,
.board-page .pg_prev,
.board-page .pg_next,
.board-page .pg_end {
    background-image: none !important;
    background-color: #f1f5f9 !important;
    font-size: 0 !important;
}

.board-page .pg_start::before {
    content: '«';
    font-size: 14px;
}

.board-page .pg_prev::before {
    content: '‹';
    font-size: 14px;
}

.board-page .pg_next::before {
    content: '›';
    font-size: 14px;
}

.board-page .pg_end::before {
    content: '»';
    font-size: 14px;
}

/* location */
.location-page {
    padding: 80px 0 100px;
    background: #fff;
}

.location-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 28px;
    align-items: stretch;
}

.location-map-card,
.location-info-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.kakao-map {
    width: 100%;
    height: 520px;
}

.location-info-card {
    padding: 34px;
}

.location-info-card h3 {
    margin-bottom: 28px;
    color: #111827;
    font-size: 28px;
    font-weight: 900;
}

.location-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-info-list div {
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.location-info-list dt {
    margin-bottom: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.location-info-list dd {
    color: #111827;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.6;
}

.location-info-list a {
    color: inherit;
}

.location-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    background: #fff;
    color: #1d3557;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.location-btn.primary {
    border-color: #1d3557;
    background: #1d3557;
    color: #fff;
}

.location-btn:hover {
    border-color: #1d3557;
}

.traffic-section {
    margin-top: 70px;
}

.traffic-section h3 {
    margin-bottom: 24px;
    color: #111827;
    font-size: 32px;
    font-weight: 900;
}

.traffic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.traffic-card {
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #f8fafc;
}

.traffic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: #1d3557;
    color: #fff;
    font-size: 24px;
}

.traffic-card h4 {
    margin-bottom: 14px;
    color: #111827;
    font-size: 21px;
    font-weight: 900;
}

.traffic-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.traffic-card strong {
    color: #111827;
}

.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 40px;
    z-index: 9999;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    padding: 14px 22px;
    border-radius: 999px;
    background: #1d3557;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
    transition: 0.25s ease;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}