
:root{
  --ink:#15181f;
  --ink-soft:#565c6b;
  --ink-faint:#8a8f9c;
  --bg:#ffffff;
  --bg-soft:#f8f7f6;
  --bg-tint:#fdeeee;
  --line:rgba(21,24,31,.08);
  --line-strong:rgba(21,24,31,.14);
  --accent:#C00000;
  --accent-dark:#C00000;
  --accent-ink:#7a1013;
  --surface:#ffffff;
  --shadow-diffuse:0 30px 60px -25px rgba(21,24,31,.16);
  --shadow-soft:0 20px 40px -24px rgba(21,24,31,.14);
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:12px;
  --ease:cubic-bezier(.16,1,.3,1);
  --maxw:1360px;
}


.point-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17.6px;
    margin-top: 32px;
}
.point-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}
.point-card {
    min-width: 0;
    padding: 25.6px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: var(--bg-tint);
    border-radius: 16.8px;
    transition: transform .4s var(--ease), background .4s var(--ease);
}
.badge-md {
    width: 57.6px;
    height: 57.6px;
}
.point-card .badge {
    margin-bottom: 16px;
}
.group:hover .badge {
    transform: translateY(-2px);
}
.point-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 700;
}
p {
    line-height: 1.7;

}
.point-card p {
    font-size: 14px;
}
.section {
    position: relative;
    padding-block: 48px;
}
.media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-diffuse);
}
.media-frame.ratio-4-3 {
    aspect-ratio: 4 / 3;
}
.tax-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-delay-1 {
    transition-delay: .08s;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.tax-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 24px 0;
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.tax-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}
.tax-card-head {
    display: flex;
    align-items: flex-start;
    gap: 13.6px;
    margin-bottom: 16px;
}
.tax-num {
    flex: none;
    width: 34.4px;
    height: 34.4px;
    border-radius: 10.4px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .4s var(--ease), transform .4s var(--ease);
}
.tax-card:hover .tax-num {
    background: var(--accent-dark);
    transform: scale(1.06);
}
.tax-card-head h4 {
    font-size: 16px;
    line-height: 1.32;
    color: var(--accent-dark);
    padding-top: 2.4px;
    font-weight: 700;
    margin-bottom: 0;
}
.tax-card>p {
   
    min-width: 0;
}
.tax-card-media {
    margin-top: auto;
    padding-top: 24px;
}
.tax-card-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s var(--ease);
}
.tax-card:hover .tax-card-media img {
    transform: scale(1.035);
}

.strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-delay-2 {
    transition-delay: .16s;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.section-title{
  font-weight: 700;
}
.strip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 25.6px 24px;
    border-right: 1px solid var(--line);
    min-width: 0;
}
.strip-item>div {
    min-width: 0;
}
.badge svg {
    width: 80%;
    height: 80%;
}
.strip-item h4 {
    font-size: 16px;
    margin-bottom: 5.6px;
    font-weight: 600;
}
.strip-item:last-child {
    border-right: none;
}
.badge-sm {
    width: 46.4px;
    height: 46.4px;
    border-radius: 13.6px;
}
.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: var(--bg-tint);
    border-radius: 16.8px;
    transition: transform .4s var(--ease), background .4s var(--ease);
}
.section-head.center {
    text-align: center;
}
.row-list1 {
    border-top: 1px solid var(--line);
}
.row-item>div {
    min-width: 0;
}
.row-item .badge {
    margin-top: 1.6px;
}
.badge-sm {
    width: 46.4px;
    height: 46.4px;
    border-radius: 13.6px;
}
.row-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}
.row-item {
    display: flex;
    gap: 20px;
    padding-block: 10px;
    border-bottom: 1px solid var(--line);
}
.security-pair {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.security-pair>* {
    min-width: 0;
}
.security-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    position: relative;
    min-height: 352px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.security-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
    transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.security-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 24, 31, 0) 20%, rgba(10, 11, 14, .94) 92%);
}
.security-card-body {
    position: relative;
    z-index: 1;
    padding: 32px;
}
.security-card-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
}
.security-card-body h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8.8px;
    font-weight: 700;
}
.security-card:hover img {
    transform: scale(1.06);
    opacity: .68;
}
.point-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17.6px;
    margin-top: 32px;
}
.point-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
}
.point-card .badge {
    margin-bottom: 16px;
}
.badge-md {
    width: 57.6px;
    height: 57.6px;
}
.point-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.point-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.media-frame.flat {
    box-shadow: none;
    background: none;
}
.lang-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11.2px;
    margin-top: 33.6px;
    max-width: 544px;
}
.lang-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10.4px;
    padding: 18.4px 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.lang-card span:last-child {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}
