:root {
    --ink-950: #0b1324;
    --ink-900: #131f38;
    --ink-700: #31435f;
    --ink-500: #5a6a84;
    --mist-100: #f4f7fb;
    --mist-200: #e6edf6;
    --mist-300: #d4deeb;
    --card: rgba(255, 255, 255, 0.86);
    --line: rgba(19, 31, 56, 0.12);
    --accent: #0d8ee8;
    --accent-deep: #0a64b8;
    --accent-soft: #e8f5ff;
    --mint: #11b89a;
    --gold: #db9b3c;
    --ok: #1ba36a;

    --shadow-soft: 0 10px 24px rgba(8, 24, 49, 0.08);
    --shadow-mid: 0 24px 54px rgba(8, 24, 49, 0.16);
    --shadow-strong: 0 40px 84px rgba(8, 24, 49, 0.24);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-pill: 999px;

    --font-display: "Sora", "Pretendard", "Noto Sans KR", sans-serif;
    --font-body: "Plus Jakarta Sans", "Pretendard", "Noto Sans KR", sans-serif;

    --max-width: 1160px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink-900);
    line-height: 1.55;
    background:
        radial-gradient(1300px 560px at -8% -6%, #e2f4ff 0%, rgba(226, 244, 255, 0) 60%),
        radial-gradient(1100px 520px at 112% 0%, #f8f1e4 0%, rgba(248, 241, 228, 0) 56%),
        linear-gradient(180deg, #f8fbff 0%, #f6f9fe 38%, #f1f6fc 100%);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 104px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.section-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--ink-500);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.gradient-text {
    background: linear-gradient(120deg, #1279d1 0%, #10a58d 52%, #db9b3c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(13, 142, 232, 0.22);
    background: rgba(255, 255, 255, 0.7);
    color: var(--accent-deep);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
}

.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--mint));
    box-shadow: 0 0 0 6px rgba(13, 142, 232, 0.12);
}

.btn {
    border: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: var(--radius-pill);
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(130deg, var(--accent) 0%, #0b74d7 58%, #0d67bc 100%);
    box-shadow: 0 10px 26px rgba(13, 142, 232, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(13, 142, 232, 0.34);
}

.btn-secondary {
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(19, 31, 56, 0.12);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(19, 31, 56, 0.22);
    box-shadow: var(--shadow-soft);
}

.btn.small {
    padding: 10px 16px;
    font-size: 0.88rem;
}

.surface {
    border: 1px solid var(--line);
    background: var(--card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tone-sky {
    background: #eaf5ff;
    color: #0f7ed8;
}

.tone-mint {
    background: #e8faf6;
    color: #139a81;
}

.tone-gold {
    background: #fff4e6;
    color: #cb8c31;
}

.tone-navy {
    background: #eaf0f9;
    color: #295793;
}

.tone-ink {
    background: #eef1f7;
    color: #2f3f5a;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 120;
    border-bottom: 1px solid rgba(19, 31, 56, 0.08);
    background: rgba(249, 252, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 5px 10px rgba(10, 20, 45, 0.16);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    image-rendering: auto;
}

.logo-wordmark {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1f2a44;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(19, 31, 56, 0.14);
    background: rgba(255, 255, 255, 0.8);
}

.lang-toggle {
    border: 0;
    border-radius: 999px;
    padding: 6px 10px;
    min-width: 38px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--ink-700);
    background: transparent;
    cursor: pointer;
}

.lang-toggle.active {
    color: var(--accent-deep);
    background: var(--accent-soft);
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-deep);
}

.mobile-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--ink-900);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Footer */
.footer {
    margin-top: 88px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 48px;
    padding: 68px 0 44px;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--ink-500);
    max-width: 300px;
}

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

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-700);
    margin-bottom: 14px;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: var(--ink-500);
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--accent-deep);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 20px 0 28px;
    color: var(--ink-500);
    font-size: 0.9rem;
    text-align: center;
}

/* Index Hero */
.hero {
    padding: 76px 0 24px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 44px;
}

.hero h1 {
    margin: 22px 0 18px;
    font-family: var(--font-display);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-size: clamp(2.45rem, 5vw, 4.2rem);
}

