/* ============================================================
   ASTIGMATISM CONTACTS PAGE — Hero Section | START
   ============================================================ */
.cc-as-1 {
    background: #0f172a;
    padding: 56px 0 48px;
}

.cc-as-1__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cc-as-1__left {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.cc-as-1__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a5b4fc;
    background: rgba(79, 70, 229, 0.14);
    border: 1px solid rgba(79, 70, 229, 0.28);
    border-radius: 999px;
    padding: 5px 12px;
}

.cc-as-1__h1 {
    margin: 0;
    font-size: clamp(22px, 3vw, 25px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

@media (max-width:800px) {
.cc-as-1__h1 {
    font-size: 20px;
}
}

.cc-as-1__lead {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
}

.cc-as-1__lead strong {
    color: #e2e8f0;
}

@media (max-width: 640px) {
    .cc-as-1 {
        padding: 36px 0 48px;
    }

    .cc-as-1__left {
        gap: 12px;
    }
}
/* ============================================================
   ASTIGMATISM CONTACTS PAGE — Hero Section | END
   ============================================================ */

/* ============================================================
   ASTIGMATISM CONTACTS PAGE — Converter Section | START
   ============================================================ */
.cc-as-2 {
    background: #f1f5f9;
    padding: 56px 0 72px;
}

.cc-as-2__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cc-as-2__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
}

.cc-as-2__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
}

.cc-as-2__title {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 20px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.cc-as-2__desc {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.cc-as-2__card {
    background: #4f46e512;
    border: 1px dashed #4f46e5;
    border-radius: 12px;
    padding: 22px 24px;
}

.cc-as-2__controls {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 22px;
    align-items: start;
}

.cc-as-2__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cc-as-2__col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.cc-as-2__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cc-as-2__label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.cc-as-2__num {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.15s;
}

.cc-as-2__num:focus-within {
    border-color: #6366f1;
}

.cc-as-2__sb {
    appearance: none;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: #94a3b8;
    width: 32px;
    height: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    transition: background 0.1s, color 0.1s;
}

.cc-as-2__sb:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.cc-as-2__num input {
    flex: 1;
    min-width: 0;
    height: 34px;
    text-align: center;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
    background: transparent;
    border: none;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    outline: none;
    -moz-appearance: textfield;
}

.cc-as-2__num input::-webkit-inner-spin-button,
.cc-as-2__num input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.cc-as-2__toggle-row {
    display: flex;
    gap: 8px;
}

.cc-as-2__tgl {
    flex: 1;
    padding: 9px 12px;
    font-size: 12.5px;
    font-weight: 700;
    font-family: inherit;
    color: #475569;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    text-align: center;
    line-height: 1.2;
}

.cc-as-2__tgl small {
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    opacity: 0.7;
    margin-top: 1px;
}

.cc-as-2__tgl--on {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.cc-as-2__col-sep {
    display: none;
}

.cc-as-2__hint {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    margin-left: 2px;
}

.cc-as-2__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.cc-as-2__calc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    color: #ffffff;
    background: #4f46e5;
    border: 1px solid #4f46e5;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.15s, border-color 0.15s;
}

.cc-as-2__calc-btn:hover {
    background: #4338ca;
    border-color: #4338ca;
}

.cc-as-2__reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    font-size: 12.5px;
    font-weight: 600;
    font-family: inherit;
    color: #64748b;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
}

.cc-as-2__reset-btn:hover {
    color: #0f172a;
}

.cc-as-2__result {
    margin-top: 18px;
    padding: 18px 20px;
    background: #0f172a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cc-as-2__res-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(79, 70, 229, 0.25);
    color: #a5b4fc;
}

.cc-as-2__res-main {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.cc-as-2__res-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
}

.cc-as-2__res-value {
    font-size: clamp(20px, 3.4vw, 26px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.cc-as-2__res-note {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
}

.cc-as-2__disclaimer {
    margin: 16px 0 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .cc-as-2__controls {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cc-as-2__col-sep {
        display: none;
    }

    .cc-as-2__card {
        padding: 18px 16px;
    }

    .cc-as-2__actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 8px;
    }

    .cc-as-2__calc-btn {
        width: 100%;
    }

    .cc-as-2__reset-btn {
        justify-content: center;
        margin-left: 0;
    }

    .cc-as-2__result {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .cc-as-2 {
        padding: 36px 0 48px;
    }

    .cc-as-2__head {
        margin-bottom: 22px;
    }
}
/* ============================================================
   ASTIGMATISM CONTACTS PAGE — Converter Section | END
   ============================================================ */

/* ============================================================
   ASTIGMATISM CONTACTS PAGE — Can You Wear Section | START
   ============================================================ */
.cc-as-3 {
    background: #ffffff;
    padding: 56px 0 72px;
}

.cc-as-3__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cc-as-3__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto;
}

.cc-as-3__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
}

.cc-as-3__title {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 20px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.cc-as-3__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.cc-as-3__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc-as-3__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.cc-as-3__card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.cc-as-3__card p {
    margin: 0;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .cc-as-3__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cc-as-3 {
        padding: 36px 0 48px;
    }
}
/* ============================================================
   ASTIGMATISM CONTACTS PAGE — Can You Wear Section | END
   ============================================================ */

/* ============================================================
   ASTIGMATISM CONTACTS PAGE — Price Table Section | START
   ============================================================ */
.cc-as-4 {
    background: #f1f5f9;
    padding: 56px 0 72px;
}

.cc-as-4__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cc-as-4__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto;
}

.cc-as-4__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
}

.cc-as-4__title {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 20px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.cc-as-4__desc {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.cc-as-4__tbl-wrap {
    overflow-x: auto;
}

.cc-as-4__tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.cc-as-4__tbl th {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0f172a;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.cc-as-4__tbl td {
    padding: 12px 16px;
    color: #334155;
    border-bottom: 1px solid #eef2f7;
}

.cc-as-4__tbl tbody tr:last-child td {
    border-bottom: none;
}

.cc-as-4__tbl strong {
    color: #0f172a;
}

.cc-as-4__note {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
}

.cc-as-4__note a {
    color: #4f46e5;
    font-weight: 600;
}

@media (max-width: 640px) {
    .cc-as-4 {
        padding: 36px 0 48px;
    }
}
/* ============================================================
   ASTIGMATISM CONTACTS PAGE — Price Table Section | END
   ============================================================ */

/* ============================================================
   ASTIGMATISM CONTACTS PAGE — FAQ Section | START
   ============================================================ */
.cc-as-6 {
    background: #fff;
    padding: 56px 0 72px;
}

.cc-as-6__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cc-as-6__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cc-as-6__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
}

.cc-as-6__title {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 20px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.cc-as-6__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
}

.cc-as-6__item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.cc-as-6__q {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px 16px;
    text-align: left;
    font-family: inherit;
}

.cc-as-6__q-num {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: #4f46e5;
    background: #eef2ff;
    border-radius: 6px;
    padding: 3px 7px;
}

.cc-as-6__q-text {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.cc-as-6__a {
    padding: 10px 18px 18px;
    border-top: 1px solid #f1f5f9;
}

.cc-as-6__a p {
    margin: 0;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.7;
}

.cc-as-6__a strong {
    color: #0f172a;
}

@media (max-width: 768px) {
    .cc-as-6__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cc-as-6 {
        padding: 25px 0px 56px;
    }

    .cc-as-6__q {
        padding: 14px 14px 2px;
    }

    .cc-as-6__a {
        padding: 10px 14px 14px;
    }
}
/* ============================================================
   ASTIGMATISM CONTACTS PAGE — FAQ Section | END
   ============================================================ */