.lang-card .flag {
    width: 42.4px;
    height: 42.4px;
    border-radius: 50%;
    overflow: hidden;
    flex: none;
    box-shadow: 0 0 0 1px var(--line) inset;
    border: solid 1px #ddd;
}
.hero-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    max-width: 544px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    padding: 16.8px 20.8px;
    
}
.hero-banner .icon-circle {
    flex: none;
    width: 36.8px;
    height: 36.8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-banner p {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.45;
}
.lang-card .flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.col-mile {
    display: flex;
    align-items: center;
}
p.eyebrow {
    display: none;
}
/*.image-filter img {
    filter: brightness(102%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}*/
p.copy-right {color: #b6b6b6;}

.footer-logo p {
    color: #b6b6b6;
}
.section-top-dev {
    background-color: #fbfbfb !important;
}
.list-sercurity ul li {
    list-style: none;
    margin-bottom: 12px;
    position: relative;
    display: block;
    display: flex;
    align-items: center;
}

.list-sercurity ul li:before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 13.6px;
    background: url(image/icon-2.png);
    background-position: center;
    background-size: contain;
    margin-right: 10px;
    display: block;
    min-width: 40px;
}

.list-sercurity ul {
    padding-left: 0;
}
.section-title {
    font-size: 40px;
    
}
.ko-KR  .section-title{
    letter-spacing: -2.8px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: loose;
    text-wrap: pretty;
}

.feature-grid {
   
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}
.feature-card {
    margin: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1.15cqw;
    background: rgba(255, 255, 255, .84);
    border: 1px solid #e9ebef;
    border-radius: 1.5cqw;
   
    padding-top: 21px;
    padding-bottom: 21px;
}
.feature-card svg, .feature-card img {
    width: 108px;
    height: 108px;
    color: #525965;
    overflow: visible;
    object-fit: contain;
}
.feature-card h3 {
    margin: 0;
    color: #131722;
    font-size: 18px;
    font-weight: 700;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    line-height: 1.2;
}
/*===============benefit-grid=============*/
.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap:20px;
}
.benefit-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid #e4e7ec;
    border-radius: 1.25cqw;
    overflow: hidden;
}
.benefit-card header {
    height: 4.5cqw;
    display: flex;
    align-items: center;
    gap: 1.5cqw;
    padding: 1.05cqw 1.45cqw .45cqw;
}
.benefit-card header b {
    flex: 0 0 2.45cqw;
    height: 2.45cqw;
    display: grid;
    place-items: center;
    border-radius: .52cqw;
    background: linear-gradient(#ee3f42, #d90f16);
    color: white;
    font-size: 1.35cqw;
    box-shadow: inset 0 .15cqw .2cqw rgba(255, 255, 255, .25);
}
.benefit-card h3 {
    margin: 0;
    font-size: 18px;
    white-space: nowrap;
}
.benefit-body {
    height: calc(100% - 30%);
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    padding: 0 1.25cqw 1cqw;
}
.benefit-illust {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}
.benefit-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.05cqw;
}
.benefit-body li {
    position: relative;
    padding-left: 1.7cqw;
    font-size: 14px;
    line-height: 1.32;
}
.benefit-body li::before {
    content: "";
    position: absolute;
    left: .35cqw;
    top: .48cqw;
    width: .4cqw;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent);
}
.benefit-illust img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/*===============benefit-grid=============*/
/*=================.adv-grid=================*/
.adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.adv-card {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px 18px;
    padding: 23px 24px 25px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 18px 36px -28px rgba(21, 24, 31, .22);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.adv-num {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.adv-card-title {
    grid-column: 2;
    align-self: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: var(--ink);
    margin-bottom: 0 !important;
}
.adv-card-body {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: start;
}
.adv-illust {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.adv-illust img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}
.adv-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.adv-list li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.adv-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
a.adv-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    color: inherit;
}
a.adv-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    color: inherit;
    text-decoration: none;
}
/*=================.adv-grid=================*/
/*=================plan-grid=============*/
.plan-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}
.plan-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 34px -24px rgba(21, 24, 31, .22);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    padding-bottom: 0;
}
.plan-head {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 12px 14px;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.35;
    height: 104px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.plan-head small {
    display: block;
    font-size: 14px;
    font-weight: 700;
    opacity: .95;
}
.plan-body {
    padding: 36px 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 140px;
}
.plan-price {
    text-align: center;
}
.plan-price b {
    display: block;
    font-size: 42px;
    color: var(--accent);
    letter-spacing: -.03em;
    line-height: 1;
    font-weight: 800;
}
.plan-price span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: var(--ink);
    font-weight: 600;
}
@media (max-width: 1100px) {
    .plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/*=================plan-grid=============*/
/*==============fee-wrap===========*/
.fee-wrap {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}
.fee-table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e8e8eb;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px -28px rgba(21, 24, 31, .18);
    table-layout: fixed;
}
.fee-table col.fee-col-opt {
    width: 62%;
}
.fee-table col.fee-col-cost {
    width: 38%;
}
.fee-table th, .fee-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 16px;
    vertical-align: middle;
}
.fee-table th {
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    letter-spacing: -.01em;
    font-size: 20px;
    padding: 14px 20px;
}
.fee-table tbody tr {
    transition: background .25s var(--ease);
}
.fee-table td {
    color: var(--ink);
    font-weight: 700;
    border-bottom: 1px dashed #d8d8de;
    border-top: none;
}
.fee-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.fee-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FDEEEE;
    border: none;
    box-shadow: none;
    display: grid;
    place-items: center;
}
.fee-opt span {
    line-height: 1.45;
}
.fee-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}
.fee-opt span {
    line-height: 1.45;
}
.fee-table td+td {
    border-left: 2px solid var(--accent);
    font-weight: 700;
    color: var(--accent);
    font-size: 17px;
    line-height: 1.45;
}
.fee-note {
    display: inline;
    margin-left: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    white-space: normal;
}
.fee-table tr:last-child td {
    border-bottom: none;
}
/*==============fee-wrap===========*/
/*===============.contact-grid=============*/
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    grid-template-rows: auto 1fr;
    gap: 14px 28px;
    align-items: stretch;
}
.contact-company {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--accent);
}
.contact-rows {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}
.contact-row dt {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--accent);
}
.contact-row dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
    font-weight: 500;
    word-break: break-word;
}
.contact-row a {
    color: var(--ink);
    border-bottom: 1px solid transparent;
    transition: border-color .25s, color .25s;
}
.contact-row a:hover {
    color: var(--accent);
    border-color: rgba(220, 30, 35, .35);
}
.contact-qr {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8eb;
    border-radius: 12px;
    box-shadow: 0 10px 24px -18px rgba(21, 24, 31, .28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 18px 18px;
    text-align: center;
    gap: 14px;
}
.contact-qr img {
    width: 100%;
    max-width: 160px;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    display: block;
}
.contact-qr p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #8a8a93;
}
.contact-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e8e8eb;
    border-radius: 10px;
    box-shadow: 0 10px 24px -18px rgba(21, 24, 31, .28);
}
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;
    }
}
@media (max-width: 720px) {
    .contact-row {
        grid-template-columns: 1fr;
        padding: 14px 16px;
        gap: 1px;
    }
}
@media (max-width: 980px) {
    .contact-company, .contact-rows, .contact-qr {
        grid-column: 1;
        grid-row: auto;
    }
    .contact-qr {
        max-width: 220px;
        margin: 6px auto 0;
        width: 100%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;
    }
}
@media (max-width: 620px) {
    .plan-grid {
        grid-template-columns: 1fr;
    }
}
/*===============.contact-grid=============*/
/*=============.audit-layout================*/
.audit-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
    align-items: stretch;
}
.audit-visual {
    min-width: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    background: var(--bg-soft);
    align-self: stretch;
}
.audit-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}
.audit-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}
}
.audit-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px 16px;
    align-items: start;
    padding: 20px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 14px 32px -26px rgba(21, 24, 31, .2);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.audit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff1f1;
    display: grid;
    place-items: center;
    flex: none;
}
.audit-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}
.audit-card-body {
    min-width: 0;
}
.audit-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.audit-num {
    flex: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--accent);
}
.audit-card h3 {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.audit-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.audit-list li {
    position: relative;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.audit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}
.audit-star {
    flex: none;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}
.audit-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px 16px;
    align-items: start;
    padding: 20px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    margin-bottom: 0;
}
@media (max-width: 980px) {
    .audit-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 980px) {
    .audit-visual img {
        min-height: 240px;
        max-height: 360px;
    }
}
/*=============.audit-layout================*/
@media (min-width: 320px) {
    .ko-KR .page-id-15767 p {
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: normal;
        line-break: loose;
        text-wrap: pretty;
    }
}
@media(min-width: 768px){
  .row-flex1 {
      display: flex;
  }
  .col-image-dev .media-frame {
      opacity: 0;
      height: 0;
  }
  .col-image-dev .wpb_wrapper{
    height: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-diffuse);
  
    background-size: cover;
    background-position: center;
  }
  .image-dev1 .wpb_wrapper {
    
    background-image: url('https://amnote.com.vn/wp-content/uploads/2026/07/tinh-nang.jpg');
    
  }
  .image-dev2 .wpb_wrapper {
    
    background-image: url(' https://amnote.com.vn/wp-content/uploads/2026/07/asset-9caf787bb6d5ef.png');
  }
  .image-dev3 .wpb_wrapper {
    
    background-image: url('https://amnote.com.vn/wp-content/uploads/2026/07/asset-89205929c1e9f5.jpg');
  }
   .image-dev4 .wpb_wrapper {
    
    background-image: url('https://amnote.com.vn/wp-content/uploads/2026/07/audit-firms-hero.jpg');
  }

}