.hero-subtitle {
    max-width: 620px;
    font-size: clamp(1.02rem, 1.9vw, 1.2rem);
    color: var(--ink-500);
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badges {
    margin-top: 24px;
    color: var(--ink-500);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.trust-badges::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(130deg, var(--mint), #0f89de);
    box-shadow: 0 0 0 6px rgba(17, 184, 154, 0.12);
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 16px -18px -18px 22px;
    z-index: 0;
    border-radius: 30px;
    background: linear-gradient(120deg, rgba(13, 142, 232, 0.18), rgba(17, 184, 154, 0.15));
    filter: blur(4px);
}

.app-mockup {
    position: relative;
    z-index: 1;
    padding: 26px;
}

.float-animation {
    animation: floatPanel 8s ease-in-out infinite;
}

@keyframes floatPanel {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mockup-header h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.mockup-tabs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab {
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.85);
    color: var(--ink-500);
    padding: 6px 10px;
}

.tab.active {
    border-color: rgba(13, 142, 232, 0.28);
    color: var(--accent-deep);
    background: rgba(232, 245, 255, 0.95);
}

.optimization-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    background: #fff;
}

.optimization-title {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    color: var(--ink-500);
    margin-bottom: 6px;
}

.optimization-strategy {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.optimization-breakdown {
    margin-bottom: 16px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(19, 31, 56, 0.12);
}

.breakdown-item .label {
    color: var(--ink-500);
    font-size: 0.92rem;
}

.breakdown-item .value {
    font-weight: 700;
}

.savings-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(27, 163, 106, 0.25);
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(27, 163, 106, 0.08);
}

.savings-label {
    color: var(--ok);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.savings-amount {
    color: var(--ok);
    font-size: 1.4rem;
    font-family: var(--font-display);
}

/* Cards and Feature Blocks */
.features-section {
    padding: 86px 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 142, 232, 0.25);
    box-shadow: var(--shadow-mid);
}

.feature-card .icon-wrap {
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--ink-500);
    font-size: 0.97rem;
    margin-bottom: 14px;
}

.feature-highlight {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.workflow-section {
    padding: 108px 0 56px;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.82);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 0.9rem;
    font-weight: 800;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.06rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--ink-500);
    font-size: 0.95rem;
}

.benefits-section {
    padding: 106px 0 50px;
}

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

.benefit-item {
    text-align: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 22px;
    padding: 28px 20px;
}

.benefit-item .icon-wrap {
    margin: 0 auto 14px;
}

.benefit-item h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--ink-500);
    font-size: 0.93rem;
}

.cta-section {
    padding: 84px 0;
}

.cta-content {
    border-radius: 28px;
    border: 1px solid rgba(14, 110, 188, 0.28);
    background:
        radial-gradient(800px 300px at 4% 8%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%),
        radial-gradient(600px 300px at 95% 88%, rgba(17, 184, 154, 0.22) 0%, rgba(17, 184, 154, 0) 52%),
        linear-gradient(125deg, #0f213f 0%, #123c70 46%, #0f78c4 100%);
    color: #fff;
    text-align: center;
    padding: 56px 34px;
    box-shadow: var(--shadow-strong);
}

.cta-content h2 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    margin-bottom: 12px;
}

.cta-content p {
    max-width: 690px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
}

.cta-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.cta-note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
}

/* Features Page */
.features-hero,
.support-hero {
    padding: 70px 0 42px;
}

.features-hero-content,
.support-hero-content {
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    padding: 48px 34px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.features-hero-content h1,
.support-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.features-hero-content p,
.support-hero-content p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--ink-500);
    font-size: 1.07rem;
}

.features-detail-section {
    padding: 26px 0 40px;
}

.feature-detail {
    margin-bottom: 20px;
    padding: 28px;
}

.feature-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.feature-detail-header h2 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 8px;
}

.feature-subtitle {
    color: var(--ink-500);
}

.feature-detail-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.feature-description h3 {
    margin: 18px 0 10px;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    font-size: 1.03rem;
}

.feature-description h3:first-child {
    margin-top: 0;
}

.feature-description p {
    color: var(--ink-500);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin: 10px 0;
    color: var(--ink-500);
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(125deg, var(--accent), var(--mint));
}

.feature-visual > div {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    padding: 20px;
}

.calc-header,
.chart-header,
.dashboard-header,
.report-header {
    font-family: var(--font-display);
    margin-bottom: 14px;
    font-size: 0.96rem;
    color: var(--ink-700);
}

.calc-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
}

.calc-option {
    text-align: center;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 12px;
}

.calc-option.optimized {
    border-color: rgba(27, 163, 106, 0.32);
    background: rgba(27, 163, 106, 0.08);
}

.calc-label {
    color: var(--ink-500);
    font-size: 0.78rem;
    margin-bottom: 4px;
}

.calc-value {
    font-family: var(--font-display);
    font-size: 1.32rem;
    margin-bottom: 4px;
}

.calc-detail {
    color: var(--ink-500);
    font-size: 0.78rem;
}

.calc-savings {
    margin-top: 6px;
    color: var(--ok);
    font-weight: 700;
    font-size: 0.85rem;
}

.calc-arrow {
    font-weight: 800;
    color: var(--accent);
    font-size: 1.4rem;
}

.chart-bars {
    height: 136px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding-top: 20px;
}

.chart-bar {
    flex: 1;
    border-radius: 8px 8px 0 0;
    min-height: 20px;
    position: relative;
    background: linear-gradient(180deg, #32b6f5 0%, #178adf 42%, #0f66bf 100%);
}

.bar-label,
.bar-value {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    font-size: 0.72rem;
}

.bar-value {
    top: -18px;
    color: var(--accent-deep);
    font-weight: 700;
}

.bar-label {
    bottom: -20px;
    color: var(--ink-500);
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.account-item {
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 12px;
    background: #fff;
}

.account-label {
    color: var(--ink-500);
    font-size: 0.73rem;
    margin-bottom: 4px;
}

.account-value {
    font-family: var(--font-display);
    font-size: 1.02rem;
}

.province-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.province-item {
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 12px;
    font-size: 0.92rem;
    color: var(--ink-700);
}

.report-section {
    margin-top: 12px;
}

.report-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink-700);
    margin-bottom: 6px;
}

.report-text {
    color: var(--ink-500);
    font-size: 0.83rem;
}

.chart-bars-small {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-top: 10px;
    height: 40px;
}

.bar-small {
    flex: 1;
    min-height: 8px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, #2bb5a0 0%, #198f83 100%);
}

/* Support Page */
.search-box {
    margin: 24px auto 0;
    max-width: 620px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(19, 31, 56, 0.14);
    background: #fff;
    display: flex;
    align-items: center;
    padding: 6px;
}

.search-input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 12px 16px;
    font-size: 0.98rem;
    color: var(--ink-900);
    background: transparent;
}

.search-btn {
    border: 0;
    border-radius: 999px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: linear-gradient(120deg, var(--accent) 0%, #0f6fc6 100%);
    color: #fff;
    cursor: pointer;
}

.search-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.quick-help-section,
.faq-section,
.contact-section,
.resources-section {
    padding: 68px 0 14px;
}

.quick-help-grid,
.contact-grid,
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.help-card,
.contact-method,
.resource-item {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.help-card:hover,
.contact-method:hover,
.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-mid);
    border-color: rgba(13, 142, 232, 0.28);
}

.help-card h3,
.contact-method h3,
.resource-item h3 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    font-size: 1.1rem;
    margin: 12px 0 8px;
}

.help-card p,
.contact-method p,
.resource-item p {
    color: var(--ink-500);
    font-size: 0.94rem;
}

.help-link,
.contact-link,
.resource-link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-deep);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink-900);
    text-align: left;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.99rem;
    cursor: pointer;
}

.faq-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-deep);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: var(--ink-500);
    padding: 0 18px 18px;
    font-size: 0.94rem;
}

.chat-button {
    border: 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(120deg, var(--accent) 0%, #0f6fc6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 16px;
    cursor: pointer;
    margin-top: 12px;
}

.resource-type {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: var(--accent-soft);
}

/* Legal Pages */
.legal-page {
    padding: 56px 0 0;
    min-height: calc(100vh - 76px);
}

.legal-container {
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink-700);
    text-decoration: none;
    padding: 9px 14px;
    font-size: 0.86rem;
    font-weight: 700;
}