@media (max-width:980px){
  .tax-grid{grid-template-columns:1fr 1fr}
  .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }
    .adv-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 768px){
    .adv-card-body {
        grid-template-columns: 1fr;
        justify-items: start;
    }
    .section-title {
        font-size: 30px;
    }

    .hero-banner p {
        font-size: 18px;
    }

    .pdb-15 {
        margin-bottom: 30px !IMPORTANT;
    }

    .pdt-15 {
        margin-top: 30px !IMPORTANT;
    }
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
    }

}
@media (max-width:620px){
  .tax-grid{grid-template-columns:1fr}
  .tax-card{padding:25.6px 22.4px 0}

}

@media (max-width:820px){
  .strip{grid-template-columns:1fr}
  .strip-item{border-right:none;border-bottom:1px solid var(--line)}
  .strip-item:last-child{border-bottom:none}
}

@media (max-width:820px){
  .security-head{grid-template-columns:1fr}
  .security-pair{grid-template-columns:1fr}
}
@media (max-width:980px){.point-grid-4{grid-template-columns:1fr 1fr}}
@media (max-width:620px){.point-grid-4{grid-template-columns:1fr}}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{order:-1}
  .split,.split.reverse{grid-template-columns:1fr}
  .split .split-media,.split.reverse .split-media{order:-1}
  .point-grid{grid-template-columns:1fr 1fr}
  .timeline{grid-template-columns:1fr 1fr}
}
@media (max-width:620px){
  .point-grid{grid-template-columns:1fr}
  .lang-grid{max-width:none;grid-template-columns:1fr 1fr;row-gap:14.4px}
  .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 20px;
    }
    .feature-card svg, .feature-card img {
        width: 60px;
        height: 60px;
    }
}
.ko-KR body,
.ko-KR h1, .ko-KR h2, .ko-KR h3, .ko-KR h4, .ko-KR h5, .ko-KR h6 {
    font-family: 'S-Core Dream', sans-serif;
}
@media(max-width: 500px){
	table.fee-table {
	    width: 500px;
	}

	.fee-wrap.reveal.reveal-delay-1.is-visible {
	    overflow: auto;
	}
	.fee-table col.fee-col-cost, .fee-table col.fee-col-opt {
	    width: 50%;
	}
}