.back-link svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.legal-header {
    margin: 20px 0 22px;
}

.app-name {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-deep);
    font-weight: 700;
    margin-bottom: 8px;
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--ink-500);
    font-size: 0.9rem;
}

.language-switcher {
    display: flex;
    gap: 10px;
    margin: 24px 0 20px;
}

.lang-btn {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink-700);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 8px 14px;
    cursor: pointer;
}

.lang-btn.active {
    border-color: rgba(13, 142, 232, 0.3);
    background: var(--accent-soft);
    color: var(--accent-deep);
}

.legal-content {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    padding: 28px;
}

.lang-block {
    display: none;
}

.lang-block.active {
    display: block;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.legal-section p,
.legal-section li {
    color: var(--ink-700);
    font-size: 0.95rem;
}

.legal-section ul {
    margin: 10px 0 0 20px;
}

.legal-section li {
    margin: 8px 0;
}

.legal-section a {
    color: var(--accent-deep);
    text-decoration: none;
    font-weight: 700;
}

.legal-footer {
    margin-top: 34px;
    border-top: 1px solid var(--line);
    padding: 18px 0 28px;
    text-align: center;
}

.legal-footer .footer-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
    margin-bottom: 10px;
}

.legal-footer a {
    color: var(--ink-500);
    text-decoration: none;
    font-size: 0.9rem;
}

.legal-footer a:hover {
    color: var(--accent-deep);
}

.legal-footer p {
    color: var(--ink-500);
    font-size: 0.86rem;
}

/* Animations */
.features-grid > *,
.workflow-steps > *,
.benefits-grid > *,
.quick-help-grid > *,
.contact-grid > *,
.resources-grid > * {
    animation: revealUp 0.7s ease both;
}

.features-grid > *:nth-child(2),
.workflow-steps > *:nth-child(2),
.benefits-grid > *:nth-child(2),
.quick-help-grid > *:nth-child(2),
.contact-grid > *:nth-child(2),
.resources-grid > *:nth-child(2) {
    animation-delay: 0.08s;
}

.features-grid > *:nth-child(3),
.workflow-steps > *:nth-child(3),
.benefits-grid > *:nth-child(3),
.quick-help-grid > *:nth-child(3),
.contact-grid > *:nth-child(3),
.resources-grid > *:nth-child(3) {
    animation-delay: 0.14s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1080px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

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

    .workflow-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .feature-detail-body {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav-links {
        position: absolute;
        top: 76px;
        left: 12px;
        right: 12px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow-soft);
        padding: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu-toggle {
        display: inline-block;
    }

    .features-grid,
    .quick-help-grid,
    .contact-grid,
    .resources-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .section,
    .features-section,
    .workflow-section,
    .benefits-section,
    .cta-section,
    .quick-help-section,
    .faq-section,
    .contact-section,
    .resources-section {
        padding-top: 76px;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .cta-content {
        padding: 40px 22px;
    }

    .calc-comparison {
        grid-template-columns: 1fr;
    }

    .calc-arrow {
        justify-self: center;
        transform: rotate(90deg);
    }

    .province-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .container,
    .legal-container {
        width: calc(100% - 32px);
    }

    .hero {
        padding-top: 56px;
    }

    .app-mockup {
        padding: 18px;
    }

    .features-hero-content,
    .support-hero-content {
        padding: 34px 18px;
    }

    .feature-detail,
    .legal-content {
        padding: 18px;
    }

    .faq-question,
    .faq-answer p {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* Premium Redesign Styles (Delcap Inspired Layout) */
:root {
    --brand-dark: #0a1c36;
    --brand-steel: #52789c;
    --brand-light-blue: #eef5fa;
    --brand-text-muted: #64748b;
    --font-premium-display: "Sora", sans-serif;
}

/* Redesigned Hero Section */
.hero-delcap {
    padding: 100px 0 60px;
    background: radial-gradient(circle at 10% 20%, rgba(224, 237, 250, 0.6) 0%, rgba(255, 255, 255, 0.4) 90%);
}

.hero-delcap-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-delcap-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-delcap-meta {
    font-size: 0.9rem;
    color: var(--brand-text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-delcap-title {
    font-family: var(--font-premium-display);
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--brand-dark);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-delcap-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-premium-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--brand-dark);
    border-left: 2px solid var(--brand-dark);
    padding-left: 16px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-top: 12px;
}

.hero-delcap-link:hover {
    opacity: 0.8;
    transform: translateX(4px);
}

.hero-delcap-road {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
}

/* Winding Path Vector container */
.winding-road-svg,
.winding-road-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Redesigned What we offer */
.offer-section {
    padding: 80px 0;
    background: #ffffff;
}

.offer-header-title {
    font-family: var(--font-premium-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 32px;
}

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

.offer-card-delcap {
    background: #fbfcfd;
    border: 1px solid rgba(10, 28, 54, 0.06);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.offer-card-delcap:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 28, 54, 0.04);
    border-color: rgba(10, 28, 54, 0.12);
}

.offer-card-top h3 {
    font-family: var(--font-premium-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.offer-card-top p {
    color: var(--brand-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.offer-card-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-dark);
    border-left: 1.5px solid var(--brand-dark);
    padding-left: 10px;
    margin-top: 24px;
    transition: opacity 0.2s ease;
}

.offer-card-link:hover {
    opacity: 0.7;
}

/* About Us Section with Metric Panel */
.about-section-delcap {
    padding: 0;
    background: #ffffff;
}

.about-grid-delcap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-radius: 0px;
    overflow: hidden;
}

.about-panel-dark {
    background: var(--brand-dark);
    color: #ffffff;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-panel-dark h4 {
    font-family: var(--font-premium-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.about-panel-dark h2 {
    font-family: var(--font-premium-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 24px;
}

.about-panel-dark p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.about-panel-steel {
    background: var(--brand-steel);
    color: #ffffff;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

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

.metric-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.metric-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.metric-value {
    font-family: var(--font-premium-display);
    font-size: 2.4rem;
    font-weight: 600;
}

.metric-as-of {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
}

/* Planning Step Section */
.planning-section-delcap {
    padding: 100px 0;
    background: #f8fafc;
}

.planning-grid-delcap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.planning-header h2 {
    font-family: var(--font-premium-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.planning-header p {
    font-size: 1.1rem;
    color: var(--brand-text-muted);
    margin-bottom: 40px;
}

.planning-step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.planning-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand-light-blue);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-premium-display);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.planning-step-body h3 {
    font-family: var(--font-premium-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.planning-step-body p {
    color: var(--brand-text-muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.planning-standalone-card {
    background: #ffffff;
    border: 1px solid rgba(10, 28, 54, 0.05);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.planning-standalone-card span {
    font-weight: 600;
    color: var(--brand-dark);
}

/* Document Mockup on Right */
.brochure-mockup {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(10, 28, 54, 0.1);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10, 28, 54, 0.06);
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.brochure-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brochure-logo-text {
    font-family: var(--font-premium-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--brand-dark);
    letter-spacing: 0.1em;
}

.brochure-image {
    flex: 1;
    background: linear-gradient(135deg, #1b3d68 0%, #0d1e34 100%);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

/* Abstract Architecture Graphic inside Brochure */
.brochure-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(0deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    clip-path: polygon(0 100%, 100% 30%, 100% 100%);
}

.brochure-content {
    padding: 30px 24px;
    background: var(--brand-dark);
    color: #ffffff;
}

.brochure-meta {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.brochure-title {
    font-family: var(--font-premium-display);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
}

/* Top Navigation Custom Dropdowns */
.nav-links .dropdown {
    position: relative;
    display: inline-block;
}

.nav-links .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-links .dropdown-toggle::after {
    content: "▾";
    font-size: 0.75rem;
    color: var(--brand-text-muted);
}

/* Portal Button Styles */
.btn-portal {
    background: var(--brand-dark);
    color: #ffffff !important;
    border-radius: var(--radius-pill);
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

/* Responsive updates for redesigned blocks */
@media (max-width: 1024px) {
    .hero-delcap-container,
    .planning-grid-delcap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-delcap-road {
        height: 340px;
    }
    
    .offer-grid-delcap {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-grid-delcap {
        grid-template-columns: 1fr;
    }
    
    .about-panel-dark,
    .about-panel-steel {
        padding: 50px 30px;
    }
}

